74 lines
3.0 KiB
TOML
74 lines
3.0 KiB
TOML
[package]
|
|
name = "ethers-providers"
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.6.0"
|
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
|
edition = "2018"
|
|
description = "Provider implementations for the ethers-rs crate"
|
|
homepage = "https://docs.rs/ethers"
|
|
repository = "https://github.com/gakonst/ethers-rs"
|
|
keywords = ["ethereum", "web3", "celo", "ethers"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
ethers-core = { version = "^0.6.0", path = "../ethers-core", default-features = false }
|
|
|
|
async-trait = { version = "0.1.50", default-features = false }
|
|
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
|
reqwest = { version = "0.11.10", 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.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" }
|
|
base64 = "0.13"
|
|
|
|
# required for implementing stream on the filters
|
|
futures-core = { version = "0.3.16", default-features = false }
|
|
futures-util = { version = "^0.3" }
|
|
futures-timer = { version = "3.0.2", default-features = false }
|
|
futures-channel = { version = "0.3.16", default-features = false, optional = true }
|
|
pin-project = { version = "1.0.7", default-features = false }
|
|
|
|
# tracing
|
|
tracing = { version = "0.1.33", default-features = false }
|
|
tracing-futures = { version = "0.2.5", default-features = false, features = ["std-future"] }
|
|
|
|
bytes = { version = "1.1.0", default-features = false, optional = true }
|
|
once_cell = "1.10.0"
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
# tokio
|
|
tokio-util = { version = "0.7.1", default-features = false, features = ["io"], optional = true }
|
|
tokio = { version = "1.5", default-features = false, optional = true }
|
|
tokio-tungstenite = { version = "0.17.1", default-features = false, features = ["connect"], optional = true }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
ws_stream_wasm = "0.7"
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4"
|
|
web-sys = { version = "0.3", features = ["console"] }
|
|
wasm-timer = "0.2"
|
|
# this is currently necessary for `wasm-timer::Delay` to work
|
|
parking_lot = { version = "0.11", features = ["wasm-bindgen"] }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
|
tokio = { version = "1.5", default-features = false, features = ["rt", "macros"] }
|
|
tempfile = "3.3.0"
|
|
|
|
[features]
|
|
default = ["ws", "rustls"]
|
|
celo = ["ethers-core/celo"]
|
|
ws = ["tokio", "tokio-tungstenite", "futures-channel"]
|
|
ipc = ["tokio", "tokio/io-util", "tokio-util", "bytes", "futures-channel"]
|
|
|
|
openssl = ["tokio-tungstenite/native-tls", "reqwest/native-tls"]
|
|
# we use the webpki roots so we can build static binaries w/o any root cert dependencies
|
|
# on the host
|
|
rustls = ["tokio-tungstenite/rustls-tls-webpki-roots", "reqwest/rustls-tls"]
|
|
dev-rpc = []
|