fix(client): expose schemars feature and allow opt-out

This commit is contained in:
LGUG2Z
2025-03-05 15:49:46 -08:00
parent 02a2796e7d
commit fe20caa56a

View File

@@ -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"]