ethers-rs/crates/ethers-contract/Cargo.toml

23 lines
833 B
TOML
Raw Normal View History

2020-05-26 09:37:31 +00:00
[package]
name = "ethers-contract"
version = "0.1.0"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
[dependencies]
2020-05-27 12:03:31 +00:00
ethers-contract-abigen = { version = "0.1.0", path = "ethers-contract-abigen", optional = true }
ethers-contract-derive = { version = "0.1.0", path = "ethers-contract-derive", optional = true }
2020-05-27 12:03:31 +00:00
ethers-providers = { version = "0.1.0", path = "../ethers-providers" }
ethers-signers = { version = "0.1.0", path = "../ethers-signers" }
ethers-types = { version = "0.1.0", path = "../ethers-types" }
2020-05-26 10:44:35 +00:00
serde = { version = "1.0.110", default-features = false }
rustc-hex = { version = "2.1.0", default-features = false }
thiserror = { version = "1.0.19", default-features = false }
2020-05-26 18:57:59 +00:00
once_cell = "1.4.0"
[features]
2020-05-26 18:57:59 +00:00
default = ["abigen"]
abigen = ["ethers-contract-abigen", "ethers-contract-derive"]