[WIP] A (somewhat barebones) atproto app for creating custom sites without hosting!

upload: bump to jacquaurd 0.6.0

THE CODE WORKS NOW !!!

vielle.dev df00cf6b 780e7c20

verified
Changed files
+148 -24
upload
+147 -23
upload/Cargo.lock
··· 1034 1034 ] 1035 1035 1036 1036 [[package]] 1037 + name = "genawaiter" 1038 + version = "0.99.1" 1039 + source = "registry+https://github.com/rust-lang/crates.io-index" 1040 + checksum = "c86bd0361bcbde39b13475e6e36cb24c329964aa2611be285289d1e4b751c1a0" 1041 + dependencies = [ 1042 + "futures-core", 1043 + "genawaiter-macro", 1044 + "genawaiter-proc-macro", 1045 + "proc-macro-hack", 1046 + ] 1047 + 1048 + [[package]] 1049 + name = "genawaiter-macro" 1050 + version = "0.99.1" 1051 + source = "registry+https://github.com/rust-lang/crates.io-index" 1052 + checksum = "0b32dfe1fdfc0bbde1f22a5da25355514b5e450c33a6af6770884c8750aedfbc" 1053 + 1054 + [[package]] 1055 + name = "genawaiter-proc-macro" 1056 + version = "0.99.1" 1057 + source = "registry+https://github.com/rust-lang/crates.io-index" 1058 + checksum = "784f84eebc366e15251c4a8c3acee82a6a6f427949776ecb88377362a9621738" 1059 + dependencies = [ 1060 + "proc-macro-error 0.4.12", 1061 + "proc-macro-hack", 1062 + "proc-macro2", 1063 + "quote", 1064 + "syn 1.0.109", 1065 + ] 1066 + 1067 + [[package]] 1037 1068 name = "generic-array" 1038 1069 version = "0.14.9" 1039 1070 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1521 1552 1522 1553 [[package]] 1523 1554 name = "indexmap" 1524 - version = "2.11.4" 1555 + version = "2.12.0" 1525 1556 source = "registry+https://github.com/rust-lang/crates.io-index" 1526 - checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" 1557 + checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" 1527 1558 dependencies = [ 1528 1559 "equivalent", 1529 1560 "hashbrown 0.16.0", ··· 1594 1625 1595 1626 [[package]] 1596 1627 name = "jacquard" 1597 - version = "0.5.4" 1628 + version = "0.6.0" 1598 1629 source = "registry+https://github.com/rust-lang/crates.io-index" 1599 - checksum = "c9f7e9e2fb15b8e526c8f44ba197ba8b4174858d05522f088d1ff8de0ce02836" 1630 + checksum = "5857f000e67605995ba7c24c9833f840adf5c063a731a6f72f69e0e3c986791c" 1600 1631 dependencies = [ 1601 1632 "bon", 1602 1633 "bytes", 1603 1634 "getrandom 0.2.16", 1604 1635 "http", 1605 1636 "jacquard-api", 1606 - "jacquard-common", 1607 - "jacquard-derive", 1637 + "jacquard-common 0.6.0", 1638 + "jacquard-derive 0.6.0", 1608 1639 "jacquard-identity", 1609 1640 "jacquard-oauth", 1610 1641 "jose-jwk", ··· 1626 1657 1627 1658 [[package]] 1628 1659 name = "jacquard-api" 1629 - version = "0.5.5" 1660 + version = "0.6.0" 1630 1661 source = "registry+https://github.com/rust-lang/crates.io-index" 1631 - checksum = "eef8307959cc031759816d8e44a3c4db5dd184eedec07431579877a8c4741b80" 1662 + checksum = "58132b60473124a34c64c267a1c3390c2e4a4dfd62c801639903c4aefd05f52d" 1632 1663 dependencies = [ 1633 1664 "bon", 1634 1665 "bytes", 1635 - "jacquard-common", 1636 - "jacquard-derive", 1666 + "jacquard-common 0.6.0", 1667 + "jacquard-derive 0.6.0", 1637 1668 "miette", 1638 1669 "serde", 1670 + "serde_ipld_dagcbor", 1639 1671 "thiserror 2.0.17", 1640 1672 ] 1641 1673 ··· 1676 1708 ] 1677 1709 1678 1710 [[package]] 1711 + name = "jacquard-common" 1712 + version = "0.6.0" 1713 + source = "registry+https://github.com/rust-lang/crates.io-index" 1714 + checksum = "f7f1bab0279ae2e29c3383f132a05b9c708585fab62e94292affdf352ce13242" 1715 + dependencies = [ 1716 + "base64 0.22.1", 1717 + "bon", 1718 + "bytes", 1719 + "chrono", 1720 + "cid", 1721 + "genawaiter", 1722 + "getrandom 0.3.4", 1723 + "http", 1724 + "ipld-core", 1725 + "k256", 1726 + "langtag", 1727 + "miette", 1728 + "multibase", 1729 + "multihash", 1730 + "ouroboros", 1731 + "p256", 1732 + "rand 0.9.2", 1733 + "regex", 1734 + "reqwest", 1735 + "serde", 1736 + "serde_html_form", 1737 + "serde_ipld_dagcbor", 1738 + "serde_json", 1739 + "signature", 1740 + "smol_str", 1741 + "thiserror 2.0.17", 1742 + "tokio", 1743 + "tokio-util", 1744 + "trait-variant", 1745 + "url", 1746 + ] 1747 + 1748 + [[package]] 1679 1749 name = "jacquard-derive" 1680 1750 version = "0.5.4" 1681 1751 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1687 1757 ] 1688 1758 1689 1759 [[package]] 1760 + name = "jacquard-derive" 1761 + version = "0.6.0" 1762 + source = "registry+https://github.com/rust-lang/crates.io-index" 1763 + checksum = "a4741844c0638498156338e6230a81ecb54d0a061ffc6f4f54e97b94972a01fb" 1764 + dependencies = [ 1765 + "proc-macro2", 1766 + "quote", 1767 + "syn 2.0.106", 1768 + ] 1769 + 1770 + [[package]] 1690 1771 name = "jacquard-identity" 1691 - version = "0.5.3" 1772 + version = "0.6.0" 1692 1773 source = "registry+https://github.com/rust-lang/crates.io-index" 1693 - checksum = "afafcd8fcc26095789aeefe4f54cda4471f1748ba11fa7886184f515362b6339" 1774 + checksum = "65ae022725ddc09ce03c1a02a97b895279e1d46957c0574a032fa78b81273263" 1694 1775 dependencies = [ 1695 1776 "bon", 1696 1777 "bytes", 1697 1778 "hickory-resolver", 1698 1779 "http", 1699 1780 "jacquard-api", 1700 - "jacquard-common", 1781 + "jacquard-common 0.6.0", 1701 1782 "miette", 1702 1783 "percent-encoding", 1703 1784 "reqwest", ··· 1713 1794 1714 1795 [[package]] 1715 1796 name = "jacquard-oauth" 1716 - version = "0.5.4" 1797 + version = "0.6.0" 1717 1798 source = "registry+https://github.com/rust-lang/crates.io-index" 1718 - checksum = "0c583fb0f634654b51d390809f4dc5b08087d34c155b33d89b36475f6e6b1428" 1799 + checksum = "8c37269e2ea0c6c3418bf61fb3d342aab87b1bda706ebae49e454f8e50580cab" 1719 1800 dependencies = [ 1720 1801 "base64 0.22.1", 1721 1802 "bytes", ··· 1723 1804 "dashmap", 1724 1805 "elliptic-curve", 1725 1806 "http", 1726 - "jacquard-common", 1807 + "jacquard-common 0.6.0", 1727 1808 "jacquard-identity", 1728 1809 "jose-jwa", 1729 1810 "jose-jwk", ··· 1876 1957 dependencies = [ 1877 1958 "bon", 1878 1959 "bytes", 1879 - "jacquard-common", 1880 - "jacquard-derive", 1960 + "jacquard-common 0.5.4", 1961 + "jacquard-derive 0.5.4", 1881 1962 "miette", 1882 1963 "serde", 1883 1964 "thiserror 2.0.17", ··· 2044 2125 2045 2126 [[package]] 2046 2127 name = "mio" 2047 - version = "1.0.4" 2128 + version = "1.1.0" 2048 2129 source = "registry+https://github.com/rust-lang/crates.io-index" 2049 - checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" 2130 + checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873" 2050 2131 dependencies = [ 2051 2132 "libc", 2052 2133 "wasi", 2053 - "windows-sys 0.59.0", 2134 + "windows-sys 0.61.2", 2054 2135 ] 2055 2136 2056 2137 [[package]] ··· 2462 2543 2463 2544 [[package]] 2464 2545 name = "proc-macro-error" 2546 + version = "0.4.12" 2547 + source = "registry+https://github.com/rust-lang/crates.io-index" 2548 + checksum = "18f33027081eba0a6d8aba6d1b1c3a3be58cbb12106341c2d5759fcd9b5277e7" 2549 + dependencies = [ 2550 + "proc-macro-error-attr 0.4.12", 2551 + "proc-macro2", 2552 + "quote", 2553 + "syn 1.0.109", 2554 + "version_check", 2555 + ] 2556 + 2557 + [[package]] 2558 + name = "proc-macro-error" 2465 2559 version = "1.0.4" 2466 2560 source = "registry+https://github.com/rust-lang/crates.io-index" 2467 2561 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2468 2562 dependencies = [ 2469 - "proc-macro-error-attr", 2563 + "proc-macro-error-attr 1.0.4", 2564 + "proc-macro2", 2565 + "quote", 2566 + "syn 1.0.109", 2567 + "version_check", 2568 + ] 2569 + 2570 + [[package]] 2571 + name = "proc-macro-error-attr" 2572 + version = "0.4.12" 2573 + source = "registry+https://github.com/rust-lang/crates.io-index" 2574 + checksum = "8a5b4b77fdb63c1eca72173d68d24501c54ab1269409f6b672c85deb18af69de" 2575 + dependencies = [ 2470 2576 "proc-macro2", 2471 2577 "quote", 2472 2578 "syn 1.0.109", 2579 + "syn-mid", 2473 2580 "version_check", 2474 2581 ] 2475 2582 ··· 2483 2590 "quote", 2484 2591 "version_check", 2485 2592 ] 2593 + 2594 + [[package]] 2595 + name = "proc-macro-hack" 2596 + version = "0.5.20+deprecated" 2597 + source = "registry+https://github.com/rust-lang/crates.io-index" 2598 + checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 2486 2599 2487 2600 [[package]] 2488 2601 name = "proc-macro2" ··· 3165 3278 "ciborium", 3166 3279 "hex_fmt", 3167 3280 "indoc", 3168 - "proc-macro-error", 3281 + "proc-macro-error 1.0.4", 3169 3282 "proc-macro2", 3170 3283 "quote", 3171 3284 "serde", ··· 3233 3346 "proc-macro2", 3234 3347 "quote", 3235 3348 "unicode-ident", 3349 + ] 3350 + 3351 + [[package]] 3352 + name = "syn-mid" 3353 + version = "0.5.4" 3354 + source = "registry+https://github.com/rust-lang/crates.io-index" 3355 + checksum = "fea305d57546cc8cd04feb14b62ec84bf17f50e3f7b12560d7bfa9265f39d9ed" 3356 + dependencies = [ 3357 + "proc-macro2", 3358 + "quote", 3359 + "syn 1.0.109", 3236 3360 ] 3237 3361 3238 3362 [[package]]
+1 -1
upload/Cargo.toml
··· 14 14 regex = "1.12.2" 15 15 mime_guess = "2.0.5" 16 16 tokio = { version = "1.48.0", features = ["full"] } 17 - jacquard = "0.5.4" 17 + jacquard = "0.6.0" 18 18 reqwest = "0.12.24" 19 19 env_logger = "0.11.8" 20 20 miette = { version = "7.6.0", features = ["derive", "fancy"] }