Skip to content

Commit

Permalink
Merge pull request #315 from boxdot/ring-backend
Browse files Browse the repository at this point in the history
fix: switch rustls backend back to ring
  • Loading branch information
direc85 authored Aug 12, 2024
2 parents c3f809a + e2ef0ca commit f21e317
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libsignal-service-hyper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ url = "2.1"

hyper = "1.0"
hyper-util = { version = "0.1", features = ["client", "client-legacy"] }
hyper-rustls = { version = "0.27", features = ["http1", "http2"] }
hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "http2", "ring", "logging"] }
hyper-timeout = "0.5"
headers = "0.4"
http-body-util = "0.1"
Expand All @@ -31,7 +31,7 @@ http-body-util = "0.1"
async-tungstenite = { version = "0.27", features = ["tokio-rustls-native-certs", "url"] }

tokio = { version = "1.0", features = ["macros"] }
tokio-rustls = "0.26"
tokio-rustls = { version = "0.26", default-features = false, features = ["logging", "ring"] }

rustls-pemfile = "2.0"

Expand Down

0 comments on commit f21e317

Please sign in to comment.