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

Commit

Permalink
chore: disable all ethers features by default and expose them individ…
Browse files Browse the repository at this point in the history
…ually (#394)
  • Loading branch information
gakonst authored Aug 20, 2021
1 parent e790429 commit 6a0b74e
Showing 1 changed file with 22 additions and 8 deletions.
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

0 comments on commit 6a0b74e

Please sign in to comment.