Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

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

Merged
merged 1 commit into from
Aug 20, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 22 additions & 8 deletions ethers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down