-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
26 lines (23 loc) · 813 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
module github.com/elliotwutingfeng/go-fasttld
go 1.19
require (
github.com/fatih/color v1.18.0
github.com/joeguo/tldextract v0.0.0-20220507100122-d83daa6adef8
github.com/jpillora/go-tld v1.2.1
github.com/karlseguin/intset v1.0.3-0.20221130142345-37ee0d7df651
github.com/mjd2021usa/tldextract v0.9.2
github.com/spf13/afero v1.11.0
github.com/spf13/cobra v1.8.1
github.com/tidwall/hashmap v1.8.1
golang.org/x/net v0.30.0
)
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/text v0.19.0 // indirect
)