mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2026-08-17 16:34:54 -05:00
61 lines
1.6 KiB
TOML
61 lines
1.6 KiB
TOML
[package]
|
|
name = "lact-daemon"
|
|
version = "0.9.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = ["nvidia"]
|
|
bench = ["dep:divan"]
|
|
nvidia = []
|
|
|
|
[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"] }
|
|
chrono = { 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 = "0.12.0"
|
|
bitflags = "2.6.0"
|
|
pciid-parser = { version = "0.8", features = ["serde"] }
|
|
zbus = { version = "5.3.1", default-features = false, features = ["tokio"] }
|
|
libdrm_amdgpu_sys = { version = "0.8.8", default-features = false, features = [
|
|
"dynamic_loading",
|
|
] }
|
|
tar = "0.4.40"
|
|
libflate = "2.0.0"
|
|
os-release = "0.1.0"
|
|
notify = { version = "8.0.0", default-features = false }
|
|
libcopes = "1.0.0"
|
|
libloading = "0.8.6" # Can be updated when https://github.com/rust-lang/rust-bindgen/issues/3332 is released
|
|
|
|
ureq = { version = "3.1.2", features = ["json", "rustls"] }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|
|
insta = { version = "1.41.1", features = ["json", "yaml"] }
|
|
easy_fuser = { version = "0.4.2", features = ["parallel"] }
|
|
tempfile = "3.17.1"
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.72"
|
|
serde_json = { workspace = true }
|