[package] name = "ethers-contract" version = "1.0.2" edition = "2018" rust-version = "1.64" authors = ["Georgios Konstantopoulos "] license = "MIT OR Apache-2.0" description = "Smart contract bindings for the ethers-rs crate" homepage = "https://docs.rs/ethers" repository = "https://github.com/gakonst/ethers-rs" keywords = ["ethereum", "web3", "celo", "ethers"] [dependencies] ethers-providers = { version = "^1.0.0", path = "../ethers-providers", default-features = false } ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false } ethers-contract-abigen = { version = "^1.0.0", path = "ethers-contract-abigen", default-features = false, optional = true } ethers-contract-derive = { version = "^1.0.0", path = "ethers-contract-derive", optional = true } ethers-derive-eip712 = { version = "^1.0.0", path = "../ethers-core/ethers-derive-eip712", optional = true } serde = { version = "1.0.124", default-features = false } serde_json = { version = "1.0.64", default-features = false } thiserror = { version = "1.0", default-features = false } once_cell = { version = "1.17.0" } pin-project = { version = "1.0.11", default-features = false } futures-util = { version = "^0.3" } hex = { version = "0.4.3", default-features = false, features = ["std"] } [dev-dependencies] ethers-providers = { version = "^1.0.0", path = "../ethers-providers", default-features = false, features = [ "ws", ] } ethers-signers = { version = "^1.0.0", path = "../ethers-signers" } ethers-contract-abigen = { version = "^1.0.0", path = "ethers-contract-abigen" } ethers-contract-derive = { version = "^1.0.0", path = "ethers-contract-derive" } ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false, features = [ "eip712", ] } ethers-derive-eip712 = { version = "^1.0.0", path = "../ethers-core/ethers-derive-eip712" } ethers-solc = { version = "^1.0.0", path = "../ethers-solc", default-features = false } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tokio = { version = "1.18", default-features = false, features = ["macros"] } [features] default = ["abigen"] eip712 = ["ethers-derive-eip712", "ethers-core/eip712"] abigen = ["ethers-contract-abigen/reqwest", "ethers-contract-derive"] abigen-offline = ["ethers-contract-abigen", "ethers-contract-derive"] celo = ["legacy", "ethers-core/celo", "ethers-core/celo", "ethers-providers/celo"] legacy = [] rustls = ["ethers-contract-abigen/rustls"] openssl = ["ethers-contract-abigen/openssl"] [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]