mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-01-22 17:33:19 +01:00
43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[package]
|
|
name = "asusctl"
|
|
license.workspace = true
|
|
version.workspace = true
|
|
readme.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
rog_anime = { path = "../rog-anime" }
|
|
rog_scsi = { path = "../rog-scsi" }
|
|
rog_slash = { path = "../rog-slash" }
|
|
rog_aura = { path = "../rog-aura" }
|
|
rog_dbus = { path = "../rog-dbus" }
|
|
rog_profiles = { path = "../rog-profiles" }
|
|
rog_platform = { path = "../rog-platform" }
|
|
dmi_id = { path = "../dmi-id" }
|
|
|
|
log.workspace = true
|
|
env_logger.workspace = true
|
|
|
|
ron.workspace = true
|
|
gumdrop.workspace = true
|
|
zbus.workspace = true
|
|
argh = "0.1"
|
|
|
|
[dev-dependencies]
|
|
rog_dbus = { path = "../rog-dbus" }
|
|
|
|
[package.metadata.deb]
|
|
license-file = ["../LICENSE", "4"]
|
|
extended-description = """\
|
|
An utility for Linux to control many aspects of various ASUS laptops
|
|
but can also be used with non-asus laptops with reduced features."""
|
|
depends = "$auto"
|
|
section = "utility"
|
|
priority = "optional"
|
|
assets = [
|
|
["target/release/asusctl", "usr/bin/", "755"],
|
|
]
|