Skip to content

Commit

Permalink
Update reqwest requirement to 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
silverpill committed Nov 22, 2024
1 parent 11f9de9 commit eb6ffc4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down

0 comments on commit eb6ffc4

Please sign in to comment.