-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
29 lines (25 loc) · 909 Bytes
/
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
module github.com/stg-tud/bp2022_netlab
go 1.19
require (
github.com/gookit/slog v0.4.0
github.com/korylprince/ipnetgen v1.0.1
github.com/pelletier/go-toml/v2 v2.0.7
github.com/spf13/cobra v1.6.1
github.com/stretchr/testify v1.8.2
)
require google.golang.org/protobuf v1.26.0 // indirect
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.3
github.com/gookit/color v1.5.2 // indirect
github.com/gookit/goutil v0.6.7 // indirect
github.com/gookit/gsr v0.0.8 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)