(cargo-release) version 0.13.0
This commit is contained in:
parent
f3096ce177
commit
fdccd80551
|
@ -1331,7 +1331,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ethers-providers"
|
||||
version = "0.6.2"
|
||||
version = "0.13.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"auto_impl",
|
||||
|
|
|
@ -85,7 +85,7 @@ solc-sha2-asm = ["ethers-solc/asm"]
|
|||
ethers-addressbook = { version = "^0.13.0", default-features = false, path = "./ethers-addressbook" }
|
||||
ethers-contract = { version = "^0.6.0", default-features = false, path = "./ethers-contract" }
|
||||
ethers-core = { version = "^0.13.0", default-features = false, path = "./ethers-core" }
|
||||
ethers-providers = { version = "^0.6.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-middleware = { version = "^0.6.0", default-features = false, path = "./ethers-middleware" }
|
||||
ethers-solc = { version = "^0.3.0", default-features = false, path = "./ethers-solc" }
|
||||
|
@ -93,10 +93,10 @@ ethers-etherscan = { version = "^0.2.0", default-features = false, path = "./eth
|
|||
|
||||
[dev-dependencies]
|
||||
ethers-contract = { version = "^0.6.0", default-features = false, path = "./ethers-contract", features = ["abigen", "eip712"] }
|
||||
ethers-providers = { version = "^0.6.0", default-features = false, path = "./ethers-providers", features = ["ws"] }
|
||||
ethers-providers = { version = "^0.13.0", default-features = false, path = "./ethers-providers", features = ["ws"] }
|
||||
|
||||
[target.'cfg(target_family = "unix")'.dev-dependencies]
|
||||
ethers-providers = { version = "^0.6.0", default-features = false, path = "./ethers-providers", features = ["ws", "ipc"] }
|
||||
ethers-providers = { version = "^0.13.0", default-features = false, path = "./ethers-providers", features = ["ws", "ipc"] }
|
||||
eyre = "0.6"
|
||||
rand = "0.8.5"
|
||||
serde = { version = "1.0.124", features = ["derive"] }
|
||||
|
|
|
@ -10,7 +10,7 @@ repository = "https://github.com/gakonst/ethers-rs"
|
|||
keywords = ["ethereum", "web3", "celo", "ethers"]
|
||||
|
||||
[dependencies]
|
||||
ethers-providers = { version = "^0.6.0", path = "../ethers-providers", default-features = false }
|
||||
ethers-providers = { version = "^0.13.0", path = "../ethers-providers", 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-derive = { version = "^0.13.0", path = "ethers-contract-derive", optional = true }
|
||||
|
@ -26,7 +26,7 @@ hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
|||
|
||||
[dev-dependencies]
|
||||
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.13.0", path = "../ethers-providers", default-features = false, features = ["ws"] }
|
||||
ethers-signers = { version = "^0.6.0", path = "../ethers-signers" }
|
||||
ethers-contract-abigen = { version = "^0.13.0", path = "ethers-contract-abigen" }
|
||||
ethers-contract-derive = { version = "^0.13.0", path = "ethers-contract-derive" }
|
||||
|
|
|
@ -17,7 +17,7 @@ rustdoc-args = ["--cfg", "docsrs"]
|
|||
ethers-contract = { version = "^0.6.0", path = "../ethers-contract", default-features = false, features = ["abigen"] }
|
||||
ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false }
|
||||
ethers-etherscan = { version = "^0.2.0", path = "../ethers-etherscan", default-features = false }
|
||||
ethers-providers = { version = "^0.6.0", path = "../ethers-providers", default-features = false }
|
||||
ethers-providers = { version = "^0.13.0", path = "../ethers-providers", default-features = false }
|
||||
ethers-signers = { version = "^0.6.0", path = "../ethers-signers", default-features = false }
|
||||
|
||||
async-trait = { version = "0.1.50", default-features = false }
|
||||
|
@ -41,7 +41,7 @@ tokio = { version = "1.18" }
|
|||
[dev-dependencies]
|
||||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||
rand = { version = "0.8.5", default-features = false }
|
||||
ethers-providers = { version = "^0.6.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"
|
||||
ethers-solc = { version = "^0.3.0", path = "../ethers-solc", default-features = false }
|
||||
serial_test = "0.6.0"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "ethers-providers"
|
||||
license = "MIT OR Apache-2.0"
|
||||
version = "0.6.2"
|
||||
version = "0.13.0"
|
||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||
edition = "2018"
|
||||
description = "Provider implementations for the ethers-rs crate"
|
||||
|
|
Loading…
Reference in New Issue