From fcc782163237421293e085325de84d73006ae546 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 08:37:44 +0000 Subject: [PATCH] build(deps): bump once_cell from 1.19.0 to 1.20.1 Bumps [once_cell](https://github.com/matklad/once_cell) from 1.19.0 to 1.20.1. - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.19.0...v1.20.1) --- updated-dependencies: - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 13 +++++++++++-- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 774304c24..b2dd2188d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3151,9 +3151,12 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.19.0" +version = "1.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" +checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1" +dependencies = [ + "portable-atomic", +] [[package]] name = "oneshot-fused-workaround" @@ -3453,6 +3456,12 @@ dependencies = [ "universal-hash", ] +[[package]] +name = "portable-atomic" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" + [[package]] name = "postage" version = "0.5.0" diff --git a/Cargo.toml b/Cargo.toml index 0ca0d7265..8095d6682 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ nostr-signer = { version = "0.35", path = "./crates/nostr-signer", default-featu nostr-sqlite = { version = "0.35", path = "./crates/nostr-sqlite", default-features = false } nostr-zapper = { version = "0.35", path = "./crates/nostr-zapper", default-features = false } nwc = { version = "0.35", path = "./crates/nwc", default-features = false } -once_cell = { version = "1.19", default-features = false } +once_cell = { version = "1.20", default-features = false } serde_json = { version = "1.0", default-features = false } thiserror = "1.0" tokio = { version = "1", default-features = false }