-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgo.mod
71 lines (62 loc) · 2.07 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
64
65
66
67
68
69
70
71
module github.com/pzaino/thecrowler
go 1.23.4
require (
github.com/PuerkitoBio/goquery v1.10.1
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.5
github.com/evanw/esbuild v0.24.2
github.com/jmoiron/sqlx v1.4.0
github.com/spaolacci/murmur3 v1.1.0
golang.org/x/crypto v0.32.0
)
require golang.org/x/sync v0.10.0 // indirect
require (
github.com/antchfx/xpath v1.3.3 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/chromedp/cdproto v0.0.0-20250101192427-60a0ca35cb84 // indirect
github.com/chromedp/sysutil v1.1.0 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.4.0 // indirect
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
github.com/josharian/intern v1.0.0 // 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.61.0 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
github.com/qri-io/jsonpointer v0.1.1 // indirect
google.golang.org/protobuf v1.36.1 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
)
require (
github.com/antchfx/htmlquery v1.3.4
github.com/chromedp/chromedp v0.11.2
github.com/mailru/easyjson v0.9.0
github.com/prometheus/client_golang v1.20.5
golang.org/x/time v0.9.0
)
require (
github.com/google/go-cmp v0.6.0
golang.org/x/sys v0.29.0 // indirect
)
require (
github.com/andybalholm/cascadia v1.3.3 // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
golang.org/x/net v0.34.0
golang.org/x/text v0.21.0 // indirect
)