-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
40 lines (37 loc) · 2.38 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
35
36
37
38
39
40
module github.com/cisco-app-networking/nsm-nse
go 1.14
require (
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
github.com/davecgh/go-spew v1.1.1
github.com/golang/protobuf v1.4.2
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645
github.com/networkservicemesh/networkservicemesh/controlplane/api v0.3.0
github.com/networkservicemesh/networkservicemesh/pkg v0.3.0
github.com/networkservicemesh/networkservicemesh/sdk v0.3.0
github.com/onsi/gomega v1.10.3
github.com/opentracing/opentracing-go v1.1.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.1.0
github.com/sirupsen/logrus v1.7.0
github.com/stretchr/testify v1.4.0
go.ligato.io/cn-infra/v2 v2.5.0-alpha.0.20200313154441-b0d4c1b11c73
go.ligato.io/vpp-agent/v3 v3.3.0-alpha.0.20210111123645-a04d009c61c5
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
golang.org/x/sys v0.0.0-20210112091331-59c308dcf3cc // indirect
google.golang.org/grpc v1.29.1
gopkg.in/yaml.v2 v2.3.0
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
gotest.tools v2.2.0+incompatible
)
replace (
github.com/census-instrumentation/opencensus-proto v0.1.0-0.20181214143942-ba49f56771b8 => github.com/census-instrumentation/opencensus-proto v0.0.3-0.20181214143942-ba49f56771b8
github.com/networkservicemesh/networkservicemesh/controlplane => github.com/cisco-app-networking/networkservicemesh/controlplane v0.2.3-vl3
github.com/networkservicemesh/networkservicemesh/controlplane/api => github.com/cisco-app-networking/networkservicemesh/controlplane/api v0.2.3-vl3
github.com/networkservicemesh/networkservicemesh/forwarder/api => github.com/cisco-app-networking/networkservicemesh/forwarder/api v0.2.3-vl3
github.com/networkservicemesh/networkservicemesh/k8s => github.com/cisco-app-networking/networkservicemesh/k8s v0.2.3-vl3
github.com/networkservicemesh/networkservicemesh/k8s/pkg/apis => github.com/cisco-app-networking/networkservicemesh/k8s/pkg/apis v0.2.3-vl3
github.com/networkservicemesh/networkservicemesh/pkg => github.com/cisco-app-networking/networkservicemesh/pkg v0.2.3-vl3
github.com/networkservicemesh/networkservicemesh/sdk => github.com/cisco-app-networking/networkservicemesh/sdk v0.2.3-vl3
github.com/networkservicemesh/networkservicemesh/utils => github.com/cisco-app-networking/networkservicemesh/utils v0.2.3-vl3
)