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.
14 lines
353 B
TOML
14 lines
353 B
TOML
[package]
|
|
name = "corsairctl"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "CLI tool for Corsair Bragi-protocol devices (HS80, etc.)"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
hidapi = { version = "2", default-features = false, features = ["linux-shared-hidraw"] }
|
|
alsa = "0.9"
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|