-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
29 lines (26 loc) · 861 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
module github.com/CorentinB/warc
go 1.22.0
require (
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
github.com/google/uuid v1.6.0
github.com/klauspost/compress v1.17.10
github.com/miekg/dns v1.1.62
github.com/paulbellamy/ratecounter v0.2.0
github.com/refraction-networking/utls v1.6.7
github.com/remeh/sizedwaitgroup v1.0.0
github.com/spf13/cobra v1.8.1
github.com/ulikunitz/xz v0.5.12
go.uber.org/goleak v1.3.0
golang.org/x/net v0.29.0
golang.org/x/sync v0.8.0
)
require (
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/cloudflare/circl v1.4.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.27.0 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/tools v0.25.0 // indirect
)