(cargo-release) version 0.5.1 (#414)
This commit is contained in:
parent
38c7f5030f
commit
9df4d21d3b
|
@ -838,7 +838,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ethers"
|
||||
version = "0.4.1"
|
||||
version = "0.5.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"ethers-contract",
|
||||
|
@ -854,7 +854,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ethers-contract"
|
||||
version = "0.4.7"
|
||||
version = "0.5.1"
|
||||
dependencies = [
|
||||
"ethers-contract-abigen",
|
||||
"ethers-contract-derive",
|
||||
|
@ -873,7 +873,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ethers-contract-abigen"
|
||||
version = "0.4.7"
|
||||
version = "0.5.1"
|
||||
dependencies = [
|
||||
"Inflector",
|
||||
"anyhow",
|
||||
|
@ -894,7 +894,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ethers-contract-derive"
|
||||
version = "0.4.7"
|
||||
version = "0.5.1"
|
||||
dependencies = [
|
||||
"ethers-contract-abigen",
|
||||
"ethers-core",
|
||||
|
@ -907,7 +907,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ethers-core"
|
||||
version = "0.4.8"
|
||||
version = "0.5.1"
|
||||
dependencies = [
|
||||
"arrayvec 0.7.1",
|
||||
"bincode",
|
||||
|
@ -934,7 +934,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ethers-middleware"
|
||||
version = "0.4.8"
|
||||
version = "0.5.1"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"ethers-contract",
|
||||
|
@ -958,7 +958,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ethers-providers"
|
||||
version = "0.4.6"
|
||||
version = "0.5.1"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"auto_impl",
|
||||
|
@ -991,7 +991,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ethers-signers"
|
||||
version = "0.4.6"
|
||||
version = "0.5.1"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"coins-bip32",
|
||||
|
|
18
Cargo.toml
18
Cargo.toml
|
@ -1,10 +1,10 @@
|
|||
[package]
|
||||
name = "ethers"
|
||||
version = "0.4.1"
|
||||
version = "0.5.1"
|
||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2018"
|
||||
readme = "../README.md"
|
||||
readme = "README.md"
|
||||
documentation = "https://docs.rs/ethers"
|
||||
repository = "https://github.com/gakonst/ethers-rs"
|
||||
homepage = "https://docs.rs/ethers"
|
||||
|
@ -71,15 +71,15 @@ abigen = ["ethers-contract/abigen"]
|
|||
|
||||
|
||||
[dependencies]
|
||||
ethers-contract = { version = "0.4.7", default-features = false, path = "./ethers-contract" }
|
||||
ethers-core = { version = "0.4.8", default-features = false, path = "./ethers-core", features = ["setup"] }
|
||||
ethers-providers = { version = "0.4.6", default-features = false, path = "./ethers-providers" }
|
||||
ethers-signers = { version = "0.4.6", default-features = false, path = "./ethers-signers" }
|
||||
ethers-middleware = { version = "0.4.8", default-features = false, path = "./ethers-middleware" }
|
||||
ethers-contract = { version = "^0.5.0", default-features = false, path = "./ethers-contract" }
|
||||
ethers-core = { version = "^0.5.0", default-features = false, path = "./ethers-core", features = ["setup"] }
|
||||
ethers-providers = { version = "^0.5.0", default-features = false, path = "./ethers-providers" }
|
||||
ethers-signers = { version = "^0.5.0", default-features = false, path = "./ethers-signers" }
|
||||
ethers-middleware = { version = "^0.5.0", default-features = false, path = "./ethers-middleware" }
|
||||
|
||||
[dev-dependencies]
|
||||
ethers-contract = { version = "0.4.7", default-features = false, path = "./ethers-contract", features = ["abigen"] }
|
||||
ethers-providers = { version = "0.4.6", default-features = false, path = "./ethers-providers", features = ["ws", "ipc"] }
|
||||
ethers-contract = { version = "^0.5.0", default-features = false, path = "./ethers-contract", features = ["abigen"] }
|
||||
ethers-providers = { version = "^0.5.0", default-features = false, path = "./ethers-providers", features = ["ws", "ipc"] }
|
||||
|
||||
anyhow = "1.0.39"
|
||||
rand = "0.8.4"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "ethers-contract"
|
||||
license = "MIT OR Apache-2.0"
|
||||
version = "0.4.7"
|
||||
version = "0.5.1"
|
||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||
edition = "2018"
|
||||
description = "Smart contract bindings for the ethers-rs crate"
|
||||
|
@ -10,10 +10,10 @@ repository = "https://github.com/gakonst/ethers-rs"
|
|||
keywords = ["ethereum", "web3", "celo", "ethers"]
|
||||
|
||||
[dependencies]
|
||||
ethers-providers = { version = "0.4.6", path = "../ethers-providers", default-features = false }
|
||||
ethers-core = { version = "0.4.6", path = "../ethers-core", default-features = false }
|
||||
ethers-contract-abigen = { version = "0.4.7", path = "ethers-contract-abigen", optional = true }
|
||||
ethers-contract-derive = { version = "0.4.7", path = "ethers-contract-derive", optional = true }
|
||||
ethers-providers = { version = "^0.5.0", path = "../ethers-providers", default-features = false }
|
||||
ethers-core = { version = "^0.5.0", path = "../ethers-core", default-features = false }
|
||||
ethers-contract-abigen = { version = "^0.5.0", path = "ethers-contract-abigen", optional = true }
|
||||
ethers-contract-derive = { version = "^0.5.0", path = "ethers-contract-derive", optional = true }
|
||||
|
||||
serde = { version = "1.0.124", default-features = false }
|
||||
serde_json = { version = "1.0.64", default-features = false }
|
||||
|
@ -24,10 +24,10 @@ futures-util = { version = "0.3.16" }
|
|||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||
|
||||
[dev-dependencies]
|
||||
ethers-providers = { version = "0.4.6", path = "../ethers-providers", default-features = false, features = ["ws"] }
|
||||
ethers-signers = { version = "0.4.6", path = "../ethers-signers" }
|
||||
ethers-contract-abigen = { version = "0.4.7", path = "ethers-contract-abigen" }
|
||||
ethers-contract-derive = { version = "0.4.7", path = "ethers-contract-derive" }
|
||||
ethers-providers = { version = "^0.5.0", path = "../ethers-providers", default-features = false, features = ["ws"] }
|
||||
ethers-signers = { version = "^0.5.0", path = "../ethers-signers" }
|
||||
ethers-contract-abigen = { version = "^0.5.0", path = "ethers-contract-abigen" }
|
||||
ethers-contract-derive = { version = "^0.5.0", path = "ethers-contract-derive" }
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
||||
tokio = { version = "1.5", default-features = false, features = ["macros"] }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ethers-contract-abigen"
|
||||
version = "0.4.7"
|
||||
version = "0.5.1"
|
||||
authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
@ -10,7 +10,7 @@ repository = "https://github.com/gakonst/ethers-rs"
|
|||
keywords = ["ethereum", "web3", "celo", "ethers"]
|
||||
|
||||
[dependencies]
|
||||
ethers-core = { version = "0.4.6", path = "../../ethers-core" }
|
||||
ethers-core = { version = "^0.5.0", path = "../../ethers-core" }
|
||||
|
||||
anyhow = "1.0.37"
|
||||
Inflector = "0.11"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ethers-contract-derive"
|
||||
version = "0.4.7"
|
||||
version = "0.5.1"
|
||||
authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"]
|
||||
edition = "2018"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
@ -13,8 +13,8 @@ keywords = ["ethereum", "web3", "celo", "ethers"]
|
|||
proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
ethers-core = { version = "0.4.6", path = "../../ethers-core" }
|
||||
ethers-contract-abigen = { version = "0.4.7", path = "../ethers-contract-abigen" }
|
||||
ethers-core = { version = "^0.5.0", path = "../../ethers-core" }
|
||||
ethers-contract-abigen = { version = "^0.5.0", path = "../ethers-contract-abigen" }
|
||||
|
||||
serde_json = "1.0.53"
|
||||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "ethers-core"
|
||||
license = "MIT OR Apache-2.0"
|
||||
version = "0.4.8"
|
||||
version = "0.5.1"
|
||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||
edition = "2018"
|
||||
description = "Core structures for the ethers-rs crate"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "ethers-middleware"
|
||||
license = "MIT OR Apache-2.0"
|
||||
version = "0.4.8"
|
||||
version = "0.5.1"
|
||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||
edition = "2018"
|
||||
description = "Middleware implementations for the ethers-rs crate"
|
||||
|
@ -14,10 +14,10 @@ all-features = true
|
|||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[dependencies]
|
||||
ethers-contract = { version = "0.4.7", path = "../ethers-contract", default-features = false, features = ["abigen"] }
|
||||
ethers-core = { version = "0.4.6", path = "../ethers-core", default-features = false }
|
||||
ethers-providers = { version = "0.4.6", path = "../ethers-providers", default-features = false }
|
||||
ethers-signers = { version = "0.4.6", path = "../ethers-signers", default-features = false }
|
||||
ethers-contract = { version = "^0.5.0", path = "../ethers-contract", default-features = false, features = ["abigen"] }
|
||||
ethers-core = { version = "^0.5.0", path = "../ethers-core", default-features = false }
|
||||
ethers-providers = { version = "^0.5.0", path = "../ethers-providers", default-features = false }
|
||||
ethers-signers = { version = "^0.5.0", path = "../ethers-signers", default-features = false }
|
||||
|
||||
async-trait = { version = "0.1.50", default-features = false }
|
||||
serde = { version = "1.0.124", default-features = false, features = ["derive"] }
|
||||
|
@ -40,7 +40,7 @@ tokio = { version = "1.5" }
|
|||
[dev-dependencies]
|
||||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||
rand = { version = "0.8.4", default-features = false }
|
||||
ethers-providers = { version = "0.4.6", path = "../ethers-providers", default-features = false, features = ["ws", "rustls"] }
|
||||
ethers-providers = { version = "^0.5.0", path = "../ethers-providers", default-features = false, features = ["ws", "rustls"] }
|
||||
|
||||
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
||||
tokio = { version = "1.5", default-features = false, features = ["rt", "macros", "time"] }
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "ethers-providers"
|
||||
license = "MIT OR Apache-2.0"
|
||||
version = "0.4.6"
|
||||
version = "0.5.1"
|
||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||
edition = "2018"
|
||||
description = "Provider implementations for the ethers-rs crate"
|
||||
|
@ -14,7 +14,7 @@ all-features = true
|
|||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[dependencies]
|
||||
ethers-core = { version = "0.4.6", path = "../ethers-core", default-features = false }
|
||||
ethers-core = { version = "^0.5.0", path = "../ethers-core", default-features = false }
|
||||
|
||||
async-trait = { version = "0.1.50", default-features = false }
|
||||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "ethers-signers"
|
||||
license = "MIT OR Apache-2.0"
|
||||
version = "0.4.6"
|
||||
version = "0.5.1"
|
||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||
edition = "2018"
|
||||
description = "Signer implementations for the ethers-rs crate"
|
||||
|
@ -14,7 +14,7 @@ all-features = true
|
|||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[dependencies]
|
||||
ethers-core = { version = "0.4.0", path = "../ethers-core" }
|
||||
ethers-core = { version = "^0.5.0", path = "../ethers-core" }
|
||||
thiserror = { version = "1.0.24", default-features = false }
|
||||
coins-bip32 = "0.3.0"
|
||||
coins-bip39 = "0.3.0"
|
||||
|
|
Loading…
Reference in New Issue