diff --git a/Cargo.lock b/Cargo.lock index 59ac2e8e9e8..7d9ce18502e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -452,9 +452,12 @@ dependencies = [ [[package]] name = "atomic" -version = "0.5.3" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba" +checksum = "8d818003e740b63afc82337e3160717f4f63078720a810b7b903e70a5d1d2994" +dependencies = [ + "bytemuck", +] [[package]] name = "atomic-polyfill" @@ -8044,9 +8047,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.8.0" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +checksum = "5de17fd2f7da591098415cff336e12965a28061ddace43b59cb3c430179c9439" dependencies = [ "atomic", "getrandom", diff --git a/implementations/rust/ockam/ockam_api/Cargo.toml b/implementations/rust/ockam/ockam_api/Cargo.toml index 75589758b9b..fa654e1218d 100644 --- a/implementations/rust/ockam/ockam_api/Cargo.toml +++ b/implementations/rust/ockam/ockam_api/Cargo.toml @@ -153,4 +153,4 @@ tempfile = "3.10.1" tokio = { version = "1.38.0", features = ["full"] } tracing-core = "0.1.32" treeline = "0.1.0" -uuid = "1.8.0" +uuid = "1.9.1" diff --git a/implementations/rust/ockam/ockam_transport_ble/Cargo.toml b/implementations/rust/ockam/ockam_transport_ble/Cargo.toml index 2eb7daf7d39..c097010ae0e 100644 --- a/implementations/rust/ockam/ockam_transport_ble/Cargo.toml +++ b/implementations/rust/ockam/ockam_transport_ble/Cargo.toml @@ -94,7 +94,7 @@ tracing = { version = "0.1", default_features = false } # Target os: TODO move this into its own "Ockam Addon" crate btleplug = { version = "0.11.5", optional = true } -uuid = { version = "1.8.0", optional = true } +uuid = { version = "1.9.1", optional = true } # Target baremetal: TODO move this into its own "Ockam Addon" crate bluenrg = { version = "0.1.0", default-features = false, features = ["ms"], optional = true }