- 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
36 lines
723 B
TOML
36 lines
723 B
TOML
[package]
|
|
name = "linux-hello-tests"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[[test]]
|
|
name = "camera_test"
|
|
path = "../tests/camera_test.rs"
|
|
|
|
[[test]]
|
|
name = "detection_test"
|
|
path = "../tests/detection_test.rs"
|
|
|
|
[[test]]
|
|
name = "cli_test"
|
|
path = "../tests/cli_test.rs"
|
|
|
|
[[test]]
|
|
name = "phase2_auth_test"
|
|
path = "../tests/integration/phase2_auth_test.rs"
|
|
|
|
[[test]]
|
|
name = "ipc_test"
|
|
path = "../tests/integration/ipc_test.rs"
|
|
|
|
[[test]]
|
|
name = "phase3_security_test"
|
|
path = "../tests/integration/phase3_security_test.rs"
|
|
|
|
[dependencies]
|
|
linux-hello-daemon = { path = "../linux-hello-daemon" }
|
|
linux-hello-common = { path = "../linux-hello-common" }
|
|
image.workspace = true
|
|
serde_json.workspace = true
|
|
tempfile = "3"
|