ethers-rs/ethers/Cargo.toml

65 lines
1.8 KiB
TOML
Raw Normal View History

2020-05-26 09:37:31 +00:00
[package]
name = "ethers"
version = "0.1.3"
2020-05-26 09:37:31 +00:00
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
license = "MIT OR Apache-2.0"
2020-05-26 09:37:31 +00:00
edition = "2018"
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]
abigen = ["contract", "ethers-contract/abigen"]
2020-05-26 11:00:56 +00:00
default = ["full"]
full = [
"contract",
"providers",
"signers",
2020-05-31 16:01:34 +00:00
"core",
"middleware",
2020-05-26 11:00:56 +00:00
]
celo = [
"ethers-core/celo",
"ethers-providers/celo",
"ethers-signers/celo",
"ethers-contract/celo",
"ethers-middleware/celo",
]
core = ["ethers-core"]
2020-05-26 11:00:56 +00:00
contract = ["ethers-contract"]
providers = ["ethers-providers"]
middleware = ["ethers-middleware"]
2020-05-26 11:00:56 +00:00
signers = ["ethers-signers"]
2020-09-20 18:27:00 +00:00
ledger = ["ethers-signers/ledger"]
yubi = ["ethers-signers/yubi"]
2020-05-26 09:37:31 +00:00
[dependencies]
ethers-contract = { version = "0.1.3", path = "../ethers-contract", optional = true }
ethers-core = { version = "0.1.3", path = "../ethers-core", optional = true }
ethers-providers = { version = "0.1.3", path = "../ethers-providers", optional = true }
ethers-signers = { version = "0.1.3", path = "../ethers-signers", optional = true }
ethers-middleware = { version = "0.1.3", path = "../ethers-middleware", optional = true }
2020-05-26 09:37:31 +00:00
2020-05-26 11:00:56 +00:00
[dev-dependencies]
ethers-contract = { version = "0.1.3", path = "../ethers-contract", features = ["abigen"] }
ethers-providers = { version = "0.1.3", path = "../ethers-providers" }
2020-05-26 11:00:56 +00:00
anyhow = "1.0.31"
2020-05-31 17:53:07 +00:00
rand = "0.7"
2020-05-26 11:00:56 +00:00
serde = { version = "1.0.110", features = ["derive"] }
serde_json = "1.0.53"
tokio = { version = "0.2.21", features = ["macros"] }