-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
34 lines (31 loc) · 1.24 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
module github.com/go-chai/conf
go 1.18
require (
github.com/BurntSushi/toml v1.1.1-0.20220607204713-0a9f2b05b636
github.com/cockroachdb/errors v1.9.0
github.com/davecgh/go-spew v1.1.1
github.com/ghodss/yaml v1.0.1-0.20220118164431-d8423dcdf344
github.com/go-playground/validator/v10 v10.11.0
github.com/imdario/mergo v0.3.13
github.com/jessevdk/go-flags v1.5.0
github.com/stretchr/testify v1.7.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/cockroachdb/logtags v0.0.0-20211118104740-dabe8e521a4f // indirect
github.com/cockroachdb/redact v1.1.3 // indirect
github.com/getsentry/sentry-go v0.12.0 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.8.1 // indirect
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
)