-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* (M) go.(mod,sum) - Fix #184 -- ensure that we use the latest genproto.
- Loading branch information
Showing
2 changed files
with
36 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,29 @@ | ||
module github.com/openconfig/gnmi | ||
|
||
go 1.18 | ||
go 1.21 | ||
|
||
toolchain go1.22.5 | ||
|
||
require ( | ||
github.com/cenkalti/backoff/v4 v4.1.1 | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b | ||
github.com/google/go-cmp v0.5.7 | ||
github.com/golang/glog v1.2.1 | ||
github.com/google/go-cmp v0.6.0 | ||
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.0.0-20200622213623-75b288015ac9 | ||
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d | ||
google.golang.org/grpc v1.40.0 | ||
google.golang.org/protobuf v1.28.0 | ||
golang.org/x/crypto v0.26.0 | ||
golang.org/x/net v0.28.0 | ||
google.golang.org/grpc v1.66.0 | ||
google.golang.org/protobuf v1.34.2 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/protobuf v1.5.4 // 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.0.0-20210809222454-d867a43fc93e // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/genproto v0.0.0-20210811021853-ddbe55d93216 // indirect | ||
golang.org/x/sys v0.24.0 // indirect | ||
golang.org/x/term v0.23.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters