From af09aec9170e3c64a25c60ba74c785aadda3f60f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 21:30:41 +0000 Subject: [PATCH] Build(deps): Bump once_cell from 1.19.0 to 1.20.1 (#35) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 13 +++++++++++-- Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8ec6ba0..264e531 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1159,9 +1159,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 = "openssl" @@ -1249,6 +1252,12 @@ version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" +[[package]] +name = "portable-atomic" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2" + [[package]] name = "prettyplease" version = "0.2.19" diff --git a/Cargo.toml b/Cargo.toml index 539ec1b..ed82f29 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ ctor = { version = "0.2" } cxx = { version = "1.0", default_features = false, features = ["std", "c++17"] } cxxbridge-flags = { version = "1.0", default_features = false } derive_builder = { version = "0.20" } -once_cell = { version = "1.18" } +once_cell = { version = "1.20" } pxr = { version = "0.2" } semver = { version = "1" } thiserror = { version = "1.0" }