forked from pzaino/thecrowler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
59 lines (50 loc) · 1.49 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
module github.com/pzaino/thecrowler
go 1.22.4
require (
github.com/PuerkitoBio/goquery v1.9.2
github.com/antchfx/htmlquery v1.3.1
github.com/aws/aws-sdk-go v1.54.6
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.3
github.com/oschwald/maxminddb-golang v1.13.0
github.com/qri-io/jsonschema v0.2.1
github.com/robertkrimen/otto v0.4.0
github.com/stretchr/testify v1.9.0
)
require (
github.com/Ullaakut/nmap/v3 v3.0.3
github.com/jmoiron/sqlx v1.4.0
github.com/spaolacci/murmur3 v1.1.0
golang.org/x/crypto v0.24.0
)
require golang.org/x/sync v0.7.0 // indirect
require (
github.com/kr/pretty v0.3.0 // indirect
github.com/qri-io/jsonpointer v0.1.1 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/time v0.5.0
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/google/go-cmp v0.6.0
golang.org/x/sys v0.21.0 // indirect
)
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/antchfx/xpath v1.3.0 // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
golang.org/x/net v0.26.0
golang.org/x/text v0.16.0 // indirect
)