32 lines
723 B
TOML
32 lines
723 B
TOML
[package]
|
|
name = "ethers-contract-derive"
|
|
authors = [
|
|
"Nicholas Rodrigues Lordello <nlordell@gmail.com>",
|
|
"Georgios Konstantopoulos <me@gakonst.com>",
|
|
]
|
|
readme = "README.md"
|
|
description = "Proc macros for type-safe bindings generation to Ethereum smart contracts"
|
|
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
documentation.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
categories.workspace = true
|
|
keywords.workspace = true
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
ethers-core.workspace = true
|
|
ethers-contract-abigen.workspace = true
|
|
|
|
proc-macro2.workspace = true
|
|
quote.workspace = true
|
|
syn.workspace = true
|
|
|
|
hex.workspace = true
|