-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (21 loc) · 748 Bytes
/
go.mod
File metadata and controls
25 lines (21 loc) · 748 Bytes
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
module github.com/cadeusept/thumbnail-loader
go 1.20
require (
github.com/jmoiron/sqlx v1.3.5
github.com/sirupsen/logrus v1.9.3
)
require github.com/inconshreveable/mousetrap v1.1.0 // indirect
require (
github.com/golang/mock v1.6.0
github.com/golang/protobuf v1.5.3 // indirect
github.com/mattn/go-sqlite3 v1.14.15
github.com/spf13/cobra v1.7.0
github.com/spf13/pflag v1.0.5 // indirect
github.com/zhashkevych/go-sqlxmock v1.5.2-0.20201023121933-f973d0041cfc
golang.org/x/net v0.14.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5 // indirect
google.golang.org/grpc v1.57.0
google.golang.org/protobuf v1.31.0
)