forked from edgexfoundry/edgex-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
23 lines (20 loc) · 798 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
module github.com/edgexfoundry/edgex-cli
require (
github.com/edgexfoundry/go-mod-core-contracts/v2 v2.0.0
github.com/spf13/cobra v1.3.0
)
require (
github.com/fxamacker/cbor/v2 v2.2.0 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator/v10 v10.6.1 // indirect
github.com/google/uuid v1.2.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/x448/float16 v0.8.4 // indirect
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
golang.org/x/sys v0.0.0-20211205182925-97ca703d548d // indirect
golang.org/x/text v0.3.7 // indirect
)
go 1.17