forked from usnistgov/ndn-dpdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
78 lines (74 loc) · 3.25 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
73
74
75
76
77
78
module github.com/usnistgov/ndn-dpdk
go 1.23.0
toolchain go1.23.1
require (
github.com/EGT-Ukraine/go2gql v0.0.0-20190528134259-79533208556f
github.com/bhoriuchi/graphql-go-tools v1.0.3
github.com/c9s/goprocinfo v0.0.0-20210130143923-c95fcf8c64a8
github.com/chaseisabelle/flagz v0.0.0-20211022193420-183f0ea66d78
github.com/coreos/go-systemd/v22 v22.5.0
github.com/dylandreimerink/gobpfld v0.6.0
github.com/functionalfoundry/graphqlws v0.0.0-20200611113535-7bc58903ce7b
github.com/gogf/greuse v1.1.0
github.com/gopacket/gopacket v1.3.1-0.20241004220047-bd3b6d6928cf
github.com/gorilla/schema v1.4.1
github.com/graphql-go/graphql v0.8.1
github.com/ianlancetaylor/cgosymbolizer v0.0.0-20240805235558-330cf6901bf7
github.com/jacobsa/fuse v0.0.0-20240909130001-a1c7c8268f12
github.com/jfoster/binary-utilities v0.2.1
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/onichandame/go-utils v0.0.8
github.com/onichandame/gql-ws v0.1.0
github.com/pascaldekloe/name v1.0.1
github.com/powerman/rpc-codec v1.2.2
github.com/rickb777/plural v1.4.2
github.com/safchain/ethtool v0.4.1
github.com/sethvargo/go-retry v0.3.0
github.com/sirupsen/logrus v1.9.3
github.com/songgao/water v0.0.0-20200317203138-2b4b6d7c09d8
github.com/stretchr/testify v1.9.0
github.com/suzuki-shunsuke/go-dataeq v1.0.1
github.com/tul/emission v0.0.0-20180606124623-7d2aae804ca2
github.com/urfave/cli/v2 v2.27.4
github.com/vishvananda/netlink v1.3.0
github.com/wmnsk/go-pfcp v0.0.24
github.com/xeipuuv/gojsonschema v1.2.0
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78
github.com/zyedidia/generic v1.2.1
go.fd.io/govpp/extras v0.1.0
go.uber.org/zap v1.27.0
go4.org v0.0.0-20230225012048-214862532bf5
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c
golang.org/x/sys v0.26.0
)
require (
github.com/alecthomas/participle/v2 v2.0.0-alpha6 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gofrs/uuid v4.4.0+incompatible // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/matryer/is v1.4.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.34.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/segmentio/fasthash v1.0.3 // indirect
github.com/smartystreets/goconvey v1.8.1 // indirect
github.com/vishvananda/netns v0.0.4 // indirect
github.com/x-cray/logrus-prefixed-formatter v0.5.2 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.28.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/term v0.25.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)