-
Notifications
You must be signed in to change notification settings - Fork 9
/
go.mod
63 lines (54 loc) · 1.7 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
module github.com/pzaino/thecrowler
go 1.23.1
require (
github.com/PuerkitoBio/goquery v1.10.0
github.com/aws/aws-sdk-go v1.55.5
github.com/lib/pq v1.10.9
github.com/tebeka/selenium v0.9.9
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/abadojack/whatlanggo v1.0.1
github.com/likexian/whois v1.15.5
github.com/oschwald/maxminddb-golang v1.13.1
github.com/qri-io/jsonschema v0.2.1
github.com/robertkrimen/otto v0.5.1
)
require (
github.com/Ullaakut/nmap/v3 v3.0.4
github.com/evanw/esbuild v0.24.0
github.com/jmoiron/sqlx v1.4.0
github.com/spaolacci/murmur3 v1.1.0
golang.org/x/crypto v0.29.0
)
require golang.org/x/sync v0.9.0 // indirect
require (
github.com/antchfx/xpath v1.3.2 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/kr/text v0.2.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.55.0 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
github.com/qri-io/jsonpointer v0.1.1 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
)
require (
github.com/antchfx/htmlquery v1.3.3
github.com/prometheus/client_golang v1.20.5
golang.org/x/time v0.8.0
)
require (
github.com/google/go-cmp v0.6.0
golang.org/x/sys v0.27.0 // indirect
)
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
golang.org/x/net v0.31.0
golang.org/x/text v0.20.0 // indirect
)