From 5152b39b17b112c8a85df4ff456b6fe716566ea7 Mon Sep 17 00:00:00 2001 From: Boshen Date: Sun, 20 Aug 2023 15:29:09 +0800 Subject: [PATCH] chore: clean up Cargo.toml with `cargo machete` (#767) --- Cargo.lock | 10 +- crates/oxc_ast/Cargo.toml | 1 - crates/oxc_cli/Cargo.toml | 8 +- crates/oxc_linter/Cargo.toml | 2 +- crates/oxc_minifier/Cargo.toml | 25 ++- crates/oxc_parser/fuzz/Cargo.lock | 227 ++++++++++----------------- crates/oxc_parser/fuzz/Cargo.toml | 1 - crates/oxc_query/Cargo.toml | 1 - crates/oxc_type_synthesis/Cargo.toml | 1 - editor/vscode/server/Cargo.toml | 4 +- 10 files changed, 103 insertions(+), 177 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 602b45443..f6ead075b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1251,9 +1251,9 @@ dependencies = [ [[package]] name = "napi" -version = "2.13.2" +version = "2.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ede2d12cd6fce44da537a4be1f5510c73be2506c2e32dfaaafd1f36968f3a0e" +checksum = "fd063c93b900149304e3ba96ce5bf210cd4f81ef5eb80ded0d100df3e85a3ac0" dependencies = [ "bitflags 2.4.0", "ctor", @@ -1483,7 +1483,6 @@ dependencies = [ "oxc_index", "oxc_span", "oxc_syntax", - "rustc-hash", "ryu-js", "serde", "serde_json", @@ -1665,7 +1664,6 @@ dependencies = [ "jemallocator", "mimalloc", "num-bigint", - "num-traits", "oxc_allocator", "oxc_ast", "oxc_ast_lower", @@ -1736,7 +1734,6 @@ dependencies = [ "oxc_semantic", "oxc_span", "serde", - "serde_json", "trustfall", "url", ] @@ -1823,7 +1820,6 @@ dependencies = [ "oxc_parser", "oxc_span", "oxc_syntax", - "serde_json", ] [[package]] @@ -1843,8 +1839,6 @@ dependencies = [ "oxc_span", "rayon", "ropey", - "serde", - "serde_json", "tokio", "tower-lsp", ] diff --git a/crates/oxc_ast/Cargo.toml b/crates/oxc_ast/Cargo.toml index cc25c583d..02c161ca1 100644 --- a/crates/oxc_ast/Cargo.toml +++ b/crates/oxc_ast/Cargo.toml @@ -22,7 +22,6 @@ oxc_syntax = { workspace = true } oxc_index = { workspace = true } bitflags = { workspace = true } -rustc-hash = { workspace = true } num-bigint = { workspace = true } num-traits = { workspace = true } diff --git a/crates/oxc_cli/Cargo.toml b/crates/oxc_cli/Cargo.toml index e05ff1ce3..0cfd724fb 100644 --- a/crates/oxc_cli/Cargo.toml +++ b/crates/oxc_cli/Cargo.toml @@ -34,8 +34,8 @@ oxc_type_synthesis = { workspace = true } # TODO temp, for type check output, replace with Miette codespan-reporting = "0.11.1" -ignore = { workspace = true, features = ["simd-accel"] } -miette = { workspace = true, features = ["fancy-no-backtrace"] } -rayon = { workspace = true } -bpaf = { workspace = true, features = ["derive", "autocomplete", "bright-color"] } +ignore = { workspace = true, features = ["simd-accel"] } +miette = { workspace = true, features = ["fancy-no-backtrace"] } +rayon = { workspace = true } +bpaf = { workspace = true, features = ["derive", "autocomplete", "bright-color"] } # git2 = { version = "0.16.1", default_features = false } diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index b097c7d77..ae0a64eb4 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -36,6 +36,6 @@ rust-lapper = "1.1.0" once_cell = "1.18.0" [dev-dependencies] -miette = { workspace = true, features = ["fancy-no-backtrace"] } +miette = { workspace = true, features = ["fancy-no-backtrace"] } insta = { version = "1.31.0", features = ["glob"] } diff --git a/crates/oxc_minifier/Cargo.toml b/crates/oxc_minifier/Cargo.toml index d38ebc6b4..d4a43cec5 100644 --- a/crates/oxc_minifier/Cargo.toml +++ b/crates/oxc_minifier/Cargo.toml @@ -13,19 +13,18 @@ rust-version.workspace = true categories.workspace = true [dependencies] -oxc_allocator = { workspace = true } -oxc_span = { workspace = true } -oxc_parser = { workspace = true } -oxc_ast = { workspace = true } -oxc_ast_lower = { workspace = true } -oxc_hir = { workspace = true } -oxc_semantic = { workspace = true } -oxc_syntax = { workspace = true } -oxc_index = { workspace = true } -bitflags = { workspace = true } -num-bigint = { workspace = true } -num-traits = { workspace = true } -itertools.workspace = true +oxc_allocator = { workspace = true } +oxc_span = { workspace = true } +oxc_parser = { workspace = true } +oxc_ast = { workspace = true } +oxc_ast_lower = { workspace = true } +oxc_hir = { workspace = true } +oxc_semantic = { workspace = true } +oxc_syntax = { workspace = true } +oxc_index = { workspace = true } +bitflags = { workspace = true } +num-bigint = { workspace = true } +itertools = { workspace = true } [dev-dependencies] walkdir = { workspace = true } diff --git a/crates/oxc_parser/fuzz/Cargo.lock b/crates/oxc_parser/fuzz/Cargo.lock index 6c7cf5bca..4802fb0b9 100644 --- a/crates/oxc_parser/fuzz/Cargo.lock +++ b/crates/oxc_parser/fuzz/Cargo.lock @@ -36,15 +36,15 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "bitflags" -version = "1.3.2" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" [[package]] name = "bumpalo" -version = "3.12.0" +version = "3.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" +checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" [[package]] name = "castaway" @@ -72,9 +72,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "compact_str" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bff0805f79ecb1b35163f3957a6934ea8d04fcd36ef98b52e7316f63e72e73d1" +checksum = "f86b9c4c00838774a6d902ef931eff7470720c51d90c2e32cfe15dc304737b3f" dependencies = [ "castaway", "cfg-if", @@ -91,7 +91,7 @@ checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" dependencies = [ "errno-dragonfly", "libc", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -131,26 +131,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" [[package]] -name = "io-lifetimes" -version = "1.0.10" +name = "index_vec" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" -dependencies = [ - "hermit-abi", - "libc", - "windows-sys 0.48.0", -] +checksum = "74086667896a940438f2118212f313abba4aff3831fef6f4b17d02add5c8bb60" [[package]] name = "is-terminal" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ "hermit-abi", - "io-lifetimes", "rustix", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -170,9 +164,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.140" +version = "0.2.147" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" +checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" [[package]] name = "libfuzzer-sys" @@ -187,9 +181,9 @@ dependencies = [ [[package]] name = "linux-raw-sys" -version = "0.3.1" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f" +checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" [[package]] name = "memchr" @@ -199,9 +193,9 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" [[package]] name = "miette" -version = "5.7.0" +version = "5.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7abdc09c381c9336b9f2e9bd6067a9a5290d20e2d2e2296f275456121c33ae89" +checksum = "59bb584eaeeab6bd0226ccf3509a69d7936d148cf3d036ad350abe35e8c6856e" dependencies = [ "miette-derive", "once_cell", @@ -211,9 +205,9 @@ dependencies = [ [[package]] name = "miette-derive" -version = "5.7.0" +version = "5.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8842972f23939443013dfd3720f46772b743e86f1a81d120d4b6fb090f87de1c" +checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c" dependencies = [ "proc-macro2", "quote", @@ -243,9 +237,9 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" +checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" dependencies = [ "autocfg", ] @@ -256,15 +250,6 @@ version = "1.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" -[[package]] -name = "ordered-float" -version = "3.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13a384337e997e6860ffbaa83708b2ef329fd8c54cb67a5f64d421e0f943254f" -dependencies = [ - "num-traits", -] - [[package]] name = "owo-colors" version = "3.5.0" @@ -273,7 +258,7 @@ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f" [[package]] name = "oxc_allocator" -version = "0.0.1" +version = "0.1.0" dependencies = [ "bumpalo", "serde", @@ -281,22 +266,20 @@ dependencies = [ [[package]] name = "oxc_ast" -version = "0.0.5" +version = "0.1.0" dependencies = [ "bitflags", - "compact_str", - "miette", "num-bigint", - "ordered-float", + "num-traits", "oxc_allocator", - "rustc-hash", - "ryu-js", - "thiserror", + "oxc_index", + "oxc_span", + "oxc_syntax", ] [[package]] name = "oxc_diagnostics" -version = "0.0.5" +version = "0.1.0" dependencies = [ "is-terminal", "miette", @@ -316,33 +299,62 @@ dependencies = [ "oxc_parser", ] +[[package]] +name = "oxc_index" +version = "0.1.0" +dependencies = [ + "index_vec", + "static_assertions", +] + [[package]] name = "oxc_parser" -version = "0.0.5" +version = "0.1.0" dependencies = [ "bitflags", "num-bigint", "oxc_allocator", "oxc_ast", "oxc_diagnostics", + "oxc_index", + "oxc_span", + "oxc_syntax", + "rustc-hash", +] + +[[package]] +name = "oxc_span" +version = "0.1.0" +dependencies = [ + "compact_str", + "miette", +] + +[[package]] +name = "oxc_syntax" +version = "0.1.0" +dependencies = [ + "bitflags", + "oxc_index", + "oxc_span", "rustc-hash", "unicode-id-start", ] [[package]] name = "proc-macro2" -version = "1.0.56" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" dependencies = [ "unicode-ident", ] [[package]] name = "quote" -version = "1.0.26" +version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc" +checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" dependencies = [ "proc-macro2", ] @@ -372,16 +384,15 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustix" -version = "0.37.7" +version = "0.38.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2aae838e49b3d63e9274e1c01833cc8139d3fec468c3b84688c628f44b1ae11d" +checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f" dependencies = [ "bitflags", "errno", - "io-lifetimes", "libc", "linux-raw-sys", - "windows-sys 0.45.0", + "windows-sys", ] [[package]] @@ -396,17 +407,11 @@ version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" -[[package]] -name = "ryu-js" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6518fc26bced4d53678a22d6e423e9d8716377def84545fe328236e3af070e7f" - [[package]] name = "serde" -version = "1.0.160" +version = "1.0.183" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c" +checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c" [[package]] name = "smawk" @@ -422,9 +427,9 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "syn" -version = "2.0.15" +version = "2.0.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822" +checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a" dependencies = [ "proc-macro2", "quote", @@ -444,18 +449,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.40" +version = "1.0.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" +checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.40" +version = "1.0.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" +checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" dependencies = [ "proc-macro2", "quote", @@ -502,37 +507,13 @@ version = "0.11.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" -[[package]] -name = "windows-sys" -version = "0.45.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" -dependencies = [ - "windows-targets 0.42.2", -] - [[package]] name = "windows-sys" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" dependencies = [ - "windows-targets 0.48.0", -] - -[[package]] -name = "windows-targets" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" -dependencies = [ - "windows_aarch64_gnullvm 0.42.2", - "windows_aarch64_msvc 0.42.2", - "windows_i686_gnu 0.42.2", - "windows_i686_msvc 0.42.2", - "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm 0.42.2", - "windows_x86_64_msvc 0.42.2", + "windows-targets", ] [[package]] @@ -541,93 +522,51 @@ version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" dependencies = [ - "windows_aarch64_gnullvm 0.48.0", - "windows_aarch64_msvc 0.48.0", - "windows_i686_gnu 0.48.0", - "windows_i686_msvc 0.48.0", - "windows_x86_64_gnu 0.48.0", - "windows_x86_64_gnullvm 0.48.0", - "windows_x86_64_msvc 0.48.0", + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", ] -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" - [[package]] name = "windows_aarch64_gnullvm" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" -[[package]] -name = "windows_aarch64_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" - [[package]] name = "windows_aarch64_msvc" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" -[[package]] -name = "windows_i686_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" - [[package]] name = "windows_i686_gnu" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" -[[package]] -name = "windows_i686_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" - [[package]] name = "windows_i686_msvc" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" -[[package]] -name = "windows_x86_64_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" - [[package]] name = "windows_x86_64_gnu" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" - [[package]] name = "windows_x86_64_gnullvm" version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" -[[package]] -name = "windows_x86_64_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" - [[package]] name = "windows_x86_64_msvc" version = "0.48.0" diff --git a/crates/oxc_parser/fuzz/Cargo.toml b/crates/oxc_parser/fuzz/Cargo.toml index 79bf6b9f5..9b599b5fd 100644 --- a/crates/oxc_parser/fuzz/Cargo.toml +++ b/crates/oxc_parser/fuzz/Cargo.toml @@ -8,7 +8,6 @@ edition = "2018" cargo-fuzz = true [dependencies] -oxc_ast = { path = "../../oxc_ast" } oxc_allocator = { path = "../../oxc_allocator" } libfuzzer-sys = "0.4" diff --git a/crates/oxc_query/Cargo.toml b/crates/oxc_query/Cargo.toml index ed9a0d84b..20139018f 100644 --- a/crates/oxc_query/Cargo.toml +++ b/crates/oxc_query/Cargo.toml @@ -17,7 +17,6 @@ oxc_ast = { workspace = true } oxc_semantic = { workspace = true } oxc_span = { workspace = true } serde = { workspace = true, features = ["derive"] } -serde_json = { workspace = true } url = { workspace = true } trustfall = { workspace = true } diff --git a/crates/oxc_type_synthesis/Cargo.toml b/crates/oxc_type_synthesis/Cargo.toml index b5257fab2..c7d4814b2 100644 --- a/crates/oxc_type_synthesis/Cargo.toml +++ b/crates/oxc_type_synthesis/Cargo.toml @@ -17,7 +17,6 @@ oxc_ast = { workspace = true } oxc_span = { workspace = true } oxc_syntax = { workspace = true } oxc_allocator = { workspace = true } -serde_json = { workspace = true } ezno-checker = { version = "0.0.4" } diff --git a/editor/vscode/server/Cargo.toml b/editor/vscode/server/Cargo.toml index 4a3f43d27..65a2386cd 100644 --- a/editor/vscode/server/Cargo.toml +++ b/editor/vscode/server/Cargo.toml @@ -28,7 +28,5 @@ ignore = { workspace = true, features = ["simd-accel"] } miette = { workspace = true, features = ["fancy-no-backtrace"] } rayon = { workspace = true } ropey = { workspace = true } -serde_json = { workspace = true } -serde = { workspace = true, features = ["derive"] } tokio = { workspace = true, features = ["full"] } -tower-lsp = { workspace = true, features = ["proposed"]} \ No newline at end of file +tower-lsp = { workspace = true, features = ["proposed"]}