45 lines
1.6 KiB
TOML
45 lines
1.6 KiB
TOML
[package]
|
|
name = "ethers-etherscan"
|
|
version = "0.17.0"
|
|
authors = ["Matthias Seitz <matthias.seitz@outlook.de>", "Georgios Konstantopoulos <me@gakonst.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
readme = "../README.md"
|
|
documentation = "https://docs.rs/ethers"
|
|
repository = "https://github.com/gakonst/ethers-rs"
|
|
homepage = "https://docs.rs/ethers"
|
|
description = """
|
|
Rust API bindings for the etherscan.io web API
|
|
"""
|
|
keywords = ["ethereum", "web3", "etherscan", "ethers"]
|
|
|
|
[dependencies]
|
|
ethers-core = { version = "^0.17.0", path = "../ethers-core", default-features = false }
|
|
reqwest = { version = "0.11.11", 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 = "3.1.0", default-features = false }
|
|
thiserror = "1.0"
|
|
tracing = "0.1.36"
|
|
semver = "1.0.13"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
# NOTE: this enables wasm compatibility for getrandom indirectly
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.3.0"
|
|
tokio = { version = "1.18", features = ["macros", "rt-multi-thread", "time"] }
|
|
serial_test = "0.9.0"
|
|
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
|
|
ethers-solc = { version = "^0.17.0", path = "../ethers-solc", default-features = false }
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[features]
|
|
default = ["rustls"]
|
|
openssl = ["reqwest/native-tls"]
|
|
rustls = ["reqwest/rustls-tls"]
|