mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2026-08-17 16:34:54 -05:00
* feat: WIP service setup GUI * fix: avoid crash when closing dialog with app already running * wip * feat: make it more usable * wip logs * feat: working logs display * feat: use new dialog for version mismatch * chore: cleanup * fix: tcp functionality * feat: handle setup errors * perf: avoid refetching system info * fix test
70 lines
1.9 KiB
TOML
70 lines
1.9 KiB
TOML
[workspace]
|
|
resolver = "3"
|
|
members = [
|
|
"lact",
|
|
"lact-cli",
|
|
"lact-gui",
|
|
"lact-schema",
|
|
"lact-client",
|
|
"lact-daemon",
|
|
]
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
|
|
[workspace.dependencies]
|
|
amdgpu-sysfs = { version = "0.21.0", features = ["serde"] }
|
|
nvml-wrapper = { git = "https://github.com/rust-nvml/nvml-wrapper.git", rev = "eb47417eede43443f139053479618e96ad32893d" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_with = { version = "3.21.0", default-features = false, features = [
|
|
"macros",
|
|
] }
|
|
serde_json = "1.0.150"
|
|
anyhow = "1.0.103"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
futures = { version = "0.3.32", features = [
|
|
"std",
|
|
"async-await",
|
|
], default-features = false }
|
|
tokio = { version = "1.52.3", default-features = false }
|
|
nix = { version = "0.31.3", default-features = false }
|
|
jiff = "0.2"
|
|
indexmap = { version = "2.14.0", features = ["serde"] }
|
|
pretty_assertions = "1.4.1"
|
|
divan = "0.1"
|
|
serde_norway = "0.9.42"
|
|
i18n-embed = { version = "0.16.0", features = [
|
|
"fluent-system",
|
|
"desktop-requester",
|
|
] }
|
|
i18n-embed-fl = "0.10.0"
|
|
rust-embed = { version = "8.12.0", features = ["debug-embed"] }
|
|
zbus = { version = "5.14.0", default-features = false, features = ["tokio"] }
|
|
|
|
[profile.release]
|
|
strip = "symbols"
|
|
codegen-units = 1
|
|
opt-level = "s"
|
|
lto = true
|
|
|
|
[profile.release.package.cairo-rs]
|
|
opt-level = 3
|
|
|
|
[profile.release.package.plotters-cairo]
|
|
opt-level = 3
|
|
|
|
[profile.release.package.plotters]
|
|
opt-level = 3
|
|
|
|
[profile.bench]
|
|
strip = false
|
|
debug = 1
|
|
lto = "thin"
|
|
codegen-units = 256
|
|
|
|
[patch.crates-io]
|
|
# Compilation warning fix from https://github.com/GnomedDev/proc-macro-error-2/pull/14
|
|
# Can be removed when https://github.com/kellpossible/cargo-i18n/issues/172 is fixed
|
|
proc-macro-error2 = { git = "https://github.com/fgardt/proc-macro-error-2", rev = "53ff94b61c678593158db1a3d50269c6f0de0db7" }
|