SCSI support: ROG Arion external drive LED control

This commit is contained in:
Luke D. Jones
2024-12-21 20:35:51 +13:00
parent 19ffcf3376
commit 0f2d89858e
24 changed files with 1393 additions and 172 deletions

29
rog-scsi/Cargo.toml Normal file
View File

@@ -0,0 +1,29 @@
[package]
name = "rog_scsi"
version.workspace = true
rust-version.workspace = true
license.workspace = true
readme.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
description.workspace = true
edition.workspace = true
[features]
default = ["dbus", "ron"]
dbus = ["zbus"]
[dependencies]
sg.workspace = true
serde.workspace = true
zbus = { workspace = true, optional = true }
# cli and logging
log.workspace = true
typeshare.workspace = true
ron = { version = "*", optional = true }
[dev-dependencies]
cargo-husky.workspace = true