Skip to content

Commit

Permalink
refactor(linter): remove unused serde features (#7738)
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen committed Dec 9, 2024
1 parent b701232 commit c6a19aa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
5 changes: 2 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ unicode-id-start = "1"

#
oxc-browserslist = "1.1.0"
oxc_index = "1.0.1"
oxc_index = "2"
oxc_resolver = "2.1.1"
oxc_sourcemap = "1.0.3"

Expand Down
8 changes: 4 additions & 4 deletions crates/oxc_linter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,22 @@ oxc_cfg = { workspace = true }
oxc_codegen = { workspace = true }
oxc_diagnostics = { workspace = true }
oxc_ecmascript = { workspace = true }
oxc_index = { workspace = true, features = ["serialize"] }
oxc_index = { workspace = true }
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", "serialize"] }
oxc_syntax = { workspace = true, features = ["serialize"] }
oxc_span = { workspace = true, features = ["schemars"] }
oxc_syntax = { workspace = true }

#
bitflags = { workspace = true }
convert_case = { workspace = true }
cow-utils = { workspace = true }
dashmap = { workspace = true }
fast-glob = { workspace = true }
globset = { workspace = true, features = ["serde1"] }
globset = { workspace = true }
itertools = { workspace = true }
json-strip-comments = { workspace = true }
language-tags = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ serialize = [
"bitflags/serde",
"dep:serde",
"dep:wasm-bindgen",
"oxc_index/serialize",
"oxc_index/serde",
"oxc_estree/serialize",
]

Expand Down

0 comments on commit c6a19aa

Please sign in to comment.