Skip to content

Commit

Permalink
chore(core/proxy): explicitly add dependence reqwest/rust-tls
Browse files Browse the repository at this point in the history
  • Loading branch information
Grvzard committed Sep 25, 2024
1 parent da30e97 commit 6648c3e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pingora-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ windows-sys = { version = "0.59.0", features = ["Win32_Networking_WinSock"] }
[dev-dependencies]
matches = "0.1"
env_logger = "0.9"
reqwest = { version = "0.11", features = ["rustls"], default-features = false }
reqwest = { version = "0.11", features = [
"rustls",
"rust-tls",
], default-features = false }
hyper = "0.14"

[target.'cfg(unix)'.dev-dependencies]
Expand Down
1 change: 1 addition & 0 deletions pingora-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ regex = "1"
reqwest = { version = "0.11", features = [
"gzip",
"rustls",
"rustls-tls",
], default-features = false }
tokio-test = "0.4"
env_logger = "0.9"
Expand Down

0 comments on commit 6648c3e

Please sign in to comment.