(cargo-release) version 0.13.0
This commit is contained in:
parent
3017e09146
commit
ce275f1838
|
@ -1226,7 +1226,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers-contract-derive"
|
name = "ethers-contract-derive"
|
||||||
version = "0.6.3"
|
version = "0.13.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ethers-contract-abigen",
|
"ethers-contract-abigen",
|
||||||
"ethers-core",
|
"ethers-core",
|
||||||
|
|
|
@ -13,7 +13,7 @@ keywords = ["ethereum", "web3", "celo", "ethers"]
|
||||||
ethers-providers = { version = "^0.6.0", path = "../ethers-providers", default-features = false }
|
ethers-providers = { version = "^0.6.0", path = "../ethers-providers", default-features = false }
|
||||||
ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false }
|
ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false }
|
||||||
ethers-contract-abigen = { version = "^0.13.0", path = "ethers-contract-abigen", default-features = false, optional = true }
|
ethers-contract-abigen = { version = "^0.13.0", path = "ethers-contract-abigen", default-features = false, optional = true }
|
||||||
ethers-contract-derive = { version = "^0.6.0", path = "ethers-contract-derive", optional = true }
|
ethers-contract-derive = { version = "^0.13.0", path = "ethers-contract-derive", optional = true }
|
||||||
ethers-derive-eip712 = { version = "^0.2.0", path = "../ethers-core/ethers-derive-eip712", optional = true }
|
ethers-derive-eip712 = { version = "^0.2.0", path = "../ethers-core/ethers-derive-eip712", optional = true }
|
||||||
|
|
||||||
serde = { version = "1.0.124", default-features = false }
|
serde = { version = "1.0.124", default-features = false }
|
||||||
|
@ -29,7 +29,7 @@ ethers-middleware = { version = "^0.6.0", path = "../ethers-middleware" }
|
||||||
ethers-providers = { version = "^0.6.0", path = "../ethers-providers", default-features = false, features = ["ws"] }
|
ethers-providers = { version = "^0.6.0", path = "../ethers-providers", default-features = false, features = ["ws"] }
|
||||||
ethers-signers = { version = "^0.6.0", path = "../ethers-signers" }
|
ethers-signers = { version = "^0.6.0", path = "../ethers-signers" }
|
||||||
ethers-contract-abigen = { version = "^0.13.0", path = "ethers-contract-abigen" }
|
ethers-contract-abigen = { version = "^0.13.0", path = "ethers-contract-abigen" }
|
||||||
ethers-contract-derive = { version = "^0.6.0", path = "ethers-contract-derive" }
|
ethers-contract-derive = { version = "^0.13.0", path = "ethers-contract-derive" }
|
||||||
ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false, features = ["eip712"]}
|
ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false, features = ["eip712"]}
|
||||||
ethers-derive-eip712 = { version = "^0.2.0", path = "../ethers-core/ethers-derive-eip712"}
|
ethers-derive-eip712 = { version = "^0.2.0", path = "../ethers-core/ethers-derive-eip712"}
|
||||||
ethers-solc = { version = "^0.3.0", path = "../ethers-solc", default-features = false }
|
ethers-solc = { version = "^0.3.0", path = "../ethers-solc", default-features = false }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-contract-derive"
|
name = "ethers-contract-derive"
|
||||||
version = "0.6.3"
|
version = "0.13.0"
|
||||||
authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
|
@ -17,5 +17,5 @@ serde_json = "1.0.68"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ethers-contract = { version = "^0.6.0", path = "../../ethers-contract", features = ["abigen"]}
|
ethers-contract = { version = "^0.6.0", path = "../../ethers-contract", features = ["abigen"]}
|
||||||
ethers-contract-derive = { version = "^0.6.0", path = "../../ethers-contract/ethers-contract-derive" }
|
ethers-contract-derive = { version = "^0.13.0", path = "../../ethers-contract/ethers-contract-derive" }
|
||||||
ethers-signers = { version = "^0.6.0", path = "../../ethers-signers" }
|
ethers-signers = { version = "^0.6.0", path = "../../ethers-signers" }
|
||||||
|
|
Loading…
Reference in New Issue