From a42cc9f63f861a8979794d6b167bad05c388a5fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Dec 2022 14:43:05 +0200 Subject: [PATCH] chore(deps): bump once_cell from 1.16.0 to 1.17.0 (#1987) Bumps [once_cell](https://github.com/matklad/once_cell) from 1.16.0 to 1.17.0. - [Release notes](https://github.com/matklad/once_cell/releases) - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.16.0...v1.17.0) --- updated-dependencies: - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- ethers-addressbook/Cargo.toml | 2 +- ethers-contract/Cargo.toml | 2 +- ethers-core/Cargo.toml | 4 ++-- ethers-middleware/Cargo.toml | 2 +- ethers-providers/Cargo.toml | 2 +- ethers-solc/Cargo.toml | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bbb66218..f6f73319 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2721,9 +2721,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "once_cell" -version = "1.16.0" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" +checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" [[package]] name = "oorandom" diff --git a/ethers-addressbook/Cargo.toml b/ethers-addressbook/Cargo.toml index 17907527..3e491ffc 100644 --- a/ethers-addressbook/Cargo.toml +++ b/ethers-addressbook/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/gakonst/ethers-rs" keywords = ["ethereum", "web3", "celo", "ethers"] [dependencies] -once_cell = "1.16.0" +once_cell = "1.17.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/ethers-contract/Cargo.toml b/ethers-contract/Cargo.toml index 821fe3bf..aa9cb7ca 100644 --- a/ethers-contract/Cargo.toml +++ b/ethers-contract/Cargo.toml @@ -20,7 +20,7 @@ ethers-derive-eip712 = { version = "^1.0.0", path = "../ethers-core/ethers-deriv serde = { version = "1.0.124", default-features = false } serde_json = { version = "1.0.64", default-features = false } thiserror = { version = "1.0", default-features = false } -once_cell = { version = "1.16.0" } +once_cell = { version = "1.17.0" } pin-project = { version = "1.0.11", default-features = false } futures-util = { version = "^0.3" } hex = { version = "0.4.3", default-features = false, features = ["std"] } diff --git a/ethers-core/Cargo.toml b/ethers-core/Cargo.toml index fbf0e92d..f1bb1692 100644 --- a/ethers-core/Cargo.toml +++ b/ethers-core/Cargo.toml @@ -31,7 +31,7 @@ serde_json = { version = "1.0.64", default-features = false, features = ["arbitr thiserror = { version = "1.0", default-features = false } bytes = { version = "1.3.0", features = ["serde"] } hex = { version = "0.4.3", default-features = false, features = ["std"] } -once_cell = { version = "1.16.0", optional = true } +once_cell = { version = "1.17.0", optional = true } unicode-xid = "0.2.4" strum = { version = "0.24", features = ["derive"] } @@ -48,7 +48,7 @@ num_enum = "0.5.7" tempfile = { version = "3.3.0", default-features = false } serde_json = { version = "1.0.64", default-features = false } bincode = { version = "1.3.3", default-features = false } -once_cell = { version = "1.16.0" } +once_cell = { version = "1.17.0" } hex-literal = "0.3.4" rand = "0.8.5" diff --git a/ethers-middleware/Cargo.toml b/ethers-middleware/Cargo.toml index 2518a21d..1deadae5 100644 --- a/ethers-middleware/Cargo.toml +++ b/ethers-middleware/Cargo.toml @@ -47,7 +47,7 @@ ethers-providers = { version = "^1.0.0", path = "../ethers-providers", default-f "ws", "rustls", ] } -once_cell = "1.16.0" +once_cell = "1.17.0" ethers-solc = { version = "^1.0.0", path = "../ethers-solc" } serial_test = "0.10.0" reqwest = { version = "0.11.13", default-features = false, features = ["json", "rustls"] } diff --git a/ethers-providers/Cargo.toml b/ethers-providers/Cargo.toml index d11f4f81..2e3798d3 100644 --- a/ethers-providers/Cargo.toml +++ b/ethers-providers/Cargo.toml @@ -43,7 +43,7 @@ tracing = { version = "0.1.37", default-features = false } tracing-futures = { version = "0.2.5", default-features = false, features = ["std-future"] } bytes = { version = "1.3.0", default-features = false, optional = true } -once_cell = "1.16.0" +once_cell = "1.17.0" hashers = "1.0.1" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] diff --git a/ethers-solc/Cargo.toml b/ethers-solc/Cargo.toml index 66002fd5..db2c4955 100644 --- a/ethers-solc/Cargo.toml +++ b/ethers-solc/Cargo.toml @@ -23,7 +23,7 @@ semver = { version = "1.0.16", features = ["serde"] } walkdir = "2.3.2" tokio = { version = "1.18", default-features = false, features = ["rt"] } futures-util = { version = "^0.3", optional = true } -once_cell = "1.16.0" +once_cell = "1.17.0" regex = "1.7.0" md-5 = "0.10.5" thiserror = "1.0"