-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
47 lines (43 loc) · 1.61 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
module github.com/antihax/gambit
go 1.23.3
require (
github.com/aprice/telnet v0.0.0-20171226235516-d54e7db45615
github.com/aws/aws-sdk-go v1.55.5
github.com/brianvoe/gofakeit/v6 v6.28.0
github.com/datastax/go-cassandra-native-protocol v0.0.0-20240903140133-605a850e203b
github.com/elastic/go-elasticsearch/v7 v7.17.10
github.com/google/uuid v1.6.0
github.com/gorilla/context v1.1.2
github.com/gorilla/mux v1.8.1
github.com/lunixbochs/struc v0.0.0-20241101090106-8d528fa2c543
github.com/miekg/dns v1.1.62
github.com/pion/dtls/v2 v2.2.12
github.com/pion/udp v0.1.4
github.com/rs/zerolog v1.33.0
github.com/secmask/go-redisproto v0.1.0
github.com/sethvargo/go-envconfig v1.1.0
github.com/stretchr/testify v1.9.0
golang.org/x/crypto v0.31.0
golang.org/x/sys v0.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require github.com/google/gopacket v1.1.19
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kr/text v0.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pierrec/lz4/v4 v4.1.22 // indirect
github.com/pion/logging v0.2.2 // indirect
github.com/pion/transport/v2 v2.2.10 // indirect
github.com/pion/transport/v3 v3.0.7 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/mod v0.22.0 // indirect
golang.org/x/net v0.32.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/term v0.27.0 // indirect
golang.org/x/tools v0.28.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)