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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
943 B
TOML
Raw Normal View History

2020-05-26 18:57:59 +00:00
[package]
name = "ethers-contract-derive"
2022-11-27 20:27:56 +00:00
version = "1.0.2"
edition = "2021"
rust-version = "1.64"
2020-05-26 18:57:59 +00:00
authors = [
"Nicholas Rodrigues Lordello <nlordell@gmail.com>",
"Georgios Konstantopoulos <me@gakonst.com>",
]
license = "MIT OR Apache-2.0"
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-10-25 18:02:59 +00:00
ethers-core = { version = "^1.0.0", path = "../../ethers-core" }
ethers-contract-abigen = { version = "^1.0.0", path = "../ethers-contract-abigen", default-features = false }
2020-05-26 18:57:59 +00:00
proc-macro2 = "1.0"
quote = "1.0"
syn = "1.0.12"
serde_json = "1.0.53"
hex = { version = "0.4.3", default-features = false, features = ["std"] }
eyre = "0.6"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]