Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
75
fork

Configure Feed

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

deps update

address https://github.com/at-ucosm/links/security/dependabot/1

phil 6cf7a78d 39ac82df

+78 -48
+78 -48
Cargo.lock
··· 169 169 170 170 [[package]] 171 171 name = "axum" 172 - version = "0.8.2" 172 + version = "0.8.1" 173 173 source = "registry+https://github.com/rust-lang/crates.io-index" 174 - checksum = "efea76243612a2436fb4074ba0cf3ba9ea29efdeb72645d8fc63f116462be1de" 174 + checksum = "6d6fd624c75e18b3b4c6b9caf42b1afe24437daaee904069137d8bab077be8b8" 175 175 dependencies = [ 176 176 "axum-core", 177 177 "bytes", ··· 203 203 204 204 [[package]] 205 205 name = "axum-core" 206 - version = "0.5.1" 206 + version = "0.5.0" 207 207 source = "registry+https://github.com/rust-lang/crates.io-index" 208 - checksum = "eab1b0df7cded837c40dacaa2e1c33aa17c84fc3356ae67b5645f1e83190753e" 208 + checksum = "df1362f362fd16024ae199c1970ce98f9661bf5ef94b9808fee734bc3698b733" 209 209 dependencies = [ 210 210 "bytes", 211 - "futures-core", 211 + "futures-util", 212 212 "http", 213 213 "http-body", 214 214 "http-body-util", ··· 364 364 365 365 [[package]] 366 366 name = "bumpalo" 367 - version = "3.16.0" 367 + version = "3.17.0" 368 368 source = "registry+https://github.com/rust-lang/crates.io-index" 369 - checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 369 + checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" 370 370 371 371 [[package]] 372 372 name = "byteorder" ··· 376 376 377 377 [[package]] 378 378 name = "bytes" 379 - version = "1.9.0" 379 + version = "1.10.0" 380 380 source = "registry+https://github.com/rust-lang/crates.io-index" 381 - checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b" 381 + checksum = "f61dac84819c6588b558454b194026eb1f09c293b9036ae9b159e74e73ab6cf9" 382 382 383 383 [[package]] 384 384 name = "bzip2-sys" ··· 393 393 394 394 [[package]] 395 395 name = "cc" 396 - version = "1.2.10" 396 + version = "1.2.12" 397 397 source = "registry+https://github.com/rust-lang/crates.io-index" 398 - checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229" 398 + checksum = "755717a7de9ec452bf7f3f1a3099085deabd7f2962b861dae91ecd7a365903d2" 399 399 dependencies = [ 400 400 "jobserver", 401 401 "libc", ··· 449 449 450 450 [[package]] 451 451 name = "clap" 452 - version = "4.5.27" 452 + version = "4.5.28" 453 453 source = "registry+https://github.com/rust-lang/crates.io-index" 454 - checksum = "769b0145982b4b48713e01ec42d61614425f27b7058bda7180a3a41f30104796" 454 + checksum = "3e77c3243bd94243c03672cb5154667347c457ca271254724f9f393aee1c05ff" 455 455 dependencies = [ 456 456 "clap_builder", 457 457 "clap_derive", ··· 471 471 472 472 [[package]] 473 473 name = "clap_derive" 474 - version = "4.5.24" 474 + version = "4.5.28" 475 475 source = "registry+https://github.com/rust-lang/crates.io-index" 476 - checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c" 476 + checksum = "bf4ced95c6f4a675af3da73304b9ac4ed991640c36374e4b46795c49e17cf1ed" 477 477 dependencies = [ 478 478 "heck", 479 479 "proc-macro2", ··· 543 543 544 544 [[package]] 545 545 name = "cpufeatures" 546 - version = "0.2.16" 546 + version = "0.2.17" 547 547 source = "registry+https://github.com/rust-lang/crates.io-index" 548 - checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3" 548 + checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 549 549 dependencies = [ 550 550 "libc", 551 551 ] ··· 796 796 dependencies = [ 797 797 "cfg-if", 798 798 "libc", 799 - "wasi", 799 + "wasi 0.11.0+wasi-snapshot-preview1", 800 + ] 801 + 802 + [[package]] 803 + name = "getrandom" 804 + version = "0.3.1" 805 + source = "registry+https://github.com/rust-lang/crates.io-index" 806 + checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8" 807 + dependencies = [ 808 + "cfg-if", 809 + "libc", 810 + "wasi 0.13.3+wasi-0.2.2", 811 + "windows-targets", 800 812 ] 801 813 802 814 [[package]] ··· 928 940 929 941 [[package]] 930 942 name = "httparse" 931 - version = "1.9.5" 943 + version = "1.10.0" 932 944 source = "registry+https://github.com/rust-lang/crates.io-index" 933 - checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946" 945 + checksum = "f2d708df4e7140240a16cd6ab0ab65c972d7433ab77819ea693fde9c43811e2a" 934 946 935 947 [[package]] 936 948 name = "httpdate" ··· 949 961 950 962 [[package]] 951 963 name = "hyper" 952 - version = "1.5.2" 964 + version = "1.6.0" 953 965 source = "registry+https://github.com/rust-lang/crates.io-index" 954 - checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" 966 + checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" 955 967 dependencies = [ 956 968 "bytes", 957 969 "futures-channel", ··· 1246 1258 1247 1259 [[package]] 1248 1260 name = "metrics-exporter-prometheus" 1249 - version = "0.16.1" 1261 + version = "0.16.2" 1250 1262 source = "registry+https://github.com/rust-lang/crates.io-index" 1251 - checksum = "12779523996a67c13c84906a876ac6fe4d07a6e1adb54978378e13f199251a62" 1263 + checksum = "dd7399781913e5393588a8d8c6a2867bf85fb38eaf2502fdce465aad2dc6f034" 1252 1264 dependencies = [ 1253 1265 "base64 0.22.1", 1254 1266 "http-body-util", ··· 1334 1346 checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" 1335 1347 dependencies = [ 1336 1348 "libc", 1337 - "wasi", 1349 + "wasi 0.11.0+wasi-snapshot-preview1", 1338 1350 "windows-sys 0.52.0", 1339 1351 ] 1340 1352 1341 1353 [[package]] 1342 1354 name = "native-tls" 1343 - version = "0.2.12" 1355 + version = "0.2.13" 1344 1356 source = "registry+https://github.com/rust-lang/crates.io-index" 1345 - checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" 1357 + checksum = "0dab59f8e050d5df8e4dd87d9206fb6f65a483e20ac9fda365ade4fab353196c" 1346 1358 dependencies = [ 1347 1359 "libc", 1348 1360 "log", ··· 1409 1421 1410 1422 [[package]] 1411 1423 name = "openssl" 1412 - version = "0.10.68" 1424 + version = "0.10.70" 1413 1425 source = "registry+https://github.com/rust-lang/crates.io-index" 1414 - checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5" 1426 + checksum = "61cfb4e166a8bb8c9b55c500bc2308550148ece889be90f609377e58140f42c6" 1415 1427 dependencies = [ 1416 1428 "bitflags", 1417 1429 "cfg-if", ··· 1435 1447 1436 1448 [[package]] 1437 1449 name = "openssl-probe" 1438 - version = "0.1.5" 1450 + version = "0.1.6" 1439 1451 source = "registry+https://github.com/rust-lang/crates.io-index" 1440 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1452 + checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 1441 1453 1442 1454 [[package]] 1443 1455 name = "openssl-sys" 1444 - version = "0.9.104" 1456 + version = "0.9.105" 1445 1457 source = "registry+https://github.com/rust-lang/crates.io-index" 1446 - checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741" 1458 + checksum = "8b22d5b84be05a8d6947c7cb71f7c849aa0f112acd4bf51c2a7c1c988ac0a9dc" 1447 1459 dependencies = [ 1448 1460 "cc", 1449 1461 "libc", ··· 1560 1572 "libc", 1561 1573 "once_cell", 1562 1574 "raw-cpuid", 1563 - "wasi", 1575 + "wasi 0.11.0+wasi-snapshot-preview1", 1564 1576 "web-sys", 1565 1577 "winapi", 1566 1578 ] ··· 1601 1613 source = "registry+https://github.com/rust-lang/crates.io-index" 1602 1614 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1603 1615 dependencies = [ 1604 - "getrandom", 1616 + "getrandom 0.2.15", 1605 1617 ] 1606 1618 1607 1619 [[package]] ··· 1713 1725 1714 1726 [[package]] 1715 1727 name = "rustix" 1716 - version = "0.38.43" 1728 + version = "0.38.44" 1717 1729 source = "registry+https://github.com/rust-lang/crates.io-index" 1718 - checksum = "a78891ee6bf2340288408954ac787aa063d8e8817e9f53abb37c695c6d834ef6" 1730 + checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 1719 1731 dependencies = [ 1720 1732 "bitflags", 1721 1733 "errno", ··· 1732 1744 1733 1745 [[package]] 1734 1746 name = "ryu" 1735 - version = "1.0.18" 1747 + version = "1.0.19" 1736 1748 source = "registry+https://github.com/rust-lang/crates.io-index" 1737 - checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1749 + checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd" 1738 1750 1739 1751 [[package]] 1740 1752 name = "schannel" ··· 1796 1808 1797 1809 [[package]] 1798 1810 name = "serde_json" 1799 - version = "1.0.137" 1811 + version = "1.0.138" 1800 1812 source = "registry+https://github.com/rust-lang/crates.io-index" 1801 - checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b" 1813 + checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949" 1802 1814 dependencies = [ 1803 1815 "itoa", 1804 1816 "memchr", ··· 1932 1944 1933 1945 [[package]] 1934 1946 name = "syn" 1935 - version = "2.0.96" 1947 + version = "2.0.98" 1936 1948 source = "registry+https://github.com/rust-lang/crates.io-index" 1937 - checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80" 1949 + checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1" 1938 1950 dependencies = [ 1939 1951 "proc-macro2", 1940 1952 "quote", ··· 1949 1961 1950 1962 [[package]] 1951 1963 name = "tempfile" 1952 - version = "3.15.0" 1964 + version = "3.16.0" 1953 1965 source = "registry+https://github.com/rust-lang/crates.io-index" 1954 - checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704" 1966 + checksum = "38c246215d7d24f48ae091a2902398798e05d978b24315d6efbc00ede9a8bb91" 1955 1967 dependencies = [ 1956 1968 "cfg-if", 1957 1969 "fastrand", 1958 - "getrandom", 1970 + "getrandom 0.3.1", 1959 1971 "once_cell", 1960 1972 "rustix", 1961 1973 "windows-sys 0.59.0", ··· 2181 2193 2182 2194 [[package]] 2183 2195 name = "unicode-ident" 2184 - version = "1.0.14" 2196 + version = "1.0.16" 2185 2197 source = "registry+https://github.com/rust-lang/crates.io-index" 2186 - checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83" 2198 + checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034" 2187 2199 2188 2200 [[package]] 2189 2201 name = "utf-8" ··· 2225 2237 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2226 2238 2227 2239 [[package]] 2240 + name = "wasi" 2241 + version = "0.13.3+wasi-0.2.2" 2242 + source = "registry+https://github.com/rust-lang/crates.io-index" 2243 + checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2" 2244 + dependencies = [ 2245 + "wit-bindgen-rt", 2246 + ] 2247 + 2248 + [[package]] 2228 2249 name = "wasm-bindgen" 2229 2250 version = "0.2.100" 2230 2251 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2468 2489 version = "0.52.6" 2469 2490 source = "registry+https://github.com/rust-lang/crates.io-index" 2470 2491 checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 2492 + 2493 + [[package]] 2494 + name = "wit-bindgen-rt" 2495 + version = "0.33.0" 2496 + source = "registry+https://github.com/rust-lang/crates.io-index" 2497 + checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c" 2498 + dependencies = [ 2499 + "bitflags", 2500 + ] 2471 2501 2472 2502 [[package]] 2473 2503 name = "zerocopy"