diff --git a/Cargo.lock b/Cargo.lock index a848202b..945eec02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2322,9 +2322,9 @@ dependencies = [ [[package]] name = "native-tls" -version = "0.2.8" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d" +checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" dependencies = [ "lazy_static", "libc", @@ -3091,9 +3091,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.12" +version = "0.11.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "431949c384f4e2ae07605ccaa56d1d9d2ecdb5cadd4f9577ccfab29f2e5149fc" +checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c" dependencies = [ "base64 0.13.1", "bytes", diff --git a/ethers-etherscan/Cargo.toml b/ethers-etherscan/Cargo.toml index 6916c532..7a71e0f9 100644 --- a/ethers-etherscan/Cargo.toml +++ b/ethers-etherscan/Cargo.toml @@ -20,7 +20,7 @@ keywords = ["ethereum", "web3", "etherscan", "ethers"] [dependencies] ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false } ethers-solc = { version = "^1.0.0", path = "../ethers-solc", default-features = false, optional = true } -reqwest = { version = "0.11.12", default-features = false, features = ["json"] } +reqwest = { version = "0.11.13", default-features = false, features = ["json"] } serde = { version = "1.0.124", default-features = false, features = ["derive"] } serde_json = { version = "1.0.64", default-features = false } serde-aux = { version = "4.1.0", default-features = false } diff --git a/ethers-middleware/Cargo.toml b/ethers-middleware/Cargo.toml index 7a64a1ed..1b4b3c16 100644 --- a/ethers-middleware/Cargo.toml +++ b/ethers-middleware/Cargo.toml @@ -31,7 +31,7 @@ tracing = { version = "0.1.37", default-features = false } tracing-futures = { version = "0.2.5", default-features = false } # for gas oracles -reqwest = { version = "0.11.12", default-features = false, features = ["json", "rustls-tls"] } +reqwest = { version = "0.11.13", default-features = false, features = ["json", "rustls-tls"] } url = { version = "2.3.1", default-features = false } serde_json = { version = "1.0.64", default-features = false } diff --git a/ethers-providers/Cargo.toml b/ethers-providers/Cargo.toml index 3cd40376..e4d189f2 100644 --- a/ethers-providers/Cargo.toml +++ b/ethers-providers/Cargo.toml @@ -19,7 +19,7 @@ ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = async-trait = { version = "0.1.50", default-features = false } hex = { version = "0.4.3", default-features = false, features = ["std"] } -reqwest = { version = "0.11.12", default-features = false, features = ["json"] } +reqwest = { version = "0.11.13", default-features = false, features = ["json"] } serde = { version = "1.0.124", default-features = false, features = ["derive"] } serde_json = { version = "1.0.64", default-features = false, features = ["raw_value"] } thiserror = { version = "1.0", default-features = false }