From ac471e08bdfc663d8e79bc13ef96b0a71020200f Mon Sep 17 00:00:00 2001 From: Matthew Gregan Date: Wed, 20 Apr 2022 21:37:06 +0000 Subject: [PATCH] Bug 1761691 - Fix audio_thread_priority build when dbus is build disabled. r=padenot Differential Revision: https://phabricator.services.mozilla.com/D144077 --- toolkit/library/rust/shared/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/library/rust/shared/Cargo.toml b/toolkit/library/rust/shared/Cargo.toml index 3870b27e1cf4..4f9b18b1ba66 100644 --- a/toolkit/library/rust/shared/Cargo.toml +++ b/toolkit/library/rust/shared/Cargo.toml @@ -43,7 +43,7 @@ bitsdownload = { path = "../../../components/bitsdownload", optional = true } storage = { path = "../../../../storage/rust" } bookmark_sync = { path = "../../../components/places/bookmark_sync", optional = true } chardetng_c = "0.1.1" -audio_thread_priority = { version = "0.26.1" } +audio_thread_priority = { version = "0.26.1", default_features = false, features = ["winapi"] } mdns_service = { path="../../../../dom/media/webrtc/transport/mdns_service", optional = true } neqo_glue = { path = "../../../../netwerk/socket/neqo_glue" } wgpu_bindings = { path = "../../../../gfx/wgpu_bindings" }