Rust library to generate static websites
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(rolldown): Update to latest version

Princesseuh 69452d6b 81e7f342

+980 -423
+977 -420
Cargo.lock
··· 116 116 checksum = "03918c3dbd7701a85c6b9887732e2921175f26c350b4563841d0958c21d57e6d" 117 117 118 118 [[package]] 119 - name = "ariadne" 120 - version = "0.5.1" 121 - source = "registry+https://github.com/rust-lang/crates.io-index" 122 - checksum = "36f5e3dca4e09a6f340a61a0e9c7b61e030c69fc27bf29d73218f7e5e3b7638f" 123 - dependencies = [ 124 - "unicode-width 0.1.14", 125 - "yansi", 126 - ] 127 - 128 - [[package]] 129 119 name = "arrayref" 130 120 version = "0.3.9" 131 121 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 136 126 version = "0.7.6" 137 127 source = "registry+https://github.com/rust-lang/crates.io-index" 138 128 checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 139 - 140 - [[package]] 141 - name = "assert-unchecked" 142 - version = "0.1.2" 143 - source = "registry+https://github.com/rust-lang/crates.io-index" 144 - checksum = "7330592adf847ee2e3513587b4db2db410a0d751378654e7e993d9adcbe5c795" 145 129 146 130 [[package]] 147 131 name = "async-priority-channel" ··· 307 291 ] 308 292 309 293 [[package]] 294 + name = "bincode" 295 + version = "2.0.1" 296 + source = "registry+https://github.com/rust-lang/crates.io-index" 297 + checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740" 298 + dependencies = [ 299 + "bincode_derive", 300 + "serde", 301 + "unty", 302 + ] 303 + 304 + [[package]] 305 + name = "bincode_derive" 306 + version = "2.0.1" 307 + source = "registry+https://github.com/rust-lang/crates.io-index" 308 + checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09" 309 + dependencies = [ 310 + "virtue", 311 + ] 312 + 313 + [[package]] 314 + name = "bit-set" 315 + version = "0.8.0" 316 + source = "registry+https://github.com/rust-lang/crates.io-index" 317 + checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" 318 + dependencies = [ 319 + "bit-vec", 320 + ] 321 + 322 + [[package]] 323 + name = "bit-vec" 324 + version = "0.8.0" 325 + source = "registry+https://github.com/rust-lang/crates.io-index" 326 + checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" 327 + 328 + [[package]] 310 329 name = "bitflags" 311 330 version = "1.3.2" 312 331 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 344 363 ] 345 364 346 365 [[package]] 366 + name = "brk_rolldown" 367 + version = "0.1.4" 368 + source = "registry+https://github.com/rust-lang/crates.io-index" 369 + checksum = "010960c65a7c74c19d5f4436b8f87702951d2d48d4a28a2c0dd013945bcc113d" 370 + dependencies = [ 371 + "anyhow", 372 + "append-only-vec", 373 + "arcstr", 374 + "bitflags 2.9.2", 375 + "brk_rolldown_common", 376 + "brk_rolldown_debug", 377 + "brk_rolldown_ecmascript", 378 + "brk_rolldown_ecmascript_utils", 379 + "brk_rolldown_error", 380 + "brk_rolldown_fs", 381 + "brk_rolldown_plugin", 382 + "brk_rolldown_plugin_chunk_import_map", 383 + "brk_rolldown_plugin_data_uri", 384 + "brk_rolldown_plugin_hmr", 385 + "brk_rolldown_resolver", 386 + "brk_rolldown_sourcemap", 387 + "brk_rolldown_std_utils", 388 + "brk_rolldown_tracing", 389 + "brk_rolldown_utils", 390 + "brk_string_wizard", 391 + "commondir", 392 + "css-module-lexer", 393 + "dunce", 394 + "futures", 395 + "indexmap", 396 + "itertools", 397 + "itoa", 398 + "memchr", 399 + "notify 8.2.0", 400 + "oxc", 401 + "oxc_ecmascript", 402 + "oxc_index", 403 + "oxc_traverse", 404 + "petgraph", 405 + "rustc-hash", 406 + "serde", 407 + "serde_json", 408 + "sugar_path", 409 + "tokio", 410 + "tracing", 411 + "url", 412 + "xxhash-rust", 413 + ] 414 + 415 + [[package]] 416 + name = "brk_rolldown_common" 417 + version = "0.1.4" 418 + source = "registry+https://github.com/rust-lang/crates.io-index" 419 + checksum = "23cd66173b33436aaec126f64e8f1d0938539d2eb934e88c633cf6181f7e4c53" 420 + dependencies = [ 421 + "anyhow", 422 + "arcstr", 423 + "bitflags 2.9.2", 424 + "brk_rolldown_ecmascript", 425 + "brk_rolldown_error", 426 + "brk_rolldown_fs", 427 + "brk_rolldown_sourcemap", 428 + "brk_rolldown_std_utils", 429 + "brk_rolldown_utils", 430 + "brk_string_wizard", 431 + "dashmap", 432 + "derive_more", 433 + "fast-glob", 434 + "itertools", 435 + "num-bigint", 436 + "oxc", 437 + "oxc_ecmascript", 438 + "oxc_index", 439 + "oxc_resolver", 440 + "rustc-hash", 441 + "serde", 442 + "serde_json", 443 + "sugar_path", 444 + "tokio", 445 + ] 446 + 447 + [[package]] 448 + name = "brk_rolldown_debug" 449 + version = "0.1.4" 450 + source = "registry+https://github.com/rust-lang/crates.io-index" 451 + checksum = "247e0e91e73e0cee560046f0c9ac926659fb8dd7d868bf8a2121779d3066e78c" 452 + dependencies = [ 453 + "blake3", 454 + "brk_rolldown_debug_action", 455 + "dashmap", 456 + "rustc-hash", 457 + "serde", 458 + "serde_json", 459 + "tracing", 460 + "tracing-subscriber", 461 + ] 462 + 463 + [[package]] 464 + name = "brk_rolldown_debug_action" 465 + version = "0.1.4" 466 + source = "registry+https://github.com/rust-lang/crates.io-index" 467 + checksum = "1080c5563e49c04bf6fe91cdcaa46b2edc3cfa40e2a4acc3378a6bf8fdb0adda" 468 + dependencies = [ 469 + "serde", 470 + "ts-rs", 471 + ] 472 + 473 + [[package]] 474 + name = "brk_rolldown_ecmascript" 475 + version = "0.1.4" 476 + source = "registry+https://github.com/rust-lang/crates.io-index" 477 + checksum = "ee5a1a1f6c8b655b6dd3303c7076163af9345f0b212f4e7420d20cba7f5dc4f0" 478 + dependencies = [ 479 + "arcstr", 480 + "brk_rolldown_error", 481 + "oxc", 482 + "oxc_sourcemap", 483 + "self_cell", 484 + ] 485 + 486 + [[package]] 487 + name = "brk_rolldown_ecmascript_utils" 488 + version = "0.1.4" 489 + source = "registry+https://github.com/rust-lang/crates.io-index" 490 + checksum = "71b0bb857b1475a1d0f962a841f9e6844964815181d221a66a75a0f638a87e89" 491 + dependencies = [ 492 + "brk_rolldown_common", 493 + "oxc", 494 + "smallvec", 495 + ] 496 + 497 + [[package]] 498 + name = "brk_rolldown_error" 499 + version = "0.1.4" 500 + source = "registry+https://github.com/rust-lang/crates.io-index" 501 + checksum = "9fd007c612609bcf46e3dca4f9f3c79d16dc1f0bdf7cd0047bfe752fbc6fbecc" 502 + dependencies = [ 503 + "anyhow", 504 + "arcstr", 505 + "bitflags 2.9.2", 506 + "brk_rolldown_utils", 507 + "derive_more", 508 + "heck", 509 + "oxc", 510 + "oxc_resolver", 511 + "rolldown-ariadne", 512 + "ropey", 513 + "rustc-hash", 514 + "sugar_path", 515 + ] 516 + 517 + [[package]] 518 + name = "brk_rolldown_fs" 519 + version = "0.1.4" 520 + source = "registry+https://github.com/rust-lang/crates.io-index" 521 + checksum = "f8c0ad1920283907b092236ac53f214fc013ce0cc18b7e2ba448ee459043189f" 522 + dependencies = [ 523 + "oxc_resolver", 524 + "vfs", 525 + ] 526 + 527 + [[package]] 528 + name = "brk_rolldown_plugin" 529 + version = "0.1.4" 530 + source = "registry+https://github.com/rust-lang/crates.io-index" 531 + checksum = "0b0adf5b4b4e50e6e7abb838fd8490b1b9282fc7a1b0a8e97575a95b692be31d" 532 + dependencies = [ 533 + "anyhow", 534 + "arcstr", 535 + "async-trait", 536 + "bitflags 2.9.2", 537 + "brk_rolldown_common", 538 + "brk_rolldown_debug", 539 + "brk_rolldown_ecmascript", 540 + "brk_rolldown_error", 541 + "brk_rolldown_resolver", 542 + "brk_rolldown_sourcemap", 543 + "brk_rolldown_utils", 544 + "brk_string_wizard", 545 + "dashmap", 546 + "derive_more", 547 + "oxc_index", 548 + "rustc-hash", 549 + "serde", 550 + "serde_json", 551 + "sugar_path", 552 + "tokio", 553 + "tracing", 554 + "typedmap", 555 + ] 556 + 557 + [[package]] 558 + name = "brk_rolldown_plugin_chunk_import_map" 559 + version = "0.1.4" 560 + source = "registry+https://github.com/rust-lang/crates.io-index" 561 + checksum = "e71203616a1bbc27f366a9187dcd99303ddd269ff1ee33c60b1878ff492c0dce" 562 + dependencies = [ 563 + "arcstr", 564 + "brk_rolldown_common", 565 + "brk_rolldown_plugin", 566 + "brk_rolldown_utils", 567 + "rustc-hash", 568 + "serde_json", 569 + "xxhash-rust", 570 + ] 571 + 572 + [[package]] 573 + name = "brk_rolldown_plugin_data_uri" 574 + version = "0.1.4" 575 + source = "registry+https://github.com/rust-lang/crates.io-index" 576 + checksum = "7bedaadb22c7c0975604b57b7862ec6e220764330156f54e339ac70b16641f53" 577 + dependencies = [ 578 + "arcstr", 579 + "base64-simd", 580 + "brk_rolldown_common", 581 + "brk_rolldown_plugin", 582 + "brk_rolldown_utils", 583 + "urlencoding", 584 + ] 585 + 586 + [[package]] 587 + name = "brk_rolldown_plugin_hmr" 588 + version = "0.1.4" 589 + source = "registry+https://github.com/rust-lang/crates.io-index" 590 + checksum = "ca831a54b5a83b554063960648f0f540fdb101033ac83a23883648c43482ab5d" 591 + dependencies = [ 592 + "arcstr", 593 + "brk_rolldown_common", 594 + "brk_rolldown_plugin", 595 + "oxc", 596 + ] 597 + 598 + [[package]] 599 + name = "brk_rolldown_resolver" 600 + version = "0.1.4" 601 + source = "registry+https://github.com/rust-lang/crates.io-index" 602 + checksum = "4dda2ee25ea4a0bca25025a919092add30c06e920671103b8ab1dafd07ebc804" 603 + dependencies = [ 604 + "arcstr", 605 + "brk_rolldown_common", 606 + "brk_rolldown_fs", 607 + "brk_rolldown_utils", 608 + "dashmap", 609 + "itertools", 610 + "oxc_resolver", 611 + "sugar_path", 612 + ] 613 + 614 + [[package]] 615 + name = "brk_rolldown_sourcemap" 616 + version = "0.1.4" 617 + source = "registry+https://github.com/rust-lang/crates.io-index" 618 + checksum = "9fa747f34a65f2b4605bf116a596807a130aa96a0aff6a6e7c69c23bcc77a71d" 619 + dependencies = [ 620 + "brk_rolldown_utils", 621 + "memchr", 622 + "oxc", 623 + "oxc_sourcemap", 624 + "rustc-hash", 625 + ] 626 + 627 + [[package]] 628 + name = "brk_rolldown_std_utils" 629 + version = "0.1.4" 630 + source = "registry+https://github.com/rust-lang/crates.io-index" 631 + checksum = "8bb452af6b4553d11a0648cafaf96a718b8726d9430f5be7608d154c17cff34c" 632 + dependencies = [ 633 + "regex", 634 + ] 635 + 636 + [[package]] 637 + name = "brk_rolldown_tracing" 638 + version = "0.1.4" 639 + source = "registry+https://github.com/rust-lang/crates.io-index" 640 + checksum = "46c8c62d0a76d9cbe90d711aa79af5e4b8148a65004539bb0655a09030cd90dc" 641 + dependencies = [ 642 + "tracing", 643 + "tracing-chrome", 644 + "tracing-subscriber", 645 + ] 646 + 647 + [[package]] 648 + name = "brk_rolldown_utils" 649 + version = "0.1.4" 650 + source = "registry+https://github.com/rust-lang/crates.io-index" 651 + checksum = "e438af059be459547cbb9a9977dfac6bcf91103c7180be92a2590fb1e1051fab" 652 + dependencies = [ 653 + "anyhow", 654 + "arcstr", 655 + "async-scoped", 656 + "base-encode", 657 + "base64-simd", 658 + "brk_rolldown_std_utils", 659 + "cow-utils", 660 + "dashmap", 661 + "fast-glob", 662 + "form_urlencoded", 663 + "futures", 664 + "indexmap", 665 + "infer", 666 + "itoa", 667 + "memchr", 668 + "mime", 669 + "nom", 670 + "oxc", 671 + "oxc_index", 672 + "phf 0.12.1", 673 + "rayon", 674 + "regex", 675 + "regress", 676 + "rustc-hash", 677 + "serde_json", 678 + "simdutf8", 679 + "sugar_path", 680 + "tokio", 681 + "uuid", 682 + "xxhash-rust", 683 + ] 684 + 685 + [[package]] 686 + name = "brk_string_wizard" 687 + version = "0.1.4" 688 + source = "registry+https://github.com/rust-lang/crates.io-index" 689 + checksum = "054f2739a8615fcfc6823021ae0cfb8189714f01d586de08a7eaa7d3a9f2b7ef" 690 + dependencies = [ 691 + "oxc_index", 692 + "oxc_sourcemap", 693 + "rustc-hash", 694 + "serde", 695 + ] 696 + 697 + [[package]] 347 698 name = "bstr" 348 699 version = "1.12.0" 349 700 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 471 822 checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" 472 823 473 824 [[package]] 825 + name = "clean-path" 826 + version = "0.2.1" 827 + source = "registry+https://github.com/rust-lang/crates.io-index" 828 + checksum = "aaa6b4b263a5d737e9bf6b7c09b72c41a5480aec4d7219af827f6564e950b6a5" 829 + 830 + [[package]] 474 831 name = "colorchoice" 475 832 version = "1.0.4" 476 833 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 487 844 ] 488 845 489 846 [[package]] 847 + name = "commondir" 848 + version = "1.0.0" 849 + source = "registry+https://github.com/rust-lang/crates.io-index" 850 + checksum = "ab552acb7c0a751c75c3dd4f9b95d31ed85c985ce5c70232a2952ffbe7ecfda5" 851 + dependencies = [ 852 + "thiserror 1.0.69", 853 + ] 854 + 855 + [[package]] 490 856 name = "compact_str" 491 - version = "0.8.1" 857 + version = "0.9.0" 492 858 source = "registry+https://github.com/rust-lang/crates.io-index" 493 - checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32" 859 + checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a" 494 860 dependencies = [ 495 861 "castaway", 496 862 "cfg-if", ··· 508 874 checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 509 875 dependencies = [ 510 876 "crossbeam-utils", 877 + ] 878 + 879 + [[package]] 880 + name = "concurrent_lru" 881 + version = "0.2.0" 882 + source = "registry+https://github.com/rust-lang/crates.io-index" 883 + checksum = "7feb5cb312f774e8a24540e27206db4e890f7d488563671d24a16389cf4c2e4e" 884 + dependencies = [ 885 + "once_cell", 511 886 ] 512 887 513 888 [[package]] ··· 633 1008 "cssparser-macros", 634 1009 "dtoa-short", 635 1010 "itoa", 636 - "phf", 1011 + "phf 0.11.3", 637 1012 "smallvec", 638 1013 ] 639 1014 ··· 648 1023 ] 649 1024 650 1025 [[package]] 651 - name = "daachorse" 652 - version = "1.0.0" 653 - source = "registry+https://github.com/rust-lang/crates.io-index" 654 - checksum = "63b7ef7a4be509357f4804d0a22e830daddb48f19fd604e4ad32ddce04a94c36" 655 - 656 - [[package]] 657 1026 name = "dashmap" 658 1027 version = "6.1.0" 659 1028 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 700 1069 "proc-macro2", 701 1070 "quote", 702 1071 "syn 2.0.106", 1072 + "unicode-xid", 703 1073 ] 704 1074 705 1075 [[package]] ··· 717 1087 "block-buffer", 718 1088 "crypto-common", 719 1089 ] 1090 + 1091 + [[package]] 1092 + name = "displaydoc" 1093 + version = "0.2.5" 1094 + source = "registry+https://github.com/rust-lang/crates.io-index" 1095 + checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 1096 + dependencies = [ 1097 + "proc-macro2", 1098 + "quote", 1099 + "syn 2.0.106", 1100 + ] 1101 + 1102 + [[package]] 1103 + name = "dragonbox_ecma" 1104 + version = "0.0.5" 1105 + source = "registry+https://github.com/rust-lang/crates.io-index" 1106 + checksum = "d742b56656e8b14d63e7ea9806597b1849ae25412584c8adf78c0f67bd985e66" 720 1107 721 1108 [[package]] 722 1109 name = "dtoa" ··· 823 1210 ] 824 1211 825 1212 [[package]] 1213 + name = "fancy-regex" 1214 + version = "0.14.0" 1215 + source = "registry+https://github.com/rust-lang/crates.io-index" 1216 + checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298" 1217 + dependencies = [ 1218 + "bit-set", 1219 + "regex-automata 0.4.9", 1220 + "regex-syntax 0.8.5", 1221 + ] 1222 + 1223 + [[package]] 1224 + name = "fast-glob" 1225 + version = "1.0.0" 1226 + source = "registry+https://github.com/rust-lang/crates.io-index" 1227 + checksum = "3d26eec0ae9682c457cb0f85de67ad417b716ae852736a5d94c2ad6e92a997c9" 1228 + dependencies = [ 1229 + "arrayvec", 1230 + ] 1231 + 1232 + [[package]] 826 1233 name = "faster-hex" 827 1234 version = "0.10.0" 828 1235 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1300 1707 checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" 1301 1708 1302 1709 [[package]] 1303 - name = "glob-match" 1304 - version = "0.2.1" 1305 - source = "registry+https://github.com/rust-lang/crates.io-index" 1306 - checksum = "9985c9503b412198aa4197559e9a318524ebc4519c229bfa05a535828c950b9d" 1307 - 1308 - [[package]] 1309 1710 name = "globset" 1310 1711 version = "0.4.16" 1311 1712 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1483 1884 ] 1484 1885 1485 1886 [[package]] 1887 + name = "icu_collections" 1888 + version = "2.0.0" 1889 + source = "registry+https://github.com/rust-lang/crates.io-index" 1890 + checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 1891 + dependencies = [ 1892 + "displaydoc", 1893 + "potential_utf", 1894 + "yoke", 1895 + "zerofrom", 1896 + "zerovec", 1897 + ] 1898 + 1899 + [[package]] 1900 + name = "icu_locale_core" 1901 + version = "2.0.0" 1902 + source = "registry+https://github.com/rust-lang/crates.io-index" 1903 + checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 1904 + dependencies = [ 1905 + "displaydoc", 1906 + "litemap", 1907 + "tinystr", 1908 + "writeable", 1909 + "zerovec", 1910 + ] 1911 + 1912 + [[package]] 1913 + name = "icu_normalizer" 1914 + version = "2.0.0" 1915 + source = "registry+https://github.com/rust-lang/crates.io-index" 1916 + checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 1917 + dependencies = [ 1918 + "displaydoc", 1919 + "icu_collections", 1920 + "icu_normalizer_data", 1921 + "icu_properties", 1922 + "icu_provider", 1923 + "smallvec", 1924 + "zerovec", 1925 + ] 1926 + 1927 + [[package]] 1928 + name = "icu_normalizer_data" 1929 + version = "2.0.0" 1930 + source = "registry+https://github.com/rust-lang/crates.io-index" 1931 + checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 1932 + 1933 + [[package]] 1934 + name = "icu_properties" 1935 + version = "2.0.1" 1936 + source = "registry+https://github.com/rust-lang/crates.io-index" 1937 + checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 1938 + dependencies = [ 1939 + "displaydoc", 1940 + "icu_collections", 1941 + "icu_locale_core", 1942 + "icu_properties_data", 1943 + "icu_provider", 1944 + "potential_utf", 1945 + "zerotrie", 1946 + "zerovec", 1947 + ] 1948 + 1949 + [[package]] 1950 + name = "icu_properties_data" 1951 + version = "2.0.1" 1952 + source = "registry+https://github.com/rust-lang/crates.io-index" 1953 + checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 1954 + 1955 + [[package]] 1956 + name = "icu_provider" 1957 + version = "2.0.0" 1958 + source = "registry+https://github.com/rust-lang/crates.io-index" 1959 + checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 1960 + dependencies = [ 1961 + "displaydoc", 1962 + "icu_locale_core", 1963 + "stable_deref_trait", 1964 + "tinystr", 1965 + "writeable", 1966 + "yoke", 1967 + "zerofrom", 1968 + "zerotrie", 1969 + "zerovec", 1970 + ] 1971 + 1972 + [[package]] 1973 + name = "idna" 1974 + version = "1.0.3" 1975 + source = "registry+https://github.com/rust-lang/crates.io-index" 1976 + checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 1977 + dependencies = [ 1978 + "idna_adapter", 1979 + "smallvec", 1980 + "utf8_iter", 1981 + ] 1982 + 1983 + [[package]] 1984 + name = "idna_adapter" 1985 + version = "1.2.1" 1986 + source = "registry+https://github.com/rust-lang/crates.io-index" 1987 + checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 1988 + dependencies = [ 1989 + "icu_normalizer", 1990 + "icu_properties", 1991 + ] 1992 + 1993 + [[package]] 1486 1994 name = "ignore" 1487 1995 version = "0.4.23" 1488 1996 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1530 2038 1531 2039 [[package]] 1532 2040 name = "infer" 1533 - version = "0.16.0" 2041 + version = "0.19.0" 1534 2042 source = "registry+https://github.com/rust-lang/crates.io-index" 1535 - checksum = "bc150e5ce2330295b8616ce0e3f53250e53af31759a9dbedad1621ba29151847" 2043 + checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" 1536 2044 dependencies = [ 1537 2045 "cfb", 1538 2046 ] ··· 1741 2249 version = "0.9.4" 1742 2250 source = "registry+https://github.com/rust-lang/crates.io-index" 1743 2251 checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" 2252 + 2253 + [[package]] 2254 + name = "litemap" 2255 + version = "0.8.0" 2256 + source = "registry+https://github.com/rust-lang/crates.io-index" 2257 + checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 1744 2258 1745 2259 [[package]] 1746 2260 name = "local-ip-address" ··· 1830 2344 version = "0.2.0" 1831 2345 dependencies = [ 1832 2346 "blake3", 2347 + "brk_rolldown", 1833 2348 "chrono", 1834 2349 "colored", 1835 2350 "dyn-eq", ··· 1839 2354 "lol_html", 1840 2355 "maud", 1841 2356 "maudit-macros", 1842 - "maudit_rolldown", 1843 2357 "pulldown-cmark", 1844 2358 "rustc-hash", 1845 2359 "serde", ··· 1939 2453 ] 1940 2454 1941 2455 [[package]] 1942 - name = "maudit_rolldown" 1943 - version = "0.1.0" 1944 - source = "registry+https://github.com/rust-lang/crates.io-index" 1945 - checksum = "32b142d6123358a990ab61809a01a07e1406cf7361849251f9930ebc46d5eb89" 1946 - dependencies = [ 1947 - "anyhow", 1948 - "append-only-vec", 1949 - "arcstr", 1950 - "css-module-lexer", 1951 - "daachorse", 1952 - "dunce", 1953 - "futures", 1954 - "indexmap", 1955 - "itertools", 1956 - "itoa", 1957 - "maudit_rolldown_common", 1958 - "maudit_rolldown_ecmascript", 1959 - "maudit_rolldown_ecmascript_utils", 1960 - "maudit_rolldown_error_fork", 1961 - "maudit_rolldown_fs", 1962 - "maudit_rolldown_loader_utils", 1963 - "maudit_rolldown_plugin", 1964 - "maudit_rolldown_plugin_data_url", 1965 - "maudit_rolldown_resolver", 1966 - "maudit_rolldown_rstr", 1967 - "maudit_rolldown_sourcemap", 1968 - "maudit_rolldown_std_utils", 1969 - "maudit_rolldown_tracing", 1970 - "maudit_rolldown_utils", 1971 - "memchr", 1972 - "notify 8.2.0", 1973 - "oxc", 1974 - "oxc_ecmascript", 1975 - "oxc_index", 1976 - "rustc-hash", 1977 - "sanitize-filename", 1978 - "serde", 1979 - "string_wizard", 1980 - "sugar_path", 1981 - "tokio", 1982 - "tracing", 1983 - "tracing-chrome", 1984 - "xxhash-rust", 1985 - ] 1986 - 1987 - [[package]] 1988 - name = "maudit_rolldown_common" 1989 - version = "0.1.0" 1990 - source = "registry+https://github.com/rust-lang/crates.io-index" 1991 - checksum = "071c7e782bd20ce78bb157e4610cbfad34490f669a07797b2bda00b782a90131" 1992 - dependencies = [ 1993 - "anyhow", 1994 - "arcstr", 1995 - "bitflags 2.9.2", 1996 - "dashmap", 1997 - "either", 1998 - "glob-match", 1999 - "itertools", 2000 - "maudit_rolldown_ecmascript", 2001 - "maudit_rolldown_error_fork", 2002 - "maudit_rolldown_fs", 2003 - "maudit_rolldown_rstr", 2004 - "maudit_rolldown_sourcemap", 2005 - "maudit_rolldown_std_utils", 2006 - "maudit_rolldown_utils", 2007 - "oxc", 2008 - "oxc_index", 2009 - "oxc_resolver", 2010 - "rustc-hash", 2011 - "serde", 2012 - "serde_json", 2013 - "string_wizard", 2014 - "sugar_path", 2015 - "tokio", 2016 - ] 2017 - 2018 - [[package]] 2019 - name = "maudit_rolldown_ecmascript" 2020 - version = "0.1.0" 2021 - source = "registry+https://github.com/rust-lang/crates.io-index" 2022 - checksum = "212b50b9255f5bedd065be3b21fcef49b0069c8998ddedb21eb14dfe3fd42a73" 2023 - dependencies = [ 2024 - "arcstr", 2025 - "either", 2026 - "maudit_rolldown_error_fork", 2027 - "oxc", 2028 - "oxc_sourcemap", 2029 - "self_cell", 2030 - ] 2031 - 2032 - [[package]] 2033 - name = "maudit_rolldown_ecmascript_utils" 2034 - version = "0.1.0" 2035 - source = "registry+https://github.com/rust-lang/crates.io-index" 2036 - checksum = "76ac05dd87ea41524f3430f0315a12ba1c9b501af0e97064eab3cd606d65b904" 2037 - dependencies = [ 2038 - "maudit_rolldown_common", 2039 - "oxc", 2040 - "smallvec", 2041 - ] 2042 - 2043 - [[package]] 2044 - name = "maudit_rolldown_error_fork" 2045 - version = "0.1.0" 2046 - source = "registry+https://github.com/rust-lang/crates.io-index" 2047 - checksum = "2ed716b771b1de41fc59c5c1d39e7e27d89ece5ef39f6e8c197624329ec72063" 2048 - dependencies = [ 2049 - "anyhow", 2050 - "arcstr", 2051 - "ariadne", 2052 - "heck", 2053 - "oxc", 2054 - "oxc_resolver", 2055 - "oxc_sourcemap", 2056 - "sugar_path", 2057 - ] 2058 - 2059 - [[package]] 2060 - name = "maudit_rolldown_fs" 2061 - version = "0.1.0" 2062 - source = "registry+https://github.com/rust-lang/crates.io-index" 2063 - checksum = "487649df652aa9051444b482b0a3b035ba8f23c64631ae7d69e0291ef74e9d4c" 2064 - dependencies = [ 2065 - "oxc_resolver", 2066 - "vfs", 2067 - ] 2068 - 2069 - [[package]] 2070 - name = "maudit_rolldown_loader_utils" 2071 - version = "0.1.0" 2072 - source = "registry+https://github.com/rust-lang/crates.io-index" 2073 - checksum = "a61dab1f64e805072875811391de6344a0da63b88abbfa0b704198702484e1e3" 2074 - dependencies = [ 2075 - "anyhow", 2076 - "itoa", 2077 - "maudit_rolldown_common", 2078 - "maudit_rolldown_utils", 2079 - "serde_json", 2080 - ] 2081 - 2082 - [[package]] 2083 - name = "maudit_rolldown_plugin" 2084 - version = "0.1.0" 2085 - source = "registry+https://github.com/rust-lang/crates.io-index" 2086 - checksum = "3e12b364ed3725200d2e24a21313f1ee53974a997999534bc3a1cc358b82b711" 2087 - dependencies = [ 2088 - "anyhow", 2089 - "arcstr", 2090 - "async-trait", 2091 - "dashmap", 2092 - "maudit_rolldown_common", 2093 - "maudit_rolldown_ecmascript", 2094 - "maudit_rolldown_error_fork", 2095 - "maudit_rolldown_resolver", 2096 - "maudit_rolldown_sourcemap", 2097 - "maudit_rolldown_utils", 2098 - "oxc_index", 2099 - "rustc-hash", 2100 - "serde", 2101 - "string_wizard", 2102 - "tokio", 2103 - "tracing", 2104 - "typedmap", 2105 - ] 2106 - 2107 - [[package]] 2108 - name = "maudit_rolldown_plugin_data_url" 2109 - version = "0.1.0" 2110 - source = "registry+https://github.com/rust-lang/crates.io-index" 2111 - checksum = "300b63c00af5fb63bfdc6c5a6fe414e1c0b3fb30e05123efcb376faa859deb00" 2112 - dependencies = [ 2113 - "base64-simd", 2114 - "maudit_rolldown_common", 2115 - "maudit_rolldown_plugin", 2116 - "maudit_rolldown_utils", 2117 - "regex", 2118 - "urlencoding", 2119 - ] 2120 - 2121 - [[package]] 2122 - name = "maudit_rolldown_resolver" 2123 - version = "0.1.0" 2124 - source = "registry+https://github.com/rust-lang/crates.io-index" 2125 - checksum = "2820572ce011d97b7206e1d723583b800e69a0bcf7cc2b851771388ee384e40f" 2126 - dependencies = [ 2127 - "arcstr", 2128 - "dashmap", 2129 - "itertools", 2130 - "maudit_rolldown_common", 2131 - "maudit_rolldown_fs", 2132 - "maudit_rolldown_utils", 2133 - "oxc_resolver", 2134 - "sugar_path", 2135 - ] 2136 - 2137 - [[package]] 2138 - name = "maudit_rolldown_rstr" 2139 - version = "0.1.0" 2140 - source = "registry+https://github.com/rust-lang/crates.io-index" 2141 - checksum = "8e9d9c92e777461cd6d3fa6873f3540767abf6598fd2b49f771dd8e63b211a06" 2142 - dependencies = [ 2143 - "oxc", 2144 - ] 2145 - 2146 - [[package]] 2147 - name = "maudit_rolldown_sourcemap" 2148 - version = "0.1.0" 2149 - source = "registry+https://github.com/rust-lang/crates.io-index" 2150 - checksum = "f4f1205c118f3a16e0d965b3dbeddd12c893c6379e45c35c0e3379572e9bd396" 2151 - dependencies = [ 2152 - "maudit_rolldown_utils", 2153 - "memchr", 2154 - "oxc", 2155 - "oxc_sourcemap", 2156 - "rustc-hash", 2157 - ] 2158 - 2159 - [[package]] 2160 - name = "maudit_rolldown_std_utils" 2161 - version = "0.1.0" 2162 - source = "registry+https://github.com/rust-lang/crates.io-index" 2163 - checksum = "2326744119c661f241aed9edef482bc4cd2769d5c5b287d03bdb76682349103a" 2164 - dependencies = [ 2165 - "regex", 2166 - ] 2167 - 2168 - [[package]] 2169 - name = "maudit_rolldown_tracing" 2170 - version = "0.1.0" 2171 - source = "registry+https://github.com/rust-lang/crates.io-index" 2172 - checksum = "0754c26e6f6813c509b01a59d2a3f5d6566165e8cf77147e793100e4de485b4c" 2173 - dependencies = [ 2174 - "tracing", 2175 - "tracing-chrome", 2176 - "tracing-subscriber", 2177 - ] 2178 - 2179 - [[package]] 2180 - name = "maudit_rolldown_utils" 2181 - version = "0.1.0" 2182 - source = "registry+https://github.com/rust-lang/crates.io-index" 2183 - checksum = "ac7d7fbde3b19c0308f7fa48b6765d8e3decd3380a74baf1bc6fa9c201664cd4" 2184 - dependencies = [ 2185 - "anyhow", 2186 - "arcstr", 2187 - "async-scoped", 2188 - "base-encode", 2189 - "base64-simd", 2190 - "dashmap", 2191 - "futures", 2192 - "glob-match", 2193 - "indexmap", 2194 - "infer", 2195 - "maudit_rolldown_std_utils", 2196 - "memchr", 2197 - "mime", 2198 - "oxc", 2199 - "oxc_index", 2200 - "phf", 2201 - "rayon", 2202 - "regex", 2203 - "regress", 2204 - "rustc-hash", 2205 - "simdutf8", 2206 - "xxhash-rust", 2207 - ] 2208 - 2209 - [[package]] 2210 2456 name = "memchr" 2211 2457 version = "2.7.5" 2212 2458 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2554 2800 2555 2801 [[package]] 2556 2802 name = "oxc" 2557 - version = "0.48.2" 2803 + version = "0.81.0" 2558 2804 source = "registry+https://github.com/rust-lang/crates.io-index" 2559 - checksum = "fa88d4faa0cf3e4bcdebb0d10b8627776a8d3b036d76d85787e076198886f04e" 2805 + checksum = "7420dea2e5dd2a6415f445acaa1f9192e62756bb26bb20b21c9730341f034d4f" 2560 2806 dependencies = [ 2561 2807 "oxc_allocator", 2562 2808 "oxc_ast", 2809 + "oxc_ast_visit", 2810 + "oxc_cfg", 2563 2811 "oxc_codegen", 2564 2812 "oxc_diagnostics", 2813 + "oxc_isolated_declarations", 2565 2814 "oxc_mangler", 2566 2815 "oxc_minifier", 2567 2816 "oxc_parser", ··· 2570 2819 "oxc_span", 2571 2820 "oxc_syntax", 2572 2821 "oxc_transformer", 2822 + "oxc_transformer_plugins", 2573 2823 ] 2574 2824 2575 2825 [[package]] 2576 2826 name = "oxc-browserslist" 2577 - version = "1.1.2" 2827 + version = "2.0.16" 2578 2828 source = "registry+https://github.com/rust-lang/crates.io-index" 2579 - checksum = "ba2705c663f10d23e2c1600ef89834a979afc1756a88197061bdbb275c608cd1" 2829 + checksum = "bd843fdc95833f2faf4251b701a812d488ef35958144af91b9ff540d9fe8ceaa" 2580 2830 dependencies = [ 2831 + "bincode 2.0.1", 2832 + "flate2", 2581 2833 "nom", 2582 2834 "rustc-hash", 2583 2835 "serde", ··· 2588 2840 2589 2841 [[package]] 2590 2842 name = "oxc-miette" 2591 - version = "1.0.2" 2843 + version = "2.4.0" 2592 2844 source = "registry+https://github.com/rust-lang/crates.io-index" 2593 - checksum = "e03e63fd113c068b82d07c9c614b0b146c08a3ac0a4dface3ea1d1a9d14d549e" 2845 + checksum = "31cfb121c9d3e0f9082856927f5cff9594279c91b544f4436e4bc971563caa60" 2594 2846 dependencies = [ 2595 2847 "cfg-if", 2596 2848 "owo-colors", 2597 2849 "oxc-miette-derive", 2598 2850 "textwrap", 2599 - "thiserror 1.0.69", 2851 + "thiserror 2.0.16", 2600 2852 "unicode-width 0.2.1", 2601 2853 ] 2602 2854 2603 2855 [[package]] 2604 2856 name = "oxc-miette-derive" 2605 - version = "1.0.2" 2857 + version = "2.4.0" 2606 2858 source = "registry+https://github.com/rust-lang/crates.io-index" 2607 - checksum = "e21f680e8c5f1900297d394627d495351b9e37761f7bbf90116bd5eeb6e80967" 2859 + checksum = "a6eabb57f935b454fbe0552ea0abaaf9eb0019b5fa05a7bbe7efd5bd8c765085" 2608 2860 dependencies = [ 2609 2861 "proc-macro2", 2610 2862 "quote", ··· 2613 2865 2614 2866 [[package]] 2615 2867 name = "oxc_allocator" 2616 - version = "0.48.2" 2868 + version = "0.81.0" 2617 2869 source = "registry+https://github.com/rust-lang/crates.io-index" 2618 - checksum = "17374a91329f2e362bc8be31cb3e171ef226777d0ea668e17a39620443693027" 2870 + checksum = "5c67f2b817263a72b6cc5b46e32467bc4077496f88315ce08c1796647fed84d4" 2619 2871 dependencies = [ 2620 2872 "allocator-api2", 2621 2873 "bumpalo", 2622 2874 "hashbrown 0.15.5", 2875 + "oxc_data_structures", 2876 + "oxc_estree", 2623 2877 "rustc-hash", 2624 2878 "serde", 2625 - "simdutf8", 2626 2879 ] 2627 2880 2628 2881 [[package]] 2629 2882 name = "oxc_ast" 2630 - version = "0.48.2" 2883 + version = "0.81.0" 2631 2884 source = "registry+https://github.com/rust-lang/crates.io-index" 2632 - checksum = "21b38cfe954ee987354af015020f5cb2723df6fed6cd688eff24388437c7eb7e" 2885 + checksum = "989b81258ce151e23adee6f1393f7c0fb7e10e3a6c6c001f71bbaff4081c72a4" 2633 2886 dependencies = [ 2634 2887 "bitflags 2.9.2", 2635 - "cow-utils", 2636 - "num-bigint", 2637 - "num-traits", 2638 2888 "oxc_allocator", 2639 2889 "oxc_ast_macros", 2890 + "oxc_data_structures", 2640 2891 "oxc_estree", 2641 2892 "oxc_regular_expression", 2642 2893 "oxc_span", 2643 2894 "oxc_syntax", 2644 - "serde", 2645 - "serde_json", 2646 2895 ] 2647 2896 2648 2897 [[package]] 2649 2898 name = "oxc_ast_macros" 2650 - version = "0.48.2" 2899 + version = "0.81.0" 2651 2900 source = "registry+https://github.com/rust-lang/crates.io-index" 2652 - checksum = "85f9e03eff90b041078edcc8aff09457eb4126fa5d62a383fdb082d3ae286274" 2901 + checksum = "ff7e8e42eea621e6fa7072a480fa04ae4dfe73f9a958822c066cc7f1eba57e82" 2653 2902 dependencies = [ 2903 + "phf 0.12.1", 2654 2904 "proc-macro2", 2655 2905 "quote", 2656 2906 "syn 2.0.106", 2657 2907 ] 2658 2908 2659 2909 [[package]] 2910 + name = "oxc_ast_visit" 2911 + version = "0.81.0" 2912 + source = "registry+https://github.com/rust-lang/crates.io-index" 2913 + checksum = "b0a968790ef8968de08d813a2fe1a15739930fb1c171fddeebf3545d802ea216" 2914 + dependencies = [ 2915 + "oxc_allocator", 2916 + "oxc_ast", 2917 + "oxc_data_structures", 2918 + "oxc_span", 2919 + "oxc_syntax", 2920 + ] 2921 + 2922 + [[package]] 2660 2923 name = "oxc_cfg" 2661 - version = "0.48.2" 2924 + version = "0.81.0" 2662 2925 source = "registry+https://github.com/rust-lang/crates.io-index" 2663 - checksum = "20347f1cff149f8d7354b0a16877714f4e3f7d6eb4f5cd659c3de1d5d283e846" 2926 + checksum = "5361ef66f38635d9671596d83abf44bcdbc3e39dbff303f3517828b86ad60e8f" 2664 2927 dependencies = [ 2665 2928 "bitflags 2.9.2", 2666 2929 "itertools", ··· 2673 2936 2674 2937 [[package]] 2675 2938 name = "oxc_codegen" 2676 - version = "0.48.2" 2939 + version = "0.81.0" 2677 2940 source = "registry+https://github.com/rust-lang/crates.io-index" 2678 - checksum = "d5bd847bc5d8a2b5a620e33e0b0422fc8ddb6c85562de97da6fe86659dfd571b" 2941 + checksum = "fde8fc6f7337632fce3e9e51c150f57fb0ef234524c6947f63e8009e1ea613cf" 2679 2942 dependencies = [ 2680 - "assert-unchecked", 2681 2943 "bitflags 2.9.2", 2682 2944 "cow-utils", 2945 + "dragonbox_ecma", 2683 2946 "nonmax", 2684 2947 "oxc_allocator", 2685 2948 "oxc_ast", ··· 2690 2953 "oxc_span", 2691 2954 "oxc_syntax", 2692 2955 "rustc-hash", 2693 - "ryu-js", 2694 2956 ] 2695 2957 2696 2958 [[package]] 2697 2959 name = "oxc_data_structures" 2698 - version = "0.48.2" 2960 + version = "0.81.0" 2699 2961 source = "registry+https://github.com/rust-lang/crates.io-index" 2700 - checksum = "3697dd172835a236572748761301a7e3a17fb770cf30bb771ec10982fcbd86c8" 2962 + checksum = "16c58a40be09dbb289150046a39da2fb130eb5b8ff1f013f2963e880e1af261c" 2701 2963 dependencies = [ 2702 - "assert-unchecked", 2703 2964 "ropey", 2965 + "rustversion", 2704 2966 ] 2705 2967 2706 2968 [[package]] 2707 2969 name = "oxc_diagnostics" 2708 - version = "0.48.2" 2970 + version = "0.81.0" 2709 2971 source = "registry+https://github.com/rust-lang/crates.io-index" 2710 - checksum = "a24c41929c1910d83fb6f4c508190a8b2d1bad02e81c8cb3a9d3f474ca0ad2c1" 2972 + checksum = "702bde62d95587518aec86247457830f189242f814fba8389beb6e8c1585c444" 2711 2973 dependencies = [ 2712 2974 "cow-utils", 2713 2975 "oxc-miette", 2976 + "percent-encoding", 2714 2977 ] 2715 2978 2716 2979 [[package]] 2717 2980 name = "oxc_ecmascript" 2718 - version = "0.48.2" 2981 + version = "0.81.0" 2719 2982 source = "registry+https://github.com/rust-lang/crates.io-index" 2720 - checksum = "30fba86c97b571671f941b818e6831ba821aac398b9f6f3b4e3367ca264b8324" 2983 + checksum = "cf4dab5abe97e790fe1b631a7eacb9a1cbecbe2dad5b984ef11fcb9115b376ab" 2721 2984 dependencies = [ 2985 + "cow-utils", 2722 2986 "num-bigint", 2723 2987 "num-traits", 2988 + "oxc_allocator", 2724 2989 "oxc_ast", 2725 2990 "oxc_span", 2726 2991 "oxc_syntax", ··· 2728 2993 2729 2994 [[package]] 2730 2995 name = "oxc_estree" 2731 - version = "0.48.2" 2996 + version = "0.81.0" 2732 2997 source = "registry+https://github.com/rust-lang/crates.io-index" 2733 - checksum = "e587034bb5f108dd987e5419a4ad35a173550bd9439fc2b610d34e4ce41e8b23" 2998 + checksum = "aa9a453daacd90f168554015dd49467038ab6894045805f861950c1d0a8e6a5e" 2734 2999 dependencies = [ 2735 - "serde", 3000 + "dragonbox_ecma", 3001 + "itoa", 3002 + "oxc_data_structures", 2736 3003 ] 2737 3004 2738 3005 [[package]] 2739 3006 name = "oxc_index" 2740 - version = "2.0.0" 3007 + version = "3.0.0" 2741 3008 source = "registry+https://github.com/rust-lang/crates.io-index" 2742 - checksum = "5eca5d9726cd0a6e433debe003b7bc88b2ecad0bb6109f0cef7c55e692139a34" 3009 + checksum = "2fa07b0cfa997730afed43705766ef27792873fdf5215b1391949fec678d2392" 2743 3010 dependencies = [ 2744 3011 "rayon", 2745 3012 "serde", 2746 3013 ] 2747 3014 2748 3015 [[package]] 3016 + name = "oxc_isolated_declarations" 3017 + version = "0.81.0" 3018 + source = "registry+https://github.com/rust-lang/crates.io-index" 3019 + checksum = "83d8c311d64fa0bf8cab1bde3f7760cd828e71ed483ca0878799f1f72542cb4d" 3020 + dependencies = [ 3021 + "bitflags 2.9.2", 3022 + "oxc_allocator", 3023 + "oxc_ast", 3024 + "oxc_ast_visit", 3025 + "oxc_diagnostics", 3026 + "oxc_ecmascript", 3027 + "oxc_span", 3028 + "oxc_syntax", 3029 + "rustc-hash", 3030 + ] 3031 + 3032 + [[package]] 2749 3033 name = "oxc_mangler" 2750 - version = "0.48.2" 3034 + version = "0.81.0" 2751 3035 source = "registry+https://github.com/rust-lang/crates.io-index" 2752 - checksum = "5bd6c4138580a7df85ea5eb141014c86e4f19e7496eec91797b05ab73d8fb65e" 3036 + checksum = "a19a662666a6a150e91a5aee2e99287800c561682841f68736170312b1275d10" 2753 3037 dependencies = [ 2754 3038 "fixedbitset", 2755 3039 "itertools", 2756 3040 "oxc_allocator", 2757 3041 "oxc_ast", 3042 + "oxc_data_structures", 2758 3043 "oxc_index", 2759 3044 "oxc_semantic", 2760 3045 "oxc_span", ··· 2763 3048 2764 3049 [[package]] 2765 3050 name = "oxc_minifier" 2766 - version = "0.48.2" 3051 + version = "0.81.0" 2767 3052 source = "registry+https://github.com/rust-lang/crates.io-index" 2768 - checksum = "c8d47fca4d49091775dd659cf54b4ae361ea48607f8dc6595970840ee0c5bf25" 3053 + checksum = "f5e4723cd29a83305e953270e0aaaf2c6d8994ab2472e9132719ffa5fabaa78c" 2769 3054 dependencies = [ 2770 3055 "cow-utils", 2771 3056 "oxc_allocator", 2772 3057 "oxc_ast", 3058 + "oxc_ast_visit", 2773 3059 "oxc_codegen", 2774 - "oxc_data_structures", 2775 3060 "oxc_ecmascript", 2776 3061 "oxc_mangler", 2777 3062 "oxc_parser", ··· 2784 3069 2785 3070 [[package]] 2786 3071 name = "oxc_parser" 2787 - version = "0.48.2" 3072 + version = "0.81.0" 2788 3073 source = "registry+https://github.com/rust-lang/crates.io-index" 2789 - checksum = "8dc385aca3586877f8c918aed1141b885dedcfc1019d6ea5be4105f8e2a7965e" 3074 + checksum = "70253728183a5a92d1ba964d9952201e0269ebd07c4917c4553283d564225bab" 2790 3075 dependencies = [ 2791 - "assert-unchecked", 2792 3076 "bitflags 2.9.2", 2793 3077 "cow-utils", 2794 3078 "memchr", ··· 2796 3080 "num-traits", 2797 3081 "oxc_allocator", 2798 3082 "oxc_ast", 3083 + "oxc_data_structures", 2799 3084 "oxc_diagnostics", 2800 3085 "oxc_ecmascript", 2801 3086 "oxc_regular_expression", ··· 2807 3092 2808 3093 [[package]] 2809 3094 name = "oxc_regular_expression" 2810 - version = "0.48.2" 3095 + version = "0.81.0" 2811 3096 source = "registry+https://github.com/rust-lang/crates.io-index" 2812 - checksum = "f8d172402f6d542ab2837d35126cc42ad6989b9c2289b06bc5c8c89dceb60c48" 3097 + checksum = "de5bb2ed6646bb7815126e0f36787c349e13561fed2c05f95b27a1f82dd066c4" 2813 3098 dependencies = [ 3099 + "bitflags 2.9.2", 2814 3100 "oxc_allocator", 2815 3101 "oxc_ast_macros", 2816 3102 "oxc_diagnostics", 2817 - "oxc_estree", 2818 3103 "oxc_span", 2819 - "phf", 3104 + "phf 0.12.1", 2820 3105 "rustc-hash", 2821 - "serde", 2822 3106 "unicode-id-start", 2823 3107 ] 2824 3108 2825 3109 [[package]] 2826 3110 name = "oxc_resolver" 2827 - version = "4.2.0" 3111 + version = "11.6.1" 2828 3112 source = "registry+https://github.com/rust-lang/crates.io-index" 2829 - checksum = "b1c4d9cffbd24c3a874bd44cce4384cb73bf732c4fe4aa99c4406b2e0c4027bb" 3113 + checksum = "94b0efb2038cc4e9d12f0fd32aedcfd594f8879866b38bd4becf5e87fa283cc0" 2830 3114 dependencies = [ 2831 3115 "cfg-if", 2832 3116 "indexmap", 2833 3117 "json-strip-comments", 2834 3118 "once_cell", 2835 3119 "papaya", 3120 + "pnp", 2836 3121 "rustc-hash", 2837 - "seize", 2838 3122 "serde", 2839 3123 "serde_json", 2840 3124 "simdutf8", 2841 - "thiserror 1.0.69", 3125 + "thiserror 2.0.16", 2842 3126 "tracing", 3127 + "url", 2843 3128 ] 2844 3129 2845 3130 [[package]] 2846 3131 name = "oxc_semantic" 2847 - version = "0.48.2" 3132 + version = "0.81.0" 2848 3133 source = "registry+https://github.com/rust-lang/crates.io-index" 2849 - checksum = "7ceb1f387b1ded0c84bdbc1f14eb087204cb9cd9ca4b4ff867be8d1575c7b20a" 3134 + checksum = "06858ccc5976a5303ac903bef13d03b7f8860e837b7399e4899c05f5c729d30b" 2850 3135 dependencies = [ 2851 - "assert-unchecked", 2852 3136 "itertools", 2853 3137 "oxc_allocator", 2854 3138 "oxc_ast", 3139 + "oxc_ast_visit", 2855 3140 "oxc_cfg", 2856 3141 "oxc_data_structures", 2857 3142 "oxc_diagnostics", ··· 2859 3144 "oxc_index", 2860 3145 "oxc_span", 2861 3146 "oxc_syntax", 2862 - "phf", 3147 + "phf 0.12.1", 2863 3148 "rustc-hash", 2864 3149 "self_cell", 2865 3150 ] 2866 3151 2867 3152 [[package]] 2868 3153 name = "oxc_sourcemap" 2869 - version = "1.0.9" 3154 + version = "4.1.0" 2870 3155 source = "registry+https://github.com/rust-lang/crates.io-index" 2871 - checksum = "dcb048fad7eee078b23dc3f3be7aba94eeba596c892c9255fc2646fba232a2ec" 3156 + checksum = "d5e78344e5a6cdd74250bc9bb144a4c3215b6107fe4fd47973f4bd175372ccb2" 2872 3157 dependencies = [ 2873 3158 "base64-simd", 2874 - "cfg-if", 2875 - "cow-utils", 2876 - "rayon", 2877 3159 "rustc-hash", 2878 3160 "serde", 2879 3161 "serde_json", ··· 2881 3163 2882 3164 [[package]] 2883 3165 name = "oxc_span" 2884 - version = "0.48.2" 3166 + version = "0.81.0" 2885 3167 source = "registry+https://github.com/rust-lang/crates.io-index" 2886 - checksum = "75881376dfdbb6a23f12a66794904f0d215629f208edcf7e156c0770e89e2101" 3168 + checksum = "2b315080fee7613168e0e08d3280efccdc12fea1efe5c0285e3a2d6265660f02" 2887 3169 dependencies = [ 2888 3170 "compact_str", 2889 3171 "oxc-miette", ··· 2895 3177 2896 3178 [[package]] 2897 3179 name = "oxc_syntax" 2898 - version = "0.48.2" 3180 + version = "0.81.0" 2899 3181 source = "registry+https://github.com/rust-lang/crates.io-index" 2900 - checksum = "c6d88037a5de07f66299ab523a65545cc48d550658cea8cadcea09b60596dd49" 3182 + checksum = "72d9d80d47d2eee5c1e6dbcdf1841b42afc4f1cd1f63701fc346162616dac52f" 2901 3183 dependencies = [ 2902 - "assert-unchecked", 2903 3184 "bitflags 2.9.2", 2904 3185 "cow-utils", 3186 + "dragonbox_ecma", 2905 3187 "nonmax", 2906 3188 "oxc_allocator", 2907 3189 "oxc_ast_macros", 3190 + "oxc_data_structures", 2908 3191 "oxc_estree", 2909 3192 "oxc_index", 2910 3193 "oxc_span", 2911 - "phf", 3194 + "phf 0.12.1", 2912 3195 "rustc-hash", 2913 - "ryu-js", 2914 3196 "serde", 2915 3197 "unicode-id-start", 2916 - "wasm-bindgen", 2917 3198 ] 2918 3199 2919 3200 [[package]] 2920 3201 name = "oxc_transformer" 2921 - version = "0.48.2" 3202 + version = "0.81.0" 2922 3203 source = "registry+https://github.com/rust-lang/crates.io-index" 2923 - checksum = "7c66e24a2ef9a7141b7a8e73ae2aa4bd3b6dab2a64423c182cd4bbf55585b99b" 3204 + checksum = "89f15659109f115788d7750f31f970d500085e9544c250aa3b20ad23a3901c46" 2924 3205 dependencies = [ 2925 3206 "base64", 2926 3207 "compact_str", 2927 3208 "cow-utils", 2928 - "dashmap", 2929 3209 "indexmap", 2930 3210 "itoa", 2931 - "lazy_static", 3211 + "memchr", 2932 3212 "oxc-browserslist", 2933 3213 "oxc_allocator", 2934 3214 "oxc_ast", 3215 + "oxc_ast_visit", 2935 3216 "oxc_data_structures", 2936 3217 "oxc_diagnostics", 2937 3218 "oxc_ecmascript", ··· 2948 3229 ] 2949 3230 2950 3231 [[package]] 3232 + name = "oxc_transformer_plugins" 3233 + version = "0.81.0" 3234 + source = "registry+https://github.com/rust-lang/crates.io-index" 3235 + checksum = "eb02ec9eb07a34df8adf2559439ef731c7668feff54b7b80a733284055ddce79" 3236 + dependencies = [ 3237 + "cow-utils", 3238 + "itoa", 3239 + "oxc_allocator", 3240 + "oxc_ast", 3241 + "oxc_ast_visit", 3242 + "oxc_diagnostics", 3243 + "oxc_ecmascript", 3244 + "oxc_parser", 3245 + "oxc_semantic", 3246 + "oxc_span", 3247 + "oxc_syntax", 3248 + "oxc_transformer", 3249 + "oxc_traverse", 3250 + "rustc-hash", 3251 + ] 3252 + 3253 + [[package]] 2951 3254 name = "oxc_traverse" 2952 - version = "0.48.2" 3255 + version = "0.81.0" 2953 3256 source = "registry+https://github.com/rust-lang/crates.io-index" 2954 - checksum = "2dff651953c5b30cc0c5595e8da0aeb1a803a02d79199456d7d73b71c3d0a0be" 3257 + checksum = "adef9483d1b5132a82e05e7f6a4a0b72138bf3c6459d0a5ef40f1fe33e9f77d1" 2955 3258 dependencies = [ 2956 - "compact_str", 2957 3259 "itoa", 2958 3260 "oxc_allocator", 2959 3261 "oxc_ast", 3262 + "oxc_ast_visit", 2960 3263 "oxc_data_structures", 2961 3264 "oxc_ecmascript", 2962 3265 "oxc_semantic", ··· 3005 3308 ] 3006 3309 3007 3310 [[package]] 3311 + name = "path-slash" 3312 + version = "0.2.1" 3313 + source = "registry+https://github.com/rust-lang/crates.io-index" 3314 + checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42" 3315 + 3316 + [[package]] 3317 + name = "pathdiff" 3318 + version = "0.2.3" 3319 + source = "registry+https://github.com/rust-lang/crates.io-index" 3320 + checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 3321 + 3322 + [[package]] 3008 3323 name = "percent-encoding" 3009 3324 version = "2.3.1" 3010 3325 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3012 3327 3013 3328 [[package]] 3014 3329 name = "petgraph" 3015 - version = "0.7.1" 3330 + version = "0.8.2" 3016 3331 source = "registry+https://github.com/rust-lang/crates.io-index" 3017 - checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" 3332 + checksum = "54acf3a685220b533e437e264e4d932cfbdc4cc7ec0cd232ed73c08d03b8a7ca" 3018 3333 dependencies = [ 3019 3334 "fixedbitset", 3335 + "hashbrown 0.15.5", 3020 3336 "indexmap", 3337 + "serde", 3021 3338 ] 3022 3339 3023 3340 [[package]] ··· 3026 3343 source = "registry+https://github.com/rust-lang/crates.io-index" 3027 3344 checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 3028 3345 dependencies = [ 3029 - "phf_macros", 3030 - "phf_shared", 3346 + "phf_macros 0.11.3", 3347 + "phf_shared 0.11.3", 3348 + ] 3349 + 3350 + [[package]] 3351 + name = "phf" 3352 + version = "0.12.1" 3353 + source = "registry+https://github.com/rust-lang/crates.io-index" 3354 + checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" 3355 + dependencies = [ 3356 + "phf_macros 0.12.1", 3357 + "phf_shared 0.12.1", 3358 + "serde", 3031 3359 ] 3032 3360 3033 3361 [[package]] ··· 3036 3364 source = "registry+https://github.com/rust-lang/crates.io-index" 3037 3365 checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" 3038 3366 dependencies = [ 3039 - "phf_generator", 3040 - "phf_shared", 3367 + "phf_generator 0.11.3", 3368 + "phf_shared 0.11.3", 3041 3369 ] 3042 3370 3043 3371 [[package]] ··· 3046 3374 source = "registry+https://github.com/rust-lang/crates.io-index" 3047 3375 checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 3048 3376 dependencies = [ 3049 - "phf_shared", 3377 + "phf_shared 0.11.3", 3050 3378 "rand 0.8.5", 3051 3379 ] 3052 3380 3053 3381 [[package]] 3382 + name = "phf_generator" 3383 + version = "0.12.1" 3384 + source = "registry+https://github.com/rust-lang/crates.io-index" 3385 + checksum = "2cbb1126afed61dd6368748dae63b1ee7dc480191c6262a3b4ff1e29d86a6c5b" 3386 + dependencies = [ 3387 + "fastrand", 3388 + "phf_shared 0.12.1", 3389 + ] 3390 + 3391 + [[package]] 3054 3392 name = "phf_macros" 3055 3393 version = "0.11.3" 3056 3394 source = "registry+https://github.com/rust-lang/crates.io-index" 3057 3395 checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" 3058 3396 dependencies = [ 3059 - "phf_generator", 3060 - "phf_shared", 3397 + "phf_generator 0.11.3", 3398 + "phf_shared 0.11.3", 3399 + "proc-macro2", 3400 + "quote", 3401 + "syn 2.0.106", 3402 + ] 3403 + 3404 + [[package]] 3405 + name = "phf_macros" 3406 + version = "0.12.1" 3407 + source = "registry+https://github.com/rust-lang/crates.io-index" 3408 + checksum = "d713258393a82f091ead52047ca779d37e5766226d009de21696c4e667044368" 3409 + dependencies = [ 3410 + "phf_generator 0.12.1", 3411 + "phf_shared 0.12.1", 3061 3412 "proc-macro2", 3062 3413 "quote", 3063 3414 "syn 2.0.106", ··· 3073 3424 ] 3074 3425 3075 3426 [[package]] 3427 + name = "phf_shared" 3428 + version = "0.12.1" 3429 + source = "registry+https://github.com/rust-lang/crates.io-index" 3430 + checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981" 3431 + dependencies = [ 3432 + "siphasher", 3433 + ] 3434 + 3435 + [[package]] 3076 3436 name = "pin-project" 3077 3437 version = "1.1.10" 3078 3438 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3124 3484 ] 3125 3485 3126 3486 [[package]] 3487 + name = "pnp" 3488 + version = "0.12.1" 3489 + source = "registry+https://github.com/rust-lang/crates.io-index" 3490 + checksum = "ab3167cbab15e437e9c7db8a4cf613eb4a77583d4327a8964d50fedd6cf364bd" 3491 + dependencies = [ 3492 + "byteorder", 3493 + "clean-path", 3494 + "concurrent_lru", 3495 + "fancy-regex", 3496 + "miniz_oxide", 3497 + "path-slash", 3498 + "pathdiff", 3499 + "radix_trie", 3500 + "rustc-hash", 3501 + "serde", 3502 + "serde_json", 3503 + "thiserror 2.0.16", 3504 + ] 3505 + 3506 + [[package]] 3127 3507 name = "portable-atomic" 3128 3508 version = "1.11.1" 3129 3509 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3136 3516 checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" 3137 3517 dependencies = [ 3138 3518 "portable-atomic", 3519 + ] 3520 + 3521 + [[package]] 3522 + name = "potential_utf" 3523 + version = "0.1.2" 3524 + source = "registry+https://github.com/rust-lang/crates.io-index" 3525 + checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" 3526 + dependencies = [ 3527 + "zerovec", 3139 3528 ] 3140 3529 3141 3530 [[package]] ··· 3421 3810 ] 3422 3811 3423 3812 [[package]] 3813 + name = "rolldown-ariadne" 3814 + version = "0.5.2" 3815 + source = "registry+https://github.com/rust-lang/crates.io-index" 3816 + checksum = "324d1b9754f0cb535f4032a6a654d3a56047a500f557c16060f12f70b0089c57" 3817 + dependencies = [ 3818 + "unicode-width 0.2.1", 3819 + "yansi", 3820 + ] 3821 + 3822 + [[package]] 3424 3823 name = "ropey" 3425 3824 version = "1.6.1" 3426 3825 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3512 3911 checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 3513 3912 3514 3913 [[package]] 3515 - name = "ryu-js" 3516 - version = "1.0.2" 3517 - source = "registry+https://github.com/rust-lang/crates.io-index" 3518 - checksum = "dd29631678d6fb0903b69223673e122c32e9ae559d0960a38d574695ebc0ea15" 3519 - 3520 - [[package]] 3521 3914 name = "same-file" 3522 3915 version = "1.0.6" 3523 3916 source = "registry+https://github.com/rust-lang/crates.io-index" 3524 3917 checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3525 3918 dependencies = [ 3526 3919 "winapi-util", 3527 - ] 3528 - 3529 - [[package]] 3530 - name = "sanitize-filename" 3531 - version = "0.6.0" 3532 - source = "registry+https://github.com/rust-lang/crates.io-index" 3533 - checksum = "bc984f4f9ceb736a7bb755c3e3bd17dc56370af2600c9780dcc48c66453da34d" 3534 - dependencies = [ 3535 - "regex", 3536 3920 ] 3537 3921 3538 3922 [[package]] ··· 3563 3947 "fxhash", 3564 3948 "log", 3565 3949 "new_debug_unreachable", 3566 - "phf", 3950 + "phf 0.11.3", 3567 3951 "phf_codegen", 3568 3952 "precomputed-hash", 3569 3953 "servo_arc", ··· 3802 4186 checksum = "d08889ec5408683408db66ad89e0e1f93dff55c73a4ccc71c427d5b277ee47e6" 3803 4187 3804 4188 [[package]] 3805 - name = "string_wizard" 3806 - version = "0.0.26" 3807 - source = "registry+https://github.com/rust-lang/crates.io-index" 3808 - checksum = "baa2ddbd6b187e9467902cf1c0f90266969897659ec5e7cefb3433ff5ffcf97d" 3809 - dependencies = [ 3810 - "oxc_index", 3811 - "oxc_sourcemap", 3812 - "rustc-hash", 3813 - "serde", 3814 - ] 3815 - 3816 - [[package]] 3817 4189 name = "strsim" 3818 4190 version = "0.11.1" 3819 4191 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3860 4232 checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 3861 4233 3862 4234 [[package]] 4235 + name = "synstructure" 4236 + version = "0.13.2" 4237 + source = "registry+https://github.com/rust-lang/crates.io-index" 4238 + checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 4239 + dependencies = [ 4240 + "proc-macro2", 4241 + "quote", 4242 + "syn 2.0.106", 4243 + ] 4244 + 4245 + [[package]] 3863 4246 name = "syntect" 3864 4247 version = "5.2.0" 3865 4248 source = "registry+https://github.com/rust-lang/crates.io-index" 3866 4249 checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1" 3867 4250 dependencies = [ 3868 - "bincode", 4251 + "bincode 1.3.3", 3869 4252 "bitflags 1.3.2", 3870 4253 "flate2", 3871 4254 "fnv", ··· 3906 4289 ] 3907 4290 3908 4291 [[package]] 4292 + name = "termcolor" 4293 + version = "1.4.1" 4294 + source = "registry+https://github.com/rust-lang/crates.io-index" 4295 + checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 4296 + dependencies = [ 4297 + "winapi-util", 4298 + ] 4299 + 4300 + [[package]] 3909 4301 name = "textwrap" 3910 4302 version = "0.16.2" 3911 4303 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3994 4386 dependencies = [ 3995 4387 "num-conv", 3996 4388 "time-core", 4389 + ] 4390 + 4391 + [[package]] 4392 + name = "tinystr" 4393 + version = "0.8.1" 4394 + source = "registry+https://github.com/rust-lang/crates.io-index" 4395 + checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 4396 + dependencies = [ 4397 + "displaydoc", 4398 + "zerovec", 3997 4399 ] 3998 4400 3999 4401 [[package]] ··· 4211 4613 ] 4212 4614 4213 4615 [[package]] 4616 + name = "tracing-serde" 4617 + version = "0.2.0" 4618 + source = "registry+https://github.com/rust-lang/crates.io-index" 4619 + checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" 4620 + dependencies = [ 4621 + "serde", 4622 + "tracing-core", 4623 + ] 4624 + 4625 + [[package]] 4214 4626 name = "tracing-subscriber" 4215 4627 version = "0.3.19" 4216 4628 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4221 4633 "nu-ansi-term", 4222 4634 "once_cell", 4223 4635 "regex", 4636 + "serde", 4637 + "serde_json", 4224 4638 "sharded-slab", 4225 4639 "smallvec", 4226 4640 "thread_local", 4227 4641 "tracing", 4228 4642 "tracing-core", 4229 4643 "tracing-log", 4644 + "tracing-serde", 4645 + ] 4646 + 4647 + [[package]] 4648 + name = "ts-rs" 4649 + version = "11.0.1" 4650 + source = "registry+https://github.com/rust-lang/crates.io-index" 4651 + checksum = "6ef1b7a6d914a34127ed8e1fa927eb7088903787bcded4fa3eef8f85ee1568be" 4652 + dependencies = [ 4653 + "thiserror 2.0.16", 4654 + "ts-rs-macros", 4655 + ] 4656 + 4657 + [[package]] 4658 + name = "ts-rs-macros" 4659 + version = "11.0.1" 4660 + source = "registry+https://github.com/rust-lang/crates.io-index" 4661 + checksum = "e9d4ed7b4c18cc150a6a0a1e9ea1ecfa688791220781af6e119f9599a8502a0a" 4662 + dependencies = [ 4663 + "proc-macro2", 4664 + "quote", 4665 + "syn 2.0.106", 4666 + "termcolor", 4230 4667 ] 4231 4668 4232 4669 [[package]] ··· 4319 4756 checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c" 4320 4757 4321 4758 [[package]] 4759 + name = "unicode-xid" 4760 + version = "0.2.6" 4761 + source = "registry+https://github.com/rust-lang/crates.io-index" 4762 + checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 4763 + 4764 + [[package]] 4322 4765 name = "untrusted" 4323 4766 version = "0.9.0" 4324 4767 source = "registry+https://github.com/rust-lang/crates.io-index" 4325 4768 checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 4769 + 4770 + [[package]] 4771 + name = "unty" 4772 + version = "0.0.4" 4773 + source = "registry+https://github.com/rust-lang/crates.io-index" 4774 + checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae" 4326 4775 4327 4776 [[package]] 4328 4777 name = "ureq" ··· 4355 4804 ] 4356 4805 4357 4806 [[package]] 4807 + name = "url" 4808 + version = "2.5.4" 4809 + source = "registry+https://github.com/rust-lang/crates.io-index" 4810 + checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 4811 + dependencies = [ 4812 + "form_urlencoded", 4813 + "idna", 4814 + "percent-encoding", 4815 + ] 4816 + 4817 + [[package]] 4358 4818 name = "urlencoding" 4359 4819 version = "2.1.3" 4360 4820 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4367 4827 checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 4368 4828 4369 4829 [[package]] 4830 + name = "utf8_iter" 4831 + version = "1.0.4" 4832 + source = "registry+https://github.com/rust-lang/crates.io-index" 4833 + checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 4834 + 4835 + [[package]] 4370 4836 name = "utf8parse" 4371 4837 version = "0.2.2" 4372 4838 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4378 4844 source = "registry+https://github.com/rust-lang/crates.io-index" 4379 4845 checksum = "f33196643e165781c20a5ead5582283a7dacbb87855d867fbc2df3f81eddc1be" 4380 4846 dependencies = [ 4847 + "getrandom 0.3.3", 4381 4848 "js-sys", 4382 4849 "wasm-bindgen", 4383 4850 ] ··· 4404 4871 ] 4405 4872 4406 4873 [[package]] 4874 + name = "virtue" 4875 + version = "0.0.18" 4876 + source = "registry+https://github.com/rust-lang/crates.io-index" 4877 + checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1" 4878 + 4879 + [[package]] 4407 4880 name = "vsimd" 4408 4881 version = "0.8.0" 4409 4882 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4947 5420 ] 4948 5421 4949 5422 [[package]] 5423 + name = "writeable" 5424 + version = "0.6.1" 5425 + source = "registry+https://github.com/rust-lang/crates.io-index" 5426 + checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 5427 + 5428 + [[package]] 4950 5429 name = "xattr" 4951 5430 version = "1.5.1" 4952 5431 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4978 5457 checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 4979 5458 4980 5459 [[package]] 5460 + name = "yoke" 5461 + version = "0.8.0" 5462 + source = "registry+https://github.com/rust-lang/crates.io-index" 5463 + checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 5464 + dependencies = [ 5465 + "serde", 5466 + "stable_deref_trait", 5467 + "yoke-derive", 5468 + "zerofrom", 5469 + ] 5470 + 5471 + [[package]] 5472 + name = "yoke-derive" 5473 + version = "0.8.0" 5474 + source = "registry+https://github.com/rust-lang/crates.io-index" 5475 + checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 5476 + dependencies = [ 5477 + "proc-macro2", 5478 + "quote", 5479 + "syn 2.0.106", 5480 + "synstructure", 5481 + ] 5482 + 5483 + [[package]] 4981 5484 name = "zerocopy" 4982 5485 version = "0.8.26" 4983 5486 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4998 5501 ] 4999 5502 5000 5503 [[package]] 5504 + name = "zerofrom" 5505 + version = "0.1.6" 5506 + source = "registry+https://github.com/rust-lang/crates.io-index" 5507 + checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 5508 + dependencies = [ 5509 + "zerofrom-derive", 5510 + ] 5511 + 5512 + [[package]] 5513 + name = "zerofrom-derive" 5514 + version = "0.1.6" 5515 + source = "registry+https://github.com/rust-lang/crates.io-index" 5516 + checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 5517 + dependencies = [ 5518 + "proc-macro2", 5519 + "quote", 5520 + "syn 2.0.106", 5521 + "synstructure", 5522 + ] 5523 + 5524 + [[package]] 5001 5525 name = "zeroize" 5002 5526 version = "1.8.1" 5003 5527 source = "registry+https://github.com/rust-lang/crates.io-index" 5004 5528 checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 5529 + 5530 + [[package]] 5531 + name = "zerotrie" 5532 + version = "0.2.2" 5533 + source = "registry+https://github.com/rust-lang/crates.io-index" 5534 + checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 5535 + dependencies = [ 5536 + "displaydoc", 5537 + "yoke", 5538 + "zerofrom", 5539 + ] 5540 + 5541 + [[package]] 5542 + name = "zerovec" 5543 + version = "0.11.4" 5544 + source = "registry+https://github.com/rust-lang/crates.io-index" 5545 + checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" 5546 + dependencies = [ 5547 + "yoke", 5548 + "zerofrom", 5549 + "zerovec-derive", 5550 + ] 5551 + 5552 + [[package]] 5553 + name = "zerovec-derive" 5554 + version = "0.11.1" 5555 + source = "registry+https://github.com/rust-lang/crates.io-index" 5556 + checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 5557 + dependencies = [ 5558 + "proc-macro2", 5559 + "quote", 5560 + "syn 2.0.106", 5561 + ]
+1 -1
crates/maudit/Cargo.toml
··· 18 18 maud = { workspace = true, optional = true } 19 19 20 20 # TODO: Allow making those optional 21 - rolldown = { package = "maudit_rolldown", version = "0.1.0" } 21 + rolldown = { package = "brk_rolldown", version = "0.1.4" } 22 22 serde = { workspace = true } 23 23 serde_yml = "0.0.12" 24 24 pulldown-cmark = "0.12.2"
+2 -2
crates/maudit/src/build.rs
··· 67 67 let source_start = SystemTime::now(); 68 68 source.init(); 69 69 70 - info!(target: "build", "{}", format!("{} initialized in {}", source.get_name(), format_elapsed_time(source_start.elapsed(), &FormatElapsedTimeOptions::default()).unwrap())); 70 + info!(target: "build", "{} initialized in {}", source.get_name(), format_elapsed_time(source_start.elapsed(), &FormatElapsedTimeOptions::default()).unwrap()); 71 71 }); 72 72 73 73 info!(target: "build", "{}", format!("Content sources initialized in {}", format_elapsed_time( ··· 283 283 if !bundler_inputs.is_empty() { 284 284 let mut bundler = Bundler::new(BundlerOptions { 285 285 input: Some(bundler_inputs), 286 - minify: Some(true), 286 + minify: Some(rolldown::RawMinifyOptions::Bool(true)), 287 287 dir: Some(assets_dir.to_string_lossy().to_string()), 288 288 289 289 ..Default::default()