2022-11-16 22:46:18 +02:00
|
|
|
[package]
|
|
|
|
|
name = "lact-daemon"
|
2025-02-01 20:37:14 +02:00
|
|
|
version = "0.7.1"
|
2022-11-16 22:46:18 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
2023-03-18 14:30:22 +02:00
|
|
|
[features]
|
2024-09-10 23:16:27 +03:00
|
|
|
default = []
|
2024-12-25 23:52:35 +02:00
|
|
|
bench = ["dep:divan"]
|
2022-11-16 22:46:18 +02:00
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-04 23:14:50 +02:00
|
|
|
lact-schema = { path = "../lact-schema" }
|
|
|
|
|
|
|
|
|
|
amdgpu-sysfs = { workspace = true }
|
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
2024-12-25 23:52:35 +02:00
|
|
|
serde = { workspace = true, features = ["rc"] }
|
2024-02-04 23:14:50 +02:00
|
|
|
serde_with = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
tracing-subscriber = { workspace = true }
|
2025-01-12 17:16:02 +02:00
|
|
|
nix = { workspace = true, features = ["user", "fs", "ioctl"] }
|
2024-06-08 11:12:19 +03:00
|
|
|
chrono = { workspace = true }
|
2024-09-22 14:17:33 +03:00
|
|
|
tokio = { workspace = true, features = [
|
2022-11-16 22:46:18 +02:00
|
|
|
"rt",
|
|
|
|
|
"macros",
|
|
|
|
|
"net",
|
|
|
|
|
"time",
|
|
|
|
|
"signal",
|
|
|
|
|
"sync",
|
|
|
|
|
] }
|
2024-09-22 14:17:33 +03:00
|
|
|
futures = { workspace = true }
|
2024-09-28 09:51:35 +03:00
|
|
|
indexmap = { workspace = true }
|
2024-12-25 23:52:35 +02:00
|
|
|
divan = { workspace = true, optional = true }
|
2024-09-22 14:17:33 +03:00
|
|
|
|
2024-10-25 23:35:26 +03:00
|
|
|
nvml-wrapper = { git = "https://github.com/ilya-zlobintsev/nvml-wrapper", branch = "lact" }
|
|
|
|
|
bitflags = "2.6.0"
|
2025-02-02 01:03:48 +02:00
|
|
|
pciid-parser = { version = "0.8", features = ["serde"] }
|
2024-09-22 14:17:33 +03:00
|
|
|
serde_yaml = "0.9"
|
2023-12-23 10:26:54 +02:00
|
|
|
vulkano = { version = "0.34.1", default-features = false }
|
2025-01-24 23:00:11 +02:00
|
|
|
zbus = { version = "5.3.1", default-features = false, features = ["tokio"] }
|
2025-01-12 17:16:02 +02:00
|
|
|
libdrm_amdgpu_sys = { version = "0.8.1", default-features = false, features = [
|
|
|
|
|
"dynamic_loading",
|
|
|
|
|
] }
|
2023-12-23 10:10:50 +02:00
|
|
|
tar = "0.4.40"
|
2024-02-04 23:54:18 +02:00
|
|
|
libflate = "2.0.0"
|
2024-01-07 11:07:06 +02:00
|
|
|
os-release = "0.1.0"
|
2025-01-24 23:00:11 +02:00
|
|
|
notify = { version = "8.0.0", default-features = false }
|
2024-12-25 23:52:35 +02:00
|
|
|
copes = { git = "https://gitlab.com/corectrl/copes" }
|
2025-01-12 17:16:02 +02:00
|
|
|
libloading = "0.8.6"
|
2024-12-18 23:55:31 +02:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-12-25 23:52:35 +02:00
|
|
|
pretty_assertions = { workspace = true }
|
2024-12-31 19:30:35 +02:00
|
|
|
insta = { version = "1.41.1", features = ["json", "yaml"] }
|
2024-12-25 23:52:35 +02:00
|
|
|
|
2025-01-12 17:16:02 +02:00
|
|
|
[build-dependencies]
|
|
|
|
|
bindgen = "0.68"
|