2020-05-26 09:37:31 +00:00
|
|
|
[package]
|
2020-05-26 18:57:59 +00:00
|
|
|
name = "ethers-contract-abigen"
|
2022-11-27 20:27:56 +00:00
|
|
|
version = "1.0.2"
|
2022-12-30 12:48:29 +00:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.64"
|
2022-09-28 18:58:26 +00:00
|
|
|
authors = [
|
|
|
|
"Nicholas Rodrigues Lordello <nlordell@gmail.com>",
|
|
|
|
"Georgios Konstantopoulos <me@gakonst.com>",
|
|
|
|
]
|
2020-05-26 09:37:31 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
description = "Code generation for type-safe bindings to Ethereum smart contracts"
|
2020-06-20 13:55:07 +00:00
|
|
|
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]
|
2022-10-25 18:02:59 +00:00
|
|
|
ethers-core = { version = "^1.0.0", path = "../../ethers-core", features = ["macros"] }
|
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"
|
2020-12-31 17:19:14 +00:00
|
|
|
serde_json = "1.0.61"
|
2021-08-16 07:29:44 +00:00
|
|
|
serde = { version = "1.0.124", features = ["derive"] }
|
2020-12-31 17:19:14 +00:00
|
|
|
hex = { version = "0.4.2", default-features = false, features = ["std"] }
|
2022-09-28 18:58:26 +00:00
|
|
|
reqwest = { version = "0.11.3", default-features = false, features = ["blocking"], optional = true }
|
2021-08-23 09:56:44 +00:00
|
|
|
cfg-if = "1.0.0"
|
2021-12-19 20:06:38 +00:00
|
|
|
dunce = "1.0.2"
|
2021-12-25 04:51:44 +00:00
|
|
|
walkdir = "2.3.2"
|
2022-03-17 12:10:15 +00:00
|
|
|
eyre = "0.6"
|
2022-08-04 15:22:00 +00:00
|
|
|
regex = "1.6.0"
|
2022-11-15 21:00:12 +00:00
|
|
|
toml = "0.5.9"
|
2021-08-23 09:56:44 +00:00
|
|
|
|
2021-08-23 22:28:05 +00:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
2021-08-23 09:56:44 +00:00
|
|
|
# NOTE: this enables wasm compatibility for getrandom indirectly
|
|
|
|
getrandom = { version = "0.2", features = ["js"] }
|
2020-06-20 13:55:07 +00:00
|
|
|
|
2022-10-25 18:12:50 +00:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2021-12-19 14:56:54 +00:00
|
|
|
[features]
|
|
|
|
default = ["reqwest", "rustls"]
|
|
|
|
openssl = ["reqwest/native-tls"]
|
|
|
|
rustls = ["reqwest/rustls-tls"]
|
2022-10-25 18:12:50 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tempfile = "3.2.0"
|
|
|
|
ethers-solc = { version = "^1.0.0", path = "../../ethers-solc", default-features = false, features = [
|
|
|
|
"project-util",
|
|
|
|
"svm-solc",
|
|
|
|
] }
|