From 9e310f776edf520ca9ce538f4b055dbd2259709a Mon Sep 17 00:00:00 2001 From: Richard Janis Goldschmidt Date: Thu, 12 Dec 2024 14:32:09 +0100 Subject: [PATCH] bump reqwest to v0.12.9 --- rpc/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 6e70480c4..d0538a5e6 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -88,9 +88,9 @@ subtle = { version = "2", default-features = false } semver = { version = "1.0", default-features = false } # Optional dependencies -async-tungstenite = { version = "0.24", default-features = false, features = ["tokio-runtime", "tokio-rustls-native-certs"], optional = true } +async-tungstenite = { version = "0.28.1", default-features = false, features = ["tokio-runtime", "tokio-rustls-native-certs"], optional = true } futures = { version = "0.3", optional = true, default-features = false } -reqwest = { version = "0.11.20", optional = true, default-features = false, features = ["rustls-tls-native-roots"] } +reqwest = { version = "0.12.9", optional = true, default-features = false, features = ["rustls-tls-native-roots"] } structopt = { version = "0.3", optional = true, default-features = false } tokio = { version = "1.0", optional = true, default-features = false, features = ["rt-multi-thread"] } tracing = { version = "0.1", optional = true, default-features = false }