-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathgo.mod
27 lines (24 loc) · 877 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
24
25
26
27
module github.com/openconfig/gnmi
go 1.18
require (
github.com/cenkalti/backoff/v4 v4.1.1
github.com/golang/glog v1.1.0
github.com/google/go-cmp v0.5.9
github.com/kylelemons/godebug v1.1.0
github.com/openconfig/grpctunnel v0.0.0-20220819142823-6f5422b8ca70
github.com/openconfig/ygot v0.6.0
github.com/protocolbuffers/txtpbfmt v0.0.0-20220608084003-fc78c767cd6a
golang.org/x/crypto v0.14.0
golang.org/x/net v0.17.0
google.golang.org/grpc v1.56.3
google.golang.org/protobuf v1.30.0
)
require (
github.com/golang/protobuf v1.5.3 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/openconfig/goyang v0.0.0-20200115183954-d0a48929f0ea // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/term v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
)