Skip to content

Commit

Permalink
Allow to remove openssl dependency by default #456
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislearn committed Oct 18, 2023
1 parent d69c999 commit 068c363
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ quote = "1"
rand = "0.8"
rcgen = "0.11"
regex = "1"
reqwest = "0.11"
reqwest = {version = "0.11", default-features = false }
ring = "0.17"
rust_decimal = "1"
rustls = "0.21"
Expand Down
2 changes: 1 addition & 1 deletion crates/proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ tracing = { workspace = true }
tokio = { workspace = true }
fastrand = { workspace = true }
hyper = { workspace = true, features = ["server", "http1", "http2"] }
reqwest = { workspace = true, features = ["stream"] }
reqwest = { workspace = true, features = ["rustls-tls", "stream"] }
salvo-utils = { workspace = true, features = ["runtime"] }
percent-encoding = { workspace = true }

Expand Down

0 comments on commit 068c363

Please sign in to comment.