(cargo-release) version 1.0.0
This commit is contained in:
parent
266a40e2bc
commit
16a207b0bd
|
@ -1259,7 +1259,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers-contract-abigen"
|
name = "ethers-contract-abigen"
|
||||||
version = "0.17.0"
|
version = "1.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"Inflector",
|
"Inflector",
|
||||||
"cfg-if 1.0.0",
|
"cfg-if 1.0.0",
|
||||||
|
|
|
@ -13,7 +13,7 @@ keywords = ["ethereum", "web3", "celo", "ethers"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false }
|
ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false }
|
||||||
ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false }
|
ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false }
|
||||||
ethers-contract-abigen = { version = "^0.17.0", path = "ethers-contract-abigen", default-features = false, optional = true }
|
ethers-contract-abigen = { version = "^1.0.0", path = "ethers-contract-abigen", default-features = false, optional = true }
|
||||||
ethers-contract-derive = { version = "^0.17.0", path = "ethers-contract-derive", optional = true }
|
ethers-contract-derive = { version = "^0.17.0", path = "ethers-contract-derive", optional = true }
|
||||||
ethers-derive-eip712 = { version = "^0.17.0", path = "../ethers-core/ethers-derive-eip712", optional = true }
|
ethers-derive-eip712 = { version = "^0.17.0", path = "../ethers-core/ethers-derive-eip712", optional = true }
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-
|
||||||
"ws",
|
"ws",
|
||||||
] }
|
] }
|
||||||
ethers-signers = { version = "^0.17.0", path = "../ethers-signers" }
|
ethers-signers = { version = "^0.17.0", path = "../ethers-signers" }
|
||||||
ethers-contract-abigen = { version = "^0.17.0", path = "ethers-contract-abigen" }
|
ethers-contract-abigen = { version = "^1.0.0", path = "ethers-contract-abigen" }
|
||||||
ethers-contract-derive = { version = "^0.17.0", path = "ethers-contract-derive" }
|
ethers-contract-derive = { version = "^0.17.0", path = "ethers-contract-derive" }
|
||||||
ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false, features = [
|
ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false, features = [
|
||||||
"eip712",
|
"eip712",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-contract-abigen"
|
name = "ethers-contract-abigen"
|
||||||
version = "0.17.0"
|
version = "1.0.0"
|
||||||
authors = [
|
authors = [
|
||||||
"Nicholas Rodrigues Lordello <nlordell@gmail.com>",
|
"Nicholas Rodrigues Lordello <nlordell@gmail.com>",
|
||||||
"Georgios Konstantopoulos <me@gakonst.com>",
|
"Georgios Konstantopoulos <me@gakonst.com>",
|
||||||
|
|
|
@ -17,7 +17,7 @@ proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-core = { version = "^1.0.0", path = "../../ethers-core" }
|
ethers-core = { version = "^1.0.0", path = "../../ethers-core" }
|
||||||
ethers-contract-abigen = { version = "^0.17.0", path = "../ethers-contract-abigen" }
|
ethers-contract-abigen = { version = "^1.0.0", path = "../ethers-contract-abigen" }
|
||||||
|
|
||||||
serde_json = "1.0.53"
|
serde_json = "1.0.53"
|
||||||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||||
|
|
Loading…
Reference in New Issue