-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add compliance test for forward referenced entities.
- Loading branch information
Showing
3 changed files
with
196 additions
and
72 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
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,63 +1,76 @@ | ||
module github.com/openconfig/gribigo | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
toolchain go1.22.4 | ||
|
||
require ( | ||
github.com/golang/glog v1.1.2 | ||
github.com/golang/glog v1.2.1 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/google/uuid v1.3.0 | ||
github.com/openconfig/gnmi v0.10.0 | ||
github.com/openconfig/goyang v1.4.3 | ||
github.com/google/uuid v1.6.0 | ||
github.com/openconfig/gnmi v0.11.0 | ||
github.com/openconfig/goyang v1.4.5 | ||
github.com/openconfig/gribi v1.0.0 | ||
github.com/openconfig/lemming v0.3.2-0.20230914210403-c6484d12af0a | ||
github.com/openconfig/lemming v0.4.1-0.20240712014536-d411abfbc067 | ||
github.com/openconfig/testt v0.0.0-20220311054427-efbb1a32ec07 | ||
github.com/openconfig/ygot v0.29.14-0.20231104225320-3ff6621e6f61 | ||
github.com/openconfig/ygot v0.29.19 | ||
go.uber.org/atomic v1.10.0 | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d | ||
google.golang.org/grpc v1.58.0-dev | ||
google.golang.org/protobuf v1.33.0 | ||
lukechampine.com/uint128 v1.2.0 | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117 | ||
google.golang.org/grpc v1.64.1 | ||
google.golang.org/protobuf v1.34.1 | ||
lukechampine.com/uint128 v1.3.0 | ||
) | ||
|
||
require ( | ||
bitbucket.org/creachadair/stringset v0.0.14 // indirect | ||
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect | ||
github.com/eapache/channels v1.1.0 // indirect | ||
github.com/eapache/queue v1.1.0 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/go-logr/logr v1.2.3 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/gopacket v1.1.19 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/josharian/native v1.1.0 // indirect | ||
github.com/k-sone/critbitgo v1.4.0 // indirect | ||
github.com/kentik/patricia v1.2.0 // indirect | ||
github.com/kentik/patricia v1.2.1 // indirect | ||
github.com/kylelemons/godebug v1.1.0 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mdlayher/genetlink v1.3.2 // indirect | ||
github.com/mdlayher/netlink v1.7.2 // indirect | ||
github.com/mdlayher/socket v0.5.1 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/openconfig/gnoi v0.1.0 // indirect | ||
github.com/openconfig/gnsi v1.2.2 // indirect | ||
github.com/openconfig/gnoi v0.4.1 // indirect | ||
github.com/openconfig/gnsi v1.4.5 // indirect | ||
github.com/openconfig/gocloser v0.0.0-20220310182203-c6c950ed3b0b // indirect | ||
github.com/openconfig/ygnmi v0.8.7 // indirect | ||
github.com/openconfig/ygnmi v0.11.1 // indirect | ||
github.com/osrg/gobgp/v3 v3.27.1-0.20240614010451-0148e2d22dcf // indirect | ||
github.com/p4lang/p4runtime v1.4.0-rc.5.0.20220728214547-13f0d02a521e // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.9 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.2 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/spf13/afero v1.9.5 // indirect | ||
github.com/spf13/cast v1.5.1 // indirect | ||
github.com/spf13/cobra v1.7.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/sagikazarmark/locafero v0.6.0 // indirect | ||
github.com/sagikazarmark/slog-shim v0.1.0 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/sourcegraph/conc v0.3.0 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/cobra v1.8.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.16.0 // indirect | ||
github.com/spf13/viper v1.19.0 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/vishvananda/netlink v1.2.1-beta.2 // indirect | ||
github.com/vishvananda/netns v0.0.4 // indirect | ||
github.com/wenovus/gobgp/v3 v3.0.0-20230831013712-6d33842cbf42 // indirect | ||
golang.org/x/exp v0.0.0-20230801115018-d63ba01acd4b // indirect | ||
golang.org/x/net v0.23.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 // indirect | ||
golang.org/x/net v0.26.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.21.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/klog/v2 v2.100.1 // indirect | ||
k8s.io/klog/v2 v2.120.1 // indirect | ||
) | ||
|
||
replace github.com/openconfig/lemming => /Users/robjs/go/src/github.com/openconfig/lemming |
Oops, something went wrong.