Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
fix(ethers-providers): make http crate required
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrencev committed Jan 28, 2022
1 parent c22dd8e commit b7baaf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ethers-providers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"]
Expand Down

0 comments on commit b7baaf6

Please sign in to comment.