|
1 | 1 | module github.com/v-byte-cpu/sx |
2 | 2 |
|
3 | | -go 1.15 |
| 3 | +go 1.19 |
| 4 | + |
| 5 | +require ( |
| 6 | + github.com/docker/docker v20.10.7+incompatible |
| 7 | + github.com/golang/mock v1.6.0 |
| 8 | + github.com/google/gopacket v1.1.20-0.20210304165259-20562ffb40f8 |
| 9 | + github.com/mailru/easyjson v0.7.7 |
| 10 | + github.com/moby/moby v20.10.7+incompatible |
| 11 | + github.com/spf13/cobra v1.5.0 |
| 12 | + github.com/stretchr/testify v1.8.0 |
| 13 | + github.com/vishvananda/netlink v1.1.0 |
| 14 | + github.com/yl2chen/cidranger v1.0.2 |
| 15 | + go.uber.org/ratelimit v0.2.0 |
| 16 | + go.uber.org/zap v1.23.0 |
| 17 | + golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d |
| 18 | +) |
4 | 19 |
|
5 | 20 | require ( |
6 | 21 | github.com/Microsoft/go-winio v0.4.16 // indirect |
| 22 | + github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129 // indirect |
7 | 23 | github.com/containerd/containerd v1.4.4 // indirect |
| 24 | + github.com/davecgh/go-spew v1.1.1 // indirect |
8 | 25 | github.com/docker/distribution v2.7.1+incompatible // indirect |
9 | | - github.com/docker/docker v20.10.7+incompatible |
10 | 26 | github.com/docker/go-connections v0.4.0 // indirect |
11 | 27 | github.com/docker/go-units v0.4.0 // indirect |
12 | | - github.com/golang/mock v1.6.0 |
13 | | - github.com/google/gopacket v1.1.20-0.20210304165259-20562ffb40f8 |
| 28 | + github.com/gogo/protobuf v1.3.2 // indirect |
| 29 | + github.com/golang/protobuf v1.5.2 // indirect |
14 | 30 | github.com/gorilla/mux v1.8.0 // indirect |
15 | | - github.com/mailru/easyjson v0.7.7 |
16 | | - github.com/moby/moby v20.10.7+incompatible |
| 31 | + github.com/inconshreveable/mousetrap v1.0.0 // indirect |
| 32 | + github.com/josharian/intern v1.0.0 // indirect |
| 33 | + github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect |
17 | 34 | github.com/moby/term v0.0.0-20201216013528-df9cb8a40635 // indirect |
18 | 35 | github.com/morikuni/aec v1.0.0 // indirect |
19 | 36 | github.com/opencontainers/go-digest v1.0.0 // indirect |
20 | 37 | github.com/opencontainers/image-spec v1.0.1 // indirect |
21 | | - github.com/spf13/cobra v1.3.0 |
22 | | - github.com/stretchr/testify v1.7.0 |
23 | | - github.com/vishvananda/netlink v1.1.0 |
24 | | - github.com/yl2chen/cidranger v1.0.2 |
25 | | - go.uber.org/ratelimit v0.2.0 |
26 | | - go.uber.org/zap v1.19.0 |
27 | | - golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d |
| 38 | + github.com/pkg/errors v0.9.1 // indirect |
| 39 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 40 | + github.com/sirupsen/logrus v1.4.2 // indirect |
| 41 | + github.com/spf13/pflag v1.0.5 // indirect |
| 42 | + github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df // indirect |
| 43 | + go.uber.org/atomic v1.7.0 // indirect |
| 44 | + go.uber.org/multierr v1.6.0 // indirect |
| 45 | + golang.org/x/sys v0.0.0-20211205182925-97ca703d548d // indirect |
| 46 | + golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect |
| 47 | + google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect |
| 48 | + google.golang.org/grpc v1.42.0 // indirect |
| 49 | + google.golang.org/protobuf v1.27.1 // indirect |
| 50 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
28 | 51 | gotest.tools/v3 v3.0.3 // indirect |
29 | 52 | ) |
0 commit comments