-
Notifications
You must be signed in to change notification settings - Fork 5
/
go.mod
30 lines (26 loc) · 935 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
30
module github.com/chazlever/rickybobby
go 1.23.0
toolchain go1.23.2
require (
github.com/gopacket/gopacket v1.3.0
github.com/hamba/avro/v2 v2.27.0
github.com/miekg/dns v1.1.62
github.com/pkg/profile v1.7.0
github.com/sirupsen/logrus v1.9.3
gopkg.in/urfave/cli.v1 v1.20.0
)
require (
github.com/felixge/fgprof v0.9.3 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/pprof v0.0.0-20211214055906-6f57359322fd // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.17.10 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/tools v0.26.0 // indirect
)