From e5caf494f199e169dfb5e879266af1b277b525e9 Mon Sep 17 00:00:00 2001 From: Mamadou Babaei Date: Wed, 2 Jul 2025 18:41:54 +0200 Subject: [PATCH] workaround cargo error: feature edition2024 is required; caused by bluez-async v0.8.1 migration to rust 2024 edition --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ed77ba06..5f7e9f72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ tokio-stream = { version = "0.1.17", features = ["sync"] } [target.'cfg(target_os = "linux")'.dependencies] dbus = "0.9.7" -bluez-async = "0.8.0" +bluez-async = "=0.8.0" [target.'cfg(target_os = "android")'.dependencies] jni = "0.19.0"