Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ameshkov committed Apr 3, 2024
1 parent 8812e76 commit b3dc386
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 100 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ adheres to [Semantic Versioning][semver].

* Added support for the `--tls-servername` argument.

### Changed

* Updated dependencies, now using newer versions of quic-go, dnsproxy, cfcrypto.

[unreleased]: https://github.com/ameshkov/gocurl/compare/v1.4.2...HEAD

## [1.4.2] - 2024-03-31
Expand Down
37 changes: 19 additions & 18 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,43 +1,44 @@
module github.com/ameshkov/gocurl

go 1.21.1
go 1.21.8

toolchain go1.22.1

require (
github.com/AdguardTeam/dnsproxy v0.55.0
github.com/AdguardTeam/golibs v0.16.2
github.com/ameshkov/cfcrypto v0.0.0-20231011122626-d30a03589358
github.com/gobwas/ws v1.2.1
github.com/AdguardTeam/dnsproxy v0.67.0
github.com/AdguardTeam/golibs v0.22.0
github.com/ameshkov/cfcrypto v0.0.0-20240210121715-b8d7ef6c44ad
github.com/gobwas/ws v1.3.2
github.com/jessevdk/go-flags v1.5.0
github.com/miekg/dns v1.1.58
github.com/quic-go/quic-go v0.38.2
github.com/stretchr/testify v1.8.4
github.com/quic-go/quic-go v0.42.0
github.com/stretchr/testify v1.9.0
github.com/txthinking/socks5 v0.0.0-20230325130024-4230056ae301
golang.org/x/net v0.20.0
golang.org/x/net v0.22.0
)

require (
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
github.com/aead/poly1305 v0.0.0-20180717145839-3fee0db0b635 // indirect
github.com/ameshkov/dnscrypt/v2 v2.2.7 // indirect
github.com/ameshkov/dnscrypt/v2 v2.3.0 // indirect
github.com/ameshkov/dnsstamps v1.0.3 // indirect
github.com/cloudflare/circl v1.3.7 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/google/pprof v0.0.0-20240130152714-0ed6a68c8d9e // indirect
github.com/onsi/ginkgo/v2 v2.12.1 // indirect
github.com/google/pprof v0.0.0-20240402174815-29b9bb013b0f // indirect
github.com/onsi/ginkgo/v2 v2.17.1 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/quic-go/qpack v0.4.0 // indirect
github.com/quic-go/qtls-go1-20 v0.3.4 // indirect
github.com/txthinking/runnergroup v0.0.0-20230325130830-408dc5853f86 // indirect
golang.org/x/crypto v0.18.0 // indirect
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/sys v0.16.0 // indirect
go.uber.org/mock v0.4.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
golang.org/x/mod v0.16.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.17.0 // indirect
golang.org/x/tools v0.19.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit b3dc386

Please sign in to comment.