From ac49c1d18645a46ebbedca7e93e3951f2017c502 Mon Sep 17 00:00:00 2001 From: Mamadou Babaei Date: Fri, 17 Nov 2023 11:39:12 +0100 Subject: [PATCH] depend on vendored dbus in order to avoid build failure with libdbus-sys on linux aarch64 target --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9e09dd31..7cd0eb2b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ tokio = { version = "1.32.0", features = ["sync", "rt"] } tokio-stream = { version = "0.1.14", features = ["sync"] } [target.'cfg(target_os = "linux")'.dependencies] -dbus = "0.9.7" +dbus = { version = "0.9.7", features = ["vendored"] } bluez-async = "0.7.2" [target.'cfg(target_os = "android")'.dependencies]