From fe20caa56a7c4ef2646bb93bd10d5a498732c5da Mon Sep 17 00:00:00 2001 From: LGUG2Z Date: Wed, 5 Mar 2025 15:49:46 -0800 Subject: [PATCH] fix(client): expose schemars feature and allow opt-out --- komorebi-client/Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/komorebi-client/Cargo.toml b/komorebi-client/Cargo.toml index 76470af5..12cb3022 100644 --- a/komorebi-client/Cargo.toml +++ b/komorebi-client/Cargo.toml @@ -6,7 +6,11 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -komorebi = { path = "../komorebi", default-features = false } +komorebi = { path = "../komorebi" } uds_windows = { workspace = true } serde_json = { workspace = true } + +[features] +default = ["schemars"] +schemars = ["komorebi/schemars"]