2021-10-04 19:05:11 +00:00
|
|
|
[package]
|
|
|
|
name = "ethers-etherscan"
|
2022-05-13 20:10:05 +00:00
|
|
|
version = "0.2.2"
|
2021-10-04 19:05:11 +00:00
|
|
|
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 = """
|
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]
|
2021-11-23 19:23:12 +00:00
|
|
|
ethers-core = { version = "^0.6.0", path = "../ethers-core", default-features = false }
|
2022-02-17 15:31:35 +00:00
|
|
|
ethers-solc = { version = "^0.3.0", path = "../ethers-solc", default-features = false }
|
2022-03-15 09:16:53 +00:00
|
|
|
reqwest = { version = "0.11.10", 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 }
|
2021-11-27 07:54:20 +00:00
|
|
|
serde-aux = { version = "3.0.1", default-features = false }
|
2022-05-02 18:54:22 +00:00
|
|
|
thiserror = "1.0.31"
|
2022-04-23 08:42:12 +00:00
|
|
|
tracing = "0.1.34"
|
2022-05-09 17:44:32 +00:00
|
|
|
semver = "1.0.9"
|
2021-10-04 19:05:11 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-06 15:21:19 +00:00
|
|
|
tempfile = "3.3.0"
|
2021-11-27 07:54:20 +00:00
|
|
|
tokio = { version = "1.5", features = ["macros", "rt-multi-thread", "time"] }
|
2022-02-21 17:01:30 +00:00
|
|
|
serial_test = "0.6.0"
|
2022-04-23 08:42:12 +00:00
|
|
|
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
|
2021-10-04 19:05:11 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
2021-10-17 10:01:20 +00:00
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2021-12-19 14:56:54 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["rustls"]
|
|
|
|
openssl = ["reqwest/native-tls"]
|
|
|
|
rustls = ["reqwest/rustls-tls"]
|