diff --git a/.changeset/chubby-breads-call.md b/.changeset/chubby-breads-call.md new file mode 100644 index 00000000..e6e1023d --- /dev/null +++ b/.changeset/chubby-breads-call.md @@ -0,0 +1,5 @@ +--- +"@devup-ui/wasm": patch +--- + +Update wasm diff --git a/Cargo.lock b/Cargo.lock index de341f25..10606525 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -253,7 +253,7 @@ name = "css" version = "0.1.0" dependencies = [ "once_cell", - "phf", + "phf 0.13.1", "regex", "rstest", "serde", @@ -316,7 +316,7 @@ dependencies = [ "oxc_parser", "oxc_span", "oxc_syntax", - "phf", + "phf 0.13.1", "rstest", "serial_test", "strum", @@ -680,7 +680,7 @@ version = "0.82.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5958a8ac69a955048dabcfcbf8af791dbb7f598bbea5bae33243240f3846457c" dependencies = [ - "phf", + "phf 0.12.1", "proc-macro2", "quote", "syn", @@ -813,7 +813,7 @@ dependencies = [ "oxc_ast_macros", "oxc_diagnostics", "oxc_span", - "phf", + "phf 0.12.1", "rustc-hash", "unicode-id-start", ] @@ -835,7 +835,7 @@ dependencies = [ "oxc_index", "oxc_span", "oxc_syntax", - "phf", + "phf 0.12.1", "rustc-hash", "self_cell", ] @@ -883,7 +883,7 @@ dependencies = [ "oxc_estree", "oxc_index", "oxc_span", - "phf", + "phf 0.12.1", "rustc-hash", "unicode-id-start", ] @@ -935,8 +935,19 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" dependencies = [ - "phf_macros", - "phf_shared", + "phf_macros 0.12.1", + "phf_shared 0.12.1", + "serde", +] + +[[package]] +name = "phf" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf" +dependencies = [ + "phf_macros 0.13.1", + "phf_shared 0.13.1", "serde", ] @@ -947,7 +958,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2cbb1126afed61dd6368748dae63b1ee7dc480191c6262a3b4ff1e29d86a6c5b" dependencies = [ "fastrand", - "phf_shared", + "phf_shared 0.12.1", +] + +[[package]] +name = "phf_generator" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737" +dependencies = [ + "fastrand", + "phf_shared 0.13.1", ] [[package]] @@ -956,8 +977,21 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d713258393a82f091ead52047ca779d37e5766226d009de21696c4e667044368" dependencies = [ - "phf_generator", - "phf_shared", + "phf_generator 0.12.1", + "phf_shared 0.12.1", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "phf_macros" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef" +dependencies = [ + "phf_generator 0.13.1", + "phf_shared 0.13.1", "proc-macro2", "quote", "syn", @@ -972,6 +1006,15 @@ dependencies = [ "siphasher", ] +[[package]] +name = "phf_shared" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266" +dependencies = [ + "siphasher", +] + [[package]] name = "pin-project-lite" version = "0.2.16" @@ -1070,9 +1113,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.11.1" +version = "1.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" +checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912" dependencies = [ "aho-corasick", "memchr", @@ -1352,9 +1395,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.104" +version = "2.0.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" +checksum = "7bc3fcb250e53458e712715cf74285c1f889686520d79294a9ef3bd7aa1fc619" dependencies = [ "proc-macro2", "quote", diff --git a/libs/css/Cargo.toml b/libs/css/Cargo.toml index 39235030..038ce372 100644 --- a/libs/css/Cargo.toml +++ b/libs/css/Cargo.toml @@ -5,10 +5,10 @@ edition = "2024" [dependencies] once_cell = "1.21.3" -phf = { version = "0.12", features = ["macros"] } +phf = { version = "0.13", features = ["macros"] } serial_test = "3.2.0" serde = { version = "1.0.219", features = ["derive"] } -regex = "1.11.1" +regex = "1.11.2" [dev-dependencies] rstest = "0.26.1" diff --git a/libs/extractor/Cargo.toml b/libs/extractor/Cargo.toml index d7888aae..a0214628 100644 --- a/libs/extractor/Cargo.toml +++ b/libs/extractor/Cargo.toml @@ -12,7 +12,7 @@ oxc_ast = "0.82.3" oxc_ast_visit = "0.82.3" oxc_codegen = "0.82.3" css = { path = "../css" } -phf = "0.12" +phf = "0.13" strum = "0.27.2" strum_macros = "0.27.2" diff --git a/libs/sheet/Cargo.toml b/libs/sheet/Cargo.toml index f0a6e883..137b2bc5 100644 --- a/libs/sheet/Cargo.toml +++ b/libs/sheet/Cargo.toml @@ -6,7 +6,7 @@ edition = "2024" [dependencies] css = { path = "../css" } serde = { version = "1.0.219", features = ["derive"] } -regex = "1.11.1" +regex = "1.11.2" once_cell = "1.21.3" extractor = { path = "../extractor" }