38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
[package]
|
|
name = "ethers"
|
|
version = "0.1.0"
|
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = ["full"]
|
|
full = [
|
|
"contract",
|
|
"providers",
|
|
"signers",
|
|
"types",
|
|
"utils",
|
|
]
|
|
|
|
contract = ["ethers-contract"]
|
|
providers = ["ethers-providers"]
|
|
signers = ["ethers-signers"]
|
|
types = ["ethers-types"]
|
|
utils = ["ethers-utils"]
|
|
|
|
[dependencies]
|
|
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 }
|
|
ethers-types = { version = "0.1.0", path = "../ethers-types", optional = true }
|
|
ethers-utils = { version = "0.1.0", path = "../ethers-utils", optional = true }
|
|
|
|
[dev-dependencies]
|
|
ethers-contract = { version = "0.1.0", path = "../ethers-contract", features = ["abigen"] }
|
|
|
|
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"] }
|