diff --git a/Cargo.lock b/Cargo.lock index ef489d6..21fc8f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -714,6 +714,18 @@ dependencies = [ "rustc-hash", ] +[[package]] +name = "oxc_allocator" +version = "0.147.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4e69b2400ab3c2f96eb3ae474ed80fa3a2959ba05e26afc5df45e634fc9a071" +dependencies = [ + "allocator-api2", + "hashbrown 0.17.1", + "oxc_data_structures 0.147.0", + "rustc-hash", +] + [[package]] name = "oxc_ast" version = "0.144.0" @@ -729,7 +741,7 @@ dependencies = [ "oxc_regular_expression", "oxc_span 0.144.0", "oxc_str 0.144.0", - "oxc_syntax", + "oxc_syntax 0.144.0", ] [[package]] @@ -756,6 +768,18 @@ dependencies = [ "syn 3.0.3", ] +[[package]] +name = "oxc_ast_macros" +version = "0.147.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa520723c19e83bcc683a988ac77d56bbca4b88178d5fc6c0c89fb73a45893cf" +dependencies = [ + "phf", + "proc-macro2", + "quote", + "syn 3.0.3", +] + [[package]] name = "oxc_ast_visit" version = "0.144.0" @@ -765,7 +789,7 @@ dependencies = [ "oxc_allocator 0.144.0", "oxc_ast", "oxc_span 0.144.0", - "oxc_syntax", + "oxc_syntax 0.144.0", ] [[package]] @@ -780,6 +804,12 @@ version = "0.146.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d15a23b57a931fda6bc9a4fdc3fbabcac6a2edfd0b7216cb7c81432f0e9f54d9" +[[package]] +name = "oxc_data_structures" +version = "0.147.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7903e8f1f76f148c943b5a2e192bf908d600b5fe0df1efc77ebeb75591ace56" + [[package]] name = "oxc_diagnostics" version = "0.144.0" @@ -825,7 +855,7 @@ dependencies = [ "oxc_ast", "oxc_data_structures 0.144.0", "oxc_span 0.144.0", - "oxc_syntax", + "oxc_syntax 0.144.0", ] [[package]] @@ -840,6 +870,12 @@ version = "0.146.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc7af86a59b7aeb2845ffea2cc21ae259053865b175e9ac936a7d72f2744abe5" +[[package]] +name = "oxc_estree" +version = "0.147.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2ef8cdc8d02a7e0b91ee51a2572963c914d3bb38261e11a54d068a092c4dc42" + [[package]] name = "oxc_index" version = "5.0.0" @@ -869,7 +905,7 @@ dependencies = [ "oxc_regular_expression", "oxc_span 0.144.0", "oxc_str 0.144.0", - "oxc_syntax", + "oxc_syntax 0.144.0", "rustc-hash", "seq-macro", ] @@ -918,6 +954,19 @@ dependencies = [ "oxc_str 0.146.0", ] +[[package]] +name = "oxc_span" +version = "0.147.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "378737bf42338e31badcdae2e6e2afc7a63cb7ffe82c418ac12d506c554adda4" +dependencies = [ + "compact_str", + "oxc_allocator 0.147.0", + "oxc_ast_macros 0.147.0", + "oxc_estree 0.147.0", + "oxc_str 0.147.0", +] + [[package]] name = "oxc_str" version = "0.144.0" @@ -942,6 +991,18 @@ dependencies = [ "oxc_estree 0.146.0", ] +[[package]] +name = "oxc_str" +version = "0.147.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8564a0269f93153f856100db908af25434efdd1ec9d403ffa099cdab57385c8c" +dependencies = [ + "compact_str", + "hashbrown 0.17.1", + "oxc_allocator 0.147.0", + "oxc_estree 0.147.0", +] + [[package]] name = "oxc_syntax" version = "0.144.0" @@ -962,6 +1023,25 @@ dependencies = [ "unicode-id-start", ] +[[package]] +name = "oxc_syntax" +version = "0.147.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59f05978138676c9d54f021391409fcf1314a46adcdbbaabc670c2990f8387dd" +dependencies = [ + "bitflags", + "cow-utils", + "nonmax", + "oxc_allocator 0.147.0", + "oxc_ast_macros 0.147.0", + "oxc_estree 0.147.0", + "oxc_index", + "oxc_span 0.147.0", + "oxc_str 0.147.0", + "phf", + "unicode-id-start", +] + [[package]] name = "percent-encoding" version = "2.3.2" @@ -1573,7 +1653,7 @@ dependencies = [ "oxc_diagnostics 0.146.0", "oxc_parser", "oxc_span 0.144.0", - "oxc_syntax", + "oxc_syntax 0.147.0", "rayon", "regex", "rstest", diff --git a/Cargo.toml b/Cargo.toml index 5c6882e..80e9811 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ oxc_allocator = "0.144" oxc_ast = "0.144" oxc_ast_visit = "0.144" oxc_span = "0.144" -oxc_syntax = "0.144" +oxc_syntax = "0.147" oxc_diagnostics = "0.146" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"