Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ring v16 dependency removed #1457

Merged
merged 2 commits into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zingo-netutils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ thiserror.workspace = true
tokio-rustls.workspace = true
tonic.workspace = true
tower.workspace = true
webpki-roots = "0.21.0"
webpki-roots = "0.25"
zcash_client_backend.workspace = true

[features]
Expand Down
2 changes: 1 addition & 1 deletion zingo-netutils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ impl GrpcConnector {
if uri.scheme_str() == Some("https") {
let mut root_store = RootCertStore::empty();
//webpki uses a different struct for TrustAnchor
root_store.extend(webpki_roots::TLS_SERVER_ROOTS.0.iter().map(|anchor_ref| {
root_store.extend(webpki_roots::TLS_SERVER_ROOTS.iter().map(|anchor_ref| {
TrustAnchor {
subject: Der::from_slice(anchor_ref.subject),
subject_public_key_info: Der::from_slice(anchor_ref.spki),
Expand Down
Loading