Skip to content

Commit

Permalink
rpc: Switch hyper-proxy to use rustls
Browse files Browse the repository at this point in the history
The rest of the stack already uses rustls for their TLS needs.
  • Loading branch information
mzabaluev committed Dec 22, 2021
1 parent 4a48416 commit 5f70e5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ async-tungstenite = { version = "0.12", default-features = false, features = ["t
futures = { version = "0.3", optional = true, default-features = false }
http = { version = "0.2", optional = true, default-features = false }
hyper = { version = "0.14", optional = true, default-features = false, features = ["client", "http1", "http2"] }
hyper-proxy = { version = "0.9", optional = true, default-features = false, features = ["tls"] }
hyper-proxy = { version = "0.9.1", optional = true, default-features = false, features = ["rustls"] }
hyper-rustls = { version = "0.22.1", optional = true, default-features = false, features = ["rustls-native-certs", "webpki-roots", "tokio-runtime"] }
structopt = { version = "0.3", optional = true, default-features = false }
tokio = { version = "1.0", optional = true, default-features = false, features = ["rt-multi-thread"] }
Expand Down

0 comments on commit 5f70e5b

Please sign in to comment.