From eb6ffc4b46bf0431399050949f7817e3fc5568f0 Mon Sep 17 00:00:00 2001 From: silverpill Date: Mon, 18 Nov 2024 21:06:55 +0000 Subject: [PATCH] Update reqwest requirement to 0.12 --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bdf4ed8..8520282 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,13 +13,13 @@ description = "RPC client for Monero daemon and wallet" [dependencies] anyhow = "1" chrono = { version = "0.4", default-features = false, features = ["serde"] } -diqwest = { version = "1.2.1", default-features = false, optional = true } +diqwest = { version = "3.0.0", default-features = false, optional = true } fixed-hash = "0.8" hex = "0.4" http = "1.1" jsonrpc-core = "18" monero = { version = "0.21", features = ["serde"] } -reqwest = { version = "0.11", default-features = false, features = ["json", "socks"] } +reqwest = { version = "0.12", default-features = false, features = ["json", "socks"] } serde = { version = "1", features = ["derive"] } serde_json = "1" tracing = "0.1" @@ -36,8 +36,8 @@ tokio = { version = "1.12.0", features = ["full"] } default = ["native-tls"] rpc_authentication = ["diqwest"] -native-tls = ["reqwest/native-tls", "diqwest/default"] -rustls-tls = ["reqwest/rustls-tls-native-roots", "diqwest/rustls-tls"] +native-tls = ["reqwest/native-tls"] +rustls-tls = ["reqwest/rustls-tls-native-roots"] [package.metadata.docs.rs] all-features = true