From 0b8a6bc794919424d7d2afab80168415671ed3cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 12:40:30 +0000 Subject: [PATCH 1/2] Bump uuid from 1.11.1 to 1.12.0 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.11.1 to 1.12.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.11.1...1.12.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- bluez-async/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 529c603..e179cfc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -604,9 +604,9 @@ checksum = "d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee" [[package]] name = "uuid" -version = "1.11.1" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b913a3b5fe84142e269d63cc62b64319ccaf89b748fc31fe025177f767a756c4" +checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4" [[package]] name = "wasi" diff --git a/bluez-async/Cargo.toml b/bluez-async/Cargo.toml index 7771e31..048abb7 100644 --- a/bluez-async/Cargo.toml +++ b/bluez-async/Cargo.toml @@ -24,7 +24,7 @@ serde = { version = "1.0.217", features = ["derive"] } serde-xml-rs = "0.6.0" thiserror = "2.0.11" tokio = { version = "1.43.0", features = ["rt"] } -uuid = "1.11.1" +uuid = "1.12.0" [dev-dependencies] eyre = "0.6.12" From 3ae58bf9e3252fc3e5b6271bda1eb40bb242c05b Mon Sep 17 00:00:00 2001 From: Andrew Walbran Date: Mon, 20 Jan 2025 14:20:02 +0000 Subject: [PATCH 2/2] Fix build breakage after uuid crate update. --- bluez-async/src/device.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bluez-async/src/device.rs b/bluez-async/src/device.rs index 252fb1f..1dd241f 100644 --- a/bluez-async/src/device.rs +++ b/bluez-async/src/device.rs @@ -391,7 +391,7 @@ mod tests { assert_eq!( get_services(OrgBluezDevice1Properties(&device_properties)), - vec![] + Vec::::new(), ) }