-
Notifications
You must be signed in to change notification settings - Fork 9
/
go.mod
39 lines (35 loc) · 1.5 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
module github.com/dylandreimerink/edb
go 1.18
replace github.com/google/gopacket => github.com/dylandreimerink/gopacket v1.1.20-0.20220126223506-0d3623bffc1f
require (
github.com/c-bata/go-prompt v0.2.6
github.com/cilium/ebpf v0.9.0
github.com/davecgh/go-spew v1.1.1
github.com/dylandreimerink/mimic v0.0.10
github.com/emicklei/dot v0.16.0
github.com/go-delve/delve v1.8.0
github.com/google/gopacket v1.1.19
github.com/lithammer/fuzzysearch v1.1.3
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
github.com/spf13/cobra v1.3.0
github.com/vishvananda/netlink v1.1.0
golang.org/x/exp v0.0.0-20220318154914-8dddf5d87bd8
)
require (
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/mattn/go-tty v0.0.3 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f // indirect
golang.org/x/arch v0.0.0-20190927153633-4e8777c89be4 // indirect
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
golang.org/x/text v0.3.7 // indirect
)