chore: disable all ethers features by default and expose them individually (#394)

This commit is contained in:
Georgios Konstantopoulos 2021-08-20 20:48:11 +03:00 committed by GitHub
parent e790429355
commit 6a0b74ec17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 8 deletions

View File

@ -29,21 +29,35 @@ celo = [
"legacy"
]
legacy = ["ethers-core/legacy", "ethers-contract/legacy"]
legacy = [
"ethers-core/legacy",
"ethers-contract/legacy"
]
# individual features per sub-crate
## core
setup = ["ethers-core/setup"]
## providers
ws = ["ethers-providers/ws"]
ipc = ["ethers-providers/ipc"]
rustls = ["ethers-providers/rustls"]
openssl = ["ethers-providers/openssl"]
## signers
ledger = ["ethers-signers/ledger"]
yubi = ["ethers-signers/yubi"]
ws = ["ethers-providers/ws"]
## contracts
abigen = ["ethers-contract/abigen"]
[dependencies]
ethers-contract = { version = "0.4.7", path = "../ethers-contract" }
ethers-core = { version = "0.4.8", path = "../ethers-core", features = ["setup"] }
ethers-providers = { version = "0.4.6", path = "../ethers-providers" }
ethers-signers = { version = "0.4.6", path = "../ethers-signers" }
ethers-middleware = { version = "0.4.8", path = "../ethers-middleware" }
ethers-contract = { version = "0.4.7", default-features = false, path = "../ethers-contract" }
ethers-core = { version = "0.4.8", default-features = false, path = "../ethers-core", features = ["setup"] }
ethers-providers = { version = "0.4.6", default-features = false, path = "../ethers-providers" }
ethers-signers = { version = "0.4.6", default-features = false, path = "../ethers-signers" }
ethers-middleware = { version = "0.4.8", default-features = false, path = "../ethers-middleware" }
[dev-dependencies]
ethers-contract = { version = "0.4.7", path = "../ethers-contract", features = ["abigen"] }
ethers-contract = { version = "0.4.7", default-features = false, path = "../ethers-contract", features = ["abigen"] }
anyhow = "1.0.39"
rand = "0.8.4"