-
Notifications
You must be signed in to change notification settings - Fork 17
/
go.mod
31 lines (26 loc) · 795 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
31
module github.com/jandelgado/rabtap
go 1.21
toolchain go1.22.7
require (
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
github.com/fatih/color v1.18.0
github.com/google/uuid v1.6.0
github.com/mattn/go-colorable v0.1.13
github.com/rabbitmq/amqp091-go v1.10.0
github.com/sirupsen/logrus v1.9.4-0.20230606125235-dd1b4c2e81af
github.com/stretchr/testify v1.9.0
golang.org/x/net v0.31.0
golang.org/x/sync v0.9.0
)
require (
github.com/expr-lang/expr v1.16.9
github.com/klauspost/compress v1.17.11
github.com/stealthrocket/net v0.2.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.27.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)