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

31 lines
993 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"
version = "0.4.7"
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]
ethers-core = { version = "0.4.6", 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"
serde = { version = "1.0.124", features = ["derive"] }
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"] }
once_cell = { version = "1.8.0", default-features = false }
cargo_metadata = "0.14.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]