From c78ad0dc295753f6f5e578e38da57e06aed1674f Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 26 Apr 2026 20:47:46 -0700 Subject: [PATCH] chore: add daemon deps for D-Bus interface and tests --- Cargo.toml | 2 ++ daemon/Cargo.toml | 9 +++++++++ 2 files changed, 11 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index a2e570f..8b7ff47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,3 +27,5 @@ tokio = { version = "1", features = ["full"] } clap = { version = "4", features = ["derive"] } ctap-hid-fido2 = "3" nix = { version = "0.28", features = ["user", "process", "fs"] } +rand = "0.9" +tempfile = "3" diff --git a/daemon/Cargo.toml b/daemon/Cargo.toml index adaaff3..58edf29 100644 --- a/daemon/Cargo.toml +++ b/daemon/Cargo.toml @@ -11,7 +11,16 @@ path = "src/main.rs" [dependencies] authforge-common = { path = "../common" } zbus = { workspace = true } +zvariant = { workspace = true } tokio = { workspace = true } tracing = { workspace = true } tracing-subscriber = { workspace = true } anyhow = { workspace = true } +serde = { workspace = true } +serde_json = { workspace = true } +thiserror = { workspace = true } +nix = { workspace = true } +rand = { workspace = true } + +[dev-dependencies] +tempfile = { workspace = true }