forked from usnistgov/ndn-dpdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
72 lines (69 loc) · 3.29 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
module github.com/usnistgov/ndn-dpdk
go 1.17
require (
github.com/EGT-Ukraine/go2gql v0.0.0-20190528134259-79533208556f
github.com/FDio/vpp v21.10.1+incompatible
github.com/bhoriuchi/graphql-go-tools v0.3.2
github.com/c9s/goprocinfo v0.0.0-20210130143923-c95fcf8c64a8
github.com/coreos/go-systemd/v22 v22.3.2
github.com/functionalfoundry/graphqlws v0.0.0-20200611113535-7bc58903ce7b
github.com/gabstv/freeport v0.0.0-20171005142102-7952fe2e67ce
github.com/gogf/greuse v1.1.0
github.com/google/gopacket v1.1.19
github.com/graphql-go/graphql v0.8.0
github.com/hashicorp/golang-lru v0.5.4
github.com/ianlancetaylor/cgosymbolizer v0.0.0-20220217162856-c813f11194b9
github.com/jfoster/binary-utilities v0.2.1
github.com/jwangsadinata/go-multimap v0.0.0-20190620162914-c29f3d7f33b6
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/korylprince/go-graphql-ws v0.3.6
github.com/machinebox/graphql v0.2.2
github.com/peterbourgon/mergemap v0.0.1
github.com/pkg/math v0.0.0-20141027224758-f2ed9e40e245
github.com/powerman/rpc-codec v1.2.2
github.com/rickb777/plural v1.4.1
github.com/safchain/ethtool v0.1.0
github.com/sirupsen/logrus v1.8.1
github.com/soh335/sliceflag v0.0.0-20160923061056-d2d28a5acab8
github.com/songgao/water v0.0.0-20200317203138-2b4b6d7c09d8
github.com/stretchr/testify v1.7.0
github.com/tul/emission v0.0.0-20180606124623-7d2aae804ca2
github.com/urfave/cli/v2 v2.3.0
github.com/vishvananda/netlink v1.1.0
github.com/xeipuuv/gojsonschema v1.2.0
go.uber.org/multierr v1.7.0
go.uber.org/zap v1.21.0
go4.org v0.0.0-20201209231011-d4a079459e60
golang.org/x/sys v0.0.0-20220224120231-95c6836cb0e7
inet.af/netaddr v0.0.0-20211027220019-c74959edd3b6
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gofrs/uuid v3.2.0+incompatible // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/matryer/is v1.4.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.18.1 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.0.1 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/smartystreets/goconvey v1.7.2 // indirect
github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df // indirect
github.com/x-cray/logrus-prefixed-formatter v0.5.2 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
go.uber.org/atomic v1.7.0 // indirect
go4.org/intern v0.0.0-20211027215823-ae77deb06f29 // indirect
go4.org/unsafe/assume-no-moving-gc v0.0.0-20211027215541-db492cf91b37 // indirect
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa // indirect
golang.org/x/net v0.0.0-20211111083644-e5c967477495 // indirect
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)