ethers-rs/crates/ethers/Cargo.toml

41 lines
1.1 KiB
TOML
Raw Normal View History

2020-05-26 09:37:31 +00:00
[package]
name = "ethers"
version = "0.1.0"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
2020-05-26 11:00:56 +00:00
[features]
default = ["full"]
full = [
"abi",
"contract",
"providers",
"signers",
"types",
"utils",
]
abi = ["ethers-abi"]
contract = ["ethers-contract"]
providers = ["ethers-providers"]
signers = ["ethers-signers"]
types = ["ethers-types"]
utils = ["ethers-utils"]
2020-05-26 09:37:31 +00:00
[dependencies]
2020-05-26 11:00:56 +00:00
ethers-abi = { path = "../ethers-abi", optional = true }
2020-05-26 18:57:59 +00:00
ethers-contract = { path = "../ethers-contract", features = ["abigen"], optional = true }
2020-05-26 11:00:56 +00:00
ethers-providers = { path = "../ethers-providers", optional = true }
ethers-signers = { path = "../ethers-signers", optional = true }
ethers-types = { path = "../ethers-types", optional = true }
ethers-utils = { path = "../ethers-utils", optional = true }
2020-05-26 09:37:31 +00:00
2020-05-26 11:00:56 +00:00
[dev-dependencies]
2020-05-26 18:57:59 +00:00
ethers-contract = { path = "../ethers-contract", features = ["abigen"] }
2020-05-26 11:00:56 +00:00
anyhow = "1.0.31"
tokio = { version = "0.2.21", features = ["macros"] }
serde_json = "1.0.53"
rand = "0.5.1" # note: when passing RNGs, they must be with version 0.5.1
serde = { version = "1.0.110", features = ["derive"] }