-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathgo.mod
More file actions
46 lines (41 loc) · 1.51 KB
/
go.mod
File metadata and controls
46 lines (41 loc) · 1.51 KB
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
module github.com/internetarchive/gowarc
go 1.25.4
require (
github.com/google/uuid v1.6.0
github.com/klauspost/compress v1.18.5
github.com/maypok86/otter v1.2.4
github.com/miekg/dns v1.1.72
github.com/refraction-networking/utls v1.8.2
github.com/remeh/sizedwaitgroup v1.0.0
github.com/spf13/cobra v1.10.2
github.com/things-go/go-socks5 v0.1.1
github.com/ulikunitz/xz v0.5.15
github.com/valyala/bytebufferpool v1.0.0
github.com/zeebo/blake3 v0.2.4
go.uber.org/goleak v1.3.0
golang.org/x/net v0.53.0
golang.org/x/sync v0.20.0
golang.org/x/sys v0.43.0
)
// By default, and historically, this project uses klauspost's gzip implementation,
// which is faster than the standard library gzip, but comes at the cost of less predictable
// memory usage. It's widely used and stable but if you want to use the standard library gzip,
// you can build with the standard_gzip tag:
// go build -tags standard_gzip
require (
github.com/andybalholm/brotli v1.1.1 // indirect
github.com/dolthub/maphash v0.1.0 // indirect
github.com/gammazero/deque v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/klauspost/cpuid/v2 v2.0.12 // indirect
github.com/spf13/pflag v1.0.9 // indirect
golang.org/x/crypto v0.50.0 // indirect
golang.org/x/mod v0.31.0 // indirect
golang.org/x/tools v0.40.0 // indirect
)
// Unsure exactly where these versions came from, but no longer exist. If we plan to publish under these versions, we need to remove them from this retract list.
retract (
v1.1.2
v1.1.0
v1.0.0
)