36 lines
757 B
TOML
36 lines
757 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"
|
|
|
|
[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
|
|
|
|
# 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
|