Files
Linux-Hello/Cargo.toml
2026-01-15 22:40:51 +01:00

57 lines
1.3 KiB
TOML

[workspace]
resolver = "2"
members = [
"linux-hello-common",
"linux-hello-daemon",
"linux-hello-cli",
"linux-hello-settings",
"linux-hello-tests",
]
# Exclude GTK apps from default build (requires system GTK4/libadwaita)
default-members = [
"linux-hello-common",
"linux-hello-daemon",
"linux-hello-cli",
"linux-hello-tests",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "GPL-3.0"
authors = ["Linux Hello Contributors"]
repository = "https://github.com/linux-hello/linux-hello"
rust-version = "1.75"
[workspace.dependencies]
# Shared across workspace
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio = { version = "1.35", features = ["full"] }
# Camera
v4l = "0.14"
# ML/ONNX (rc.11 is production-ready per ort docs)
ort = { version = "=2.0.0-rc.11", features = ["ndarray"] }
ndarray = "0.16"
# Image processing
image = "0.24"
# CLI
clap = { version = "4.4", features = ["derive"] }
# Security
zeroize = { version = "1.8", features = ["derive"] }
# TPM2 (for secure template storage)
tss-esapi = "7.5"
# Benchmarking
criterion = { version = "0.5", features = ["html_reports"] }