From 487e66faa4cb7f1ccf20cc0a9826d1ac0a0d15ba Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Fri, 20 Feb 2026 09:01:36 -0800 Subject: [PATCH] Use workspace dependency for schemars --- Cargo.toml | 1 + crates-cli/yaak-cli/Cargo.toml | 2 +- crates/yaak-models/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4b625794..ac0e884f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,6 +35,7 @@ log = "0.4.29" reqwest = "0.12.20" rustls = { version = "0.23.34", default-features = false } rustls-platform-verifier = "0.6.2" +schemars = { version = "0.8.22", features = ["chrono"] } serde = "1.0.228" serde_json = "1.0.145" sha2 = "0.10.9" diff --git a/crates-cli/yaak-cli/Cargo.toml b/crates-cli/yaak-cli/Cargo.toml index cfd8b75e..54e7385e 100644 --- a/crates-cli/yaak-cli/Cargo.toml +++ b/crates-cli/yaak-cli/Cargo.toml @@ -14,7 +14,7 @@ dirs = "6" env_logger = "0.11" futures = "0.3" log = { workspace = true } -schemars = { version = "0.8.22", features = ["chrono"] } +schemars = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } tokio = { workspace = true, features = ["rt-multi-thread", "macros"] } diff --git a/crates/yaak-models/Cargo.toml b/crates/yaak-models/Cargo.toml index 626e191e..95b32df4 100644 --- a/crates/yaak-models/Cargo.toml +++ b/crates/yaak-models/Cargo.toml @@ -17,7 +17,7 @@ sea-query = { version = "0.32.1", features = ["with-chrono", "attr"] } sea-query-rusqlite = { version = "0.7.0", features = ["with-chrono"] } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } -schemars = { version = "0.8.22", features = ["chrono"] } +schemars = { workspace = true } sha2 = { workspace = true } thiserror = { workspace = true } ts-rs = { workspace = true, features = ["chrono-impl", "serde-json-impl"] }