(cargo-release) version 1.0.0
This commit is contained in:
parent
fc54d8f11e
commit
aac5fab028
|
@ -1389,7 +1389,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers-providers"
|
name = "ethers-providers"
|
||||||
version = "0.17.0"
|
version = "1.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"auto_impl 1.0.1",
|
"auto_impl 1.0.1",
|
||||||
|
|
|
@ -92,7 +92,7 @@ solc-sha2-asm = ["ethers-solc", "ethers-solc/asm"]
|
||||||
ethers-addressbook = { version = "^1.0.0", default-features = false, path = "./ethers-addressbook" }
|
ethers-addressbook = { version = "^1.0.0", default-features = false, path = "./ethers-addressbook" }
|
||||||
ethers-contract = { version = "^0.17.0", default-features = false, path = "./ethers-contract" }
|
ethers-contract = { version = "^0.17.0", default-features = false, path = "./ethers-contract" }
|
||||||
ethers-core = { version = "^1.0.0", default-features = false, path = "./ethers-core" }
|
ethers-core = { version = "^1.0.0", default-features = false, path = "./ethers-core" }
|
||||||
ethers-providers = { version = "^0.17.0", default-features = false, path = "./ethers-providers" }
|
ethers-providers = { version = "^1.0.0", default-features = false, path = "./ethers-providers" }
|
||||||
ethers-signers = { version = "^0.17.0", default-features = false, path = "./ethers-signers" }
|
ethers-signers = { version = "^0.17.0", default-features = false, path = "./ethers-signers" }
|
||||||
ethers-middleware = { version = "^0.17.0", default-features = false, path = "./ethers-middleware" }
|
ethers-middleware = { version = "^0.17.0", default-features = false, path = "./ethers-middleware" }
|
||||||
ethers-solc = { version = "^0.17.0", default-features = false, path = "./ethers-solc", optional = true }
|
ethers-solc = { version = "^0.17.0", default-features = false, path = "./ethers-solc", optional = true }
|
||||||
|
@ -103,12 +103,12 @@ ethers-contract = { version = "^0.17.0", default-features = false, path = "./eth
|
||||||
"abigen",
|
"abigen",
|
||||||
"eip712",
|
"eip712",
|
||||||
] }
|
] }
|
||||||
ethers-providers = { version = "^0.17.0", default-features = false, path = "./ethers-providers", features = [
|
ethers-providers = { version = "^1.0.0", default-features = false, path = "./ethers-providers", features = [
|
||||||
"ws",
|
"ws",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
[target.'cfg(target_family = "unix")'.dev-dependencies]
|
[target.'cfg(target_family = "unix")'.dev-dependencies]
|
||||||
ethers-providers = { version = "^0.17.0", default-features = false, path = "./ethers-providers", features = [
|
ethers-providers = { version = "^1.0.0", default-features = false, path = "./ethers-providers", features = [
|
||||||
"ws",
|
"ws",
|
||||||
"ipc",
|
"ipc",
|
||||||
] }
|
] }
|
||||||
|
|
|
@ -11,7 +11,7 @@ repository = "https://github.com/gakonst/ethers-rs"
|
||||||
keywords = ["ethereum", "web3", "celo", "ethers"]
|
keywords = ["ethereum", "web3", "celo", "ethers"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false }
|
ethers-providers = { version = "^1.0.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 = "^1.0.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 = "^1.0.0", path = "ethers-contract-derive", optional = true }
|
ethers-contract-derive = { version = "^1.0.0", path = "ethers-contract-derive", optional = true }
|
||||||
|
@ -26,7 +26,7 @@ futures-util = { version = "^0.3" }
|
||||||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false, features = [
|
ethers-providers = { version = "^1.0.0", path = "../ethers-providers", default-features = false, features = [
|
||||||
"ws",
|
"ws",
|
||||||
] }
|
] }
|
||||||
ethers-signers = { version = "^0.17.0", path = "../ethers-signers" }
|
ethers-signers = { version = "^0.17.0", path = "../ethers-signers" }
|
||||||
|
|
|
@ -18,7 +18,7 @@ rustdoc-args = ["--cfg", "docsrs"]
|
||||||
ethers-contract = { version = "^0.17.0", path = "../ethers-contract", default-features = false }
|
ethers-contract = { version = "^0.17.0", path = "../ethers-contract", 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-etherscan = { version = "^0.17.0", path = "../ethers-etherscan", default-features = false }
|
ethers-etherscan = { version = "^0.17.0", path = "../ethers-etherscan", default-features = false }
|
||||||
ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false }
|
ethers-providers = { version = "^1.0.0", path = "../ethers-providers", default-features = false }
|
||||||
ethers-signers = { version = "^0.17.0", path = "../ethers-signers", default-features = false }
|
ethers-signers = { version = "^0.17.0", path = "../ethers-signers", default-features = false }
|
||||||
|
|
||||||
async-trait = { version = "0.1.50", default-features = false }
|
async-trait = { version = "0.1.50", default-features = false }
|
||||||
|
@ -43,7 +43,7 @@ tokio = { version = "1.18" }
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
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.17.0", path = "../ethers-providers", default-features = false, features = [
|
ethers-providers = { version = "^1.0.0", path = "../ethers-providers", default-features = false, features = [
|
||||||
"ws",
|
"ws",
|
||||||
"rustls",
|
"rustls",
|
||||||
] }
|
] }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-providers"
|
name = "ethers-providers"
|
||||||
version = "0.17.0"
|
version = "1.0.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
rust-version = "1.62"
|
rust-version = "1.62"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
|
|
Loading…
Reference in New Issue