From a9526fe0a56ccc427ec20427dc3496e8aa92ab69 Mon Sep 17 00:00:00 2001 From: Aria Desires Date: Mon, 8 Dec 2025 15:17:28 -0500 Subject: [PATCH] serde_json is no longer optional --- crates/ty_project/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/ty_project/Cargo.toml b/crates/ty_project/Cargo.toml index 74356dac24..b198c3f5e1 100644 --- a/crates/ty_project/Cargo.toml +++ b/crates/ty_project/Cargo.toml @@ -41,7 +41,7 @@ rustc-hash = { workspace = true } salsa = { workspace = true } schemars = { workspace = true, optional = true } serde = { workspace = true } -serde_json = { workspace = true, optional = true } +serde_json = { workspace = true } thiserror = { workspace = true } toml = { workspace = true } tracing = { workspace = true } @@ -55,7 +55,6 @@ default = ["zstd"] deflate = ["ty_vendored/deflate"] schemars = [ "dep:schemars", - "dep:serde_json", "ruff_db/schemars", "ruff_python_ast/schemars", "ty_python_semantic/schemars",