mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
refactor(linter): remove unused serde features (#7738)
This commit is contained in:
parent
b701232098
commit
c6a19aa478
4 changed files with 8 additions and 9 deletions
5
Cargo.lock
generated
5
Cargo.lock
generated
|
|
@ -710,7 +710,6 @@ dependencies = [
|
|||
"log",
|
||||
"regex-automata",
|
||||
"regex-syntax",
|
||||
"serde",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -1619,9 +1618,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_index"
|
||||
version = "1.0.1"
|
||||
version = "2.0.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f004e73d346bec03a428ca26cf2df245d08563f1d3268b7bcbd5554fc1db05c5"
|
||||
checksum = "5eca5d9726cd0a6e433debe003b7bc88b2ecad0bb6109f0cef7c55e692139a34"
|
||||
dependencies = [
|
||||
"serde",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
|
|
@ -26,14 +26,14 @@ 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 }
|
||||
|
|
@ -41,7 +41,7 @@ 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 }
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ serialize = [
|
|||
"bitflags/serde",
|
||||
"dep:serde",
|
||||
"dep:wasm-bindgen",
|
||||
"oxc_index/serialize",
|
||||
"oxc_index/serde",
|
||||
"oxc_estree/serialize",
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue