-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove pgzip usage because of klauspost/pgzip#56
- Loading branch information
Showing
5 changed files
with
33 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,30 @@ | ||
module github.com/CorentinB/warc | ||
|
||
go 1.21 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 | ||
github.com/klauspost/compress v1.17.7 | ||
github.com/klauspost/pgzip v1.2.6 | ||
github.com/klauspost/compress v1.17.9 | ||
github.com/paulbellamy/ratecounter v0.2.0 | ||
github.com/refraction-networking/utls v1.6.3 | ||
github.com/refraction-networking/utls v1.6.7 | ||
github.com/remeh/sizedwaitgroup v1.0.0 | ||
github.com/satori/go.uuid v1.2.0 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/spf13/cobra v1.8.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.22.0 | ||
golang.org/x/sync v0.6.0 | ||
golang.org/x/net v0.28.0 | ||
golang.org/x/sync v0.8.0 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.1.0 // indirect | ||
github.com/cloudflare/circl v1.3.7 // indirect | ||
github.com/cloudflare/circl v1.3.9 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/quic-go/quic-go v0.41.0 // indirect | ||
github.com/quic-go/quic-go v0.46.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/crypto v0.26.0 // indirect | ||
golang.org/x/sys v0.24.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters