mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2026-08-17 16:34:54 -05:00
64 lines
1.8 KiB
TOML
64 lines
1.8 KiB
TOML
[package]
|
|
name = "lact-daemon"
|
|
version = "0.10.1"
|
|
edition.workspace = true
|
|
|
|
[features]
|
|
default = ["nvidia", "display-info"]
|
|
bench = ["dep:divan"]
|
|
nvidia = []
|
|
display-info = ["dep:libdisplay-info"]
|
|
|
|
[dependencies]
|
|
lact-schema = { path = "../lact-schema" }
|
|
|
|
amdgpu-sysfs = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
serde = { workspace = true, features = ["rc"] }
|
|
serde_with = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
nix = { workspace = true, features = ["user", "fs", "ioctl", "socket"] }
|
|
jiff = { workspace = true }
|
|
tokio = { workspace = true, features = [
|
|
"rt",
|
|
"macros",
|
|
"net",
|
|
"time",
|
|
"signal",
|
|
"sync",
|
|
] }
|
|
futures = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
divan = { workspace = true, optional = true }
|
|
serde_norway = { workspace = true }
|
|
|
|
nvml-wrapper = { workspace = true }
|
|
bitflags = "2.13.0"
|
|
pciid-parser = { version = "0.8", features = ["serde"] }
|
|
zbus = { workspace = true }
|
|
zbus_polkit = { version = "5.0.0", default-features = false, features = ["tokio"] }
|
|
libdrm_amdgpu_sys = { version = "0.8.16", default-features = false, features = [
|
|
"dynamic_loading",
|
|
] }
|
|
tar = "0.4.45"
|
|
libflate = "2.3.0"
|
|
os-release = "0.1.0"
|
|
notify = { version = "8.2.0", default-features = false }
|
|
libcopes = "1.0.0"
|
|
libloading = "0.8.9" # Can be updated when https://github.com/rust-lang/rust-bindgen/issues/3332 is released
|
|
|
|
ureq = { version = "3.3.0", features = ["json", "rustls"] }
|
|
libdisplay-info = { version= "0.3.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
insta = { version = "1.48.0", features = ["json", "yaml"] }
|
|
easy_fuser = { version = "0.5.0", default-features = false, features = ["parallel"] }
|
|
tempfile = "3.27.0"
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.72"
|
|
serde_json = { workspace = true }
|