From 348b7c95e5fe1dfffa4f20f2678fa9410b1eb520 Mon Sep 17 00:00:00 2001 From: nevaforget Date: Fri, 27 Mar 2026 23:19:39 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20hidapi=20auf=20linux-shared-hidraw=20Bac?= =?UTF-8?q?kend=20f=C3=BCr=20Arch=20Linux?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Das Default-Feature (linux-static-hidraw) linkt statisch gegen gebundelte hidapi-Quellen. Arch stellt libhidapi-hidraw.so als Shared Library bereit — linux-shared-hidraw linkt dagegen. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b3bb56f..0ff9cdd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ description = "CLI tool for Corsair Bragi-protocol devices (HS80, etc.)" license = "MIT" [dependencies] -hidapi = "2" +hidapi = { version = "2", default-features = false, features = ["linux-shared-hidraw"] } alsa = "0.9" clap = { version = "4", features = ["derive"] } serde_json = "1"