Files
Linux-Hello/linux-hello-daemon/Cargo.toml
eliott abe5476157 Add comprehensive README and update project status
- Add README.md with project overview, features, installation, and usage
- Document current Phase 3 completion status
- Include architecture diagrams and security information
- Add roadmap for Phase 4-5
- Update status.md to reflect current codebase state
2026-01-02 21:04:57 +01:00

50 lines
956 B
TOML

[package]
name = "linux-hello-daemon"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Linux Hello authentication daemon"
[lib]
name = "linux_hello_daemon"
path = "src/lib.rs"
[[bin]]
name = "linux-hello-daemon"
path = "src/main.rs"
[features]
default = []
tpm = ["tss-esapi"]
[dependencies]
linux-hello-common = { path = "../linux-hello-common" }
thiserror.workspace = true
serde.workspace = true
serde_json.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
tokio.workspace = true
# Image processing
image.workspace = true
# Security
zeroize.workspace = true
libc = "0.2"
# TPM2 (optional)
tss-esapi = { workspace = true, optional = true }
# ML inference - temporarily disabled until ort 2.0 stable
# ort.workspace = true
# ndarray.workspace = true
# Camera (Linux-only)
[target.'cfg(target_os = "linux")'.dependencies]
v4l.workspace = true
[dev-dependencies]
tempfile = "3"