From 59d7ad4984174982918bfda05349c0029fcf1ec8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jun 2024 18:34:05 +0000 Subject: [PATCH] build: bump lazy_static from 1.4.0 to 1.5.0 Bumps [lazy_static](https://github.com/rust-lang-nursery/lazy-static.rs) from 1.4.0 to 1.5.0. - [Release notes](https://github.com/rust-lang-nursery/lazy-static.rs/releases) - [Commits](https://github.com/rust-lang-nursery/lazy-static.rs/compare/1.4.0...1.5.0) --- updated-dependencies: - dependency-name: lazy_static dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 +++++++------------ .../ockam/ockam_rust_elixir_nifs/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0ada91a661b..f5a2e4a50a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2670,7 +2670,7 @@ checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" dependencies = [ "futures-core", "futures-sink", - "spin 0.9.8", + "spin", ] [[package]] @@ -3110,7 +3110,7 @@ dependencies = [ "atomic-polyfill", "hash32 0.2.1", "rustc_version 0.4.0", - "spin 0.9.8", + "spin", "stable_deref_trait", ] @@ -3761,11 +3761,11 @@ checksum = "10257499f089cd156ad82d0a9cd57d9501fa2c989068992a97eb3c27836f206b" [[package]] name = "lazy_static" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "spin 0.5.2", + "spin", ] [[package]] @@ -4710,7 +4710,7 @@ dependencies = [ "serde_bare", "serde_cbor", "serde_json", - "spin 0.9.8", + "spin", "strum 0.26.2", "tinyvec", "tokio", @@ -6070,7 +6070,7 @@ dependencies = [ "cfg-if", "getrandom", "libc", - "spin 0.9.8", + "spin", "untrusted", "windows-sys 0.52.0", ] @@ -6814,12 +6814,6 @@ dependencies = [ "windows-sys 0.52.0", ] -[[package]] -name = "spin" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" - [[package]] name = "spin" version = "0.9.8" diff --git a/implementations/rust/ockam/ockam_rust_elixir_nifs/Cargo.toml b/implementations/rust/ockam/ockam_rust_elixir_nifs/Cargo.toml index 2377539db19..21b10e88eac 100644 --- a/implementations/rust/ockam/ockam_rust_elixir_nifs/Cargo.toml +++ b/implementations/rust/ockam/ockam_rust_elixir_nifs/Cargo.toml @@ -21,7 +21,7 @@ rust-crypto = ["ockam_vault/rust-crypto"] [dependencies] hex = { version = "0.4", default-features = false } -lazy_static = "1.4.0" +lazy_static = "1.5.0" minicbor = { version = "0.24.1", features = ["alloc", "derive"] } ockam_identity = { path = "../ockam_identity", default-features = false, features = ["std", "software_vault"] } ockam_vault = { path = "../ockam_vault", default-features = false, features = ["std", "storage"] }