Skip to content

Commit

Permalink
disable rustls tls12 feature (#28956)
Browse files Browse the repository at this point in the history
Co-authored-by: Richard Patel <[email protected]>
  • Loading branch information
ripatel-fd and riptl authored Jan 12, 2023
1 parent d0aa93d commit 1b6024a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quic-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ log = "0.4.17"
quinn = "0.9.3"
quinn-proto = "0.9.2"
quinn-udp = "0.3.2"
rustls = { version = "0.20.6", features = ["dangerous_configuration"] }
rustls = { version = "0.20.6", default-features = false, features = ["dangerous_configuration", "logging"] }
solana-measure = { path = "../measure", version = "=1.15.0" }
solana-metrics = { path = "../metrics", version = "=1.15.0" }
solana-net-utils = { path = "../net-utils", version = "=1.15.0" }
Expand Down
2 changes: 1 addition & 1 deletion streamer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ quinn-udp = "0.3.2"

rand = "0.7.0"
rcgen = "0.10.0"
rustls = { version = "0.20.6", features = ["dangerous_configuration"] }
rustls = { version = "0.20.6", default-features = false, features = ["dangerous_configuration", "logging"] }
solana-metrics = { path = "../metrics", version = "=1.15.0" }
solana-perf = { path = "../perf", version = "=1.15.0" }
solana-sdk = { path = "../sdk", version = "=1.15.0" }
Expand Down

0 comments on commit 1b6024a

Please sign in to comment.