ethers-rs/ethers-contract/ethers-contract-abigen/Cargo.toml

28 lines
852 B
TOML
Raw Normal View History

2020-05-26 09:37:31 +00:00
[package]
2020-05-26 18:57:59 +00:00
name = "ethers-contract-abigen"
2021-03-04 07:30:27 +00:00
version = "0.2.2"
2020-05-26 09:37:31 +00:00
authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Code generation for type-safe bindings to Ethereum smart contracts"
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-03-04 07:30:27 +00:00
ethers-core = { version = "0.2.2", path = "../../ethers-core" }
2020-05-26 09:37:31 +00:00
anyhow = "1.0.37"
2020-05-26 09:37:31 +00:00
Inflector = "0.11"
proc-macro2 = "1.0"
quote = "1.0"
syn = "1.0.12"
url = "2.1"
serde_json = "1.0.61"
hex = { version = "0.4.2", default-features = false, features = ["std"] }
2021-05-01 18:26:37 +00:00
reqwest = { version = "0.11.3", features = ["blocking"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]