release: bump to 0.2.0 (#151)
This commit is contained in:
parent
80c64ab192
commit
fc4b3e4ce4
|
@ -599,7 +599,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers"
|
name = "ethers"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"ethers-contract",
|
"ethers-contract",
|
||||||
|
@ -615,7 +615,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers-contract"
|
name = "ethers-contract"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ethers",
|
"ethers",
|
||||||
"ethers-contract-abigen",
|
"ethers-contract-abigen",
|
||||||
|
@ -636,7 +636,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers-contract-abigen"
|
name = "ethers-contract-abigen"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"Inflector",
|
"Inflector",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
@ -652,7 +652,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers-contract-derive"
|
name = "ethers-contract-derive"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ethers-contract-abigen",
|
"ethers-contract-abigen",
|
||||||
"ethers-core",
|
"ethers-core",
|
||||||
|
@ -664,7 +664,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers-core"
|
name = "ethers-core"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arrayvec",
|
"arrayvec",
|
||||||
"bincode",
|
"bincode",
|
||||||
|
@ -688,7 +688,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers-middleware"
|
name = "ethers-middleware"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"ethers",
|
"ethers",
|
||||||
|
@ -710,7 +710,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers-providers"
|
name = "ethers-providers"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"auto_impl",
|
"auto_impl",
|
||||||
|
@ -735,7 +735,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers-signers"
|
name = "ethers-signers"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"coins-ledger",
|
"coins-ledger",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-contract"
|
name = "ethers-contract"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Smart contract bindings for the ethers-rs crate"
|
description = "Smart contract bindings for the ethers-rs crate"
|
||||||
|
@ -10,11 +10,11 @@ repository = "https://github.com/gakonst/ethers-rs"
|
||||||
keywords = ["ethereum", "web3", "celo", "ethers"]
|
keywords = ["ethereum", "web3", "celo", "ethers"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-providers = { version = "0.1.3", path = "../ethers-providers", default-features = false }
|
ethers-providers = { version = "0.2", path = "../ethers-providers", default-features = false }
|
||||||
ethers-core = { version = "0.1.3", path = "../ethers-core", default-features = false }
|
ethers-core = { version = "0.2", path = "../ethers-core", default-features = false }
|
||||||
|
|
||||||
ethers-contract-abigen = { version = "0.1.3", path = "ethers-contract-abigen", optional = true }
|
ethers-contract-abigen = { version = "0.2", path = "ethers-contract-abigen", optional = true }
|
||||||
ethers-contract-derive = { version = "0.1.3", path = "ethers-contract-derive", optional = true }
|
ethers-contract-derive = { version = "0.2", path = "ethers-contract-derive", optional = true }
|
||||||
|
|
||||||
serde = { version = "1.0.119", default-features = false }
|
serde = { version = "1.0.119", default-features = false }
|
||||||
serde_json = { version = "1.0.61", default-features = false }
|
serde_json = { version = "1.0.61", default-features = false }
|
||||||
|
@ -25,12 +25,12 @@ futures-util = { version = "0.3.8", default-features = false }
|
||||||
hex = { version = "0.4.2", default-features = false, features = ["std"] }
|
hex = { version = "0.4.2", default-features = false, features = ["std"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ethers = { version = "0.1.3", path = "../ethers" }
|
ethers = { version = "0.2", path = "../ethers" }
|
||||||
ethers-providers = { version = "0.1.3", path = "../ethers-providers", default-features = false, features = ["ws"] }
|
ethers-providers = { version = "0.2", path = "../ethers-providers", default-features = false, features = ["ws"] }
|
||||||
tokio = { version = "1.0", default-features = false, features = ["macros"] }
|
tokio = { version = "1.0", default-features = false, features = ["macros"] }
|
||||||
|
|
||||||
ethers-signers = { version = "0.1.3", path = "../ethers-signers" }
|
ethers-signers = { version = "0.2", path = "../ethers-signers" }
|
||||||
ethers-middleware = { version = "0.1.3", path = "../ethers-middleware" }
|
ethers-middleware = { version = "0.2", path = "../ethers-middleware" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
abigen = ["ethers-contract-abigen", "ethers-contract-derive"]
|
abigen = ["ethers-contract-abigen", "ethers-contract-derive"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-contract-abigen"
|
name = "ethers-contract-abigen"
|
||||||
version = "0.1.3"
|
version = "0.2.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"
|
||||||
|
@ -10,7 +10,7 @@ repository = "https://github.com/gakonst/ethers-rs"
|
||||||
keywords = ["ethereum", "web3", "celo", "ethers"]
|
keywords = ["ethereum", "web3", "celo", "ethers"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-core = { version = "0.1.3", path = "../../ethers-core" }
|
ethers-core = { version = "0.2", path = "../../ethers-core" }
|
||||||
|
|
||||||
anyhow = "1.0.37"
|
anyhow = "1.0.37"
|
||||||
curl = "0.4"
|
curl = "0.4"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-contract-derive"
|
name = "ethers-contract-derive"
|
||||||
version = "0.1.3"
|
version = "0.2.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"
|
||||||
|
@ -13,8 +13,8 @@ keywords = ["ethereum", "web3", "celo", "ethers"]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-core = { version = "0.1.3", path = "../../ethers-core" }
|
ethers-core = { version = "0.2", path = "../../ethers-core" }
|
||||||
ethers-contract-abigen = { version = "0.1.3", path = "../ethers-contract-abigen" }
|
ethers-contract-abigen = { version = "0.2", path = "../ethers-contract-abigen" }
|
||||||
|
|
||||||
serde_json = "1.0.53"
|
serde_json = "1.0.53"
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-core"
|
name = "ethers-core"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Core structures for the ethers-rs crate"
|
description = "Core structures for the ethers-rs crate"
|
||||||
|
@ -33,7 +33,7 @@ bytes = { version = "1.0.1", features = ["serde"] }
|
||||||
hex = { version = "0.4.2", default-features = false, features = ["std"] }
|
hex = { version = "0.4.2", default-features = false, features = ["std"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ethers = { version = "0.1.3", path = "../ethers" }
|
ethers = { version = "0.2", path = "../ethers" }
|
||||||
|
|
||||||
serde_json = { version = "1.0.53", default-features = false }
|
serde_json = { version = "1.0.53", default-features = false }
|
||||||
bincode = { version = "1.2.1", default-features = false }
|
bincode = { version = "1.2.1", default-features = false }
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-middleware"
|
name = "ethers-middleware"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Middleware implementations for the ethers-rs crate"
|
description = "Middleware implementations for the ethers-rs crate"
|
||||||
|
@ -14,9 +14,9 @@ all-features = true
|
||||||
rustdoc-args = ["--cfg", "docsrs"]
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-core = { version = "0.1.3", path = "../ethers-core", default-features = false }
|
ethers-core = { version = "0.2", path = "../ethers-core", default-features = false }
|
||||||
ethers-providers = { version = "0.1.3", path = "../ethers-providers", default-features = false }
|
ethers-providers = { version = "0.2", path = "../ethers-providers", default-features = false }
|
||||||
ethers-signers = { version = "0.1.3", path = "../ethers-signers", default-features = false }
|
ethers-signers = { version = "0.2", path = "../ethers-signers", default-features = false }
|
||||||
|
|
||||||
async-trait = { version = "0.1.42", default-features = false }
|
async-trait = { version = "0.1.42", default-features = false }
|
||||||
serde = { version = "1.0.119", default-features = false, features = ["derive"] }
|
serde = { version = "1.0.119", default-features = false, features = ["derive"] }
|
||||||
|
@ -33,7 +33,7 @@ url = { version = "2.2.0", default-features = false }
|
||||||
tokio = { version = "1.0" }
|
tokio = { version = "1.0" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ethers = { version = "0.1.3", path = "../ethers" }
|
ethers = { version = "0.2", path = "../ethers" }
|
||||||
futures-executor = { version = "0.3.5", features = ["thread-pool"] }
|
futures-executor = { version = "0.3.5", features = ["thread-pool"] }
|
||||||
hex = { version = "0.4.2", default-features = false, features = ["std"] }
|
hex = { version = "0.4.2", default-features = false, features = ["std"] }
|
||||||
tokio = { version = "1.0", default-features = false, features = ["rt", "macros", "time"] }
|
tokio = { version = "1.0", default-features = false, features = ["rt", "macros", "time"] }
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-providers"
|
name = "ethers-providers"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Provider implementations for the ethers-rs crate"
|
description = "Provider implementations for the ethers-rs crate"
|
||||||
|
@ -14,7 +14,7 @@ all-features = true
|
||||||
rustdoc-args = ["--cfg", "docsrs"]
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-core = { version = "0.1.3", path = "../ethers-core", default-features = false }
|
ethers-core = { version = "0.2", path = "../ethers-core", default-features = false }
|
||||||
|
|
||||||
async-trait = { version = "0.1.42", default-features = false }
|
async-trait = { version = "0.1.42", default-features = false }
|
||||||
reqwest = { version = "0.11.0", default-features = false, features = ["json", "rustls-tls"] }
|
reqwest = { version = "0.11.0", default-features = false, features = ["json", "rustls-tls"] }
|
||||||
|
@ -40,7 +40,7 @@ tokio = { version = "1.0", default-features = false, optional = true }
|
||||||
tokio-tungstenite = { version = "0.13.0", default-features = false, features = ["connect", "tls"], optional = true }
|
tokio-tungstenite = { version = "0.13.0", default-features = false, features = ["connect", "tls"], optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ethers = { version = "0.1.3", path = "../ethers" }
|
ethers = { version = "0.2", path = "../ethers" }
|
||||||
tokio = { version = "1.0", default-features = false, features = ["rt", "macros"] }
|
tokio = { version = "1.0", default-features = false, features = ["rt", "macros"] }
|
||||||
hex = { version = "0.4.2", default-features = false, features = ["std"] }
|
hex = { version = "0.4.2", default-features = false, features = ["std"] }
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-signers"
|
name = "ethers-signers"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Signer implementations for the ethers-rs crate"
|
description = "Signer implementations for the ethers-rs crate"
|
||||||
|
@ -14,7 +14,7 @@ all-features = true
|
||||||
rustdoc-args = ["--cfg", "docsrs"]
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-core = { version = "0.1.3", path = "../ethers-core" }
|
ethers-core = { version = "0.2", path = "../ethers-core" }
|
||||||
thiserror = { version = "1.0.22", default-features = false }
|
thiserror = { version = "1.0.22", default-features = false }
|
||||||
serde = { version = "1.0.119", default-features = false }
|
serde = { version = "1.0.119", default-features = false }
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ futures-util = "0.3.8"
|
||||||
futures-executor = "0.3.8"
|
futures-executor = "0.3.8"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ethers = { version = "0.1.3", path = "../ethers" }
|
ethers = { version = "0.2", path = "../ethers" }
|
||||||
yubihsm = { version = "0.37.0", features = ["secp256k1", "usb", "mockhsm"] }
|
yubihsm = { version = "0.37.0", features = ["secp256k1", "usb", "mockhsm"] }
|
||||||
|
|
||||||
tempfile = "3.2.0"
|
tempfile = "3.2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers"
|
name = "ethers"
|
||||||
version = "0.1.3"
|
version = "0.2.0"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
@ -34,14 +34,14 @@ ws = ["ethers-providers/ws"]
|
||||||
abigen = ["ethers-contract/abigen"]
|
abigen = ["ethers-contract/abigen"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-contract = { version = "0.1.3", path = "../ethers-contract" }
|
ethers-contract = { version = "0.2", path = "../ethers-contract" }
|
||||||
ethers-core = { version = "0.1.3", path = "../ethers-core" }
|
ethers-core = { version = "0.2", path = "../ethers-core" }
|
||||||
ethers-providers = { version = "0.1.3", path = "../ethers-providers" }
|
ethers-providers = { version = "0.2", path = "../ethers-providers" }
|
||||||
ethers-signers = { version = "0.1.3", path = "../ethers-signers" }
|
ethers-signers = { version = "0.2", path = "../ethers-signers" }
|
||||||
ethers-middleware = { version = "0.1.3", path = "../ethers-middleware" }
|
ethers-middleware = { version = "0.2", path = "../ethers-middleware" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ethers-contract = { version = "0.1.3", path = "../ethers-contract", features = ["abigen"] }
|
ethers-contract = { version = "0.2", path = "../ethers-contract", features = ["abigen"] }
|
||||||
|
|
||||||
anyhow = "1.0.38"
|
anyhow = "1.0.38"
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
|
|
Loading…
Reference in New Issue