mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-01-22 09:23:19 +01:00
39 lines
808 B
TOML
39 lines
808 B
TOML
[package]
|
|
name = "daemon-user"
|
|
license = "MPL-2.0"
|
|
version.workspace = true
|
|
authors = ["Luke D Jones <luke@ljones.dev>"]
|
|
edition = "2021"
|
|
description = "Usermode daemon for user settings, anime, per-key lighting"
|
|
|
|
[lib]
|
|
name = "rog_user"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "asusd-user"
|
|
path = "src/daemon.rs"
|
|
|
|
[dependencies]
|
|
dirs.workspace = true
|
|
smol.workspace = true
|
|
|
|
# serialisation
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_derive.workspace = true
|
|
|
|
rog_anime = { path = "../rog-anime" }
|
|
rog_aura = { path = "../rog-aura" }
|
|
rog_dbus = { path = "../rog-dbus" }
|
|
rog_platform = { path = "../rog-platform" }
|
|
config-traits = { path = "../config-traits" }
|
|
|
|
zbus.workspace = true
|
|
|
|
# cli and logging
|
|
log.workspace = true
|
|
env_logger.workspace = true
|
|
|
|
[dev-dependencies]
|
|
cargo-husky.workspace = true |