blob: 38ab5e849e4fa57ce275c8392763c33d5a488221 [file] [log] [blame]
Scott Bakerb3a288a2019-10-02 14:57:29 -07001module github.com/opencord/voltha-api-server
2
3go 1.12
4
5require (
6 github.com/Shopify/sarama v1.21.0 // indirect
7 github.com/bsm/sarama-cluster v2.1.15+incompatible // indirect
8 github.com/gogo/protobuf v1.2.1 // indirect
9 github.com/golang/protobuf v1.3.1
10 github.com/golang/snappy v0.0.1 // indirect
Scott Bakerb3a288a2019-10-02 14:57:29 -070011 github.com/google/uuid v1.1.1
12 github.com/googleapis/gnostic v0.2.0 // indirect
Scott Bakerb3a288a2019-10-02 14:57:29 -070013 github.com/imdario/mergo v0.3.7 // indirect
14 github.com/json-iterator/go v1.1.6 // indirect
Scott Bakerb3a288a2019-10-02 14:57:29 -070015 github.com/onsi/ginkgo v1.10.2 // indirect
16 github.com/onsi/gomega v1.7.0 // indirect
17 github.com/opencord/voltha-go v2.2.0+incompatible
18 github.com/opencord/voltha-protos v1.0.3
Daniele Rossi17007a42019-10-17 16:21:52 +020019 github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
Scott Bakerb3a288a2019-10-02 14:57:29 -070020 github.com/pkg/errors v0.8.1 // indirect
21 github.com/spf13/pflag v1.0.3 // indirect
22 github.com/stretchr/testify v1.3.0
23 go.uber.org/atomic v1.3.2 // indirect
24 go.uber.org/multierr v1.1.0 // indirect
25 go.uber.org/zap v1.9.1 // indirect
26 golang.org/x/crypto v0.0.0-20190320223903-b7391e95e576 // indirect
27 golang.org/x/net v0.0.0-20190322120337-addf6b3196f6
Scott Bakerb3a288a2019-10-02 14:57:29 -070028 golang.org/x/sys v0.0.0-20190322080309-f49334f85ddc // indirect
29 golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect
Scott Bakerb3a288a2019-10-02 14:57:29 -070030 google.golang.org/genproto v0.0.0-20190321212433-e79c0c59cdb5 // indirect
31 google.golang.org/grpc v1.19.1
32 gopkg.in/inf.v0 v0.9.1 // indirect
33 gopkg.in/yaml.v2 v2.2.2 // indirect
girishke7ca43b2019-10-10 12:30:03 +000034 k8s.io/api v0.0.0-20190620084959-7cf5895f2711
35 k8s.io/apimachinery v0.0.0-20190612205821-1799e75a0719
36 k8s.io/client-go v0.0.0-20190620085101-78d2af792bab // pseudo version corresponding to v12.0.0
Scott Bakerb3a288a2019-10-02 14:57:29 -070037)