-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgo.mod
More file actions
32 lines (28 loc) · 1.01 KB
/
go.mod
File metadata and controls
32 lines (28 loc) · 1.01 KB
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
module github.com/chazlever/rickybobby
go 1.23.0
toolchain go1.23.2
require (
github.com/gopacket/gopacket v1.3.1
github.com/hamba/avro/v2 v2.27.0
github.com/miekg/dns v1.1.66
github.com/pkg/profile v1.7.0
github.com/rs/zerolog v1.34.0
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/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // 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.24.0 // indirect
golang.org/x/net v0.39.0 // indirect
golang.org/x/sync v0.13.0 // indirect
golang.org/x/sys v0.32.0 // indirect
golang.org/x/tools v0.32.0 // indirect
)