fix(ethers-providers): make http crate required (#836)

This commit is contained in:
Tarrence van As 2022-01-27 22:51:13 -08:00 committed by GitHub
parent c22dd8eab4
commit 9e6ed0522a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ serde_json = { version = "1.0.64", default-features = false }
thiserror = { version = "1.0.30", default-features = false }
url = { version = "2.2.2", default-features = false }
auto_impl = { version = "0.5.0", default-features = false }
http = { version = "0.2", optional = true }
http = { version = "0.2" }
base64 = "0.13"
# required for implementing stream on the filters
@ -62,7 +62,7 @@ tempfile = "3.3.0"
[features]
default = ["ws", "rustls"]
celo = ["ethers-core/celo"]
ws = ["tokio", "tokio-tungstenite", "http"]
ws = ["tokio", "tokio-tungstenite"]
ipc = ["tokio", "tokio/io-util", "tokio-util", "bytes"]
openssl = ["tokio-tungstenite/native-tls", "reqwest/native-tls"]