Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use rustls for tls & trust-dns-resolver for dns resolution #1737

Merged
merged 4 commits into from
Apr 19, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ number_prefix = "0.4"
openssl = { version = "0.10.48", optional = true }
rand = "0.8.4"
regex = "1.7.3"
reqwest = { version = "0.11", features = ["json", "blocking", "stream"], optional = true }
reqwest = { version = "0.11", features = ["json", "blocking", "stream", "rustls-tls", "trust-dns"], optional = true }
Xuanwo marked this conversation as resolved.
Show resolved Hide resolved
retry = "2"
semver = "1.0"
sha2 = { version = "0.10.6", optional = true }
Expand All @@ -65,6 +65,8 @@ serde_json = "1.0"
strip-ansi-escapes = "0.1"
tar = "0.4.36"
tempfile = "3"
# trust-dns-resolver must be kept in sync with the version reqwest uses
trust-dns-resolver = { version = "0.22.0", features = ["dnssec-ring", "dns-over-rustls", "dns-over-https-rustls", "dns-over-quic"] }
mime = "0.3"
tokio = { version = "1", features = ["rt-multi-thread", "io-util", "time", "net", "process", "macros"] }
tokio-serde = "0.8"
Expand Down