-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
39 lines (36 loc) · 1.56 KB
/
go.mod
File metadata and controls
39 lines (36 loc) · 1.56 KB
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
module github.com/dblbee/crypto-tracker
go 1.25.5
require (
github.com/joho/godotenv v1.5.1
gorm.io/driver/postgres v1.6.0
gorm.io/gorm v1.31.1
)
require (
9fans.net/go v0.0.7 // indirect
github.com/cweill/gotests v1.9.0 // indirect
github.com/fatih/camelcase v1.0.0 // indirect
github.com/fatih/gomodifytags v1.17.0 // indirect
github.com/fatih/structtag v1.2.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/pgx/v5 v5.8.0 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/lukehoban/go-outline v0.0.0-20161011150102-e78556874252 // indirect
github.com/newhook/go-symbols v0.0.0-20151212134530-b75dfefa0d23 // indirect
github.com/nsf/gocode v0.0.0-20230322162601-b672b49f3818 // indirect
github.com/rogpeppe/godef v1.1.2 // indirect
github.com/tpng/gopkgs v0.0.0-20180428091733-81e90e22e204 // indirect
github.com/yuin/goldmark v1.7.16 // indirect
github.com/zmb3/gogetdoc v0.0.0-20190228002656-b37376c5da6a // indirect
golang.org/x/crypto v0.46.0 // indirect
golang.org/x/mod v0.32.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/text v0.33.0 // indirect
golang.org/x/tools v0.40.0 // indirect
golang.org/x/tools/cmd/godoc v0.1.0-deprecated // indirect
golang.org/x/tools/cmd/gorename v0.1.0-deprecated // indirect
golang.org/x/tools/cmd/guru v0.1.1-deprecated // indirect
golang.org/x/tools/godoc v0.1.0-deprecated // indirect
)