(cargo-release) version 0.13.0
This commit is contained in:
parent
89f86d801e
commit
54b81e6b7f
|
@ -1400,7 +1400,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers-solc"
|
name = "ethers-solc"
|
||||||
version = "0.3.0"
|
version = "0.13.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if 1.0.0",
|
"cfg-if 1.0.0",
|
||||||
"colored",
|
"colored",
|
||||||
|
|
|
@ -88,7 +88,7 @@ ethers-core = { version = "^0.13.0", default-features = false, path = "./ethers-
|
||||||
ethers-providers = { version = "^0.13.0", default-features = false, path = "./ethers-providers" }
|
ethers-providers = { version = "^0.13.0", default-features = false, path = "./ethers-providers" }
|
||||||
ethers-signers = { version = "^0.6.0", default-features = false, path = "./ethers-signers" }
|
ethers-signers = { version = "^0.6.0", default-features = false, path = "./ethers-signers" }
|
||||||
ethers-middleware = { version = "^0.6.0", default-features = false, path = "./ethers-middleware" }
|
ethers-middleware = { version = "^0.6.0", default-features = false, path = "./ethers-middleware" }
|
||||||
ethers-solc = { version = "^0.3.0", default-features = false, path = "./ethers-solc" }
|
ethers-solc = { version = "^0.13.0", default-features = false, path = "./ethers-solc" }
|
||||||
ethers-etherscan = { version = "^0.2.0", default-features = false, path = "./ethers-etherscan" }
|
ethers-etherscan = { version = "^0.2.0", default-features = false, path = "./ethers-etherscan" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
@ -32,7 +32,7 @@ ethers-contract-abigen = { version = "^0.13.0", path = "ethers-contract-abigen"
|
||||||
ethers-contract-derive = { version = "^0.13.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.13.0", path = "../ethers-core/ethers-derive-eip712"}
|
ethers-derive-eip712 = { version = "^0.13.0", path = "../ethers-core/ethers-derive-eip712"}
|
||||||
ethers-solc = { version = "^0.3.0", path = "../ethers-solc", default-features = false }
|
ethers-solc = { version = "^0.13.0", path = "../ethers-solc", default-features = false }
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
||||||
tokio = { version = "1.18", default-features = false, features = ["macros"] }
|
tokio = { version = "1.18", default-features = false, features = ["macros"] }
|
||||||
|
|
|
@ -41,4 +41,4 @@ rustls = ["reqwest/rustls-tls"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3.2.0"
|
tempfile = "3.2.0"
|
||||||
ethers-solc = { version = "^0.3.0", path = "../../ethers-solc", default-features = false, features = ["project-util"] }
|
ethers-solc = { version = "^0.13.0", path = "../../ethers-solc", default-features = false, features = ["project-util"] }
|
||||||
|
|
|
@ -28,7 +28,7 @@ tempfile = "3.3.0"
|
||||||
tokio = { version = "1.18", features = ["macros", "rt-multi-thread", "time"] }
|
tokio = { version = "1.18", features = ["macros", "rt-multi-thread", "time"] }
|
||||||
serial_test = "0.6.0"
|
serial_test = "0.6.0"
|
||||||
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
|
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
|
||||||
ethers-solc = { version = "^0.3.0", path = "../ethers-solc", default-features = false }
|
ethers-solc = { version = "^0.13.0", path = "../ethers-solc", default-features = false }
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
|
|
|
@ -43,7 +43,7 @@ hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||||
rand = { version = "0.8.5", default-features = false }
|
rand = { version = "0.8.5", default-features = false }
|
||||||
ethers-providers = { version = "^0.13.0", path = "../ethers-providers", default-features = false, features = ["ws", "rustls"] }
|
ethers-providers = { version = "^0.13.0", path = "../ethers-providers", default-features = false, features = ["ws", "rustls"] }
|
||||||
once_cell = "1.12.0"
|
once_cell = "1.12.0"
|
||||||
ethers-solc = { version = "^0.3.0", path = "../ethers-solc", default-features = false }
|
ethers-solc = { version = "^0.13.0", path = "../ethers-solc", default-features = false }
|
||||||
serial_test = "0.6.0"
|
serial_test = "0.6.0"
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-solc"
|
name = "ethers-solc"
|
||||||
version = "0.3.0"
|
version = "0.13.0"
|
||||||
authors = ["Matthias Seitz <matthias.seitz@outlook.de>", "Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Matthias Seitz <matthias.seitz@outlook.de>", "Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
Loading…
Reference in New Issue