-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
go.mod
31 lines (27 loc) · 944 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/owasp-amass/resolve
go 1.21
toolchain go1.21.4
require (
github.com/caffix/queue v0.1.5
github.com/caffix/stringset v0.1.2
github.com/miekg/dns v1.1.62
go.uber.org/ratelimit v0.3.1
golang.org/x/net v0.28.0
golang.org/x/sys v0.24.0
)
require (
github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 // indirect
github.com/benbjohnson/clock v1.3.5 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dgraph-io/badger v1.6.2 // indirect
github.com/dgraph-io/ristretto v0.1.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/golang/glog v1.2.2 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/mod v0.20.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/tools v0.24.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
)