21 lines
452 B
TOML
21 lines
452 B
TOML
[package]
|
|
name = "intel-gpiod"
|
|
description = "Intel ACPI GPIO registrar daemon"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
log.workspace = true
|
|
redox_syscall = { workspace = true, features = ["std"] }
|
|
libredox.workspace = true
|
|
serde.workspace = true
|
|
ron.workspace = true
|
|
|
|
acpi-resource = { path = "../../acpi-resource" }
|
|
common = { path = "../../common" }
|
|
daemon = { path = "../../../daemon" }
|
|
|
|
[lints]
|
|
workspace = true
|