From 1a67cde0de9a7757b4208076d40ddd0d2454c21d Mon Sep 17 00:00:00 2001 From: Boshen Date: Mon, 9 Dec 2024 19:21:22 +0800 Subject: [PATCH] build(linter): fix feature unification (#7740) --- crates/oxc_linter/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index ab333d24a..ba8338aae 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -26,14 +26,14 @@ oxc_cfg = { workspace = true } oxc_codegen = { workspace = true } oxc_diagnostics = { workspace = true } oxc_ecmascript = { workspace = true } -oxc_index = { workspace = true } +oxc_index = { workspace = true, features = ["serde"] } oxc_macros = { workspace = true } oxc_parser = { workspace = true } oxc_regular_expression = { workspace = true } oxc_resolver = { workspace = true } oxc_semantic = { workspace = true } -oxc_span = { workspace = true, features = ["schemars"] } -oxc_syntax = { workspace = true } +oxc_span = { workspace = true, features = ["schemars", "serialize"] } +oxc_syntax = { workspace = true, features = ["serialize"] } # bitflags = { workspace = true }