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 ( |
Scott Baker | f579f13 | 2019-10-24 14:31:41 -0700 | [diff] [blame] | 6 | github.com/golang/protobuf v1.3.2 |
Scott Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 7 | github.com/google/uuid v1.1.1 |
| 8 | github.com/googleapis/gnostic v0.2.0 // indirect |
Scott Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 9 | github.com/imdario/mergo v0.3.7 // indirect |
Scott Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 10 | github.com/onsi/ginkgo v1.10.2 // indirect |
| 11 | github.com/onsi/gomega v1.7.0 // indirect |
Scott Baker | b6de7a5 | 2019-11-04 09:13:37 -0800 | [diff] [blame] | 12 | github.com/opencord/voltha-lib-go/v2 v2.2.9 |
| 13 | github.com/opencord/voltha-protos/v2 v2.0.1 |
Daniele Rossi | 17007a4 | 2019-10-17 16:21:52 +0200 | [diff] [blame] | 14 | github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2 |
Scott Baker | f579f13 | 2019-10-24 14:31:41 -0700 | [diff] [blame] | 15 | github.com/stretchr/testify v1.4.0 |
| 16 | golang.org/x/net v0.0.0-20190930134127-c5a3c61f89f3 |
Scott Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 17 | golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect |
Scott Baker | f579f13 | 2019-10-24 14:31:41 -0700 | [diff] [blame] | 18 | google.golang.org/grpc v1.24.0 |
Scott Baker | b3a288a | 2019-10-02 14:57:29 -0700 | [diff] [blame] | 19 | gopkg.in/inf.v0 v0.9.1 // indirect |
girishk | e7ca43b | 2019-10-10 12:30:03 +0000 | [diff] [blame] | 20 | k8s.io/api v0.0.0-20190620084959-7cf5895f2711 |
| 21 | k8s.io/apimachinery v0.0.0-20190612205821-1799e75a0719 |
| 22 | 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] | 23 | ) |