Skip to content

Commit

Permalink
chore(deps): Bump rustls-native-certs from 0.6.3 to 0.7.0 (#15620)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Xiangjin <[email protected]>
  • Loading branch information
dependabot[bot] and xiangjinwu authored Mar 28, 2024
1 parent 016fad7 commit 17ce345
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
23 changes: 18 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/connector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ risingwave_pb = { workspace = true }
risingwave_rpc_client = { workspace = true }
rumqttc = { version = "0.22.0", features = ["url"] }
rust_decimal = "1"
rustls-native-certs = "0.6"
rustls-native-certs = "0.7"
rustls-pemfile = "2"
rw_futures_util = { workspace = true }
serde = { version = "1", features = ["derive", "rc"] }
Expand Down
2 changes: 1 addition & 1 deletion src/connector/src/mqtt_common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ impl MqttCommon {
rustls_native_certs::load_native_certs().expect("could not load platform certs")
{
root_cert_store
.add(&tokio_rustls::rustls::Certificate(cert.0))
.add(&tokio_rustls::rustls::Certificate(cert.to_vec()))
.unwrap();
}
}
Expand Down

0 comments on commit 17ce345

Please sign in to comment.