Skip to content
New issue

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

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

Already on GitHub? # to your account

Use tls vendored from reqwest #2260

Merged
merged 5 commits into from
Jan 29, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: bundle native tls libraries or openssl in all binaries
By enabling reqwest `native-tls-vendored` feature.
Alenar committed Jan 29, 2025

Verified

This commit was signed with the committer’s verified signature.
Alenar DJO
commit 5bbc3c0bceac7545d2229b2150aee507706ee291
2 changes: 1 addition & 1 deletion mithril-aggregator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ paste = "1.0.15"
prometheus = "0.13.4"
rayon = "1.10.0"
regex = "1.11.1"
reqwest = { version = "0.12.12", features = ["json"] }
reqwest = { version = "0.12.12", features = ["json", "native-tls-vendored"] }
semver = "1.0.24"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
2 changes: 1 addition & 1 deletion mithril-client-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ fs2 = "0.4.3"
futures = "0.3.31"
human_bytes = { version = "0.4.3", features = ["fast"] }
indicatif = { version = "0.17.9", features = ["tokio"] }
mithril-client = { path = "../mithril-client", features = ["fs", "unstable"] }
mithril-client = { path = "../mithril-client", features = ["fs", "native-tls-vendored", "unstable"] }
mithril-doc = { path = "../internal/mithril-doc" }
openssl = { version = "0.10.68", features = ["vendored"], optional = true }
openssl-probe = { version = "0.1.5", optional = true }
2 changes: 1 addition & 1 deletion mithril-relay/Cargo.toml
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ libp2p = { version = "0.54.1", features = [
] }
mithril-common = { path = "../mithril-common", features = ["full"] }
mithril-doc = { path = "../internal/mithril-doc" }
reqwest = { version = "0.12.12", features = ["json"] }
reqwest = { version = "0.12.12", features = ["json", "native-tls-vendored"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
serde_yaml = "0.9.34"
2 changes: 1 addition & 1 deletion mithril-signer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ paste = "1.0.15"
prometheus = "0.13.4"
rand_chacha = "0.3.1"
rand_core = "0.6.4"
reqwest = { version = "0.12.12", features = ["json", "stream"] }
reqwest = { version = "0.12.12", features = ["json", "native-tls-vendored", "stream"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
slog = { version = "2.7.0", features = [
2 changes: 1 addition & 1 deletion mithril-test-lab/mithril-end-to-end/Cargo.toml
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ hex = "0.4.3"
indicatif = { version = "0.17.9", features = ["tokio"] }
mithril-common = { path = "../../mithril-common", features = ["full"] }
mithril-doc = { path = "../../internal/mithril-doc" }
reqwest = { version = "0.12.12", features = ["json"] }
reqwest = { version = "0.12.12", features = ["json", "native-tls-vendored"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
serde_yaml = "0.9.34"