mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-01-22 17:33:19 +01:00
40 lines
861 B
TOML
40 lines
861 B
TOML
[package]
|
|
name = "rog_slash"
|
|
license = "MPL-2.0"
|
|
version.workspace = true
|
|
authors = ["Luke <luke@ljones.dev>"]
|
|
repository = "https://gitlab.com/asus-linux/asus-nb-ctrl"
|
|
homepage = "https://gitlab.com/asus-linux/asus-nb-ctrl"
|
|
documentation = "https://docs.rs/rog-slash"
|
|
description = "ASUS Slash display"
|
|
keywords = ["ROG", "ASUS", "AniMe", "Slash"]
|
|
edition = "2021"
|
|
exclude = ["data"]
|
|
|
|
[features]
|
|
default = ["dbus", "detect"]
|
|
dbus = ["zbus"]
|
|
detect = ["dmi_id"]
|
|
|
|
[lib]
|
|
name = "rog_slash"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
png_pong.workspace = true
|
|
pix.workspace = true
|
|
gif.workspace = true
|
|
log.workspace = true
|
|
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
|
|
glam.workspace = true
|
|
typeshare.workspace = true
|
|
|
|
zbus = { workspace = true, optional = true }
|
|
|
|
dmi_id = { path = "../dmi-id", optional = true }
|
|
|
|
[dev-dependencies]
|
|
cargo-husky.workspace = true |