mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-01-22 17:33:19 +01:00
45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
[package]
|
|
name = "asusd"
|
|
license = "MPL-2.0"
|
|
version.workspace = true
|
|
readme = "README.md"
|
|
authors = ["Luke <luke@ljones.dev>"]
|
|
repository = "https://gitlab.com/asus-linux/asus-nb-ctrl"
|
|
homepage = "https://gitlab.com/asus-linux/asus-nb-ctrl"
|
|
description = "A daemon app for ASUS GX502 and similar laptops to control missing features"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "asusd"
|
|
path = "src/daemon.rs"
|
|
|
|
[dependencies]
|
|
config-traits = { path = "../config-traits" }
|
|
rog_anime = { path = "../rog-anime", 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
|
|
|
|
async-trait.workspace = true
|
|
tokio.workspace = true
|
|
|
|
# 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
|
|
|
|
systemd-zbus = "*"
|
|
|
|
[dev-dependencies]
|
|
cargo-husky.workspace = true |