ethers-rs/crates/ethers/Cargo.toml

33 lines
954 B
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 = [
"contract",
"providers",
"signers",
2020-05-31 16:01:34 +00:00
"core",
2020-05-26 11:00:56 +00:00
]
contract = ["ethers-contract"]
providers = ["ethers-providers"]
signers = ["ethers-signers"]
2020-05-31 16:01:34 +00:00
core = ["ethers-core"]
2020-05-26 09:37:31 +00:00
[dependencies]
2020-05-27 12:03:31 +00:00
ethers-contract = { version = "0.1.0", path = "../ethers-contract", features = ["abigen"], optional = true }
ethers-providers = { version = "0.1.0", path = "../ethers-providers", optional = true }
ethers-signers = { version = "0.1.0", path = "../ethers-signers", optional = true }
2020-05-31 16:01:34 +00:00
ethers-core = { version = "0.1.0", path = "../ethers-core", optional = true }
2020-05-26 09:37:31 +00:00
2020-05-26 11:00:56 +00:00
[dev-dependencies]
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"] }