2020-05-26 18:57:59 +00:00
|
|
|
[package]
|
|
|
|
name = "ethers-contract-derive"
|
2022-07-28 17:58:49 +00:00
|
|
|
version = "0.17.0"
|
2020-05-26 18:57:59 +00:00
|
|
|
authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "MIT OR Apache-2.0"
|
2020-06-20 13:55:07 +00:00
|
|
|
description = "Proc macro for type-safe bindings generation to Ethereum and Celo smart contracts"
|
|
|
|
homepage = "https://docs.rs/ethers"
|
|
|
|
repository = "https://github.com/gakonst/ethers-rs"
|
|
|
|
keywords = ["ethereum", "web3", "celo", "ethers"]
|
2020-05-26 18:57:59 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-07-28 17:58:49 +00:00
|
|
|
ethers-core = { version = "^0.17.0", path = "../../ethers-core" }
|
2022-07-28 17:58:49 +00:00
|
|
|
ethers-contract-abigen = { version = "^0.17.0", path = "../ethers-contract-abigen" }
|
2020-05-26 18:57:59 +00:00
|
|
|
|
|
|
|
serde_json = "1.0.53"
|
2021-03-15 11:59:52 +00:00
|
|
|
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
2020-05-26 18:57:59 +00:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
|
|
|
syn = "1.0.12"
|
2022-07-29 00:36:22 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|