mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-01-22 09:23:19 +01:00
50 lines
1.1 KiB
TOML
50 lines
1.1 KiB
TOML
[package]
|
|
name = "asusd"
|
|
license.workspace = true
|
|
version.workspace = true
|
|
readme.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
|
|
[[bin]]
|
|
name = "asusd"
|
|
path = "src/daemon.rs"
|
|
|
|
[dependencies]
|
|
config-traits = { path = "../config-traits" }
|
|
rog_anime = { path = "../rog-anime", features = ["dbus"] }
|
|
rog_slash = { path = "../rog-slash", features = ["dbus"] }
|
|
rog_aura = { path = "../rog-aura", features = ["dbus"] }
|
|
rog_platform = { path = "../rog-platform" }
|
|
rog_profiles = { path = "../rog-profiles" }
|
|
dmi_id = { path = "../dmi-id" }
|
|
futures-lite = "*"
|
|
udev.workspace = true
|
|
inotify.workspace = true
|
|
|
|
mio.workspace = true
|
|
tokio.workspace = true
|
|
# console-subscriber = "0.2.0"
|
|
|
|
# cli and logging
|
|
log.workspace = true
|
|
env_logger.workspace = true
|
|
|
|
zbus.workspace = true
|
|
logind-zbus.workspace = true
|
|
|
|
# serialisation
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
|
|
concat-idents.workspace = true
|
|
|
|
[dev-dependencies]
|
|
cargo-husky.workspace = true
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["serde"]
|