-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
49 lines (43 loc) · 1.57 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
module github.com/ismrmrd/mrd-storage-server
go 1.20
require gorm.io/gorm v1.24.7-0.20230306060331-85eaf9eeda11
require (
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
gorm.io/driver/sqlite v1.4.4
)
require (
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.4.0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/internal v1.2.0 // indirect
github.com/dlclark/regexp2 v1.8.1 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5 v5.3.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.18 // indirect
github.com/mattn/go-sqlite3 v1.14.16 // indirect
github.com/rogpeppe/go-internal v1.8.1 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
)
require (
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.0.0
github.com/alecthomas/kong v0.7.1
github.com/etherlabsio/healthcheck v0.0.0-20191224061800-dd3d2fd8c3f6
github.com/golang/mock v1.6.0
github.com/google/uuid v1.3.0
github.com/johnstairs/pathenvconfig v0.2.1
github.com/mpalmer/gorm-zerolog v0.1.0
github.com/rs/zerolog v1.29.0
github.com/stretchr/testify v1.8.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-chi/chi/v5 v5.0.8
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/xorcare/pointer v1.2.2
gopkg.in/yaml.v3 v3.0.1 // indirect
gorm.io/driver/postgres v1.5.0
)