-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
29 lines (26 loc) · 1020 Bytes
/
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
module github.com/LockBlock-dev/planes-tracker
go 1.20
require (
github.com/HewlettPackard/structex v1.0.4 // direct
github.com/klauspost/compress v1.17.4 // direct
google.golang.org/grpc v1.59.0 // direct
google.golang.org/protobuf v1.31.0 // direct
gorm.io/driver/postgres v1.5.9 // direct
)
require (
github.com/golang/protobuf v1.5.3 // 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.5.5 // indirect
github.com/jackc/puddle/v2 v2.2.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/joho/godotenv v1.5.1
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/net v0.14.0 // indirect
golang.org/x/sync v0.3.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
gorm.io/gorm v1.25.10 // direct
)