2020-05-26 09:37:31 +00:00
|
|
|
[package]
|
|
|
|
name = "ethers"
|
2021-07-07 17:18:14 +00:00
|
|
|
version = "0.4.0"
|
2020-05-26 09:37:31 +00:00
|
|
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
2020-06-18 05:20:20 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-05-26 09:37:31 +00:00
|
|
|
edition = "2018"
|
2020-06-20 13:55:07 +00:00
|
|
|
readme = "../README.md"
|
2020-05-31 16:38:41 +00:00
|
|
|
documentation = "https://docs.rs/ethers"
|
|
|
|
repository = "https://github.com/gakonst/ethers-rs"
|
|
|
|
homepage = "https://docs.rs/ethers"
|
|
|
|
description = """
|
|
|
|
Complete Ethereum library and wallet implementation in Rust.
|
|
|
|
"""
|
2020-05-26 09:37:31 +00:00
|
|
|
|
2020-06-04 18:44:02 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[package.metadata.playground]
|
|
|
|
features = ["full"]
|
|
|
|
|
2020-05-26 11:00:56 +00:00
|
|
|
[features]
|
2020-06-17 09:22:01 +00:00
|
|
|
celo = [
|
|
|
|
"ethers-core/celo",
|
|
|
|
"ethers-providers/celo",
|
|
|
|
"ethers-signers/celo",
|
|
|
|
"ethers-contract/celo",
|
2020-09-24 21:33:09 +00:00
|
|
|
"ethers-middleware/celo",
|
2020-06-17 09:22:01 +00:00
|
|
|
]
|
|
|
|
|
2020-09-20 18:27:00 +00:00
|
|
|
ledger = ["ethers-signers/ledger"]
|
2020-10-02 08:41:16 +00:00
|
|
|
yubi = ["ethers-signers/yubi"]
|
2020-12-31 17:19:14 +00:00
|
|
|
ws = ["ethers-providers/ws"]
|
|
|
|
abigen = ["ethers-contract/abigen"]
|
2020-05-26 09:37:31 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-07-07 17:18:14 +00:00
|
|
|
ethers-contract = { version = "0.4.0", path = "../ethers-contract" }
|
|
|
|
ethers-core = { version = "0.4.0", path = "../ethers-core", features = ["setup"] }
|
|
|
|
ethers-providers = { version = "0.4.0", path = "../ethers-providers" }
|
|
|
|
ethers-signers = { version = "0.4.0", path = "../ethers-signers" }
|
|
|
|
ethers-middleware = { version = "0.4.0", path = "../ethers-middleware" }
|
2020-05-26 09:37:31 +00:00
|
|
|
|
2020-05-26 11:00:56 +00:00
|
|
|
[dev-dependencies]
|
2021-07-07 17:18:14 +00:00
|
|
|
ethers-contract = { version = "0.4.0", path = "../ethers-contract", features = ["abigen"] }
|
2020-06-17 06:38:04 +00:00
|
|
|
|
2021-03-22 18:38:18 +00:00
|
|
|
anyhow = "1.0.39"
|
2021-07-07 17:18:14 +00:00
|
|
|
rand = "0.8.4"
|
2021-03-08 07:48:24 +00:00
|
|
|
serde = { version = "1.0.124", features = ["derive"] }
|
2021-03-02 12:53:33 +00:00
|
|
|
serde_json = "1.0.64"
|
2021-04-16 07:09:43 +00:00
|
|
|
tokio = { version = "1.5", features = ["macros", "rt-multi-thread"] }
|