Skip to content

Commit

Permalink
Allow to remove openssl dependency by default #456 (#459)
Browse files Browse the repository at this point in the history
* Allow to remove openssl dependency by default #456

* wip
  • Loading branch information
chrislearn authored Oct 18, 2023
1 parent d69c999 commit bd0fb58
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ parking_lot = { workspace = true }
quinn = { workspace = true, optional = true, features = ["runtime-tokio", "ring", "tls-rustls"] }
rcgen = { workspace = true, optional = true }
regex = { workspace = true }
reqwest = { workspace = true, optional = true, features = ["json"] }
reqwest = { workspace = true, optional = true, features = ["rustls-tls", "json"] }
ring = { workspace = true, optional = true }
rustls-pemfile = { workspace = true, optional = true }
salvo-http3 = { workspace = true, optional = true, features = ["quinn"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/jwt-auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ oidc = ["dep:reqwest"]
[dependencies]
base64 = { workspace = true }
jsonwebtoken = { workspace = true }
reqwest = { workspace = true, optional = true, features = ["json"] }
reqwest = { workspace = true, optional = true, features = ["rustls-tls", "json"] }
salvo_core = { workspace = true, features = ["cookie"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
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 bd0fb58

Please sign in to comment.