2020-05-26 09:37:31 +00:00
|
|
|
[package]
|
|
|
|
name = "ethers-contract"
|
2020-06-18 05:20:20 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-01-13 18:10:50 +00:00
|
|
|
version = "0.2.0"
|
2020-05-26 09:37:31 +00:00
|
|
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
|
|
|
edition = "2018"
|
2020-06-20 13:55:07 +00:00
|
|
|
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"]
|
2020-05-26 09:37:31 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-01-13 18:10:50 +00:00
|
|
|
ethers-providers = { version = "0.2", path = "../ethers-providers", default-features = false }
|
|
|
|
ethers-core = { version = "0.2", path = "../ethers-core", default-features = false }
|
2020-12-25 00:17:21 +00:00
|
|
|
|
2021-01-13 18:10:50 +00:00
|
|
|
ethers-contract-abigen = { version = "0.2", path = "ethers-contract-abigen", optional = true }
|
|
|
|
ethers-contract-derive = { version = "0.2", path = "ethers-contract-derive", optional = true }
|
2020-05-26 14:43:51 +00:00
|
|
|
|
2021-01-26 15:41:58 +00:00
|
|
|
serde = { version = "1.0.123", default-features = false }
|
2021-03-02 12:53:33 +00:00
|
|
|
serde_json = { version = "1.0.64", default-features = false }
|
2021-02-22 08:04:18 +00:00
|
|
|
thiserror = { version = "1.0.24", default-features = false }
|
2021-03-03 08:36:06 +00:00
|
|
|
once_cell = { version = "1.7.2", default-features = false }
|
2021-02-08 09:56:43 +00:00
|
|
|
pin-project = {version = "1.0.5", default-features = false }
|
2021-02-25 07:17:09 +00:00
|
|
|
futures-util = { version = "0.3.13", default-features = false }
|
2020-12-31 17:19:14 +00:00
|
|
|
hex = { version = "0.4.2", default-features = false, features = ["std"] }
|
2020-05-26 14:43:51 +00:00
|
|
|
|
2020-06-01 23:15:33 +00:00
|
|
|
[dev-dependencies]
|
2021-01-13 18:10:50 +00:00
|
|
|
ethers = { version = "0.2", path = "../ethers" }
|
|
|
|
ethers-providers = { version = "0.2", path = "../ethers-providers", default-features = false, features = ["ws"] }
|
2021-02-08 09:56:27 +00:00
|
|
|
tokio = { version = "1.2", default-features = false, features = ["macros"] }
|
2020-06-01 23:15:33 +00:00
|
|
|
|
2021-01-13 18:10:50 +00:00
|
|
|
ethers-signers = { version = "0.2", path = "../ethers-signers" }
|
|
|
|
ethers-middleware = { version = "0.2", path = "../ethers-middleware" }
|
2020-09-24 21:33:09 +00:00
|
|
|
|
2020-05-26 14:43:51 +00:00
|
|
|
[features]
|
2020-05-26 18:57:59 +00:00
|
|
|
abigen = ["ethers-contract-abigen", "ethers-contract-derive"]
|
2020-09-24 21:33:09 +00:00
|
|
|
celo = ["ethers-core/celo", "ethers-core/celo", "ethers-providers/celo"]
|
2020-06-20 13:55:07 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|