-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support latest quic-go version, requires go1.19
- Loading branch information
Showing
10 changed files
with
280 additions
and
104 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,27 +1,27 @@ | ||
module github.com/imroc/req/v3 | ||
|
||
go 1.18 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/hashicorp/go-multierror v1.1.1 | ||
github.com/quic-go/qpack v0.4.0 | ||
github.com/quic-go/quic-go v0.32.0 | ||
golang.org/x/net v0.4.0 | ||
golang.org/x/text v0.5.0 | ||
github.com/quic-go/quic-go v0.34.0 | ||
golang.org/x/net v0.9.0 | ||
golang.org/x/text v0.9.0 | ||
) | ||
|
||
require ( | ||
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect | ||
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect | ||
github.com/golang/mock v1.6.0 // indirect | ||
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect | ||
github.com/google/pprof v0.0.0-20230426061923-93006964c1fc // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/onsi/ginkgo/v2 v2.2.0 // indirect | ||
github.com/onsi/ginkgo/v2 v2.9.2 // indirect | ||
github.com/quic-go/qtls-go1-18 v0.2.0 // indirect | ||
github.com/quic-go/qtls-go1-19 v0.2.0 // indirect | ||
github.com/quic-go/qtls-go1-20 v0.1.0 // indirect | ||
golang.org/x/crypto v0.4.0 // indirect | ||
golang.org/x/exp v0.0.0-20221205204356-47842c84f3db // indirect | ||
golang.org/x/mod v0.6.0 // indirect | ||
golang.org/x/sys v0.3.0 // indirect | ||
golang.org/x/tools v0.2.0 // indirect | ||
github.com/quic-go/qtls-go1-19 v0.3.2 // indirect | ||
github.com/quic-go/qtls-go1-20 v0.2.2 // indirect | ||
golang.org/x/crypto v0.8.0 // indirect | ||
golang.org/x/exp v0.0.0-20230425010034-47ecfdc1ba53 // indirect | ||
golang.org/x/mod v0.10.0 // indirect | ||
golang.org/x/sys v0.7.0 // indirect | ||
golang.org/x/tools v0.8.0 // 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
Oops, something went wrong.