Scott Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 1 | module github.com/opencord/voltha-api-server |
| 2 | |
| 3 | go 1.12 |
| 4 | |
| 5 | require ( |
| 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 Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 11 | github.com/google/uuid v1.1.1 |
| 12 | github.com/googleapis/gnostic v0.2.0 // indirect |
Scott Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 13 | github.com/imdario/mergo v0.3.7 // indirect |
| 14 | github.com/json-iterator/go v1.1.6 // indirect |
Scott Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 15 | 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 Rossi | 17007a4 | 2019-10-17 16:21:52 +0200 | [diff] [blame] | 19 | github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2 |
Scott Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 20 | 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 Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 28 | golang.org/x/sys v0.0.0-20190322080309-f49334f85ddc // indirect |
| 29 | golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect |
Scott Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 30 | 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 |
girishk | e7ca43b | 2019-10-10 12:30:03 +0000 | [diff] [blame] | 34 | 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 Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 37 | ) |