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

Commit

Permalink
fix: ethers-contract-derive: Disable default features of ethers-contr…
Browse files Browse the repository at this point in the history
…act-abigen

Without this fix, `rustls` was enabled by default even if user had `openssl` feature flag
  • Loading branch information
oblique committed Dec 21, 2022
1 parent ac535a4 commit 58bba8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethers-contract/ethers-contract-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ proc-macro = true

[dependencies]
ethers-core = { version = "^1.0.0", path = "../../ethers-core" }
ethers-contract-abigen = { version = "^1.0.0", path = "../ethers-contract-abigen" }
ethers-contract-abigen = { version = "^1.0.0", path = "../ethers-contract-abigen", default-features = false }

serde_json = "1.0.53"
hex = { version = "0.4.3", default-features = false, features = ["std"] }
Expand Down

0 comments on commit 58bba8e

Please sign in to comment.