From 42b5c56c2582f0117dd4d23577ae263aeebdd339 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 8 Aug 2024 09:14:08 +0000 Subject: [PATCH] chore(deps): update rust crate oxc to 0.24.0 --- Cargo.lock | 39 +++++++++++++++++++++------------------ Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5584a3b..b8a8cbb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -815,9 +815,9 @@ checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f" [[package]] name = "oxc" -version = "0.23.1" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c78369e5fa792c78c1c93f869099b27e7d408d157293a49e23df6a74f642ac6" +checksum = "921210f69474a65b3a9d26b3520fcff2d056224f784cd2adc70a6d979dd809aa" dependencies = [ "oxc_allocator", "oxc_ast", @@ -830,9 +830,9 @@ dependencies = [ [[package]] name = "oxc_allocator" -version = "0.23.1" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0222635617c93d6b8cf04931d33f865af48f092219bd3a5748a0a10aadba3357" +checksum = "bf56669b84958d483bbd296b3b2e4fc0d4c4a9c0953dc8ba5834a56d756907c9" dependencies = [ "allocator-api2", "bumpalo", @@ -840,9 +840,9 @@ dependencies = [ [[package]] name = "oxc_ast" -version = "0.23.1" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dda87402f7d35680d090063de0b5b092eda60ea2d70aa6d5fae74bc5537e4f22" +checksum = "24e81e91ab3bd480b34cf435d4fbbb9278a08ef76a9f99cdf1ce8c4df68333f8" dependencies = [ "bitflags", "num-bigint", @@ -854,9 +854,9 @@ dependencies = [ [[package]] name = "oxc_ast_macros" -version = "0.23.1" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e864ddc3bc3bcc12b2de8c9b9c1c51dfa1a6dd9a6f35d22e91f58753d42ae342" +checksum = "ca3d3f75136e7c263112bbe781c442cf573e29e00ea8cde3f7b25917e9bf4dff" dependencies = [ "proc-macro2", "quote", @@ -865,9 +865,9 @@ dependencies = [ [[package]] name = "oxc_diagnostics" -version = "0.23.1" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad620eda707d87b229a596b87dc00f6fdde4a63717402be391ffba78265f6490" +checksum = "bdb43e4ecfef9c27d7a2899b4fcea86f0c6376c2c0f7de678b929740b3a035c0" dependencies = [ "miette", "owo-colors", @@ -877,15 +877,15 @@ dependencies = [ [[package]] name = "oxc_index" -version = "0.23.1" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db5ab95d149e6e24790ee9a37dfb4b9926ce3585e4c7da3ad8be0182081b9d30" +checksum = "529ae8c89ff70c29dabc30dd352892dc99cef4b5c38b4789c30d08f7b6d8f240" [[package]] name = "oxc_parser" -version = "0.23.1" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2af6dc7cfa5fc66fb142a594c5f3f2de4d4abb3a219ecd81e0a1a0f9c10d2d90" +checksum = "93c01f9cad727fd01459f3936cd81792962345e26ebc5fcfbbe307f98be8004c" dependencies = [ "assert-unchecked", "bitflags", @@ -921,24 +921,27 @@ dependencies = [ [[package]] name = "oxc_span" -version = "0.23.1" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e11728a24c5e0219c0f93b633e8cf472f4963635911de6bece7ec663c762099f" +checksum = "c9fead43f4a8429e9cded8996f23360ea72f8fe0f5a7399108ac7f70491e0647" dependencies = [ "compact_str", "miette", "oxc_allocator", + "oxc_ast_macros", ] [[package]] name = "oxc_syntax" -version = "0.23.1" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0524ebb94bb558a6d20b2f00b80967162ed0221137c6e6758232145798f9836c" +checksum = "1c2a454a9cdad75b7aa3284f36c96313f3567833776f56255a585dbe744165f1" dependencies = [ "bitflags", "dashmap", "nonmax", + "oxc_allocator", + "oxc_ast_macros", "oxc_index", "oxc_span", "phf", diff --git a/Cargo.toml b/Cargo.toml index c40f65f..58fe8cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ test = false doctest = false [dependencies] -oxc = "0.23.1" +oxc = "0.24.0" swc_ecma_parser = { version = "0.149.0", features = ["typescript"] } swc_ecma_ast = "0.118.0"