2021-10-04 19:05:11 +00:00
|
|
|
[package]
|
|
|
|
name = "ethers-etherscan"
|
2022-11-27 20:27:57 +00:00
|
|
|
version = "1.0.2"
|
2022-12-06 06:04:48 +00:00
|
|
|
rust-version = "1.64"
|
2022-09-18 15:45:45 +00:00
|
|
|
authors = [
|
|
|
|
"Matthias Seitz <matthias.seitz@outlook.de>",
|
2022-09-28 18:58:26 +00:00
|
|
|
"Georgios Konstantopoulos <me@gakonst.com>",
|
2022-09-18 15:45:45 +00:00
|
|
|
]
|
2021-10-04 19:05:11 +00:00
|
|
|
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 = """
|
2021-10-17 10:01:20 +00:00
|
|
|
Rust API bindings for the etherscan.io web API
|
2021-10-04 19:05:11 +00:00
|
|
|
"""
|
|
|
|
keywords = ["ethereum", "web3", "etherscan", "ethers"]
|
|
|
|
|
|
|
|
[dependencies]
|
2022-10-25 18:02:59 +00:00
|
|
|
ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false }
|
2022-10-25 18:03:00 +00:00
|
|
|
ethers-solc = { version = "^1.0.0", path = "../ethers-solc", default-features = false, optional = true }
|
2022-11-17 04:40:09 +00:00
|
|
|
reqwest = { version = "0.11.13", default-features = false, features = ["json"] }
|
2021-10-04 19:05:11 +00:00
|
|
|
serde = { version = "1.0.124", default-features = false, features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0.64", default-features = false }
|
2022-11-22 21:16:48 +00:00
|
|
|
serde-aux = { version = "4.1.2", default-features = false }
|
2022-05-23 18:41:30 +00:00
|
|
|
thiserror = "1.0"
|
2022-10-07 17:03:01 +00:00
|
|
|
tracing = "0.1.37"
|
2022-09-16 21:46:01 +00:00
|
|
|
semver = "1.0.14"
|
2021-10-04 19:05:11 +00:00
|
|
|
|
2022-06-22 17:12:11 +00:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
# NOTE: this enables wasm compatibility for getrandom indirectly
|
|
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
|
|
|
2022-10-25 18:12:50 +00:00
|
|
|
[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 = "^1.0.0", path = "../ethers-solc", default-features = false }
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2021-12-19 14:56:54 +00:00
|
|
|
[features]
|
|
|
|
default = ["rustls"]
|
|
|
|
openssl = ["reqwest/native-tls"]
|
|
|
|
rustls = ["reqwest/rustls-tls"]
|