this repo has no description

chore: dep bump

vielle.dev f32af9c4 7813d85b

verified
+368 -319
+364 -316
Cargo.lock
··· 142 142 143 143 [[package]] 144 144 name = "async-compression" 145 - version = "0.4.34" 145 + version = "0.4.36" 146 146 source = "registry+https://github.com/rust-lang/crates.io-index" 147 - checksum = "0e86f6d3dc9dc4352edeea6b8e499e13e3f5dc3b964d7ca5fd411415a3498473" 147 + checksum = "98ec5f6c2f8bc326c994cb9e241cc257ddaba9afa8555a43cffbb5dd86efaa37" 148 148 dependencies = [ 149 149 "compression-codecs", 150 150 "compression-core", ··· 161 161 dependencies = [ 162 162 "proc-macro2", 163 163 "quote", 164 - "syn 2.0.111", 164 + "syn 2.0.112", 165 165 ] 166 166 167 167 [[package]] ··· 174 174 ] 175 175 176 176 [[package]] 177 + name = "atomic-polyfill" 178 + version = "1.0.3" 179 + source = "registry+https://github.com/rust-lang/crates.io-index" 180 + checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4" 181 + dependencies = [ 182 + "critical-section", 183 + ] 184 + 185 + [[package]] 177 186 name = "atomic-waker" 178 187 version = "1.1.2" 179 188 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 221 230 222 231 [[package]] 223 232 name = "base64ct" 224 - version = "1.8.0" 233 + version = "1.8.1" 225 234 source = "registry+https://github.com/rust-lang/crates.io-index" 226 - checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" 235 + checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a" 227 236 228 237 [[package]] 229 238 name = "bitflags" ··· 265 274 "proc-macro2", 266 275 "quote", 267 276 "rustversion", 268 - "syn 2.0.111", 277 + "syn 2.0.112", 269 278 ] 270 279 271 280 [[package]] ··· 334 343 335 344 [[package]] 336 345 name = "bumpalo" 337 - version = "3.19.0" 346 + version = "3.19.1" 338 347 source = "registry+https://github.com/rust-lang/crates.io-index" 339 - checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 340 - 341 - [[package]] 342 - name = "bytecount" 343 - version = "0.6.9" 344 - source = "registry+https://github.com/rust-lang/crates.io-index" 345 - checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e" 348 + checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" 346 349 347 350 [[package]] 348 351 name = "byteorder" ··· 360 363 ] 361 364 362 365 [[package]] 363 - name = "camino" 364 - version = "1.2.1" 365 - source = "registry+https://github.com/rust-lang/crates.io-index" 366 - checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609" 367 - dependencies = [ 368 - "serde_core", 369 - ] 370 - 371 - [[package]] 372 - name = "cargo-platform" 373 - version = "0.1.9" 374 - source = "registry+https://github.com/rust-lang/crates.io-index" 375 - checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" 376 - dependencies = [ 377 - "serde", 378 - ] 379 - 380 - [[package]] 381 - name = "cargo_metadata" 382 - version = "0.14.2" 383 - source = "registry+https://github.com/rust-lang/crates.io-index" 384 - checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa" 385 - dependencies = [ 386 - "camino", 387 - "cargo-platform", 388 - "semver", 389 - "serde", 390 - "serde_json", 391 - ] 392 - 393 - [[package]] 394 366 name = "cbor4ii" 395 367 version = "0.2.14" 396 368 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 401 373 402 374 [[package]] 403 375 name = "cc" 404 - version = "1.2.48" 376 + version = "1.2.51" 405 377 source = "registry+https://github.com/rust-lang/crates.io-index" 406 - checksum = "c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a" 378 + checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203" 407 379 dependencies = [ 408 380 "find-msvc-tools", 409 381 "shlex", ··· 447 419 "num-traits", 448 420 "serde", 449 421 "wasm-bindgen", 450 - "windows-link 0.2.1", 422 + "windows-link", 451 423 ] 452 424 453 425 [[package]] ··· 498 470 ] 499 471 500 472 [[package]] 473 + name = "cobs" 474 + version = "0.3.0" 475 + source = "registry+https://github.com/rust-lang/crates.io-index" 476 + checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" 477 + dependencies = [ 478 + "thiserror 2.0.17", 479 + ] 480 + 481 + [[package]] 501 482 name = "colorchoice" 502 483 version = "1.0.4" 503 484 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 515 496 516 497 [[package]] 517 498 name = "compression-codecs" 518 - version = "0.4.33" 499 + version = "0.4.35" 519 500 source = "registry+https://github.com/rust-lang/crates.io-index" 520 - checksum = "302266479cb963552d11bd042013a58ef1adc56768016c8b82b4199488f2d4ad" 501 + checksum = "b0f7ac3e5b97fdce45e8922fb05cae2c37f7bbd63d30dd94821dacfd8f3f2bf2" 521 502 dependencies = [ 522 503 "compression-core", 523 504 "flate2", ··· 630 611 ] 631 612 632 613 [[package]] 614 + name = "critical-section" 615 + version = "1.2.0" 616 + source = "registry+https://github.com/rust-lang/crates.io-index" 617 + checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 618 + 619 + [[package]] 633 620 name = "crossbeam-channel" 634 621 version = "0.5.15" 635 622 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 705 692 dependencies = [ 706 693 "proc-macro2", 707 694 "quote", 708 - "syn 2.0.111", 695 + "syn 2.0.112", 709 696 ] 710 697 711 698 [[package]] ··· 729 716 "proc-macro2", 730 717 "quote", 731 718 "strsim", 732 - "syn 2.0.111", 719 + "syn 2.0.112", 733 720 ] 734 721 735 722 [[package]] ··· 740 727 dependencies = [ 741 728 "darling_core", 742 729 "quote", 743 - "syn 2.0.111", 744 - ] 745 - 746 - [[package]] 747 - name = "dashmap" 748 - version = "5.5.3" 749 - source = "registry+https://github.com/rust-lang/crates.io-index" 750 - checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 751 - dependencies = [ 752 - "cfg-if", 753 - "hashbrown 0.14.5", 754 - "lock_api", 755 - "once_cell", 756 - "parking_lot_core", 730 + "syn 2.0.112", 757 731 ] 758 732 759 733 [[package]] ··· 793 767 checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" 794 768 dependencies = [ 795 769 "data-encoding", 796 - "syn 2.0.111", 770 + "syn 2.0.112", 797 771 ] 798 772 799 773 [[package]] ··· 844 818 dependencies = [ 845 819 "proc-macro2", 846 820 "quote", 847 - "syn 2.0.111", 821 + "syn 2.0.112", 848 822 "unicode-xid", 849 823 ] 850 824 ··· 874 848 dependencies = [ 875 849 "proc-macro2", 876 850 "quote", 877 - "syn 2.0.111", 851 + "syn 2.0.112", 878 852 ] 879 853 880 854 [[package]] ··· 958 932 ] 959 933 960 934 [[package]] 935 + name = "embedded-io" 936 + version = "0.4.0" 937 + source = "registry+https://github.com/rust-lang/crates.io-index" 938 + checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 939 + 940 + [[package]] 941 + name = "embedded-io" 942 + version = "0.6.1" 943 + source = "registry+https://github.com/rust-lang/crates.io-index" 944 + checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" 945 + 946 + [[package]] 961 947 name = "encoding_rs" 962 948 version = "0.8.35" 963 949 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 975 961 "heck 0.5.0", 976 962 "proc-macro2", 977 963 "quote", 978 - "syn 2.0.111", 964 + "syn 2.0.112", 979 965 ] 980 966 981 967 [[package]] ··· 1018 1004 ] 1019 1005 1020 1006 [[package]] 1021 - name = "error-chain" 1022 - version = "0.12.4" 1023 - source = "registry+https://github.com/rust-lang/crates.io-index" 1024 - checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" 1025 - dependencies = [ 1026 - "version_check", 1027 - ] 1028 - 1029 - [[package]] 1030 1007 name = "etcetera" 1031 1008 version = "0.8.0" 1032 1009 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1084 1061 1085 1062 [[package]] 1086 1063 name = "find-msvc-tools" 1087 - version = "0.1.5" 1064 + version = "0.1.6" 1088 1065 source = "registry+https://github.com/rust-lang/crates.io-index" 1089 - checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" 1066 + checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff" 1090 1067 1091 1068 [[package]] 1092 1069 name = "flate2" ··· 1233 1210 dependencies = [ 1234 1211 "proc-macro2", 1235 1212 "quote", 1236 - "syn 2.0.111", 1213 + "syn 2.0.112", 1237 1214 ] 1238 1215 1239 1216 [[package]] ··· 1268 1245 1269 1246 [[package]] 1270 1247 name = "generator" 1271 - version = "0.8.7" 1248 + version = "0.8.8" 1272 1249 source = "registry+https://github.com/rust-lang/crates.io-index" 1273 - checksum = "605183a538e3e2a9c1038635cc5c2d194e2ee8fd0d1b66b8349fad7dbacce5a2" 1250 + checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9" 1274 1251 dependencies = [ 1275 1252 "cc", 1276 1253 "cfg-if", 1277 1254 "libc", 1278 1255 "log", 1279 1256 "rustversion", 1280 - "windows", 1257 + "windows-link", 1258 + "windows-result", 1281 1259 ] 1282 1260 1283 1261 [[package]] ··· 1319 1297 ] 1320 1298 1321 1299 [[package]] 1322 - name = "glob" 1323 - version = "0.3.3" 1324 - source = "registry+https://github.com/rust-lang/crates.io-index" 1325 - checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" 1326 - 1327 - [[package]] 1328 1300 name = "gloo-storage" 1329 1301 version = "0.3.0" 1330 1302 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1403 1375 ] 1404 1376 1405 1377 [[package]] 1378 + name = "hash32" 1379 + version = "0.2.1" 1380 + source = "registry+https://github.com/rust-lang/crates.io-index" 1381 + checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" 1382 + dependencies = [ 1383 + "byteorder", 1384 + ] 1385 + 1386 + [[package]] 1406 1387 name = "hashbrown" 1407 1388 version = "0.12.3" 1408 1389 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1441 1422 ] 1442 1423 1443 1424 [[package]] 1425 + name = "heapless" 1426 + version = "0.7.17" 1427 + source = "registry+https://github.com/rust-lang/crates.io-index" 1428 + checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f" 1429 + dependencies = [ 1430 + "atomic-polyfill", 1431 + "hash32", 1432 + "rustc_version", 1433 + "serde", 1434 + "spin 0.9.8", 1435 + "stable_deref_trait", 1436 + ] 1437 + 1438 + [[package]] 1444 1439 name = "heck" 1445 1440 version = "0.4.1" 1446 1441 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1553 1548 "markup5ever", 1554 1549 "proc-macro2", 1555 1550 "quote", 1556 - "syn 2.0.111", 1551 + "syn 2.0.112", 1557 1552 ] 1558 1553 1559 1554 [[package]] ··· 1738 1733 1739 1734 [[package]] 1740 1735 name = "icu_properties" 1741 - version = "2.1.1" 1736 + version = "2.1.2" 1742 1737 source = "registry+https://github.com/rust-lang/crates.io-index" 1743 - checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99" 1738 + checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" 1744 1739 dependencies = [ 1745 1740 "icu_collections", 1746 1741 "icu_locale_core", ··· 1752 1747 1753 1748 [[package]] 1754 1749 name = "icu_properties_data" 1755 - version = "2.1.1" 1750 + version = "2.1.2" 1756 1751 source = "registry+https://github.com/rust-lang/crates.io-index" 1757 - checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899" 1752 + checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" 1758 1753 1759 1754 [[package]] 1760 1755 name = "icu_provider" ··· 1804 1799 dependencies = [ 1805 1800 "base64 0.22.1", 1806 1801 "env_logger", 1802 + "futures-util", 1807 1803 "ipld-core", 1808 1804 "jacquard", 1809 1805 "jacquard-repo", ··· 1888 1884 1889 1885 [[package]] 1890 1886 name = "iri-string" 1891 - version = "0.7.9" 1887 + version = "0.7.10" 1892 1888 source = "registry+https://github.com/rust-lang/crates.io-index" 1893 - checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397" 1889 + checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" 1894 1890 dependencies = [ 1895 1891 "memchr", 1896 1892 "serde", ··· 1920 1916 1921 1917 [[package]] 1922 1918 name = "itoa" 1923 - version = "1.0.15" 1919 + version = "1.0.17" 1924 1920 source = "registry+https://github.com/rust-lang/crates.io-index" 1925 - checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 1921 + checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" 1926 1922 1927 1923 [[package]] 1928 1924 name = "jacquard" 1929 - version = "0.9.3" 1925 + version = "0.9.5" 1930 1926 source = "registry+https://github.com/rust-lang/crates.io-index" 1931 - checksum = "c19864761c8d69d23201fd19dd021cddf1fb7acbebb6e6b50e2b1776ec982768" 1927 + checksum = "f7c1fdbcf1153e6e6b87fde20036c1ffe7473c4852f1c6369bc4ef1fe47ccb9f" 1932 1928 dependencies = [ 1933 1929 "bytes", 1934 1930 "getrandom 0.2.16", ··· 1941 1937 "jacquard-oauth", 1942 1938 "jose-jwk", 1943 1939 "miette", 1940 + "n0-future", 1944 1941 "regex", 1945 1942 "regex-lite", 1946 1943 "reqwest", ··· 1957 1954 1958 1955 [[package]] 1959 1956 name = "jacquard-api" 1960 - version = "0.9.2" 1957 + version = "0.9.5" 1961 1958 source = "registry+https://github.com/rust-lang/crates.io-index" 1962 - checksum = "bbbfd6e2b10fa1731f4d4e40c8f791956b0d4f804fb3efef891afec903f20597" 1959 + checksum = "4979fb1848c1dd7ac8fd12745bc71f56f6da61374407d5f9b06005467a954e5a" 1963 1960 dependencies = [ 1964 1961 "bon", 1965 1962 "bytes", ··· 1969 1966 "miette", 1970 1967 "rustversion", 1971 1968 "serde", 1969 + "serde_bytes", 1972 1970 "serde_ipld_dagcbor", 1973 1971 "thiserror 2.0.17", 1974 1972 "unicode-segmentation", ··· 1976 1974 1977 1975 [[package]] 1978 1976 name = "jacquard-common" 1979 - version = "0.9.2" 1977 + version = "0.9.5" 1980 1978 source = "registry+https://github.com/rust-lang/crates.io-index" 1981 - checksum = "df86cb117d9f1c2b0251ba67c3f0e3f963fd22abc6cf8de0e02a7fc846c288ca" 1979 + checksum = "1751921e0bdae5e0077afade6161545e9ef7698306c868f800916e99ecbcaae9" 1982 1980 dependencies = [ 1983 1981 "base64 0.22.1", 1984 1982 "bon", 1985 1983 "bytes", 1986 1984 "chrono", 1985 + "ciborium", 1987 1986 "cid", 1988 1987 "ed25519-dalek", 1988 + "futures", 1989 1989 "getrandom 0.2.16", 1990 1990 "getrandom 0.3.4", 1991 1991 "http", ··· 1995 1995 "miette", 1996 1996 "multibase", 1997 1997 "multihash", 1998 + "n0-future", 1998 1999 "ouroboros", 1999 2000 "p256", 2001 + "postcard", 2000 2002 "rand 0.9.2", 2001 2003 "regex", 2002 2004 "regex-lite", 2003 2005 "reqwest", 2004 2006 "serde", 2007 + "serde_bytes", 2005 2008 "serde_html_form", 2006 2009 "serde_ipld_dagcbor", 2007 2010 "serde_json", ··· 2009 2012 "smol_str", 2010 2013 "thiserror 2.0.17", 2011 2014 "tokio", 2015 + "tokio-tungstenite-wasm", 2012 2016 "tokio-util", 2013 2017 "trait-variant", 2014 2018 "url", ··· 2016 2020 2017 2021 [[package]] 2018 2022 name = "jacquard-derive" 2019 - version = "0.9.2" 2023 + version = "0.9.5" 2020 2024 source = "registry+https://github.com/rust-lang/crates.io-index" 2021 - checksum = "42ca61a69dc7aa8fb2d7163416514ff7df5d79f2e8b22e269f4610afa85572fe" 2025 + checksum = "9c8d73dfee07943fdab93569ed1c28b06c6921ed891c08b415c4a323ff67e593" 2022 2026 dependencies = [ 2023 2027 "heck 0.5.0", 2024 2028 "jacquard-lexicon", 2025 2029 "proc-macro2", 2026 2030 "quote", 2027 - "syn 2.0.111", 2031 + "syn 2.0.112", 2028 2032 ] 2029 2033 2030 2034 [[package]] 2031 2035 name = "jacquard-identity" 2032 - version = "0.9.2" 2036 + version = "0.9.5" 2033 2037 source = "registry+https://github.com/rust-lang/crates.io-index" 2034 - checksum = "1ef714cacebfca486558a9f8e205daf466bfba0466c4d0c450fd6d0252400a53" 2038 + checksum = "e7aaefa819fa4213cf59f180dba932f018a7cd0599582fd38474ee2a38c16cf2" 2035 2039 dependencies = [ 2036 2040 "bon", 2037 2041 "bytes", ··· 2041 2045 "jacquard-common", 2042 2046 "jacquard-lexicon", 2043 2047 "miette", 2044 - "mini-moka", 2048 + "mini-moka-wasm", 2049 + "n0-future", 2045 2050 "percent-encoding", 2046 2051 "reqwest", 2047 2052 "serde", ··· 2056 2061 2057 2062 [[package]] 2058 2063 name = "jacquard-lexicon" 2059 - version = "0.9.2" 2064 + version = "0.9.5" 2060 2065 source = "registry+https://github.com/rust-lang/crates.io-index" 2061 - checksum = "de87f2c938faea1b1f1b32d5b9e0c870e7b5bb5efbf96e3692ae2d8f6b2beb7a" 2066 + checksum = "8411aff546569b0a1e0ef669bed2380cec1c00d48f02f3fcd57a71545321b3d8" 2062 2067 dependencies = [ 2063 2068 "cid", 2064 - "dashmap 6.1.0", 2069 + "dashmap", 2065 2070 "heck 0.5.0", 2066 2071 "inventory", 2067 2072 "jacquard-common", ··· 2076 2081 "serde_repr", 2077 2082 "serde_with", 2078 2083 "sha2", 2079 - "syn 2.0.111", 2084 + "syn 2.0.112", 2080 2085 "thiserror 2.0.17", 2081 2086 "unicode-segmentation", 2082 2087 ] 2083 2088 2084 2089 [[package]] 2085 2090 name = "jacquard-oauth" 2086 - version = "0.9.2" 2091 + version = "0.9.6" 2087 2092 source = "registry+https://github.com/rust-lang/crates.io-index" 2088 - checksum = "aafe9b4b2160cb57cd48d02d84d2c09706853d098e053baacb06a59fcd59a898" 2093 + checksum = "68bf0b0e061d85b09cfa78588dc098918d5b62f539a719165c6a806a1d2c0ef2" 2089 2094 dependencies = [ 2090 2095 "base64 0.22.1", 2091 2096 "bytes", 2092 2097 "chrono", 2093 - "dashmap 6.1.0", 2098 + "dashmap", 2094 2099 "elliptic-curve", 2095 2100 "http", 2096 2101 "jacquard-common", ··· 2098 2103 "jose-jwa", 2099 2104 "jose-jwk", 2100 2105 "miette", 2106 + "n0-future", 2101 2107 "p256", 2102 2108 "rand 0.8.5", 2103 2109 "rouille", ··· 2115 2121 2116 2122 [[package]] 2117 2123 name = "jacquard-repo" 2118 - version = "0.9.2" 2124 + version = "0.9.6" 2119 2125 source = "registry+https://github.com/rust-lang/crates.io-index" 2120 - checksum = "2ccdadfea11df142fbfb11cf7e5c1f7b8c0548758dedb0ce0eac182777f91f18" 2126 + checksum = "c59705c56678f4d57229ab7790313b9f7d8f244a658d01ad1f4344e7d2efe2a3" 2121 2127 dependencies = [ 2122 2128 "bytes", 2123 2129 "cid", ··· 2142 2148 2143 2149 [[package]] 2144 2150 name = "jiff" 2145 - version = "0.2.16" 2151 + version = "0.2.17" 2146 2152 source = "registry+https://github.com/rust-lang/crates.io-index" 2147 - checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35" 2153 + checksum = "a87d9b8105c23642f50cbbae03d1f75d8422c5cb98ce7ee9271f7ff7505be6b8" 2148 2154 dependencies = [ 2149 2155 "jiff-static", 2150 2156 "log", ··· 2155 2161 2156 2162 [[package]] 2157 2163 name = "jiff-static" 2158 - version = "0.2.16" 2164 + version = "0.2.17" 2159 2165 source = "registry+https://github.com/rust-lang/crates.io-index" 2160 - checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69" 2166 + checksum = "b787bebb543f8969132630c51fd0afab173a86c6abae56ff3b9e5e3e3f9f6e58" 2161 2167 dependencies = [ 2162 2168 "proc-macro2", 2163 2169 "quote", 2164 - "syn 2.0.111", 2170 + "syn 2.0.112", 2165 2171 ] 2166 2172 2167 2173 [[package]] ··· 2268 2274 2269 2275 [[package]] 2270 2276 name = "libc" 2271 - version = "0.2.178" 2277 + version = "0.2.179" 2272 2278 source = "registry+https://github.com/rust-lang/crates.io-index" 2273 - checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" 2279 + checksum = "c5a2d376baa530d1238d133232d15e239abad80d05838b4b59354e5268af431f" 2274 2280 2275 2281 [[package]] 2276 2282 name = "libm" ··· 2280 2286 2281 2287 [[package]] 2282 2288 name = "libredox" 2283 - version = "0.1.10" 2289 + version = "0.1.12" 2284 2290 source = "registry+https://github.com/rust-lang/crates.io-index" 2285 - checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" 2291 + checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" 2286 2292 dependencies = [ 2287 2293 "bitflags", 2288 2294 "libc", 2289 - "redox_syscall", 2295 + "redox_syscall 0.7.0", 2290 2296 ] 2291 2297 2292 2298 [[package]] ··· 2447 2453 dependencies = [ 2448 2454 "proc-macro2", 2449 2455 "quote", 2450 - "syn 2.0.111", 2456 + "syn 2.0.112", 2451 2457 ] 2452 2458 2453 2459 [[package]] ··· 2467 2473 ] 2468 2474 2469 2475 [[package]] 2470 - name = "mini-moka" 2471 - version = "0.10.3" 2476 + name = "mini-moka-wasm" 2477 + version = "0.10.99" 2472 2478 source = "registry+https://github.com/rust-lang/crates.io-index" 2473 - checksum = "c325dfab65f261f386debee8b0969da215b3fa0037e74c8a1234db7ba986d803" 2479 + checksum = "0102b9a2ad50fa47ca89eead2316c8222285ecfbd3f69ce99564fbe4253866e8" 2474 2480 dependencies = [ 2475 2481 "crossbeam-channel", 2476 2482 "crossbeam-utils", 2477 - "dashmap 5.5.3", 2478 - "skeptic", 2483 + "dashmap", 2479 2484 "smallvec", 2480 2485 "tagptr", 2481 2486 "triomphe", 2487 + "web-time", 2482 2488 ] 2483 2489 2484 2490 [[package]] ··· 2710 2716 checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 2711 2717 2712 2718 [[package]] 2719 + name = "openssl-probe" 2720 + version = "0.2.0" 2721 + source = "registry+https://github.com/rust-lang/crates.io-index" 2722 + checksum = "9f50d9b3dabb09ecd771ad0aa242ca6894994c130308ca3d7684634df8037391" 2723 + 2724 + [[package]] 2713 2725 name = "ouroboros" 2714 2726 version = "0.18.5" 2715 2727 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2730 2742 "proc-macro2", 2731 2743 "proc-macro2-diagnostics", 2732 2744 "quote", 2733 - "syn 2.0.111", 2745 + "syn 2.0.112", 2734 2746 ] 2735 2747 2736 2748 [[package]] ··· 2779 2791 dependencies = [ 2780 2792 "cfg-if", 2781 2793 "libc", 2782 - "redox_syscall", 2794 + "redox_syscall 0.5.18", 2783 2795 "smallvec", 2784 - "windows-link 0.2.1", 2796 + "windows-link", 2785 2797 ] 2786 2798 2787 2799 [[package]] ··· 2854 2866 dependencies = [ 2855 2867 "proc-macro2", 2856 2868 "quote", 2857 - "syn 2.0.111", 2869 + "syn 2.0.112", 2858 2870 ] 2859 2871 2860 2872 [[package]] ··· 2898 2910 2899 2911 [[package]] 2900 2912 name = "portable-atomic" 2901 - version = "1.11.1" 2913 + version = "1.13.0" 2902 2914 source = "registry+https://github.com/rust-lang/crates.io-index" 2903 - checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" 2915 + checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950" 2904 2916 2905 2917 [[package]] 2906 2918 name = "portable-atomic-util" ··· 2912 2924 ] 2913 2925 2914 2926 [[package]] 2927 + name = "postcard" 2928 + version = "1.1.3" 2929 + source = "registry+https://github.com/rust-lang/crates.io-index" 2930 + checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" 2931 + dependencies = [ 2932 + "cobs", 2933 + "embedded-io 0.4.0", 2934 + "embedded-io 0.6.1", 2935 + "heapless", 2936 + "serde", 2937 + ] 2938 + 2939 + [[package]] 2915 2940 name = "potential_utf" 2916 2941 version = "0.1.4" 2917 2942 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2948 2973 checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 2949 2974 dependencies = [ 2950 2975 "proc-macro2", 2951 - "syn 2.0.111", 2976 + "syn 2.0.112", 2952 2977 ] 2953 2978 2954 2979 [[package]] ··· 2986 3011 2987 3012 [[package]] 2988 3013 name = "proc-macro2" 2989 - version = "1.0.103" 3014 + version = "1.0.104" 2990 3015 source = "registry+https://github.com/rust-lang/crates.io-index" 2991 - checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" 3016 + checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0" 2992 3017 dependencies = [ 2993 3018 "unicode-ident", 2994 3019 ] ··· 3001 3026 dependencies = [ 3002 3027 "proc-macro2", 3003 3028 "quote", 3004 - "syn 2.0.111", 3029 + "syn 2.0.112", 3005 3030 "version_check", 3006 3031 "yansi", 3007 - ] 3008 - 3009 - [[package]] 3010 - name = "pulldown-cmark" 3011 - version = "0.9.6" 3012 - source = "registry+https://github.com/rust-lang/crates.io-index" 3013 - checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b" 3014 - dependencies = [ 3015 - "bitflags", 3016 - "memchr", 3017 - "unicase", 3018 3032 ] 3019 3033 3020 3034 [[package]] ··· 3168 3182 ] 3169 3183 3170 3184 [[package]] 3185 + name = "redox_syscall" 3186 + version = "0.7.0" 3187 + source = "registry+https://github.com/rust-lang/crates.io-index" 3188 + checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27" 3189 + dependencies = [ 3190 + "bitflags", 3191 + ] 3192 + 3193 + [[package]] 3171 3194 name = "ref-cast" 3172 3195 version = "1.0.25" 3173 3196 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3184 3207 dependencies = [ 3185 3208 "proc-macro2", 3186 3209 "quote", 3187 - "syn 2.0.111", 3210 + "syn 2.0.112", 3188 3211 ] 3189 3212 3190 3213 [[package]] ··· 3224 3247 3225 3248 [[package]] 3226 3249 name = "reqwest" 3227 - version = "0.12.24" 3250 + version = "0.12.28" 3228 3251 source = "registry+https://github.com/rust-lang/crates.io-index" 3229 - checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" 3252 + checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 3230 3253 dependencies = [ 3231 - "async-compression", 3232 3254 "base64 0.22.1", 3233 3255 "bytes", 3234 3256 "encoding_rs", ··· 3358 3380 3359 3381 [[package]] 3360 3382 name = "rustix" 3361 - version = "1.1.2" 3383 + version = "1.1.3" 3362 3384 source = "registry+https://github.com/rust-lang/crates.io-index" 3363 - checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" 3385 + checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" 3364 3386 dependencies = [ 3365 3387 "bitflags", 3366 3388 "errno", ··· 3381 3403 "rustls-webpki", 3382 3404 "subtle", 3383 3405 "zeroize", 3406 + ] 3407 + 3408 + [[package]] 3409 + name = "rustls-native-certs" 3410 + version = "0.8.3" 3411 + source = "registry+https://github.com/rust-lang/crates.io-index" 3412 + checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" 3413 + dependencies = [ 3414 + "openssl-probe", 3415 + "rustls-pki-types", 3416 + "schannel", 3417 + "security-framework", 3384 3418 ] 3385 3419 3386 3420 [[package]] 3387 3421 name = "rustls-pki-types" 3388 - version = "1.13.1" 3422 + version = "1.13.2" 3389 3423 source = "registry+https://github.com/rust-lang/crates.io-index" 3390 - checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c" 3424 + checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282" 3391 3425 dependencies = [ 3392 3426 "web-time", 3393 3427 "zeroize", ··· 3412 3446 3413 3447 [[package]] 3414 3448 name = "ryu" 3415 - version = "1.0.20" 3449 + version = "1.0.22" 3416 3450 source = "registry+https://github.com/rust-lang/crates.io-index" 3417 - checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 3451 + checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984" 3418 3452 3419 3453 [[package]] 3420 3454 name = "safemem" ··· 3432 3466 ] 3433 3467 3434 3468 [[package]] 3469 + name = "schannel" 3470 + version = "0.1.28" 3471 + source = "registry+https://github.com/rust-lang/crates.io-index" 3472 + checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" 3473 + dependencies = [ 3474 + "windows-sys 0.61.2", 3475 + ] 3476 + 3477 + [[package]] 3435 3478 name = "schemars" 3436 3479 version = "0.9.0" 3437 3480 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3445 3488 3446 3489 [[package]] 3447 3490 name = "schemars" 3448 - version = "1.1.0" 3491 + version = "1.2.0" 3449 3492 source = "registry+https://github.com/rust-lang/crates.io-index" 3450 - checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289" 3493 + checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2" 3451 3494 dependencies = [ 3452 3495 "dyn-clone", 3453 3496 "ref-cast", ··· 3482 3525 ] 3483 3526 3484 3527 [[package]] 3528 + name = "security-framework" 3529 + version = "3.5.1" 3530 + source = "registry+https://github.com/rust-lang/crates.io-index" 3531 + checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef" 3532 + dependencies = [ 3533 + "bitflags", 3534 + "core-foundation 0.10.1", 3535 + "core-foundation-sys", 3536 + "libc", 3537 + "security-framework-sys", 3538 + ] 3539 + 3540 + [[package]] 3541 + name = "security-framework-sys" 3542 + version = "2.15.0" 3543 + source = "registry+https://github.com/rust-lang/crates.io-index" 3544 + checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" 3545 + dependencies = [ 3546 + "core-foundation-sys", 3547 + "libc", 3548 + ] 3549 + 3550 + [[package]] 3485 3551 name = "semver" 3486 3552 version = "1.0.27" 3487 3553 source = "registry+https://github.com/rust-lang/crates.io-index" 3488 3554 checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 3489 - dependencies = [ 3490 - "serde", 3491 - "serde_core", 3492 - ] 3493 3555 3494 3556 [[package]] 3495 3557 name = "send_wrapper" ··· 3534 3596 dependencies = [ 3535 3597 "proc-macro2", 3536 3598 "quote", 3537 - "syn 2.0.111", 3599 + "syn 2.0.112", 3538 3600 ] 3539 3601 3540 3602 [[package]] ··· 3564 3626 3565 3627 [[package]] 3566 3628 name = "serde_json" 3567 - version = "1.0.145" 3629 + version = "1.0.148" 3568 3630 source = "registry+https://github.com/rust-lang/crates.io-index" 3569 - checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 3631 + checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da" 3570 3632 dependencies = [ 3571 3633 "itoa", 3572 3634 "memchr", 3573 - "ryu", 3574 3635 "serde", 3575 3636 "serde_core", 3637 + "zmij", 3576 3638 ] 3577 3639 3578 3640 [[package]] ··· 3583 3645 dependencies = [ 3584 3646 "proc-macro2", 3585 3647 "quote", 3586 - "syn 2.0.111", 3648 + "syn 2.0.112", 3587 3649 ] 3588 3650 3589 3651 [[package]] ··· 3610 3672 "indexmap 1.9.3", 3611 3673 "indexmap 2.12.1", 3612 3674 "schemars 0.9.0", 3613 - "schemars 1.1.0", 3675 + "schemars 1.2.0", 3614 3676 "serde_core", 3615 3677 "serde_json", 3616 3678 "serde_with_macros", ··· 3626 3688 "darling", 3627 3689 "proc-macro2", 3628 3690 "quote", 3629 - "syn 2.0.111", 3691 + "syn 2.0.112", 3630 3692 ] 3631 3693 3632 3694 [[package]] ··· 3673 3735 checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3674 3736 3675 3737 [[package]] 3738 + name = "signal-hook-registry" 3739 + version = "1.4.8" 3740 + source = "registry+https://github.com/rust-lang/crates.io-index" 3741 + checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 3742 + dependencies = [ 3743 + "errno", 3744 + "libc", 3745 + ] 3746 + 3747 + [[package]] 3676 3748 name = "signature" 3677 3749 version = "2.2.0" 3678 3750 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3684 3756 3685 3757 [[package]] 3686 3758 name = "simd-adler32" 3687 - version = "0.3.7" 3759 + version = "0.3.8" 3688 3760 source = "registry+https://github.com/rust-lang/crates.io-index" 3689 - checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" 3761 + checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" 3690 3762 3691 3763 [[package]] 3692 3764 name = "siphasher" ··· 3695 3767 checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 3696 3768 3697 3769 [[package]] 3698 - name = "skeptic" 3699 - version = "0.13.7" 3700 - source = "registry+https://github.com/rust-lang/crates.io-index" 3701 - checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8" 3702 - dependencies = [ 3703 - "bytecount", 3704 - "cargo_metadata", 3705 - "error-chain", 3706 - "glob", 3707 - "pulldown-cmark", 3708 - "tempfile", 3709 - "walkdir", 3710 - ] 3711 - 3712 - [[package]] 3713 3770 name = "slab" 3714 3771 version = "0.4.11" 3715 3772 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3836 3893 "quote", 3837 3894 "sqlx-core", 3838 3895 "sqlx-macros-core", 3839 - "syn 2.0.111", 3896 + "syn 2.0.112", 3840 3897 ] 3841 3898 3842 3899 [[package]] ··· 3859 3916 "sqlx-mysql", 3860 3917 "sqlx-postgres", 3861 3918 "sqlx-sqlite", 3862 - "syn 2.0.111", 3919 + "syn 2.0.112", 3863 3920 "tokio", 3864 3921 "url", 3865 3922 ] ··· 3989 4046 "quote", 3990 4047 "serde", 3991 4048 "sha2", 3992 - "syn 2.0.111", 4049 + "syn 2.0.112", 3993 4050 "thiserror 1.0.69", 3994 4051 ] 3995 4052 ··· 4060 4117 4061 4118 [[package]] 4062 4119 name = "syn" 4063 - version = "2.0.111" 4120 + version = "2.0.112" 4064 4121 source = "registry+https://github.com/rust-lang/crates.io-index" 4065 - checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" 4122 + checksum = "21f182278bf2d2bcb3c88b1b08a37df029d71ce3d3ae26168e3c653b213b99d4" 4066 4123 dependencies = [ 4067 4124 "proc-macro2", 4068 4125 "quote", ··· 4086 4143 dependencies = [ 4087 4144 "proc-macro2", 4088 4145 "quote", 4089 - "syn 2.0.111", 4146 + "syn 2.0.112", 4090 4147 ] 4091 4148 4092 4149 [[package]] ··· 4118 4175 4119 4176 [[package]] 4120 4177 name = "tempfile" 4121 - version = "3.23.0" 4178 + version = "3.24.0" 4122 4179 source = "registry+https://github.com/rust-lang/crates.io-index" 4123 - checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" 4180 + checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" 4124 4181 dependencies = [ 4125 4182 "fastrand", 4126 4183 "getrandom 0.3.4", ··· 4166 4223 dependencies = [ 4167 4224 "proc-macro2", 4168 4225 "quote", 4169 - "syn 2.0.111", 4226 + "syn 2.0.112", 4170 4227 ] 4171 4228 4172 4229 [[package]] ··· 4177 4234 dependencies = [ 4178 4235 "proc-macro2", 4179 4236 "quote", 4180 - "syn 2.0.111", 4237 + "syn 2.0.112", 4181 4238 ] 4182 4239 4183 4240 [[package]] ··· 4270 4327 4271 4328 [[package]] 4272 4329 name = "tokio" 4273 - version = "1.48.0" 4330 + version = "1.49.0" 4274 4331 source = "registry+https://github.com/rust-lang/crates.io-index" 4275 - checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 4332 + checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" 4276 4333 dependencies = [ 4277 4334 "bytes", 4278 4335 "libc", 4279 4336 "mio", 4280 4337 "pin-project-lite", 4338 + "signal-hook-registry", 4281 4339 "socket2 0.6.1", 4282 4340 "tokio-macros", 4283 4341 "windows-sys 0.61.2", ··· 4291 4349 dependencies = [ 4292 4350 "proc-macro2", 4293 4351 "quote", 4294 - "syn 2.0.111", 4352 + "syn 2.0.112", 4295 4353 ] 4296 4354 4297 4355 [[package]] ··· 4316 4374 ] 4317 4375 4318 4376 [[package]] 4377 + name = "tokio-tungstenite" 4378 + version = "0.24.0" 4379 + source = "registry+https://github.com/rust-lang/crates.io-index" 4380 + checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" 4381 + dependencies = [ 4382 + "futures-util", 4383 + "log", 4384 + "rustls", 4385 + "rustls-native-certs", 4386 + "rustls-pki-types", 4387 + "tokio", 4388 + "tokio-rustls", 4389 + "tungstenite", 4390 + ] 4391 + 4392 + [[package]] 4393 + name = "tokio-tungstenite-wasm" 4394 + version = "0.4.0" 4395 + source = "registry+https://github.com/rust-lang/crates.io-index" 4396 + checksum = "e21a5c399399c3db9f08d8297ac12b500e86bca82e930253fdc62eaf9c0de6ae" 4397 + dependencies = [ 4398 + "futures-channel", 4399 + "futures-util", 4400 + "http", 4401 + "httparse", 4402 + "js-sys", 4403 + "rustls", 4404 + "thiserror 1.0.69", 4405 + "tokio", 4406 + "tokio-tungstenite", 4407 + "wasm-bindgen", 4408 + "web-sys", 4409 + ] 4410 + 4411 + [[package]] 4319 4412 name = "tokio-util" 4320 4413 version = "0.7.17" 4321 4414 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4346 4439 4347 4440 [[package]] 4348 4441 name = "tower-http" 4349 - version = "0.6.7" 4442 + version = "0.6.8" 4350 4443 source = "registry+https://github.com/rust-lang/crates.io-index" 4351 - checksum = "9cf146f99d442e8e68e585f5d798ccd3cad9a7835b917e09728880a862706456" 4444 + checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 4352 4445 dependencies = [ 4446 + "async-compression", 4353 4447 "bitflags", 4354 4448 "bytes", 4449 + "futures-core", 4355 4450 "futures-util", 4356 4451 "http", 4357 4452 "http-body", 4453 + "http-body-util", 4358 4454 "iri-string", 4359 4455 "pin-project-lite", 4456 + "tokio", 4457 + "tokio-util", 4360 4458 "tower", 4361 4459 "tower-layer", 4362 4460 "tower-service", ··· 4376 4474 4377 4475 [[package]] 4378 4476 name = "tracing" 4379 - version = "0.1.43" 4477 + version = "0.1.44" 4380 4478 source = "registry+https://github.com/rust-lang/crates.io-index" 4381 - checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647" 4479 + checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 4382 4480 dependencies = [ 4383 4481 "log", 4384 4482 "pin-project-lite", ··· 4394 4492 dependencies = [ 4395 4493 "proc-macro2", 4396 4494 "quote", 4397 - "syn 2.0.111", 4495 + "syn 2.0.112", 4398 4496 ] 4399 4497 4400 4498 [[package]] 4401 4499 name = "tracing-core" 4402 - version = "0.1.35" 4500 + version = "0.1.36" 4403 4501 source = "registry+https://github.com/rust-lang/crates.io-index" 4404 - checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c" 4502 + checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 4405 4503 dependencies = [ 4406 4504 "once_cell", 4407 4505 "valuable", ··· 4444 4542 dependencies = [ 4445 4543 "proc-macro2", 4446 4544 "quote", 4447 - "syn 2.0.111", 4545 + "syn 2.0.112", 4448 4546 ] 4449 4547 4450 4548 [[package]] ··· 4460 4558 checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 4461 4559 4462 4560 [[package]] 4561 + name = "tungstenite" 4562 + version = "0.24.0" 4563 + source = "registry+https://github.com/rust-lang/crates.io-index" 4564 + checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" 4565 + dependencies = [ 4566 + "byteorder", 4567 + "bytes", 4568 + "data-encoding", 4569 + "http", 4570 + "httparse", 4571 + "log", 4572 + "rand 0.8.5", 4573 + "rustls", 4574 + "rustls-pki-types", 4575 + "sha1", 4576 + "thiserror 1.0.69", 4577 + "utf-8", 4578 + ] 4579 + 4580 + [[package]] 4463 4581 name = "twoway" 4464 4582 version = "0.1.8" 4465 4583 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4682 4800 "bumpalo", 4683 4801 "proc-macro2", 4684 4802 "quote", 4685 - "syn 2.0.111", 4803 + "syn 2.0.112", 4686 4804 "wasm-bindgen-shared", 4687 4805 ] 4688 4806 ··· 4758 4876 4759 4877 [[package]] 4760 4878 name = "webpki-roots" 4761 - version = "1.0.4" 4879 + version = "1.0.5" 4762 4880 source = "registry+https://github.com/rust-lang/crates.io-index" 4763 - checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e" 4881 + checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c" 4764 4882 dependencies = [ 4765 4883 "rustls-pki-types", 4766 4884 ] ··· 4791 4909 ] 4792 4910 4793 4911 [[package]] 4794 - name = "windows" 4795 - version = "0.61.3" 4796 - source = "registry+https://github.com/rust-lang/crates.io-index" 4797 - checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" 4798 - dependencies = [ 4799 - "windows-collections", 4800 - "windows-core", 4801 - "windows-future", 4802 - "windows-link 0.1.3", 4803 - "windows-numerics", 4804 - ] 4805 - 4806 - [[package]] 4807 - name = "windows-collections" 4808 - version = "0.2.0" 4809 - source = "registry+https://github.com/rust-lang/crates.io-index" 4810 - checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" 4811 - dependencies = [ 4812 - "windows-core", 4813 - ] 4814 - 4815 - [[package]] 4816 4912 name = "windows-core" 4817 - version = "0.61.2" 4913 + version = "0.62.2" 4818 4914 source = "registry+https://github.com/rust-lang/crates.io-index" 4819 - checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 4915 + checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 4820 4916 dependencies = [ 4821 4917 "windows-implement", 4822 4918 "windows-interface", 4823 - "windows-link 0.1.3", 4824 - "windows-result 0.3.4", 4825 - "windows-strings 0.4.2", 4826 - ] 4827 - 4828 - [[package]] 4829 - name = "windows-future" 4830 - version = "0.2.1" 4831 - source = "registry+https://github.com/rust-lang/crates.io-index" 4832 - checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" 4833 - dependencies = [ 4834 - "windows-core", 4835 - "windows-link 0.1.3", 4836 - "windows-threading", 4919 + "windows-link", 4920 + "windows-result", 4921 + "windows-strings", 4837 4922 ] 4838 4923 4839 4924 [[package]] ··· 4844 4929 dependencies = [ 4845 4930 "proc-macro2", 4846 4931 "quote", 4847 - "syn 2.0.111", 4932 + "syn 2.0.112", 4848 4933 ] 4849 4934 4850 4935 [[package]] ··· 4855 4940 dependencies = [ 4856 4941 "proc-macro2", 4857 4942 "quote", 4858 - "syn 2.0.111", 4943 + "syn 2.0.112", 4859 4944 ] 4860 4945 4861 4946 [[package]] 4862 4947 name = "windows-link" 4863 - version = "0.1.3" 4864 - source = "registry+https://github.com/rust-lang/crates.io-index" 4865 - checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 4866 - 4867 - [[package]] 4868 - name = "windows-link" 4869 4948 version = "0.2.1" 4870 4949 source = "registry+https://github.com/rust-lang/crates.io-index" 4871 4950 checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 4872 4951 4873 4952 [[package]] 4874 - name = "windows-numerics" 4875 - version = "0.2.0" 4876 - source = "registry+https://github.com/rust-lang/crates.io-index" 4877 - checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" 4878 - dependencies = [ 4879 - "windows-core", 4880 - "windows-link 0.1.3", 4881 - ] 4882 - 4883 - [[package]] 4884 4953 name = "windows-registry" 4885 4954 version = "0.6.1" 4886 4955 source = "registry+https://github.com/rust-lang/crates.io-index" 4887 4956 checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" 4888 4957 dependencies = [ 4889 - "windows-link 0.2.1", 4890 - "windows-result 0.4.1", 4891 - "windows-strings 0.5.1", 4892 - ] 4893 - 4894 - [[package]] 4895 - name = "windows-result" 4896 - version = "0.3.4" 4897 - source = "registry+https://github.com/rust-lang/crates.io-index" 4898 - checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 4899 - dependencies = [ 4900 - "windows-link 0.1.3", 4958 + "windows-link", 4959 + "windows-result", 4960 + "windows-strings", 4901 4961 ] 4902 4962 4903 4963 [[package]] ··· 4906 4966 source = "registry+https://github.com/rust-lang/crates.io-index" 4907 4967 checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 4908 4968 dependencies = [ 4909 - "windows-link 0.2.1", 4910 - ] 4911 - 4912 - [[package]] 4913 - name = "windows-strings" 4914 - version = "0.4.2" 4915 - source = "registry+https://github.com/rust-lang/crates.io-index" 4916 - checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 4917 - dependencies = [ 4918 - "windows-link 0.1.3", 4969 + "windows-link", 4919 4970 ] 4920 4971 4921 4972 [[package]] ··· 4924 4975 source = "registry+https://github.com/rust-lang/crates.io-index" 4925 4976 checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 4926 4977 dependencies = [ 4927 - "windows-link 0.2.1", 4978 + "windows-link", 4928 4979 ] 4929 4980 4930 4981 [[package]] ··· 4969 5020 source = "registry+https://github.com/rust-lang/crates.io-index" 4970 5021 checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 4971 5022 dependencies = [ 4972 - "windows-link 0.2.1", 5023 + "windows-link", 4973 5024 ] 4974 5025 4975 5026 [[package]] ··· 5024 5075 source = "registry+https://github.com/rust-lang/crates.io-index" 5025 5076 checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 5026 5077 dependencies = [ 5027 - "windows-link 0.2.1", 5078 + "windows-link", 5028 5079 "windows_aarch64_gnullvm 0.53.1", 5029 5080 "windows_aarch64_msvc 0.53.1", 5030 5081 "windows_i686_gnu 0.53.1", ··· 5033 5084 "windows_x86_64_gnu 0.53.1", 5034 5085 "windows_x86_64_gnullvm 0.53.1", 5035 5086 "windows_x86_64_msvc 0.53.1", 5036 - ] 5037 - 5038 - [[package]] 5039 - name = "windows-threading" 5040 - version = "0.1.0" 5041 - source = "registry+https://github.com/rust-lang/crates.io-index" 5042 - checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" 5043 - dependencies = [ 5044 - "windows-link 0.1.3", 5045 5087 ] 5046 5088 5047 5089 [[package]] ··· 5282 5324 dependencies = [ 5283 5325 "proc-macro2", 5284 5326 "quote", 5285 - "syn 2.0.111", 5327 + "syn 2.0.112", 5286 5328 "synstructure", 5287 5329 ] 5288 5330 ··· 5303 5345 dependencies = [ 5304 5346 "proc-macro2", 5305 5347 "quote", 5306 - "syn 2.0.111", 5348 + "syn 2.0.112", 5307 5349 ] 5308 5350 5309 5351 [[package]] ··· 5323 5365 dependencies = [ 5324 5366 "proc-macro2", 5325 5367 "quote", 5326 - "syn 2.0.111", 5368 + "syn 2.0.112", 5327 5369 "synstructure", 5328 5370 ] 5329 5371 ··· 5366 5408 dependencies = [ 5367 5409 "proc-macro2", 5368 5410 "quote", 5369 - "syn 2.0.111", 5411 + "syn 2.0.112", 5370 5412 ] 5413 + 5414 + [[package]] 5415 + name = "zmij" 5416 + version = "1.0.8" 5417 + source = "registry+https://github.com/rust-lang/crates.io-index" 5418 + checksum = "317f17ff091ac4515f17cc7a190d2769a8c9a96d227de5d64b500b01cda8f2cd"
+4 -3
Cargo.toml
··· 6 6 [dependencies] 7 7 base64 = "0.22.1" 8 8 env_logger = "0.11.8" 9 + futures-util = "0.3.31" 9 10 ipld-core = "0.4.2" 10 - jacquard = "0.9.3" 11 - jacquard-repo = "0.9.2" 11 + jacquard = { version = "0.9.5", features = ["streaming"] } 12 + jacquard-repo = "0.9.5" 12 13 log = "0.4.29" 13 14 serde = "1.0.228" 14 15 serde_ipld_dagcbor = "0.6.4" 15 16 serde_json = { version = "1.0.145", features = ["raw_value"] } 16 17 sqlx = { version = "0.8.6", features = ["runtime-tokio", "postgres"] } 17 18 thiserror = "2.0.17" 18 - tokio = "1.48.0" 19 + tokio = { version = "1.48.0", features = ["signal"] }