-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
29 lines (26 loc) · 1.01 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
module github.com/spacetab-io/commands-go
go 1.18
require (
github.com/jackc/pgx-zap v0.0.0-20220909013905-c08a18c611dd
github.com/jackc/pgx/v5 v5.0.4
github.com/pressly/goose v2.7.0+incompatible
github.com/spacetab-io/configuration-go v1.2.0
github.com/spacetab-io/configuration-structs-go/v2 v2.0.0-alpha2
github.com/spacetab-io/logs-go/v3 v3.0.0-alpha2
github.com/spf13/cobra v1.2.1
go.uber.org/zap v1.23.0
)
require (
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
github.com/getsentry/sentry-go v0.13.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
)