Rust library to generate static websites
5
fork

Configure Feed

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

release: 0.2.0

+410 -720
+406 -716
Cargo.lock
··· 19 19 20 20 [[package]] 21 21 name = "ahash" 22 - version = "0.7.8" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" 25 - dependencies = [ 26 - "getrandom 0.2.15", 27 - "once_cell", 28 - "version_check", 29 - ] 30 - 31 - [[package]] 32 - name = "ahash" 33 22 version = "0.8.11" 34 23 source = "registry+https://github.com/rust-lang/crates.io-index" 35 24 checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" 36 25 dependencies = [ 37 26 "cfg-if", 38 - "getrandom 0.2.15", 39 27 "once_cell", 40 28 "version_check", 41 29 "zerocopy", ··· 294 282 295 283 [[package]] 296 284 name = "base64-simd" 297 - version = "0.7.0" 298 - source = "registry+https://github.com/rust-lang/crates.io-index" 299 - checksum = "781dd20c3aff0bd194fe7d2a977dd92f21c173891f3a03b677359e5fa457e5d5" 300 - dependencies = [ 301 - "simd-abstraction", 302 - ] 303 - 304 - [[package]] 305 - name = "base64-simd" 306 285 version = "0.8.0" 307 286 source = "registry+https://github.com/rust-lang/crates.io-index" 308 287 checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195" 309 288 dependencies = [ 310 - "outref 0.5.1", 289 + "outref", 311 290 "vsimd", 312 291 ] 313 292 ··· 319 298 320 299 [[package]] 321 300 name = "bitflags" 322 - version = "2.6.0" 323 - source = "registry+https://github.com/rust-lang/crates.io-index" 324 - checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 325 - 326 - [[package]] 327 - name = "bitvec" 328 - version = "1.0.1" 301 + version = "2.8.0" 329 302 source = "registry+https://github.com/rust-lang/crates.io-index" 330 - checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" 303 + checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" 331 304 dependencies = [ 332 - "funty", 333 - "radium", 334 - "tap", 335 - "wyz", 305 + "serde", 336 306 ] 337 307 338 308 [[package]] ··· 362 332 checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 363 333 dependencies = [ 364 334 "allocator-api2", 365 - ] 366 - 367 - [[package]] 368 - name = "bytecheck" 369 - version = "0.6.12" 370 - source = "registry+https://github.com/rust-lang/crates.io-index" 371 - checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2" 372 - dependencies = [ 373 - "bytecheck_derive", 374 - "ptr_meta", 375 - "simdutf8", 376 - ] 377 - 378 - [[package]] 379 - name = "bytecheck_derive" 380 - version = "0.6.12" 381 - source = "registry+https://github.com/rust-lang/crates.io-index" 382 - checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659" 383 - dependencies = [ 384 - "proc-macro2", 385 - "quote", 386 - "syn 1.0.109", 387 335 ] 388 336 389 337 [[package]] ··· 520 468 "itoa 1.0.14", 521 469 "rustversion", 522 470 "ryu", 471 + "serde", 523 472 "static_assertions", 524 473 ] 525 474 ··· 533 482 ] 534 483 535 484 [[package]] 536 - name = "const-str" 537 - version = "0.3.2" 538 - source = "registry+https://github.com/rust-lang/crates.io-index" 539 - checksum = "21077772762a1002bb421c3af42ac1725fa56066bfc53d9a55bb79905df2aaf3" 540 - dependencies = [ 541 - "const-str-proc-macro", 542 - ] 543 - 544 - [[package]] 545 - name = "const-str-proc-macro" 546 - version = "0.3.2" 547 - source = "registry+https://github.com/rust-lang/crates.io-index" 548 - checksum = "5e1e0fdd2e5d3041e530e1b21158aeeef8b5d0e306bc5c1e3d6cf0930d10e25a" 549 - dependencies = [ 550 - "proc-macro2", 551 - "quote", 552 - "syn 1.0.109", 553 - ] 554 - 555 - [[package]] 556 485 name = "convert_case" 557 486 version = "0.4.0" 558 487 source = "registry+https://github.com/rust-lang/crates.io-index" 559 488 checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 560 - 561 - [[package]] 562 - name = "convert_case" 563 - version = "0.6.0" 564 - source = "registry+https://github.com/rust-lang/crates.io-index" 565 - checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" 566 - dependencies = [ 567 - "unicode-segmentation", 568 - ] 569 489 570 490 [[package]] 571 491 name = "core-foundation-sys" ··· 659 579 ] 660 580 661 581 [[package]] 662 - name = "cssparser" 663 - version = "0.33.0" 664 - source = "registry+https://github.com/rust-lang/crates.io-index" 665 - checksum = "9be934d936a0fbed5bcdc01042b770de1398bf79d0e192f49fa7faea0e99281e" 666 - dependencies = [ 667 - "cssparser-macros", 668 - "dtoa-short", 669 - "itoa 1.0.14", 670 - "phf 0.11.2", 671 - "smallvec", 672 - ] 673 - 674 - [[package]] 675 - name = "cssparser-color" 676 - version = "0.1.0" 677 - source = "registry+https://github.com/rust-lang/crates.io-index" 678 - checksum = "556c099a61d85989d7af52b692e35a8d68a57e7df8c6d07563dc0778b3960c9f" 679 - dependencies = [ 680 - "cssparser 0.33.0", 681 - ] 682 - 683 - [[package]] 684 582 name = "cssparser-macros" 685 583 version = "0.6.1" 686 584 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 698 596 699 597 [[package]] 700 598 name = "dashmap" 701 - version = "5.5.3" 702 - source = "registry+https://github.com/rust-lang/crates.io-index" 703 - checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 704 - dependencies = [ 705 - "cfg-if", 706 - "hashbrown 0.14.5", 707 - "lock_api", 708 - "once_cell", 709 - "parking_lot_core", 710 - ] 711 - 712 - [[package]] 713 - name = "dashmap" 714 599 version = "6.1.0" 715 600 source = "registry+https://github.com/rust-lang/crates.io-index" 716 601 checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" ··· 730 615 checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" 731 616 732 617 [[package]] 733 - name = "data-url" 734 - version = "0.1.1" 735 - source = "registry+https://github.com/rust-lang/crates.io-index" 736 - checksum = "3a30bfce702bcfa94e906ef82421f2c0e61c076ad76030c16ee5d2e9a32fe193" 737 - dependencies = [ 738 - "matches", 739 - ] 740 - 741 - [[package]] 742 618 name = "deranged" 743 619 version = "0.3.11" 744 620 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 753 629 source = "registry+https://github.com/rust-lang/crates.io-index" 754 630 checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" 755 631 dependencies = [ 756 - "convert_case 0.4.0", 632 + "convert_case", 757 633 "proc-macro2", 758 634 "quote", 759 635 "rustc_version", ··· 894 770 895 771 [[package]] 896 772 name = "fixedbitset" 897 - version = "0.4.2" 773 + version = "0.5.7" 898 774 source = "registry+https://github.com/rust-lang/crates.io-index" 899 - checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 775 + checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" 900 776 901 777 [[package]] 902 778 name = "fnv" ··· 929 805 ] 930 806 931 807 [[package]] 932 - name = "funty" 933 - version = "2.0.0" 934 - source = "registry+https://github.com/rust-lang/crates.io-index" 935 - checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" 936 - 937 - [[package]] 938 808 name = "futures" 939 809 version = "0.3.31" 940 810 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1120 990 source = "registry+https://github.com/rust-lang/crates.io-index" 1121 991 checksum = "11365144ef93082f3403471dbaa94cfe4b5e72743bdb9560719a251d439f4cee" 1122 992 dependencies = [ 1123 - "bitflags 2.6.0", 993 + "bitflags 2.8.0", 1124 994 "bstr", 1125 995 "gix-path", 1126 996 "libc", ··· 1171 1041 source = "registry+https://github.com/rust-lang/crates.io-index" 1172 1042 checksum = "74908b4bbc0a0a40852737e5d7889f676f081e340d5451a16e5b4c50d592f111" 1173 1043 dependencies = [ 1174 - "bitflags 2.6.0", 1044 + "bitflags 2.8.0", 1175 1045 "bstr", 1176 1046 "gix-features", 1177 1047 "gix-path", ··· 1257 1127 source = "registry+https://github.com/rust-lang/crates.io-index" 1258 1128 checksum = "d84dae13271f4313f8d60a166bf27e54c968c7c33e2ffd31c48cafe5da649875" 1259 1129 dependencies = [ 1260 - "bitflags 2.6.0", 1130 + "bitflags 2.8.0", 1261 1131 "gix-path", 1262 1132 "libc", 1263 1133 "windows-sys 0.52.0", ··· 1329 1199 1330 1200 [[package]] 1331 1201 name = "hashbrown" 1332 - version = "0.12.3" 1333 - source = "registry+https://github.com/rust-lang/crates.io-index" 1334 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1335 - dependencies = [ 1336 - "ahash 0.7.8", 1337 - ] 1338 - 1339 - [[package]] 1340 - name = "hashbrown" 1341 1202 version = "0.14.5" 1342 1203 source = "registry+https://github.com/rust-lang/crates.io-index" 1343 1204 checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1344 1205 dependencies = [ 1345 - "ahash 0.8.11", 1206 + "ahash", 1346 1207 "allocator-api2", 1347 1208 ] 1348 1209 ··· 1556 1417 1557 1418 [[package]] 1558 1419 name = "inotify" 1559 - version = "0.10.2" 1420 + version = "0.11.0" 1560 1421 source = "registry+https://github.com/rust-lang/crates.io-index" 1561 - checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc" 1422 + checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3" 1562 1423 dependencies = [ 1563 - "bitflags 1.3.2", 1424 + "bitflags 2.8.0", 1564 1425 "inotify-sys", 1565 1426 "libc", 1566 1427 ] ··· 1575 1436 ] 1576 1437 1577 1438 [[package]] 1578 - name = "instant" 1579 - version = "0.1.13" 1580 - source = "registry+https://github.com/rust-lang/crates.io-index" 1581 - checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" 1582 - dependencies = [ 1583 - "cfg-if", 1584 - ] 1585 - 1586 - [[package]] 1587 1439 name = "is_terminal_polyfill" 1588 1440 version = "1.70.1" 1589 1441 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1591 1443 1592 1444 [[package]] 1593 1445 name = "itertools" 1594 - version = "0.10.5" 1446 + version = "0.14.0" 1595 1447 source = "registry+https://github.com/rust-lang/crates.io-index" 1596 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1597 - dependencies = [ 1598 - "either", 1599 - ] 1600 - 1601 - [[package]] 1602 - name = "itertools" 1603 - version = "0.13.0" 1604 - source = "registry+https://github.com/rust-lang/crates.io-index" 1605 - checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 1448 + checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 1606 1449 dependencies = [ 1607 1450 "either", 1608 1451 ] ··· 1711 1554 source = "registry+https://github.com/rust-lang/crates.io-index" 1712 1555 checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" 1713 1556 dependencies = [ 1714 - "bitflags 2.6.0", 1557 + "bitflags 2.8.0", 1715 1558 "libc", 1716 1559 "redox_syscall", 1717 1560 ] ··· 1727 1570 ] 1728 1571 1729 1572 [[package]] 1730 - name = "lightningcss" 1731 - version = "1.0.0-alpha.61" 1732 - source = "registry+https://github.com/rust-lang/crates.io-index" 1733 - checksum = "20c9e1f991b3861d25bf872ecca2eb6a73f7a9fe671da047cd1f9b49c65cbc40" 1734 - dependencies = [ 1735 - "ahash 0.8.11", 1736 - "bitflags 2.6.0", 1737 - "const-str", 1738 - "cssparser 0.33.0", 1739 - "cssparser-color", 1740 - "dashmap 5.5.3", 1741 - "data-encoding", 1742 - "getrandom 0.2.15", 1743 - "indexmap", 1744 - "itertools 0.10.5", 1745 - "lazy_static", 1746 - "lightningcss-derive", 1747 - "parcel_selectors", 1748 - "parcel_sourcemap", 1749 - "paste", 1750 - "pathdiff", 1751 - "rayon", 1752 - "serde", 1753 - "smallvec", 1754 - ] 1755 - 1756 - [[package]] 1757 - name = "lightningcss-derive" 1758 - version = "1.0.0-alpha.43" 1759 - source = "registry+https://github.com/rust-lang/crates.io-index" 1760 - checksum = "84c12744d1279367caed41739ef094c325d53fb0ffcd4f9b84a368796f870252" 1761 - dependencies = [ 1762 - "convert_case 0.6.0", 1763 - "proc-macro2", 1764 - "quote", 1765 - "syn 1.0.109", 1766 - ] 1767 - 1768 - [[package]] 1769 1573 name = "linux-raw-sys" 1770 1574 version = "0.4.14" 1771 1575 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1793 1597 source = "registry+https://github.com/rust-lang/crates.io-index" 1794 1598 checksum = "2872b88213f3cd4b04f719ec8f2e0b37c98882a7c4aa6fc13ba2f19f5eba1bd2" 1795 1599 dependencies = [ 1796 - "bitflags 2.6.0", 1600 + "bitflags 2.8.0", 1797 1601 "cfg-if", 1798 - "cssparser 0.27.2", 1602 + "cssparser", 1799 1603 "encoding_rs", 1800 1604 "hashbrown 0.15.2", 1801 1605 "lazy_static", ··· 1851 1655 1852 1656 [[package]] 1853 1657 name = "maudit" 1854 - version = "0.1.0" 1658 + version = "0.2.0" 1855 1659 dependencies = [ 1856 1660 "chrono", 1857 1661 "colored", ··· 1862 1666 "lol_html", 1863 1667 "maud", 1864 1668 "maudit-macros", 1669 + "maudit_rolldown", 1865 1670 "pulldown-cmark", 1866 - "rolldown", 1867 1671 "rustc-hash", 1868 1672 "serde", 1869 1673 "serde_yml", ··· 1881 1685 1882 1686 [[package]] 1883 1687 name = "maudit-cli" 1884 - version = "0.1.0" 1688 + version = "0.2.0" 1885 1689 dependencies = [ 1886 1690 "axum", 1887 1691 "chrono", ··· 1945 1749 ] 1946 1750 1947 1751 [[package]] 1752 + name = "maudit_rolldown" 1753 + version = "0.1.0" 1754 + source = "registry+https://github.com/rust-lang/crates.io-index" 1755 + checksum = "32b142d6123358a990ab61809a01a07e1406cf7361849251f9930ebc46d5eb89" 1756 + dependencies = [ 1757 + "anyhow", 1758 + "append-only-vec", 1759 + "arcstr", 1760 + "css-module-lexer", 1761 + "daachorse", 1762 + "dunce", 1763 + "futures", 1764 + "indexmap", 1765 + "itertools", 1766 + "itoa 1.0.14", 1767 + "maudit_rolldown_common", 1768 + "maudit_rolldown_ecmascript", 1769 + "maudit_rolldown_ecmascript_utils", 1770 + "maudit_rolldown_error_fork", 1771 + "maudit_rolldown_fs", 1772 + "maudit_rolldown_loader_utils", 1773 + "maudit_rolldown_plugin", 1774 + "maudit_rolldown_plugin_data_url", 1775 + "maudit_rolldown_resolver", 1776 + "maudit_rolldown_rstr", 1777 + "maudit_rolldown_sourcemap", 1778 + "maudit_rolldown_std_utils", 1779 + "maudit_rolldown_tracing", 1780 + "maudit_rolldown_utils", 1781 + "memchr", 1782 + "notify 8.0.0", 1783 + "oxc", 1784 + "oxc_ecmascript", 1785 + "oxc_index", 1786 + "rustc-hash", 1787 + "sanitize-filename", 1788 + "serde", 1789 + "string_wizard", 1790 + "sugar_path", 1791 + "tokio", 1792 + "tracing", 1793 + "tracing-chrome", 1794 + "xxhash-rust", 1795 + ] 1796 + 1797 + [[package]] 1798 + name = "maudit_rolldown_common" 1799 + version = "0.1.0" 1800 + source = "registry+https://github.com/rust-lang/crates.io-index" 1801 + checksum = "071c7e782bd20ce78bb157e4610cbfad34490f669a07797b2bda00b782a90131" 1802 + dependencies = [ 1803 + "anyhow", 1804 + "arcstr", 1805 + "bitflags 2.8.0", 1806 + "dashmap", 1807 + "either", 1808 + "glob-match", 1809 + "itertools", 1810 + "maudit_rolldown_ecmascript", 1811 + "maudit_rolldown_error_fork", 1812 + "maudit_rolldown_fs", 1813 + "maudit_rolldown_rstr", 1814 + "maudit_rolldown_sourcemap", 1815 + "maudit_rolldown_std_utils", 1816 + "maudit_rolldown_utils", 1817 + "oxc", 1818 + "oxc_index", 1819 + "oxc_resolver", 1820 + "rustc-hash", 1821 + "serde", 1822 + "serde_json", 1823 + "string_wizard", 1824 + "sugar_path", 1825 + "tokio", 1826 + ] 1827 + 1828 + [[package]] 1829 + name = "maudit_rolldown_ecmascript" 1830 + version = "0.1.0" 1831 + source = "registry+https://github.com/rust-lang/crates.io-index" 1832 + checksum = "212b50b9255f5bedd065be3b21fcef49b0069c8998ddedb21eb14dfe3fd42a73" 1833 + dependencies = [ 1834 + "arcstr", 1835 + "either", 1836 + "maudit_rolldown_error_fork", 1837 + "oxc", 1838 + "oxc_sourcemap", 1839 + "self_cell", 1840 + ] 1841 + 1842 + [[package]] 1843 + name = "maudit_rolldown_ecmascript_utils" 1844 + version = "0.1.0" 1845 + source = "registry+https://github.com/rust-lang/crates.io-index" 1846 + checksum = "76ac05dd87ea41524f3430f0315a12ba1c9b501af0e97064eab3cd606d65b904" 1847 + dependencies = [ 1848 + "maudit_rolldown_common", 1849 + "oxc", 1850 + "smallvec", 1851 + ] 1852 + 1853 + [[package]] 1854 + name = "maudit_rolldown_error_fork" 1855 + version = "0.1.0" 1856 + source = "registry+https://github.com/rust-lang/crates.io-index" 1857 + checksum = "2ed716b771b1de41fc59c5c1d39e7e27d89ece5ef39f6e8c197624329ec72063" 1858 + dependencies = [ 1859 + "anyhow", 1860 + "arcstr", 1861 + "ariadne", 1862 + "heck", 1863 + "oxc", 1864 + "oxc_resolver", 1865 + "oxc_sourcemap", 1866 + "sugar_path", 1867 + ] 1868 + 1869 + [[package]] 1870 + name = "maudit_rolldown_fs" 1871 + version = "0.1.0" 1872 + source = "registry+https://github.com/rust-lang/crates.io-index" 1873 + checksum = "487649df652aa9051444b482b0a3b035ba8f23c64631ae7d69e0291ef74e9d4c" 1874 + dependencies = [ 1875 + "oxc_resolver", 1876 + "vfs", 1877 + ] 1878 + 1879 + [[package]] 1880 + name = "maudit_rolldown_loader_utils" 1881 + version = "0.1.0" 1882 + source = "registry+https://github.com/rust-lang/crates.io-index" 1883 + checksum = "a61dab1f64e805072875811391de6344a0da63b88abbfa0b704198702484e1e3" 1884 + dependencies = [ 1885 + "anyhow", 1886 + "itoa 1.0.14", 1887 + "maudit_rolldown_common", 1888 + "maudit_rolldown_utils", 1889 + "serde_json", 1890 + ] 1891 + 1892 + [[package]] 1893 + name = "maudit_rolldown_plugin" 1894 + version = "0.1.0" 1895 + source = "registry+https://github.com/rust-lang/crates.io-index" 1896 + checksum = "3e12b364ed3725200d2e24a21313f1ee53974a997999534bc3a1cc358b82b711" 1897 + dependencies = [ 1898 + "anyhow", 1899 + "arcstr", 1900 + "async-trait", 1901 + "dashmap", 1902 + "maudit_rolldown_common", 1903 + "maudit_rolldown_ecmascript", 1904 + "maudit_rolldown_error_fork", 1905 + "maudit_rolldown_resolver", 1906 + "maudit_rolldown_sourcemap", 1907 + "maudit_rolldown_utils", 1908 + "oxc_index", 1909 + "rustc-hash", 1910 + "serde", 1911 + "string_wizard", 1912 + "tokio", 1913 + "tracing", 1914 + "typedmap", 1915 + ] 1916 + 1917 + [[package]] 1918 + name = "maudit_rolldown_plugin_data_url" 1919 + version = "0.1.0" 1920 + source = "registry+https://github.com/rust-lang/crates.io-index" 1921 + checksum = "300b63c00af5fb63bfdc6c5a6fe414e1c0b3fb30e05123efcb376faa859deb00" 1922 + dependencies = [ 1923 + "base64-simd", 1924 + "maudit_rolldown_common", 1925 + "maudit_rolldown_plugin", 1926 + "maudit_rolldown_utils", 1927 + "regex", 1928 + "urlencoding", 1929 + ] 1930 + 1931 + [[package]] 1932 + name = "maudit_rolldown_resolver" 1933 + version = "0.1.0" 1934 + source = "registry+https://github.com/rust-lang/crates.io-index" 1935 + checksum = "2820572ce011d97b7206e1d723583b800e69a0bcf7cc2b851771388ee384e40f" 1936 + dependencies = [ 1937 + "arcstr", 1938 + "dashmap", 1939 + "itertools", 1940 + "maudit_rolldown_common", 1941 + "maudit_rolldown_fs", 1942 + "maudit_rolldown_utils", 1943 + "oxc_resolver", 1944 + "sugar_path", 1945 + ] 1946 + 1947 + [[package]] 1948 + name = "maudit_rolldown_rstr" 1949 + version = "0.1.0" 1950 + source = "registry+https://github.com/rust-lang/crates.io-index" 1951 + checksum = "8e9d9c92e777461cd6d3fa6873f3540767abf6598fd2b49f771dd8e63b211a06" 1952 + dependencies = [ 1953 + "oxc", 1954 + ] 1955 + 1956 + [[package]] 1957 + name = "maudit_rolldown_sourcemap" 1958 + version = "0.1.0" 1959 + source = "registry+https://github.com/rust-lang/crates.io-index" 1960 + checksum = "f4f1205c118f3a16e0d965b3dbeddd12c893c6379e45c35c0e3379572e9bd396" 1961 + dependencies = [ 1962 + "maudit_rolldown_utils", 1963 + "memchr", 1964 + "oxc", 1965 + "oxc_sourcemap", 1966 + "rustc-hash", 1967 + ] 1968 + 1969 + [[package]] 1970 + name = "maudit_rolldown_std_utils" 1971 + version = "0.1.0" 1972 + source = "registry+https://github.com/rust-lang/crates.io-index" 1973 + checksum = "2326744119c661f241aed9edef482bc4cd2769d5c5b287d03bdb76682349103a" 1974 + dependencies = [ 1975 + "regex", 1976 + ] 1977 + 1978 + [[package]] 1979 + name = "maudit_rolldown_tracing" 1980 + version = "0.1.0" 1981 + source = "registry+https://github.com/rust-lang/crates.io-index" 1982 + checksum = "0754c26e6f6813c509b01a59d2a3f5d6566165e8cf77147e793100e4de485b4c" 1983 + dependencies = [ 1984 + "tracing", 1985 + "tracing-chrome", 1986 + "tracing-subscriber", 1987 + ] 1988 + 1989 + [[package]] 1990 + name = "maudit_rolldown_utils" 1991 + version = "0.1.0" 1992 + source = "registry+https://github.com/rust-lang/crates.io-index" 1993 + checksum = "ac7d7fbde3b19c0308f7fa48b6765d8e3decd3380a74baf1bc6fa9c201664cd4" 1994 + dependencies = [ 1995 + "anyhow", 1996 + "arcstr", 1997 + "async-scoped", 1998 + "base-encode", 1999 + "base64-simd", 2000 + "dashmap", 2001 + "futures", 2002 + "glob-match", 2003 + "indexmap", 2004 + "infer", 2005 + "maudit_rolldown_std_utils", 2006 + "memchr", 2007 + "mime", 2008 + "oxc", 2009 + "oxc_index", 2010 + "phf 0.11.2", 2011 + "rayon", 2012 + "regex", 2013 + "regress", 2014 + "rustc-hash", 2015 + "simdutf8", 2016 + "xxhash-rust", 2017 + ] 2018 + 2019 + [[package]] 1948 2020 name = "memchr" 1949 2021 version = "2.7.4" 1950 2022 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1999 2071 ] 2000 2072 2001 2073 [[package]] 2002 - name = "minimal-lexical" 2003 - version = "0.2.1" 2004 - source = "registry+https://github.com/rust-lang/crates.io-index" 2005 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2006 - 2007 - [[package]] 2008 2074 name = "miniz_oxide" 2009 2075 version = "0.8.2" 2010 2076 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2052 2118 source = "registry+https://github.com/rust-lang/crates.io-index" 2053 2119 checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 2054 2120 dependencies = [ 2055 - "bitflags 2.6.0", 2121 + "bitflags 2.8.0", 2056 2122 "cfg-if", 2057 2123 "cfg_aliases", 2058 2124 "libc", ··· 2066 2132 2067 2133 [[package]] 2068 2134 name = "nom" 2069 - version = "7.1.3" 2135 + version = "8.0.0" 2070 2136 source = "registry+https://github.com/rust-lang/crates.io-index" 2071 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2137 + checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" 2072 2138 dependencies = [ 2073 2139 "memchr", 2074 - "minimal-lexical", 2075 2140 ] 2076 2141 2077 2142 [[package]] ··· 2092 2157 source = "registry+https://github.com/rust-lang/crates.io-index" 2093 2158 checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" 2094 2159 dependencies = [ 2095 - "bitflags 2.6.0", 2160 + "bitflags 2.8.0", 2096 2161 "crossbeam-channel", 2097 2162 "filetime", 2098 2163 "fsevent-sys", ··· 2107 2172 2108 2173 [[package]] 2109 2174 name = "notify" 2110 - version = "7.0.0" 2175 + version = "8.0.0" 2111 2176 source = "registry+https://github.com/rust-lang/crates.io-index" 2112 - checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009" 2177 + checksum = "2fee8403b3d66ac7b26aee6e40a897d85dc5ce26f44da36b8b73e987cc52e943" 2113 2178 dependencies = [ 2114 - "bitflags 2.6.0", 2179 + "bitflags 2.8.0", 2115 2180 "filetime", 2116 2181 "fsevent-sys", 2117 - "inotify 0.10.2", 2182 + "inotify 0.11.0", 2118 2183 "kqueue", 2119 2184 "libc", 2120 2185 "log", 2121 2186 "mio 1.0.3", 2122 2187 "notify-types", 2123 2188 "walkdir", 2124 - "windows-sys 0.52.0", 2189 + "windows-sys 0.59.0", 2125 2190 ] 2126 2191 2127 2192 [[package]] 2128 2193 name = "notify-types" 2129 - version = "1.0.1" 2194 + version = "2.0.0" 2130 2195 source = "registry+https://github.com/rust-lang/crates.io-index" 2131 - checksum = "585d3cb5e12e01aed9e8a1f70d5c6b5e86fe2a6e48fc8cd0b3e0b8df6f6eb174" 2132 - dependencies = [ 2133 - "instant", 2134 - ] 2196 + checksum = "5e0826a989adedc2a244799e823aece04662b66609d96af8dff7ac6df9a8925d" 2135 2197 2136 2198 [[package]] 2137 2199 name = "nu-ansi-term" ··· 2194 2256 2195 2257 [[package]] 2196 2258 name = "outref" 2197 - version = "0.1.0" 2198 - source = "registry+https://github.com/rust-lang/crates.io-index" 2199 - checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4" 2200 - 2201 - [[package]] 2202 - name = "outref" 2203 2259 version = "0.5.1" 2204 2260 source = "registry+https://github.com/rust-lang/crates.io-index" 2205 2261 checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a" ··· 2218 2274 2219 2275 [[package]] 2220 2276 name = "oxc" 2221 - version = "0.43.0" 2277 + version = "0.48.2" 2222 2278 source = "registry+https://github.com/rust-lang/crates.io-index" 2223 - checksum = "ffa5054ed33c5e29d18a86245db0290fb4f610b2101014a979b5aad4a7b4a609" 2279 + checksum = "fa88d4faa0cf3e4bcdebb0d10b8627776a8d3b036d76d85787e076198886f04e" 2224 2280 dependencies = [ 2225 2281 "oxc_allocator", 2226 2282 "oxc_ast", ··· 2238 2294 2239 2295 [[package]] 2240 2296 name = "oxc-browserslist" 2241 - version = "1.1.1" 2297 + version = "1.1.2" 2242 2298 source = "registry+https://github.com/rust-lang/crates.io-index" 2243 - checksum = "1b585351ba1b93f0bf9683df23285cc0978ec35a6e3074794815756086770c14" 2299 + checksum = "ba2705c663f10d23e2c1600ef89834a979afc1756a88197061bdbb275c608cd1" 2244 2300 dependencies = [ 2245 2301 "nom", 2246 2302 "rustc-hash", ··· 2277 2333 2278 2334 [[package]] 2279 2335 name = "oxc_allocator" 2280 - version = "0.43.0" 2336 + version = "0.48.2" 2281 2337 source = "registry+https://github.com/rust-lang/crates.io-index" 2282 - checksum = "976149f05de0a4b51ac5b10a408db597e6c95268e29ef0f09204475ca0c42830" 2338 + checksum = "17374a91329f2e362bc8be31cb3e171ef226777d0ea668e17a39620443693027" 2283 2339 dependencies = [ 2284 2340 "allocator-api2", 2285 2341 "bumpalo", 2342 + "hashbrown 0.15.2", 2343 + "rustc-hash", 2344 + "serde", 2286 2345 "simdutf8", 2287 2346 ] 2288 2347 2289 2348 [[package]] 2290 2349 name = "oxc_ast" 2291 - version = "0.43.0" 2350 + version = "0.48.2" 2292 2351 source = "registry+https://github.com/rust-lang/crates.io-index" 2293 - checksum = "ecee7578bc2eba24c1f30ca3e2eaa496e5448e0c08f4b53d84148040e48cf037" 2352 + checksum = "21b38cfe954ee987354af015020f5cb2723df6fed6cd688eff24388437c7eb7e" 2294 2353 dependencies = [ 2295 - "bitflags 2.6.0", 2354 + "bitflags 2.8.0", 2296 2355 "cow-utils", 2297 2356 "num-bigint", 2298 2357 "num-traits", ··· 2302 2361 "oxc_regular_expression", 2303 2362 "oxc_span", 2304 2363 "oxc_syntax", 2364 + "serde", 2365 + "serde_json", 2305 2366 ] 2306 2367 2307 2368 [[package]] 2308 2369 name = "oxc_ast_macros" 2309 - version = "0.43.0" 2370 + version = "0.48.2" 2310 2371 source = "registry+https://github.com/rust-lang/crates.io-index" 2311 - checksum = "a67bbb9e762397c69e1b21bea50225145fd5dc391f05c65fb8f57c227b5fd799" 2372 + checksum = "85f9e03eff90b041078edcc8aff09457eb4126fa5d62a383fdb082d3ae286274" 2312 2373 dependencies = [ 2313 2374 "proc-macro2", 2314 2375 "quote", ··· 2317 2378 2318 2379 [[package]] 2319 2380 name = "oxc_cfg" 2320 - version = "0.43.0" 2381 + version = "0.48.2" 2321 2382 source = "registry+https://github.com/rust-lang/crates.io-index" 2322 - checksum = "663c66a31d49c57f9fe16e92d91b1ac2e8968b50f27b551ec2afcce6bcf1a529" 2383 + checksum = "20347f1cff149f8d7354b0a16877714f4e3f7d6eb4f5cd659c3de1d5d283e846" 2323 2384 dependencies = [ 2324 - "bitflags 2.6.0", 2325 - "itertools 0.13.0", 2385 + "bitflags 2.8.0", 2386 + "itertools", 2326 2387 "nonmax", 2327 2388 "oxc_index", 2328 2389 "oxc_syntax", ··· 2332 2393 2333 2394 [[package]] 2334 2395 name = "oxc_codegen" 2335 - version = "0.43.0" 2396 + version = "0.48.2" 2336 2397 source = "registry+https://github.com/rust-lang/crates.io-index" 2337 - checksum = "9c16288143636dba33b4663a0933311141d8d2717e8c518239bd9d3eaa27370d" 2398 + checksum = "d5bd847bc5d8a2b5a620e33e0b0422fc8ddb6c85562de97da6fe86659dfd571b" 2338 2399 dependencies = [ 2339 2400 "assert-unchecked", 2340 - "bitflags 2.6.0", 2401 + "bitflags 2.8.0", 2341 2402 "cow-utils", 2342 2403 "nonmax", 2343 2404 "oxc_allocator", 2344 2405 "oxc_ast", 2406 + "oxc_data_structures", 2345 2407 "oxc_index", 2346 - "oxc_mangler", 2408 + "oxc_semantic", 2347 2409 "oxc_sourcemap", 2348 2410 "oxc_span", 2349 2411 "oxc_syntax", 2350 2412 "rustc-hash", 2413 + "ryu-js", 2351 2414 ] 2352 2415 2353 2416 [[package]] 2354 2417 name = "oxc_data_structures" 2355 - version = "0.43.0" 2418 + version = "0.48.2" 2356 2419 source = "registry+https://github.com/rust-lang/crates.io-index" 2357 - checksum = "b49cb97e20f41099468b0b9091824a9ea707c58a05f1562841fc58f09dfe0a1a" 2420 + checksum = "3697dd172835a236572748761301a7e3a17fb770cf30bb771ec10982fcbd86c8" 2358 2421 dependencies = [ 2359 2422 "assert-unchecked", 2360 2423 "ropey", ··· 2362 2425 2363 2426 [[package]] 2364 2427 name = "oxc_diagnostics" 2365 - version = "0.43.0" 2428 + version = "0.48.2" 2366 2429 source = "registry+https://github.com/rust-lang/crates.io-index" 2367 - checksum = "72057eef849a7ef203f8d06c434b46758c3eb68f0e7687bade236370c4b6aacf" 2430 + checksum = "a24c41929c1910d83fb6f4c508190a8b2d1bad02e81c8cb3a9d3f474ca0ad2c1" 2368 2431 dependencies = [ 2432 + "cow-utils", 2369 2433 "oxc-miette", 2370 - "rustc-hash", 2371 2434 ] 2372 2435 2373 2436 [[package]] 2374 2437 name = "oxc_ecmascript" 2375 - version = "0.43.0" 2438 + version = "0.48.2" 2376 2439 source = "registry+https://github.com/rust-lang/crates.io-index" 2377 - checksum = "859aa965b338b4758d609e524b53a29bed3071a252994fc8d41b08c17a1a32bc" 2440 + checksum = "30fba86c97b571671f941b818e6831ba821aac398b9f6f3b4e3367ca264b8324" 2378 2441 dependencies = [ 2379 2442 "num-bigint", 2380 2443 "num-traits", ··· 2385 2448 2386 2449 [[package]] 2387 2450 name = "oxc_estree" 2388 - version = "0.43.0" 2451 + version = "0.48.2" 2389 2452 source = "registry+https://github.com/rust-lang/crates.io-index" 2390 - checksum = "57fc3b874dd6c2bf1399bee70464023d482c4d9b92d9b6596fbf5401f1aae6a6" 2453 + checksum = "e587034bb5f108dd987e5419a4ad35a173550bd9439fc2b610d34e4ce41e8b23" 2454 + dependencies = [ 2455 + "serde", 2456 + ] 2391 2457 2392 2458 [[package]] 2393 2459 name = "oxc_index" ··· 2396 2462 checksum = "5eca5d9726cd0a6e433debe003b7bc88b2ecad0bb6109f0cef7c55e692139a34" 2397 2463 dependencies = [ 2398 2464 "rayon", 2465 + "serde", 2399 2466 ] 2400 2467 2401 2468 [[package]] 2402 2469 name = "oxc_mangler" 2403 - version = "0.43.0" 2470 + version = "0.48.2" 2404 2471 source = "registry+https://github.com/rust-lang/crates.io-index" 2405 - checksum = "06c11a4e69322befbd80e7785e952d80151d3de52fec578c72e5b1eb6ed69f66" 2472 + checksum = "5bd6c4138580a7df85ea5eb141014c86e4f19e7496eec91797b05ab73d8fb65e" 2406 2473 dependencies = [ 2407 - "itertools 0.13.0", 2474 + "fixedbitset", 2475 + "itertools", 2476 + "oxc_allocator", 2408 2477 "oxc_ast", 2409 2478 "oxc_index", 2410 2479 "oxc_semantic", 2411 2480 "oxc_span", 2481 + "rustc-hash", 2412 2482 ] 2413 2483 2414 2484 [[package]] 2415 2485 name = "oxc_minifier" 2416 - version = "0.43.0" 2486 + version = "0.48.2" 2417 2487 source = "registry+https://github.com/rust-lang/crates.io-index" 2418 - checksum = "28e289e51abdc0602e9f48192a6d4b778bd038af903169e9f19bb7d53ca8526c" 2488 + checksum = "c8d47fca4d49091775dd659cf54b4ae361ea48607f8dc6595970840ee0c5bf25" 2419 2489 dependencies = [ 2420 2490 "cow-utils", 2421 2491 "oxc_allocator", 2422 2492 "oxc_ast", 2423 2493 "oxc_codegen", 2494 + "oxc_data_structures", 2424 2495 "oxc_ecmascript", 2425 2496 "oxc_mangler", 2426 2497 "oxc_parser", ··· 2428 2499 "oxc_span", 2429 2500 "oxc_syntax", 2430 2501 "oxc_traverse", 2502 + "rustc-hash", 2431 2503 ] 2432 2504 2433 2505 [[package]] 2434 2506 name = "oxc_parser" 2435 - version = "0.43.0" 2507 + version = "0.48.2" 2436 2508 source = "registry+https://github.com/rust-lang/crates.io-index" 2437 - checksum = "42b9ffdf1fd1fac4e96315b3d200093223507038fcd22ff4ef6d21f3674640a7" 2509 + checksum = "8dc385aca3586877f8c918aed1141b885dedcfc1019d6ea5be4105f8e2a7965e" 2438 2510 dependencies = [ 2439 2511 "assert-unchecked", 2440 - "bitflags 2.6.0", 2512 + "bitflags 2.8.0", 2441 2513 "cow-utils", 2442 2514 "memchr", 2443 2515 "num-bigint", ··· 2455 2527 2456 2528 [[package]] 2457 2529 name = "oxc_regular_expression" 2458 - version = "0.43.0" 2530 + version = "0.48.2" 2459 2531 source = "registry+https://github.com/rust-lang/crates.io-index" 2460 - checksum = "63084df3c8432e87f5e241f3dd4a45e2f009dcfd08db4131c89ca88280fa5aeb" 2532 + checksum = "f8d172402f6d542ab2837d35126cc42ad6989b9c2289b06bc5c8c89dceb60c48" 2461 2533 dependencies = [ 2462 2534 "oxc_allocator", 2463 2535 "oxc_ast_macros", ··· 2466 2538 "oxc_span", 2467 2539 "phf 0.11.2", 2468 2540 "rustc-hash", 2541 + "serde", 2469 2542 "unicode-id-start", 2470 2543 ] 2471 2544 2472 2545 [[package]] 2473 2546 name = "oxc_resolver" 2474 - version = "3.0.3" 2547 + version = "4.0.0" 2475 2548 source = "registry+https://github.com/rust-lang/crates.io-index" 2476 - checksum = "bed381b6ab4bbfebfc7a011ad43b110ace8d201d02a39c0e09855f16b8f3f741" 2549 + checksum = "d0f82c2be3d07b2ac002fb4a414d6fab602b352a8d99ed9b59f6868a968c73ba" 2477 2550 dependencies = [ 2478 2551 "cfg-if", 2479 - "dashmap 6.1.0", 2480 2552 "indexmap", 2481 2553 "json-strip-comments", 2482 2554 "once_cell", 2555 + "papaya", 2483 2556 "rustc-hash", 2557 + "seize", 2484 2558 "serde", 2485 2559 "serde_json", 2486 2560 "simdutf8", ··· 2490 2564 2491 2565 [[package]] 2492 2566 name = "oxc_semantic" 2493 - version = "0.43.0" 2567 + version = "0.48.2" 2494 2568 source = "registry+https://github.com/rust-lang/crates.io-index" 2495 - checksum = "62d8f502555081cf4a474a0e499fd3841e56ac7c43f48d62ea97f82e809d8491" 2569 + checksum = "7ceb1f387b1ded0c84bdbc1f14eb087204cb9cd9ca4b4ff867be8d1575c7b20a" 2496 2570 dependencies = [ 2497 2571 "assert-unchecked", 2498 - "hashbrown 0.15.2", 2499 - "itertools 0.13.0", 2572 + "itertools", 2500 2573 "oxc_allocator", 2501 2574 "oxc_ast", 2502 2575 "oxc_cfg", ··· 2517 2590 source = "registry+https://github.com/rust-lang/crates.io-index" 2518 2591 checksum = "48557f779d04c8bfa8a930db5a3c35c0a86ff4e6bf1552ce446b9596a6e77c42" 2519 2592 dependencies = [ 2520 - "base64-simd 0.8.0", 2593 + "base64-simd", 2521 2594 "cfg-if", 2522 2595 "cow-utils", 2523 2596 "rayon", ··· 2528 2601 2529 2602 [[package]] 2530 2603 name = "oxc_span" 2531 - version = "0.43.0" 2604 + version = "0.48.2" 2532 2605 source = "registry+https://github.com/rust-lang/crates.io-index" 2533 - checksum = "ad2094100a1f1d4cac1d7ac22e95b13f18643e1381447fd354df45c3dbc62ccb" 2606 + checksum = "75881376dfdbb6a23f12a66794904f0d215629f208edcf7e156c0770e89e2101" 2534 2607 dependencies = [ 2535 2608 "compact_str", 2536 2609 "oxc-miette", 2537 2610 "oxc_allocator", 2538 2611 "oxc_ast_macros", 2539 2612 "oxc_estree", 2613 + "serde", 2540 2614 ] 2541 2615 2542 2616 [[package]] 2543 2617 name = "oxc_syntax" 2544 - version = "0.43.0" 2618 + version = "0.48.2" 2545 2619 source = "registry+https://github.com/rust-lang/crates.io-index" 2546 - checksum = "6c293839b37b16105210bc76b13417e4239f49670de91d41d70a3e69f41f6f7b" 2620 + checksum = "c6d88037a5de07f66299ab523a65545cc48d550658cea8cadcea09b60596dd49" 2547 2621 dependencies = [ 2548 2622 "assert-unchecked", 2549 - "bitflags 2.6.0", 2623 + "bitflags 2.8.0", 2624 + "cow-utils", 2550 2625 "nonmax", 2551 2626 "oxc_allocator", 2552 2627 "oxc_ast_macros", ··· 2556 2631 "phf 0.11.2", 2557 2632 "rustc-hash", 2558 2633 "ryu-js", 2634 + "serde", 2559 2635 "unicode-id-start", 2636 + "wasm-bindgen", 2560 2637 ] 2561 2638 2562 2639 [[package]] 2563 2640 name = "oxc_transformer" 2564 - version = "0.43.0" 2641 + version = "0.48.2" 2565 2642 source = "registry+https://github.com/rust-lang/crates.io-index" 2566 - checksum = "6cbad270a00a0a1c8d03190a942180697ab977c754eda651bbb98b3997225b35" 2643 + checksum = "7c66e24a2ef9a7141b7a8e73ae2aa4bd3b6dab2a64423c182cd4bbf55585b99b" 2567 2644 dependencies = [ 2568 2645 "base64", 2569 2646 "compact_str", 2570 2647 "cow-utils", 2571 - "dashmap 6.1.0", 2648 + "dashmap", 2572 2649 "indexmap", 2573 2650 "itoa 1.0.14", 2574 2651 "lazy_static", ··· 2592 2669 2593 2670 [[package]] 2594 2671 name = "oxc_traverse" 2595 - version = "0.43.0" 2672 + version = "0.48.2" 2596 2673 source = "registry+https://github.com/rust-lang/crates.io-index" 2597 - checksum = "57a3fab85b35924798950cd178f28083449288c3be24323322ad296af62bb30a" 2674 + checksum = "2dff651953c5b30cc0c5595e8da0aeb1a803a02d79199456d7d73b71c3d0a0be" 2598 2675 dependencies = [ 2599 2676 "compact_str", 2600 2677 "itoa 1.0.14", ··· 2609 2686 ] 2610 2687 2611 2688 [[package]] 2612 - name = "parcel_selectors" 2613 - version = "0.28.0" 2689 + name = "papaya" 2690 + version = "0.1.8" 2614 2691 source = "registry+https://github.com/rust-lang/crates.io-index" 2615 - checksum = "7645c578d3a5c4cdf667af1ad39765f5f751c4883d251e050d5e1204b5cad0a9" 2692 + checksum = "dc7c76487f7eaa00a0fc1d7f88dc6b295aec478d11b0fc79f857b62c2874124c" 2616 2693 dependencies = [ 2617 - "bitflags 2.6.0", 2618 - "cssparser 0.33.0", 2619 - "log", 2620 - "phf 0.11.2", 2621 - "phf_codegen 0.11.2", 2622 - "precomputed-hash", 2623 - "rustc-hash", 2624 - "smallvec", 2625 - ] 2626 - 2627 - [[package]] 2628 - name = "parcel_sourcemap" 2629 - version = "2.1.1" 2630 - source = "registry+https://github.com/rust-lang/crates.io-index" 2631 - checksum = "485b74d7218068b2b7c0e3ff12fbc61ae11d57cb5d8224f525bd304c6be05bbb" 2632 - dependencies = [ 2633 - "base64-simd 0.7.0", 2634 - "data-url", 2635 - "rkyv", 2636 - "serde", 2637 - "serde_json", 2638 - "vlq", 2694 + "equivalent", 2695 + "seize", 2639 2696 ] 2640 2697 2641 2698 [[package]] ··· 2668 2725 ] 2669 2726 2670 2727 [[package]] 2671 - name = "paste" 2672 - version = "1.0.15" 2673 - source = "registry+https://github.com/rust-lang/crates.io-index" 2674 - checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 2675 - 2676 - [[package]] 2677 - name = "pathdiff" 2678 - version = "0.2.3" 2679 - source = "registry+https://github.com/rust-lang/crates.io-index" 2680 - checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 2681 - 2682 - [[package]] 2683 2728 name = "percent-encoding" 2684 2729 version = "2.3.1" 2685 2730 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2687 2732 2688 2733 [[package]] 2689 2734 name = "petgraph" 2690 - version = "0.6.5" 2735 + version = "0.7.1" 2691 2736 source = "registry+https://github.com/rust-lang/crates.io-index" 2692 - checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" 2737 + checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" 2693 2738 dependencies = [ 2694 2739 "fixedbitset", 2695 2740 "indexmap", ··· 2724 2769 dependencies = [ 2725 2770 "phf_generator 0.8.0", 2726 2771 "phf_shared 0.8.0", 2727 - ] 2728 - 2729 - [[package]] 2730 - name = "phf_codegen" 2731 - version = "0.11.2" 2732 - source = "registry+https://github.com/rust-lang/crates.io-index" 2733 - checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a" 2734 - dependencies = [ 2735 - "phf_generator 0.11.2", 2736 - "phf_shared 0.11.2", 2737 2772 ] 2738 2773 2739 2774 [[package]] ··· 2939 2974 ] 2940 2975 2941 2976 [[package]] 2942 - name = "ptr_meta" 2943 - version = "0.1.4" 2944 - source = "registry+https://github.com/rust-lang/crates.io-index" 2945 - checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1" 2946 - dependencies = [ 2947 - "ptr_meta_derive", 2948 - ] 2949 - 2950 - [[package]] 2951 - name = "ptr_meta_derive" 2952 - version = "0.1.4" 2953 - source = "registry+https://github.com/rust-lang/crates.io-index" 2954 - checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac" 2955 - dependencies = [ 2956 - "proc-macro2", 2957 - "quote", 2958 - "syn 1.0.109", 2959 - ] 2960 - 2961 - [[package]] 2962 2977 name = "pulldown-cmark" 2963 2978 version = "0.12.2" 2964 2979 source = "registry+https://github.com/rust-lang/crates.io-index" 2965 2980 checksum = "f86ba2052aebccc42cbbb3ed234b8b13ce76f75c3551a303cb2bcffcff12bb14" 2966 2981 dependencies = [ 2967 - "bitflags 2.6.0", 2982 + "bitflags 2.8.0", 2968 2983 "getopts", 2969 2984 "memchr", 2970 2985 "pulldown-cmark-escape", ··· 2985 3000 dependencies = [ 2986 3001 "proc-macro2", 2987 3002 ] 2988 - 2989 - [[package]] 2990 - name = "radium" 2991 - version = "0.7.0" 2992 - source = "registry+https://github.com/rust-lang/crates.io-index" 2993 - checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" 2994 3003 2995 3004 [[package]] 2996 3005 name = "radix_trie" ··· 3109 3118 source = "registry+https://github.com/rust-lang/crates.io-index" 3110 3119 checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834" 3111 3120 dependencies = [ 3112 - "bitflags 2.6.0", 3121 + "bitflags 2.8.0", 3113 3122 ] 3114 3123 3115 3124 [[package]] ··· 3167 3176 ] 3168 3177 3169 3178 [[package]] 3170 - name = "rend" 3171 - version = "0.4.2" 3172 - source = "registry+https://github.com/rust-lang/crates.io-index" 3173 - checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c" 3174 - dependencies = [ 3175 - "bytecheck", 3176 - ] 3177 - 3178 - [[package]] 3179 - name = "rkyv" 3180 - version = "0.7.45" 3181 - source = "registry+https://github.com/rust-lang/crates.io-index" 3182 - checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b" 3183 - dependencies = [ 3184 - "bitvec", 3185 - "bytecheck", 3186 - "bytes", 3187 - "hashbrown 0.12.3", 3188 - "ptr_meta", 3189 - "rend", 3190 - "rkyv_derive", 3191 - "seahash", 3192 - "tinyvec", 3193 - "uuid", 3194 - ] 3195 - 3196 - [[package]] 3197 - name = "rkyv_derive" 3198 - version = "0.7.45" 3199 - source = "registry+https://github.com/rust-lang/crates.io-index" 3200 - checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0" 3201 - dependencies = [ 3202 - "proc-macro2", 3203 - "quote", 3204 - "syn 1.0.109", 3205 - ] 3206 - 3207 - [[package]] 3208 - name = "rolldown" 3209 - version = "0.1.0" 3210 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3211 - dependencies = [ 3212 - "anyhow", 3213 - "append-only-vec", 3214 - "arcstr", 3215 - "css-module-lexer", 3216 - "daachorse", 3217 - "dunce", 3218 - "futures", 3219 - "indexmap", 3220 - "itertools 0.13.0", 3221 - "itoa 1.0.14", 3222 - "memchr", 3223 - "notify 7.0.0", 3224 - "oxc", 3225 - "oxc_index", 3226 - "rolldown_common", 3227 - "rolldown_ecmascript", 3228 - "rolldown_ecmascript_utils", 3229 - "rolldown_error", 3230 - "rolldown_fs", 3231 - "rolldown_loader_utils", 3232 - "rolldown_plugin", 3233 - "rolldown_plugin_data_url", 3234 - "rolldown_resolver", 3235 - "rolldown_rstr", 3236 - "rolldown_sourcemap", 3237 - "rolldown_std_utils", 3238 - "rolldown_tracing", 3239 - "rolldown_utils", 3240 - "rustc-hash", 3241 - "sanitize-filename", 3242 - "string_wizard", 3243 - "sugar_path", 3244 - "tokio", 3245 - "tracing", 3246 - "tracing-chrome", 3247 - "xxhash-rust", 3248 - ] 3249 - 3250 - [[package]] 3251 - name = "rolldown_common" 3252 - version = "0.1.0" 3253 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3254 - dependencies = [ 3255 - "anyhow", 3256 - "arcstr", 3257 - "bitflags 2.6.0", 3258 - "dashmap 6.1.0", 3259 - "either", 3260 - "glob-match", 3261 - "itertools 0.13.0", 3262 - "lightningcss", 3263 - "oxc", 3264 - "oxc_index", 3265 - "oxc_resolver", 3266 - "rolldown_ecmascript", 3267 - "rolldown_error", 3268 - "rolldown_fs", 3269 - "rolldown_rstr", 3270 - "rolldown_sourcemap", 3271 - "rolldown_std_utils", 3272 - "rolldown_utils", 3273 - "rustc-hash", 3274 - "serde_json", 3275 - "string_wizard", 3276 - "sugar_path", 3277 - ] 3278 - 3279 - [[package]] 3280 - name = "rolldown_ecmascript" 3281 - version = "0.1.0" 3282 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3283 - dependencies = [ 3284 - "arcstr", 3285 - "either", 3286 - "oxc", 3287 - "oxc_sourcemap", 3288 - "rolldown_error", 3289 - "self_cell", 3290 - ] 3291 - 3292 - [[package]] 3293 - name = "rolldown_ecmascript_utils" 3294 - version = "0.1.0" 3295 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3296 - dependencies = [ 3297 - "oxc", 3298 - "rolldown_common", 3299 - "smallvec", 3300 - ] 3301 - 3302 - [[package]] 3303 - name = "rolldown_error" 3304 - version = "0.1.0" 3305 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3306 - dependencies = [ 3307 - "anyhow", 3308 - "arcstr", 3309 - "ariadne", 3310 - "heck", 3311 - "oxc", 3312 - "oxc_resolver", 3313 - "oxc_sourcemap", 3314 - "sugar_path", 3315 - ] 3316 - 3317 - [[package]] 3318 - name = "rolldown_fs" 3319 - version = "0.1.0" 3320 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3321 - dependencies = [ 3322 - "oxc_resolver", 3323 - "vfs", 3324 - ] 3325 - 3326 - [[package]] 3327 - name = "rolldown_loader_utils" 3328 - version = "0.1.0" 3329 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3330 - dependencies = [ 3331 - "anyhow", 3332 - "itoa 1.0.14", 3333 - "rolldown_common", 3334 - "rolldown_utils", 3335 - "serde_json", 3336 - ] 3337 - 3338 - [[package]] 3339 - name = "rolldown_plugin" 3340 - version = "0.1.0" 3341 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3342 - dependencies = [ 3343 - "anyhow", 3344 - "arcstr", 3345 - "async-trait", 3346 - "dashmap 6.1.0", 3347 - "oxc_index", 3348 - "rolldown_common", 3349 - "rolldown_ecmascript", 3350 - "rolldown_error", 3351 - "rolldown_resolver", 3352 - "rolldown_sourcemap", 3353 - "rolldown_utils", 3354 - "rustc-hash", 3355 - "string_wizard", 3356 - "sugar_path", 3357 - "tokio", 3358 - "tracing", 3359 - "typedmap", 3360 - ] 3361 - 3362 - [[package]] 3363 - name = "rolldown_plugin_data_url" 3364 - version = "0.1.0" 3365 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3366 - dependencies = [ 3367 - "base64-simd 0.8.0", 3368 - "regex", 3369 - "rolldown_common", 3370 - "rolldown_plugin", 3371 - "rolldown_utils", 3372 - "urlencoding", 3373 - ] 3374 - 3375 - [[package]] 3376 - name = "rolldown_resolver" 3377 - version = "0.1.0" 3378 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3379 - dependencies = [ 3380 - "anyhow", 3381 - "arcstr", 3382 - "dashmap 6.1.0", 3383 - "itertools 0.13.0", 3384 - "oxc_resolver", 3385 - "rolldown_common", 3386 - "rolldown_fs", 3387 - "rolldown_utils", 3388 - "sugar_path", 3389 - ] 3390 - 3391 - [[package]] 3392 - name = "rolldown_rstr" 3393 - version = "0.1.0" 3394 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3395 - dependencies = [ 3396 - "oxc", 3397 - ] 3398 - 3399 - [[package]] 3400 - name = "rolldown_sourcemap" 3401 - version = "0.1.0" 3402 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3403 - dependencies = [ 3404 - "memchr", 3405 - "oxc", 3406 - "oxc_sourcemap", 3407 - "rolldown_utils", 3408 - "rustc-hash", 3409 - ] 3410 - 3411 - [[package]] 3412 - name = "rolldown_std_utils" 3413 - version = "0.1.0" 3414 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3415 - dependencies = [ 3416 - "regex", 3417 - ] 3418 - 3419 - [[package]] 3420 - name = "rolldown_tracing" 3421 - version = "0.1.0" 3422 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3423 - dependencies = [ 3424 - "tracing", 3425 - "tracing-chrome", 3426 - "tracing-subscriber", 3427 - ] 3428 - 3429 - [[package]] 3430 - name = "rolldown_utils" 3431 - version = "0.1.0" 3432 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3433 - dependencies = [ 3434 - "anyhow", 3435 - "arcstr", 3436 - "async-scoped", 3437 - "base-encode", 3438 - "base64-simd 0.8.0", 3439 - "dashmap 6.1.0", 3440 - "futures", 3441 - "glob-match", 3442 - "indexmap", 3443 - "infer", 3444 - "memchr", 3445 - "mime", 3446 - "oxc", 3447 - "oxc_index", 3448 - "phf 0.11.2", 3449 - "rayon", 3450 - "regex", 3451 - "regress", 3452 - "rolldown_std_utils", 3453 - "rustc-hash", 3454 - "simdutf8", 3455 - "xxhash-rust", 3456 - ] 3457 - 3458 - [[package]] 3459 3179 name = "ropey" 3460 3180 version = "1.6.1" 3461 3181 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3492 3212 source = "registry+https://github.com/rust-lang/crates.io-index" 3493 3213 checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85" 3494 3214 dependencies = [ 3495 - "bitflags 2.6.0", 3215 + "bitflags 2.8.0", 3496 3216 "errno", 3497 3217 "libc", 3498 3218 "linux-raw-sys", ··· 3542 3262 checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3543 3263 3544 3264 [[package]] 3545 - name = "seahash" 3546 - version = "4.1.0" 3265 + name = "seize" 3266 + version = "0.4.9" 3547 3267 source = "registry+https://github.com/rust-lang/crates.io-index" 3548 - checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b" 3268 + checksum = "d84b0c858bdd30cb56f5597f8b3bf702ec23829e652cc636a1e5a7b9de46ae93" 3269 + dependencies = [ 3270 + "libc", 3271 + "windows-sys 0.52.0", 3272 + ] 3549 3273 3550 3274 [[package]] 3551 3275 name = "selectors" ··· 3554 3278 checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" 3555 3279 dependencies = [ 3556 3280 "bitflags 1.3.2", 3557 - "cssparser 0.27.2", 3281 + "cssparser", 3558 3282 "derive_more", 3559 3283 "fxhash", 3560 3284 "log", 3561 3285 "matches", 3562 3286 "phf 0.8.0", 3563 - "phf_codegen 0.8.0", 3287 + "phf_codegen", 3564 3288 "precomputed-hash", 3565 3289 "servo_arc", 3566 3290 "smallvec", ··· 3707 3431 ] 3708 3432 3709 3433 [[package]] 3710 - name = "simd-abstraction" 3711 - version = "0.7.1" 3712 - source = "registry+https://github.com/rust-lang/crates.io-index" 3713 - checksum = "9cadb29c57caadc51ff8346233b5cec1d240b68ce55cf1afc764818791876987" 3714 - dependencies = [ 3715 - "outref 0.1.0", 3716 - ] 3717 - 3718 - [[package]] 3719 3434 name = "simdutf8" 3720 3435 version = "0.1.5" 3721 3436 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3778 3493 3779 3494 [[package]] 3780 3495 name = "string_wizard" 3781 - version = "0.0.25" 3782 - source = "git+https://github.com/rolldown/rolldown?rev=f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8#f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" 3496 + version = "0.0.26" 3497 + source = "registry+https://github.com/rust-lang/crates.io-index" 3498 + checksum = "baa2ddbd6b187e9467902cf1c0f90266969897659ec5e7cefb3433ff5ffcf97d" 3783 3499 dependencies = [ 3784 3500 "oxc_index", 3785 3501 "oxc_sourcemap", 3786 3502 "rustc-hash", 3503 + "serde", 3787 3504 ] 3788 3505 3789 3506 [[package]] ··· 3827 3544 checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 3828 3545 3829 3546 [[package]] 3830 - name = "tap" 3831 - version = "1.0.1" 3832 - source = "registry+https://github.com/rust-lang/crates.io-index" 3833 - checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" 3834 - 3835 - [[package]] 3836 3547 name = "tempfile" 3837 3548 version = "3.14.0" 3838 3549 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4032 3743 source = "registry+https://github.com/rust-lang/crates.io-index" 4033 3744 checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" 4034 3745 dependencies = [ 4035 - "bitflags 2.6.0", 3746 + "bitflags 2.8.0", 4036 3747 "bytes", 4037 3748 "futures-util", 4038 3749 "http", ··· 4157 3868 4158 3869 [[package]] 4159 3870 name = "typedmap" 4160 - version = "0.5.0" 3871 + version = "0.6.0" 4161 3872 source = "registry+https://github.com/rust-lang/crates.io-index" 4162 - checksum = "bb0a883093b9d4733a7a5ceb14b05bc2c51c21d8bbf1fd3d9de72a0821f4b910" 3873 + checksum = "63278e72ed4f207eb3216c944cbafb35bdb656d2eab97ef73c0c165a1cd3e319" 4163 3874 dependencies = [ 4164 - "dashmap 5.5.3", 3875 + "dashmap", 4165 3876 ] 4166 3877 4167 3878 [[package]] ··· 4208 3919 dependencies = [ 4209 3920 "tinyvec", 4210 3921 ] 4211 - 4212 - [[package]] 4213 - name = "unicode-segmentation" 4214 - version = "1.12.0" 4215 - source = "registry+https://github.com/rust-lang/crates.io-index" 4216 - checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 4217 3922 4218 3923 [[package]] 4219 3924 name = "unicode-width" ··· 4271 3976 dependencies = [ 4272 3977 "filetime", 4273 3978 ] 4274 - 4275 - [[package]] 4276 - name = "vlq" 4277 - version = "0.5.1" 4278 - source = "registry+https://github.com/rust-lang/crates.io-index" 4279 - checksum = "65dd7eed29412da847b0f78bcec0ac98588165988a8cfe41d4ea1d429f8ccfff" 4280 3979 4281 3980 [[package]] 4282 3981 name = "vsimd" ··· 4745 4444 checksum = "1e90edd2ac1aa278a5c4599b1d89cf03074b610800f866d4026dc199d7929a28" 4746 4445 dependencies = [ 4747 4446 "memchr", 4748 - ] 4749 - 4750 - [[package]] 4751 - name = "wyz" 4752 - version = "0.5.1" 4753 - source = "registry+https://github.com/rust-lang/crates.io-index" 4754 - checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" 4755 - dependencies = [ 4756 - "tap", 4757 4447 ] 4758 4448 4759 4449 [[package]]
+1 -1
Cargo.toml
··· 3 3 resolver = "2" 4 4 5 5 [workspace.dependencies] 6 - maudit = { version = "0.1.0", path = "crates/framework" } 6 + maudit = { path = "crates/framework" } 7 7 maud = { version = "0.26.0" } 8 8 serde = { version = "1.0.216" } 9 9
+1 -1
crates/cli/Cargo.toml
··· 1 1 [package] 2 2 name = "maudit-cli" 3 3 description = "CLI to operate on maudit projects." 4 - version = "0.1.0" 4 + version = "0.2.0" 5 5 license = "MIT" 6 6 edition = "2021" 7 7
+2 -2
crates/framework/Cargo.toml
··· 1 1 [package] 2 2 name = "maudit" 3 3 description = "Framework for generating static websites." 4 - version = "0.1.0" 4 + version = "0.2.0" 5 5 license = "MIT" 6 6 edition = "2021" 7 7 ··· 14 14 maud = { workspace = true, optional = true } 15 15 16 16 # TODO: Allow making those optional 17 - rolldown = { git = "https://github.com/rolldown/rolldown", version = "0.1.0", rev = "f9fc700f00b9a4ef3659c70d2be4d7cd61b492c8" } 17 + rolldown = { package = "maudit_rolldown", version = "0.1.0" } 18 18 serde = { workspace = true } 19 19 serde_yml = "0.0.12" 20 20 pulldown-cmark = "0.12.2"