From eb35155c22e2adfba49083739ae777fc69ea5539 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 26 Apr 2026 20:45:34 -0700 Subject: [PATCH] chore: add zvariant to workspace deps --- Cargo.toml | 3 ++- common/Cargo.toml | 5 ++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fe160d9..a2e570f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,8 @@ repository = "https://github.com/dangerousthings/authforge" rust-version = "1.78" [workspace.dependencies] -zbus = "4" +zbus = { version = "4", default-features = false, features = ["tokio", "p2p"] } +zvariant = "4" serde = { version = "1", features = ["derive"] } serde_json = "1" toml = "0.8" diff --git a/common/Cargo.toml b/common/Cargo.toml index 8e4c43c..71f9431 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -6,8 +6,7 @@ license.workspace = true [dependencies] serde = { workspace = true } +serde_json = { workspace = true } toml = { workspace = true } thiserror = { workspace = true } - -[dev-dependencies] -serde_json = { workspace = true } +zvariant = { workspace = true }