Skip to content

Commit

Permalink
Update kube-client's rustls dependency to 0.21.4 (#1341)
Browse files Browse the repository at this point in the history
Update kube-client's rustls dependency to 0.21.4

kube-client is incompatible with rustls versions prior to 0.21.4 due to the renaming of rustls::client::builder::ConfigBuilder::.with_client_auth_cert

Fixes #1340

Signed-off-by: Mathias Pius <[email protected]>
  • Loading branch information
MathiasPius authored Nov 11, 2023
1 parent 5813ad0 commit 0abd2bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kube-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ thiserror = "1.0.29"
futures = { version = "0.3.17", optional = true }
pem = { version = "3.0.1", optional = true }
openssl = { version = "0.10.36", optional = true }
rustls = { version = "0.21.0", features = ["dangerous_configuration"], optional = true }
rustls = { version = "0.21.4", features = ["dangerous_configuration"], optional = true }
rustls-pemfile = { version = "1.0.0", optional = true }
bytes = { version = "1.1.0", optional = true }
tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = true }
Expand Down

0 comments on commit 0abd2bd

Please sign in to comment.