atproto repo as vfs

initial impl

ptr.pet 8d827075

+4
.gitignore
··· 1 + /.direnv 2 + /.envrc 3 + /target 4 + /mount
+4607
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 4 4 + 5 + [[package]] 6 + name = "abnf" 7 + version = "0.13.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "087113bd50d9adce24850eed5d0476c7d199d532fce8fab5173650331e09033a" 10 + dependencies = [ 11 + "abnf-core", 12 + "nom", 13 + ] 14 + 15 + [[package]] 16 + name = "abnf-core" 17 + version = "0.5.0" 18 + source = "registry+https://github.com/rust-lang/crates.io-index" 19 + checksum = "c44e09c43ae1c368fb91a03a566472d0087c26cf7e1b9e8e289c14ede681dd7d" 20 + dependencies = [ 21 + "nom", 22 + ] 23 + 24 + [[package]] 25 + name = "adler2" 26 + version = "2.0.1" 27 + source = "registry+https://github.com/rust-lang/crates.io-index" 28 + checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 29 + 30 + [[package]] 31 + name = "aho-corasick" 32 + version = "1.1.4" 33 + source = "registry+https://github.com/rust-lang/crates.io-index" 34 + checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 35 + dependencies = [ 36 + "memchr", 37 + ] 38 + 39 + [[package]] 40 + name = "aliasable" 41 + version = "0.1.3" 42 + source = "registry+https://github.com/rust-lang/crates.io-index" 43 + checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 44 + 45 + [[package]] 46 + name = "android_system_properties" 47 + version = "0.1.5" 48 + source = "registry+https://github.com/rust-lang/crates.io-index" 49 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 50 + dependencies = [ 51 + "libc", 52 + ] 53 + 54 + [[package]] 55 + name = "anyhow" 56 + version = "1.0.100" 57 + source = "registry+https://github.com/rust-lang/crates.io-index" 58 + checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 59 + 60 + [[package]] 61 + name = "async-channel" 62 + version = "1.9.0" 63 + source = "registry+https://github.com/rust-lang/crates.io-index" 64 + checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" 65 + dependencies = [ 66 + "concurrent-queue", 67 + "event-listener 2.5.3", 68 + "futures-core", 69 + ] 70 + 71 + [[package]] 72 + name = "async-channel" 73 + version = "2.5.0" 74 + source = "registry+https://github.com/rust-lang/crates.io-index" 75 + checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 76 + dependencies = [ 77 + "concurrent-queue", 78 + "event-listener-strategy", 79 + "futures-core", 80 + "pin-project-lite", 81 + ] 82 + 83 + [[package]] 84 + name = "async-compression" 85 + version = "0.4.36" 86 + source = "registry+https://github.com/rust-lang/crates.io-index" 87 + checksum = "98ec5f6c2f8bc326c994cb9e241cc257ddaba9afa8555a43cffbb5dd86efaa37" 88 + dependencies = [ 89 + "compression-codecs", 90 + "compression-core", 91 + "futures-core", 92 + "pin-project-lite", 93 + "tokio", 94 + ] 95 + 96 + [[package]] 97 + name = "async-executor" 98 + version = "1.13.3" 99 + source = "registry+https://github.com/rust-lang/crates.io-index" 100 + checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8" 101 + dependencies = [ 102 + "async-task", 103 + "concurrent-queue", 104 + "fastrand", 105 + "futures-lite", 106 + "pin-project-lite", 107 + "slab", 108 + ] 109 + 110 + [[package]] 111 + name = "async-global-executor" 112 + version = "2.4.1" 113 + source = "registry+https://github.com/rust-lang/crates.io-index" 114 + checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" 115 + dependencies = [ 116 + "async-channel 2.5.0", 117 + "async-executor", 118 + "async-io", 119 + "async-lock", 120 + "blocking", 121 + "futures-lite", 122 + "once_cell", 123 + ] 124 + 125 + [[package]] 126 + name = "async-io" 127 + version = "2.6.0" 128 + source = "registry+https://github.com/rust-lang/crates.io-index" 129 + checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" 130 + dependencies = [ 131 + "autocfg", 132 + "cfg-if", 133 + "concurrent-queue", 134 + "futures-io", 135 + "futures-lite", 136 + "parking", 137 + "polling", 138 + "rustix", 139 + "slab", 140 + "windows-sys 0.61.2", 141 + ] 142 + 143 + [[package]] 144 + name = "async-lock" 145 + version = "3.4.1" 146 + source = "registry+https://github.com/rust-lang/crates.io-index" 147 + checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc" 148 + dependencies = [ 149 + "event-listener 5.4.1", 150 + "event-listener-strategy", 151 + "pin-project-lite", 152 + ] 153 + 154 + [[package]] 155 + name = "async-recursion" 156 + version = "1.1.1" 157 + source = "registry+https://github.com/rust-lang/crates.io-index" 158 + checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11" 159 + dependencies = [ 160 + "proc-macro2", 161 + "quote", 162 + "syn 2.0.111", 163 + ] 164 + 165 + [[package]] 166 + name = "async-std" 167 + version = "1.13.2" 168 + source = "registry+https://github.com/rust-lang/crates.io-index" 169 + checksum = "2c8e079a4ab67ae52b7403632e4618815d6db36d2a010cfe41b02c1b1578f93b" 170 + dependencies = [ 171 + "async-channel 1.9.0", 172 + "async-global-executor", 173 + "async-io", 174 + "async-lock", 175 + "crossbeam-utils", 176 + "futures-channel", 177 + "futures-core", 178 + "futures-io", 179 + "futures-lite", 180 + "gloo-timers", 181 + "kv-log-macro", 182 + "log", 183 + "memchr", 184 + "once_cell", 185 + "pin-project-lite", 186 + "pin-utils", 187 + "slab", 188 + "wasm-bindgen-futures", 189 + ] 190 + 191 + [[package]] 192 + name = "async-task" 193 + version = "4.7.1" 194 + source = "registry+https://github.com/rust-lang/crates.io-index" 195 + checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 196 + 197 + [[package]] 198 + name = "async-trait" 199 + version = "0.1.89" 200 + source = "registry+https://github.com/rust-lang/crates.io-index" 201 + checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 202 + dependencies = [ 203 + "proc-macro2", 204 + "quote", 205 + "syn 2.0.111", 206 + ] 207 + 208 + [[package]] 209 + name = "atomic-polyfill" 210 + version = "1.0.3" 211 + source = "registry+https://github.com/rust-lang/crates.io-index" 212 + checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4" 213 + dependencies = [ 214 + "critical-section", 215 + ] 216 + 217 + [[package]] 218 + name = "atomic-waker" 219 + version = "1.1.2" 220 + source = "registry+https://github.com/rust-lang/crates.io-index" 221 + checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 222 + 223 + [[package]] 224 + name = "atpfs" 225 + version = "0.1.0" 226 + dependencies = [ 227 + "anyhow", 228 + "async-trait", 229 + "bpaf", 230 + "easy_fuser", 231 + "futures", 232 + "jacquard", 233 + "libc", 234 + "scc", 235 + "serde", 236 + "serde_json", 237 + "tokio", 238 + "url", 239 + "vfs", 240 + ] 241 + 242 + [[package]] 243 + name = "autocfg" 244 + version = "1.5.0" 245 + source = "registry+https://github.com/rust-lang/crates.io-index" 246 + checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 247 + 248 + [[package]] 249 + name = "base-x" 250 + version = "0.2.11" 251 + source = "registry+https://github.com/rust-lang/crates.io-index" 252 + checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 253 + 254 + [[package]] 255 + name = "base16ct" 256 + version = "0.2.0" 257 + source = "registry+https://github.com/rust-lang/crates.io-index" 258 + checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 259 + 260 + [[package]] 261 + name = "base256emoji" 262 + version = "1.0.2" 263 + source = "registry+https://github.com/rust-lang/crates.io-index" 264 + checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" 265 + dependencies = [ 266 + "const-str", 267 + "match-lookup", 268 + ] 269 + 270 + [[package]] 271 + name = "base64" 272 + version = "0.22.1" 273 + source = "registry+https://github.com/rust-lang/crates.io-index" 274 + checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 275 + 276 + [[package]] 277 + name = "base64ct" 278 + version = "1.8.1" 279 + source = "registry+https://github.com/rust-lang/crates.io-index" 280 + checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a" 281 + 282 + [[package]] 283 + name = "bitflags" 284 + version = "2.10.0" 285 + source = "registry+https://github.com/rust-lang/crates.io-index" 286 + checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 287 + 288 + [[package]] 289 + name = "block-buffer" 290 + version = "0.10.4" 291 + source = "registry+https://github.com/rust-lang/crates.io-index" 292 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 293 + dependencies = [ 294 + "generic-array", 295 + ] 296 + 297 + [[package]] 298 + name = "blocking" 299 + version = "1.6.2" 300 + source = "registry+https://github.com/rust-lang/crates.io-index" 301 + checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" 302 + dependencies = [ 303 + "async-channel 2.5.0", 304 + "async-task", 305 + "futures-io", 306 + "futures-lite", 307 + "piper", 308 + ] 309 + 310 + [[package]] 311 + name = "bon" 312 + version = "3.8.1" 313 + source = "registry+https://github.com/rust-lang/crates.io-index" 314 + checksum = "ebeb9aaf9329dff6ceb65c689ca3db33dbf15f324909c60e4e5eef5701ce31b1" 315 + dependencies = [ 316 + "bon-macros", 317 + "rustversion", 318 + ] 319 + 320 + [[package]] 321 + name = "bon-macros" 322 + version = "3.8.1" 323 + source = "registry+https://github.com/rust-lang/crates.io-index" 324 + checksum = "77e9d642a7e3a318e37c2c9427b5a6a48aa1ad55dcd986f3034ab2239045a645" 325 + dependencies = [ 326 + "darling", 327 + "ident_case", 328 + "prettyplease", 329 + "proc-macro2", 330 + "quote", 331 + "rustversion", 332 + "syn 2.0.111", 333 + ] 334 + 335 + [[package]] 336 + name = "borsh" 337 + version = "1.6.0" 338 + source = "registry+https://github.com/rust-lang/crates.io-index" 339 + checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f" 340 + dependencies = [ 341 + "cfg_aliases", 342 + ] 343 + 344 + [[package]] 345 + name = "bpaf" 346 + version = "0.9.20" 347 + source = "registry+https://github.com/rust-lang/crates.io-index" 348 + checksum = "473976d7a8620bb1e06dcdd184407c2363fe4fec8e983ee03ed9197222634a31" 349 + dependencies = [ 350 + "bpaf_derive", 351 + ] 352 + 353 + [[package]] 354 + name = "bpaf_derive" 355 + version = "0.5.17" 356 + source = "registry+https://github.com/rust-lang/crates.io-index" 357 + checksum = "fefb4feeec9a091705938922f26081aad77c64cd2e76cd1c4a9ece8e42e1618a" 358 + dependencies = [ 359 + "proc-macro2", 360 + "quote", 361 + "syn 2.0.111", 362 + ] 363 + 364 + [[package]] 365 + name = "btree-range-map" 366 + version = "0.7.2" 367 + source = "registry+https://github.com/rust-lang/crates.io-index" 368 + checksum = "1be5c9672446d3800bcbcaabaeba121fe22f1fb25700c4562b22faf76d377c33" 369 + dependencies = [ 370 + "btree-slab", 371 + "cc-traits", 372 + "range-traits", 373 + "serde", 374 + "slab", 375 + ] 376 + 377 + [[package]] 378 + name = "btree-slab" 379 + version = "0.6.1" 380 + source = "registry+https://github.com/rust-lang/crates.io-index" 381 + checksum = "7a2b56d3029f075c4fa892428a098425b86cef5c89ae54073137ece416aef13c" 382 + dependencies = [ 383 + "cc-traits", 384 + "slab", 385 + "smallvec", 386 + ] 387 + 388 + [[package]] 389 + name = "bumpalo" 390 + version = "3.19.0" 391 + source = "registry+https://github.com/rust-lang/crates.io-index" 392 + checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" 393 + 394 + [[package]] 395 + name = "byteorder" 396 + version = "1.5.0" 397 + source = "registry+https://github.com/rust-lang/crates.io-index" 398 + checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 399 + 400 + [[package]] 401 + name = "bytes" 402 + version = "1.11.0" 403 + source = "registry+https://github.com/rust-lang/crates.io-index" 404 + checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" 405 + dependencies = [ 406 + "serde", 407 + ] 408 + 409 + [[package]] 410 + name = "cbor4ii" 411 + version = "0.2.14" 412 + source = "registry+https://github.com/rust-lang/crates.io-index" 413 + checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 414 + dependencies = [ 415 + "serde", 416 + ] 417 + 418 + [[package]] 419 + name = "cc" 420 + version = "1.2.49" 421 + source = "registry+https://github.com/rust-lang/crates.io-index" 422 + checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215" 423 + dependencies = [ 424 + "find-msvc-tools", 425 + "shlex", 426 + ] 427 + 428 + [[package]] 429 + name = "cc-traits" 430 + version = "2.0.0" 431 + source = "registry+https://github.com/rust-lang/crates.io-index" 432 + checksum = "060303ef31ef4a522737e1b1ab68c67916f2a787bb2f4f54f383279adba962b5" 433 + dependencies = [ 434 + "slab", 435 + ] 436 + 437 + [[package]] 438 + name = "cfg-if" 439 + version = "1.0.4" 440 + source = "registry+https://github.com/rust-lang/crates.io-index" 441 + checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 442 + 443 + [[package]] 444 + name = "cfg_aliases" 445 + version = "0.2.1" 446 + source = "registry+https://github.com/rust-lang/crates.io-index" 447 + checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 448 + 449 + [[package]] 450 + name = "chrono" 451 + version = "0.4.42" 452 + source = "registry+https://github.com/rust-lang/crates.io-index" 453 + checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" 454 + dependencies = [ 455 + "iana-time-zone", 456 + "js-sys", 457 + "num-traits", 458 + "serde", 459 + "wasm-bindgen", 460 + "windows-link 0.2.1", 461 + ] 462 + 463 + [[package]] 464 + name = "ciborium" 465 + version = "0.2.2" 466 + source = "registry+https://github.com/rust-lang/crates.io-index" 467 + checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 468 + dependencies = [ 469 + "ciborium-io", 470 + "ciborium-ll", 471 + "serde", 472 + ] 473 + 474 + [[package]] 475 + name = "ciborium-io" 476 + version = "0.2.2" 477 + source = "registry+https://github.com/rust-lang/crates.io-index" 478 + checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 479 + 480 + [[package]] 481 + name = "ciborium-ll" 482 + version = "0.2.2" 483 + source = "registry+https://github.com/rust-lang/crates.io-index" 484 + checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 485 + dependencies = [ 486 + "ciborium-io", 487 + "half", 488 + ] 489 + 490 + [[package]] 491 + name = "cid" 492 + version = "0.11.1" 493 + source = "registry+https://github.com/rust-lang/crates.io-index" 494 + checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 495 + dependencies = [ 496 + "core2", 497 + "multibase", 498 + "multihash", 499 + "serde", 500 + "serde_bytes", 501 + "unsigned-varint", 502 + ] 503 + 504 + [[package]] 505 + name = "cobs" 506 + version = "0.3.0" 507 + source = "registry+https://github.com/rust-lang/crates.io-index" 508 + checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" 509 + dependencies = [ 510 + "thiserror 2.0.17", 511 + ] 512 + 513 + [[package]] 514 + name = "compression-codecs" 515 + version = "0.4.35" 516 + source = "registry+https://github.com/rust-lang/crates.io-index" 517 + checksum = "b0f7ac3e5b97fdce45e8922fb05cae2c37f7bbd63d30dd94821dacfd8f3f2bf2" 518 + dependencies = [ 519 + "compression-core", 520 + "flate2", 521 + "memchr", 522 + ] 523 + 524 + [[package]] 525 + name = "compression-core" 526 + version = "0.4.31" 527 + source = "registry+https://github.com/rust-lang/crates.io-index" 528 + checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d" 529 + 530 + [[package]] 531 + name = "concurrent-queue" 532 + version = "2.5.0" 533 + source = "registry+https://github.com/rust-lang/crates.io-index" 534 + checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 535 + dependencies = [ 536 + "crossbeam-utils", 537 + ] 538 + 539 + [[package]] 540 + name = "const-oid" 541 + version = "0.9.6" 542 + source = "registry+https://github.com/rust-lang/crates.io-index" 543 + checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 544 + 545 + [[package]] 546 + name = "const-str" 547 + version = "0.4.3" 548 + source = "registry+https://github.com/rust-lang/crates.io-index" 549 + checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" 550 + 551 + [[package]] 552 + name = "cordyceps" 553 + version = "0.3.4" 554 + source = "registry+https://github.com/rust-lang/crates.io-index" 555 + checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a" 556 + dependencies = [ 557 + "loom", 558 + "tracing", 559 + ] 560 + 561 + [[package]] 562 + name = "core-foundation" 563 + version = "0.9.4" 564 + source = "registry+https://github.com/rust-lang/crates.io-index" 565 + checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 566 + dependencies = [ 567 + "core-foundation-sys", 568 + "libc", 569 + ] 570 + 571 + [[package]] 572 + name = "core-foundation-sys" 573 + version = "0.8.7" 574 + source = "registry+https://github.com/rust-lang/crates.io-index" 575 + checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 576 + 577 + [[package]] 578 + name = "core2" 579 + version = "0.4.0" 580 + source = "registry+https://github.com/rust-lang/crates.io-index" 581 + checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 582 + dependencies = [ 583 + "memchr", 584 + ] 585 + 586 + [[package]] 587 + name = "cpufeatures" 588 + version = "0.2.17" 589 + source = "registry+https://github.com/rust-lang/crates.io-index" 590 + checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 591 + dependencies = [ 592 + "libc", 593 + ] 594 + 595 + [[package]] 596 + name = "crc32fast" 597 + version = "1.5.0" 598 + source = "registry+https://github.com/rust-lang/crates.io-index" 599 + checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 600 + dependencies = [ 601 + "cfg-if", 602 + ] 603 + 604 + [[package]] 605 + name = "critical-section" 606 + version = "1.2.0" 607 + source = "registry+https://github.com/rust-lang/crates.io-index" 608 + checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 609 + 610 + [[package]] 611 + name = "crossbeam-channel" 612 + version = "0.5.15" 613 + source = "registry+https://github.com/rust-lang/crates.io-index" 614 + checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 615 + dependencies = [ 616 + "crossbeam-utils", 617 + ] 618 + 619 + [[package]] 620 + name = "crossbeam-utils" 621 + version = "0.8.21" 622 + source = "registry+https://github.com/rust-lang/crates.io-index" 623 + checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 624 + 625 + [[package]] 626 + name = "crunchy" 627 + version = "0.2.4" 628 + source = "registry+https://github.com/rust-lang/crates.io-index" 629 + checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 630 + 631 + [[package]] 632 + name = "crypto-bigint" 633 + version = "0.5.5" 634 + source = "registry+https://github.com/rust-lang/crates.io-index" 635 + checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 636 + dependencies = [ 637 + "generic-array", 638 + "rand_core 0.6.4", 639 + "subtle", 640 + "zeroize", 641 + ] 642 + 643 + [[package]] 644 + name = "crypto-common" 645 + version = "0.1.6" 646 + source = "registry+https://github.com/rust-lang/crates.io-index" 647 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 648 + dependencies = [ 649 + "generic-array", 650 + "typenum", 651 + ] 652 + 653 + [[package]] 654 + name = "darling" 655 + version = "0.21.3" 656 + source = "registry+https://github.com/rust-lang/crates.io-index" 657 + checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" 658 + dependencies = [ 659 + "darling_core", 660 + "darling_macro", 661 + ] 662 + 663 + [[package]] 664 + name = "darling_core" 665 + version = "0.21.3" 666 + source = "registry+https://github.com/rust-lang/crates.io-index" 667 + checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" 668 + dependencies = [ 669 + "fnv", 670 + "ident_case", 671 + "proc-macro2", 672 + "quote", 673 + "strsim", 674 + "syn 2.0.111", 675 + ] 676 + 677 + [[package]] 678 + name = "darling_macro" 679 + version = "0.21.3" 680 + source = "registry+https://github.com/rust-lang/crates.io-index" 681 + checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" 682 + dependencies = [ 683 + "darling_core", 684 + "quote", 685 + "syn 2.0.111", 686 + ] 687 + 688 + [[package]] 689 + name = "dashmap" 690 + version = "6.1.0" 691 + source = "registry+https://github.com/rust-lang/crates.io-index" 692 + checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" 693 + dependencies = [ 694 + "cfg-if", 695 + "crossbeam-utils", 696 + "hashbrown 0.14.5", 697 + "lock_api", 698 + "once_cell", 699 + "parking_lot_core", 700 + ] 701 + 702 + [[package]] 703 + name = "data-encoding" 704 + version = "2.9.0" 705 + source = "registry+https://github.com/rust-lang/crates.io-index" 706 + checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 707 + 708 + [[package]] 709 + name = "data-encoding-macro" 710 + version = "0.1.18" 711 + source = "registry+https://github.com/rust-lang/crates.io-index" 712 + checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" 713 + dependencies = [ 714 + "data-encoding", 715 + "data-encoding-macro-internal", 716 + ] 717 + 718 + [[package]] 719 + name = "data-encoding-macro-internal" 720 + version = "0.1.16" 721 + source = "registry+https://github.com/rust-lang/crates.io-index" 722 + checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" 723 + dependencies = [ 724 + "data-encoding", 725 + "syn 2.0.111", 726 + ] 727 + 728 + [[package]] 729 + name = "der" 730 + version = "0.7.10" 731 + source = "registry+https://github.com/rust-lang/crates.io-index" 732 + checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 733 + dependencies = [ 734 + "const-oid", 735 + "pem-rfc7468", 736 + "zeroize", 737 + ] 738 + 739 + [[package]] 740 + name = "deranged" 741 + version = "0.5.5" 742 + source = "registry+https://github.com/rust-lang/crates.io-index" 743 + checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" 744 + dependencies = [ 745 + "powerfmt", 746 + "serde_core", 747 + ] 748 + 749 + [[package]] 750 + name = "derive_more" 751 + version = "1.0.0" 752 + source = "registry+https://github.com/rust-lang/crates.io-index" 753 + checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" 754 + dependencies = [ 755 + "derive_more-impl", 756 + ] 757 + 758 + [[package]] 759 + name = "derive_more-impl" 760 + version = "1.0.0" 761 + source = "registry+https://github.com/rust-lang/crates.io-index" 762 + checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" 763 + dependencies = [ 764 + "proc-macro2", 765 + "quote", 766 + "syn 2.0.111", 767 + "unicode-xid", 768 + ] 769 + 770 + [[package]] 771 + name = "diatomic-waker" 772 + version = "0.2.3" 773 + source = "registry+https://github.com/rust-lang/crates.io-index" 774 + checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c" 775 + 776 + [[package]] 777 + name = "digest" 778 + version = "0.10.7" 779 + source = "registry+https://github.com/rust-lang/crates.io-index" 780 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 781 + dependencies = [ 782 + "block-buffer", 783 + "const-oid", 784 + "crypto-common", 785 + "subtle", 786 + ] 787 + 788 + [[package]] 789 + name = "displaydoc" 790 + version = "0.2.5" 791 + source = "registry+https://github.com/rust-lang/crates.io-index" 792 + checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 793 + dependencies = [ 794 + "proc-macro2", 795 + "quote", 796 + "syn 2.0.111", 797 + ] 798 + 799 + [[package]] 800 + name = "dyn-clone" 801 + version = "1.0.20" 802 + source = "registry+https://github.com/rust-lang/crates.io-index" 803 + checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" 804 + 805 + [[package]] 806 + name = "easy_fuser" 807 + version = "0.4.2" 808 + source = "registry+https://github.com/rust-lang/crates.io-index" 809 + checksum = "72a50e8f88bcce5ddbd829dd09ca553de13cd206fb2a68bc7de9cd56ed921e10" 810 + dependencies = [ 811 + "bitflags", 812 + "fuser", 813 + "libc", 814 + "log", 815 + "threadpool", 816 + ] 817 + 818 + [[package]] 819 + name = "ecdsa" 820 + version = "0.16.9" 821 + source = "registry+https://github.com/rust-lang/crates.io-index" 822 + checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 823 + dependencies = [ 824 + "der", 825 + "digest", 826 + "elliptic-curve", 827 + "rfc6979", 828 + "signature", 829 + "spki", 830 + ] 831 + 832 + [[package]] 833 + name = "elliptic-curve" 834 + version = "0.13.8" 835 + source = "registry+https://github.com/rust-lang/crates.io-index" 836 + checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 837 + dependencies = [ 838 + "base16ct", 839 + "crypto-bigint", 840 + "digest", 841 + "ff", 842 + "generic-array", 843 + "group", 844 + "pem-rfc7468", 845 + "pkcs8", 846 + "rand_core 0.6.4", 847 + "sec1", 848 + "subtle", 849 + "zeroize", 850 + ] 851 + 852 + [[package]] 853 + name = "embedded-io" 854 + version = "0.4.0" 855 + source = "registry+https://github.com/rust-lang/crates.io-index" 856 + checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 857 + 858 + [[package]] 859 + name = "embedded-io" 860 + version = "0.6.1" 861 + source = "registry+https://github.com/rust-lang/crates.io-index" 862 + checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" 863 + 864 + [[package]] 865 + name = "encoding_rs" 866 + version = "0.8.35" 867 + source = "registry+https://github.com/rust-lang/crates.io-index" 868 + checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 869 + dependencies = [ 870 + "cfg-if", 871 + ] 872 + 873 + [[package]] 874 + name = "enum-as-inner" 875 + version = "0.6.1" 876 + source = "registry+https://github.com/rust-lang/crates.io-index" 877 + checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" 878 + dependencies = [ 879 + "heck 0.5.0", 880 + "proc-macro2", 881 + "quote", 882 + "syn 2.0.111", 883 + ] 884 + 885 + [[package]] 886 + name = "equivalent" 887 + version = "1.0.2" 888 + source = "registry+https://github.com/rust-lang/crates.io-index" 889 + checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 890 + 891 + [[package]] 892 + name = "errno" 893 + version = "0.3.14" 894 + source = "registry+https://github.com/rust-lang/crates.io-index" 895 + checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 896 + dependencies = [ 897 + "libc", 898 + "windows-sys 0.61.2", 899 + ] 900 + 901 + [[package]] 902 + name = "event-listener" 903 + version = "2.5.3" 904 + source = "registry+https://github.com/rust-lang/crates.io-index" 905 + checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 906 + 907 + [[package]] 908 + name = "event-listener" 909 + version = "5.4.1" 910 + source = "registry+https://github.com/rust-lang/crates.io-index" 911 + checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 912 + dependencies = [ 913 + "concurrent-queue", 914 + "parking", 915 + "pin-project-lite", 916 + ] 917 + 918 + [[package]] 919 + name = "event-listener-strategy" 920 + version = "0.5.4" 921 + source = "registry+https://github.com/rust-lang/crates.io-index" 922 + checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 923 + dependencies = [ 924 + "event-listener 5.4.1", 925 + "pin-project-lite", 926 + ] 927 + 928 + [[package]] 929 + name = "fastrand" 930 + version = "2.3.0" 931 + source = "registry+https://github.com/rust-lang/crates.io-index" 932 + checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 933 + 934 + [[package]] 935 + name = "ff" 936 + version = "0.13.1" 937 + source = "registry+https://github.com/rust-lang/crates.io-index" 938 + checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 939 + dependencies = [ 940 + "rand_core 0.6.4", 941 + "subtle", 942 + ] 943 + 944 + [[package]] 945 + name = "filetime" 946 + version = "0.2.26" 947 + source = "registry+https://github.com/rust-lang/crates.io-index" 948 + checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" 949 + dependencies = [ 950 + "cfg-if", 951 + "libc", 952 + "libredox", 953 + "windows-sys 0.60.2", 954 + ] 955 + 956 + [[package]] 957 + name = "find-msvc-tools" 958 + version = "0.1.5" 959 + source = "registry+https://github.com/rust-lang/crates.io-index" 960 + checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" 961 + 962 + [[package]] 963 + name = "flate2" 964 + version = "1.1.5" 965 + source = "registry+https://github.com/rust-lang/crates.io-index" 966 + checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" 967 + dependencies = [ 968 + "crc32fast", 969 + "miniz_oxide", 970 + ] 971 + 972 + [[package]] 973 + name = "fnv" 974 + version = "1.0.7" 975 + source = "registry+https://github.com/rust-lang/crates.io-index" 976 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 977 + 978 + [[package]] 979 + name = "form_urlencoded" 980 + version = "1.2.2" 981 + source = "registry+https://github.com/rust-lang/crates.io-index" 982 + checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 983 + dependencies = [ 984 + "percent-encoding", 985 + ] 986 + 987 + [[package]] 988 + name = "fuser" 989 + version = "0.16.0" 990 + source = "registry+https://github.com/rust-lang/crates.io-index" 991 + checksum = "0bb29a3ae32279fe3e79a958fe01899f5fb23eadccee919cf88e145b54ed9367" 992 + dependencies = [ 993 + "libc", 994 + "log", 995 + "memchr", 996 + "nix", 997 + "page_size", 998 + "smallvec", 999 + "zerocopy", 1000 + ] 1001 + 1002 + [[package]] 1003 + name = "futf" 1004 + version = "0.1.5" 1005 + source = "registry+https://github.com/rust-lang/crates.io-index" 1006 + checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" 1007 + dependencies = [ 1008 + "mac", 1009 + "new_debug_unreachable", 1010 + ] 1011 + 1012 + [[package]] 1013 + name = "futures" 1014 + version = "0.3.31" 1015 + source = "registry+https://github.com/rust-lang/crates.io-index" 1016 + checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 1017 + dependencies = [ 1018 + "futures-channel", 1019 + "futures-core", 1020 + "futures-executor", 1021 + "futures-io", 1022 + "futures-sink", 1023 + "futures-task", 1024 + "futures-util", 1025 + ] 1026 + 1027 + [[package]] 1028 + name = "futures-buffered" 1029 + version = "0.2.12" 1030 + source = "registry+https://github.com/rust-lang/crates.io-index" 1031 + checksum = "a8e0e1f38ec07ba4abbde21eed377082f17ccb988be9d988a5adbf4bafc118fd" 1032 + dependencies = [ 1033 + "cordyceps", 1034 + "diatomic-waker", 1035 + "futures-core", 1036 + "pin-project-lite", 1037 + "spin 0.10.0", 1038 + ] 1039 + 1040 + [[package]] 1041 + name = "futures-channel" 1042 + version = "0.3.31" 1043 + source = "registry+https://github.com/rust-lang/crates.io-index" 1044 + checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 1045 + dependencies = [ 1046 + "futures-core", 1047 + "futures-sink", 1048 + ] 1049 + 1050 + [[package]] 1051 + name = "futures-core" 1052 + version = "0.3.31" 1053 + source = "registry+https://github.com/rust-lang/crates.io-index" 1054 + checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 1055 + 1056 + [[package]] 1057 + name = "futures-executor" 1058 + version = "0.3.31" 1059 + source = "registry+https://github.com/rust-lang/crates.io-index" 1060 + checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 1061 + dependencies = [ 1062 + "futures-core", 1063 + "futures-task", 1064 + "futures-util", 1065 + ] 1066 + 1067 + [[package]] 1068 + name = "futures-io" 1069 + version = "0.3.31" 1070 + source = "registry+https://github.com/rust-lang/crates.io-index" 1071 + checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 1072 + 1073 + [[package]] 1074 + name = "futures-lite" 1075 + version = "2.6.1" 1076 + source = "registry+https://github.com/rust-lang/crates.io-index" 1077 + checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 1078 + dependencies = [ 1079 + "fastrand", 1080 + "futures-core", 1081 + "futures-io", 1082 + "parking", 1083 + "pin-project-lite", 1084 + ] 1085 + 1086 + [[package]] 1087 + name = "futures-macro" 1088 + version = "0.3.31" 1089 + source = "registry+https://github.com/rust-lang/crates.io-index" 1090 + checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 1091 + dependencies = [ 1092 + "proc-macro2", 1093 + "quote", 1094 + "syn 2.0.111", 1095 + ] 1096 + 1097 + [[package]] 1098 + name = "futures-sink" 1099 + version = "0.3.31" 1100 + source = "registry+https://github.com/rust-lang/crates.io-index" 1101 + checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 1102 + 1103 + [[package]] 1104 + name = "futures-task" 1105 + version = "0.3.31" 1106 + source = "registry+https://github.com/rust-lang/crates.io-index" 1107 + checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 1108 + 1109 + [[package]] 1110 + name = "futures-util" 1111 + version = "0.3.31" 1112 + source = "registry+https://github.com/rust-lang/crates.io-index" 1113 + checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 1114 + dependencies = [ 1115 + "futures-channel", 1116 + "futures-core", 1117 + "futures-io", 1118 + "futures-macro", 1119 + "futures-sink", 1120 + "futures-task", 1121 + "memchr", 1122 + "pin-project-lite", 1123 + "pin-utils", 1124 + "slab", 1125 + ] 1126 + 1127 + [[package]] 1128 + name = "generator" 1129 + version = "0.8.7" 1130 + source = "registry+https://github.com/rust-lang/crates.io-index" 1131 + checksum = "605183a538e3e2a9c1038635cc5c2d194e2ee8fd0d1b66b8349fad7dbacce5a2" 1132 + dependencies = [ 1133 + "cc", 1134 + "cfg-if", 1135 + "libc", 1136 + "log", 1137 + "rustversion", 1138 + "windows", 1139 + ] 1140 + 1141 + [[package]] 1142 + name = "generic-array" 1143 + version = "0.14.9" 1144 + source = "registry+https://github.com/rust-lang/crates.io-index" 1145 + checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2" 1146 + dependencies = [ 1147 + "typenum", 1148 + "version_check", 1149 + "zeroize", 1150 + ] 1151 + 1152 + [[package]] 1153 + name = "getrandom" 1154 + version = "0.2.16" 1155 + source = "registry+https://github.com/rust-lang/crates.io-index" 1156 + checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 1157 + dependencies = [ 1158 + "cfg-if", 1159 + "js-sys", 1160 + "libc", 1161 + "wasi", 1162 + "wasm-bindgen", 1163 + ] 1164 + 1165 + [[package]] 1166 + name = "getrandom" 1167 + version = "0.3.4" 1168 + source = "registry+https://github.com/rust-lang/crates.io-index" 1169 + checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 1170 + dependencies = [ 1171 + "cfg-if", 1172 + "js-sys", 1173 + "libc", 1174 + "r-efi", 1175 + "wasip2", 1176 + "wasm-bindgen", 1177 + ] 1178 + 1179 + [[package]] 1180 + name = "gloo-storage" 1181 + version = "0.3.0" 1182 + source = "registry+https://github.com/rust-lang/crates.io-index" 1183 + checksum = "fbc8031e8c92758af912f9bc08fbbadd3c6f3cfcbf6b64cdf3d6a81f0139277a" 1184 + dependencies = [ 1185 + "gloo-utils", 1186 + "js-sys", 1187 + "serde", 1188 + "serde_json", 1189 + "thiserror 1.0.69", 1190 + "wasm-bindgen", 1191 + "web-sys", 1192 + ] 1193 + 1194 + [[package]] 1195 + name = "gloo-timers" 1196 + version = "0.3.0" 1197 + source = "registry+https://github.com/rust-lang/crates.io-index" 1198 + checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" 1199 + dependencies = [ 1200 + "futures-channel", 1201 + "futures-core", 1202 + "js-sys", 1203 + "wasm-bindgen", 1204 + ] 1205 + 1206 + [[package]] 1207 + name = "gloo-utils" 1208 + version = "0.2.0" 1209 + source = "registry+https://github.com/rust-lang/crates.io-index" 1210 + checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" 1211 + dependencies = [ 1212 + "js-sys", 1213 + "serde", 1214 + "serde_json", 1215 + "wasm-bindgen", 1216 + "web-sys", 1217 + ] 1218 + 1219 + [[package]] 1220 + name = "group" 1221 + version = "0.13.0" 1222 + source = "registry+https://github.com/rust-lang/crates.io-index" 1223 + checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 1224 + dependencies = [ 1225 + "ff", 1226 + "rand_core 0.6.4", 1227 + "subtle", 1228 + ] 1229 + 1230 + [[package]] 1231 + name = "h2" 1232 + version = "0.4.12" 1233 + source = "registry+https://github.com/rust-lang/crates.io-index" 1234 + checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" 1235 + dependencies = [ 1236 + "atomic-waker", 1237 + "bytes", 1238 + "fnv", 1239 + "futures-core", 1240 + "futures-sink", 1241 + "http", 1242 + "indexmap 2.12.1", 1243 + "slab", 1244 + "tokio", 1245 + "tokio-util", 1246 + "tracing", 1247 + ] 1248 + 1249 + [[package]] 1250 + name = "half" 1251 + version = "2.7.1" 1252 + source = "registry+https://github.com/rust-lang/crates.io-index" 1253 + checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" 1254 + dependencies = [ 1255 + "cfg-if", 1256 + "crunchy", 1257 + "zerocopy", 1258 + ] 1259 + 1260 + [[package]] 1261 + name = "hash32" 1262 + version = "0.2.1" 1263 + source = "registry+https://github.com/rust-lang/crates.io-index" 1264 + checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" 1265 + dependencies = [ 1266 + "byteorder", 1267 + ] 1268 + 1269 + [[package]] 1270 + name = "hashbrown" 1271 + version = "0.12.3" 1272 + source = "registry+https://github.com/rust-lang/crates.io-index" 1273 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1274 + 1275 + [[package]] 1276 + name = "hashbrown" 1277 + version = "0.14.5" 1278 + source = "registry+https://github.com/rust-lang/crates.io-index" 1279 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1280 + 1281 + [[package]] 1282 + name = "hashbrown" 1283 + version = "0.16.1" 1284 + source = "registry+https://github.com/rust-lang/crates.io-index" 1285 + checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 1286 + 1287 + [[package]] 1288 + name = "heapless" 1289 + version = "0.7.17" 1290 + source = "registry+https://github.com/rust-lang/crates.io-index" 1291 + checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f" 1292 + dependencies = [ 1293 + "atomic-polyfill", 1294 + "hash32", 1295 + "rustc_version", 1296 + "serde", 1297 + "spin 0.9.8", 1298 + "stable_deref_trait", 1299 + ] 1300 + 1301 + [[package]] 1302 + name = "heck" 1303 + version = "0.4.1" 1304 + source = "registry+https://github.com/rust-lang/crates.io-index" 1305 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1306 + 1307 + [[package]] 1308 + name = "heck" 1309 + version = "0.5.0" 1310 + source = "registry+https://github.com/rust-lang/crates.io-index" 1311 + checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1312 + 1313 + [[package]] 1314 + name = "hermit-abi" 1315 + version = "0.5.2" 1316 + source = "registry+https://github.com/rust-lang/crates.io-index" 1317 + checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 1318 + 1319 + [[package]] 1320 + name = "hex" 1321 + version = "0.4.3" 1322 + source = "registry+https://github.com/rust-lang/crates.io-index" 1323 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1324 + 1325 + [[package]] 1326 + name = "hex_fmt" 1327 + version = "0.3.0" 1328 + source = "registry+https://github.com/rust-lang/crates.io-index" 1329 + checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f" 1330 + 1331 + [[package]] 1332 + name = "hickory-proto" 1333 + version = "0.24.4" 1334 + source = "registry+https://github.com/rust-lang/crates.io-index" 1335 + checksum = "92652067c9ce6f66ce53cc38d1169daa36e6e7eb7dd3b63b5103bd9d97117248" 1336 + dependencies = [ 1337 + "async-trait", 1338 + "cfg-if", 1339 + "data-encoding", 1340 + "enum-as-inner", 1341 + "futures-channel", 1342 + "futures-io", 1343 + "futures-util", 1344 + "idna", 1345 + "ipnet", 1346 + "once_cell", 1347 + "rand 0.8.5", 1348 + "thiserror 1.0.69", 1349 + "tinyvec", 1350 + "tokio", 1351 + "tracing", 1352 + "url", 1353 + ] 1354 + 1355 + [[package]] 1356 + name = "hickory-resolver" 1357 + version = "0.24.4" 1358 + source = "registry+https://github.com/rust-lang/crates.io-index" 1359 + checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e" 1360 + dependencies = [ 1361 + "cfg-if", 1362 + "futures-util", 1363 + "hickory-proto", 1364 + "ipconfig", 1365 + "lru-cache", 1366 + "once_cell", 1367 + "parking_lot", 1368 + "rand 0.8.5", 1369 + "resolv-conf", 1370 + "smallvec", 1371 + "thiserror 1.0.69", 1372 + "tokio", 1373 + "tracing", 1374 + ] 1375 + 1376 + [[package]] 1377 + name = "hmac" 1378 + version = "0.12.1" 1379 + source = "registry+https://github.com/rust-lang/crates.io-index" 1380 + checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 1381 + dependencies = [ 1382 + "digest", 1383 + ] 1384 + 1385 + [[package]] 1386 + name = "html5ever" 1387 + version = "0.27.0" 1388 + source = "registry+https://github.com/rust-lang/crates.io-index" 1389 + checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4" 1390 + dependencies = [ 1391 + "log", 1392 + "mac", 1393 + "markup5ever", 1394 + "proc-macro2", 1395 + "quote", 1396 + "syn 2.0.111", 1397 + ] 1398 + 1399 + [[package]] 1400 + name = "http" 1401 + version = "1.4.0" 1402 + source = "registry+https://github.com/rust-lang/crates.io-index" 1403 + checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 1404 + dependencies = [ 1405 + "bytes", 1406 + "itoa", 1407 + ] 1408 + 1409 + [[package]] 1410 + name = "http-body" 1411 + version = "1.0.1" 1412 + source = "registry+https://github.com/rust-lang/crates.io-index" 1413 + checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 1414 + dependencies = [ 1415 + "bytes", 1416 + "http", 1417 + ] 1418 + 1419 + [[package]] 1420 + name = "http-body-util" 1421 + version = "0.1.3" 1422 + source = "registry+https://github.com/rust-lang/crates.io-index" 1423 + checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 1424 + dependencies = [ 1425 + "bytes", 1426 + "futures-core", 1427 + "http", 1428 + "http-body", 1429 + "pin-project-lite", 1430 + ] 1431 + 1432 + [[package]] 1433 + name = "httparse" 1434 + version = "1.10.1" 1435 + source = "registry+https://github.com/rust-lang/crates.io-index" 1436 + checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1437 + 1438 + [[package]] 1439 + name = "hyper" 1440 + version = "1.8.1" 1441 + source = "registry+https://github.com/rust-lang/crates.io-index" 1442 + checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" 1443 + dependencies = [ 1444 + "atomic-waker", 1445 + "bytes", 1446 + "futures-channel", 1447 + "futures-core", 1448 + "h2", 1449 + "http", 1450 + "http-body", 1451 + "httparse", 1452 + "itoa", 1453 + "pin-project-lite", 1454 + "pin-utils", 1455 + "smallvec", 1456 + "tokio", 1457 + "want", 1458 + ] 1459 + 1460 + [[package]] 1461 + name = "hyper-rustls" 1462 + version = "0.27.7" 1463 + source = "registry+https://github.com/rust-lang/crates.io-index" 1464 + checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 1465 + dependencies = [ 1466 + "http", 1467 + "hyper", 1468 + "hyper-util", 1469 + "rustls", 1470 + "rustls-pki-types", 1471 + "tokio", 1472 + "tokio-rustls", 1473 + "tower-service", 1474 + "webpki-roots", 1475 + ] 1476 + 1477 + [[package]] 1478 + name = "hyper-util" 1479 + version = "0.1.19" 1480 + source = "registry+https://github.com/rust-lang/crates.io-index" 1481 + checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" 1482 + dependencies = [ 1483 + "base64", 1484 + "bytes", 1485 + "futures-channel", 1486 + "futures-core", 1487 + "futures-util", 1488 + "http", 1489 + "http-body", 1490 + "hyper", 1491 + "ipnet", 1492 + "libc", 1493 + "percent-encoding", 1494 + "pin-project-lite", 1495 + "socket2 0.6.1", 1496 + "system-configuration", 1497 + "tokio", 1498 + "tower-service", 1499 + "tracing", 1500 + "windows-registry", 1501 + ] 1502 + 1503 + [[package]] 1504 + name = "iana-time-zone" 1505 + version = "0.1.64" 1506 + source = "registry+https://github.com/rust-lang/crates.io-index" 1507 + checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" 1508 + dependencies = [ 1509 + "android_system_properties", 1510 + "core-foundation-sys", 1511 + "iana-time-zone-haiku", 1512 + "js-sys", 1513 + "log", 1514 + "wasm-bindgen", 1515 + "windows-core 0.62.2", 1516 + ] 1517 + 1518 + [[package]] 1519 + name = "iana-time-zone-haiku" 1520 + version = "0.1.2" 1521 + source = "registry+https://github.com/rust-lang/crates.io-index" 1522 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1523 + dependencies = [ 1524 + "cc", 1525 + ] 1526 + 1527 + [[package]] 1528 + name = "icu_collections" 1529 + version = "2.1.1" 1530 + source = "registry+https://github.com/rust-lang/crates.io-index" 1531 + checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" 1532 + dependencies = [ 1533 + "displaydoc", 1534 + "potential_utf", 1535 + "yoke", 1536 + "zerofrom", 1537 + "zerovec", 1538 + ] 1539 + 1540 + [[package]] 1541 + name = "icu_locale_core" 1542 + version = "2.1.1" 1543 + source = "registry+https://github.com/rust-lang/crates.io-index" 1544 + checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" 1545 + dependencies = [ 1546 + "displaydoc", 1547 + "litemap", 1548 + "tinystr", 1549 + "writeable", 1550 + "zerovec", 1551 + ] 1552 + 1553 + [[package]] 1554 + name = "icu_normalizer" 1555 + version = "2.1.1" 1556 + source = "registry+https://github.com/rust-lang/crates.io-index" 1557 + checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" 1558 + dependencies = [ 1559 + "icu_collections", 1560 + "icu_normalizer_data", 1561 + "icu_properties", 1562 + "icu_provider", 1563 + "smallvec", 1564 + "zerovec", 1565 + ] 1566 + 1567 + [[package]] 1568 + name = "icu_normalizer_data" 1569 + version = "2.1.1" 1570 + source = "registry+https://github.com/rust-lang/crates.io-index" 1571 + checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" 1572 + 1573 + [[package]] 1574 + name = "icu_properties" 1575 + version = "2.1.2" 1576 + source = "registry+https://github.com/rust-lang/crates.io-index" 1577 + checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" 1578 + dependencies = [ 1579 + "icu_collections", 1580 + "icu_locale_core", 1581 + "icu_properties_data", 1582 + "icu_provider", 1583 + "zerotrie", 1584 + "zerovec", 1585 + ] 1586 + 1587 + [[package]] 1588 + name = "icu_properties_data" 1589 + version = "2.1.2" 1590 + source = "registry+https://github.com/rust-lang/crates.io-index" 1591 + checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" 1592 + 1593 + [[package]] 1594 + name = "icu_provider" 1595 + version = "2.1.1" 1596 + source = "registry+https://github.com/rust-lang/crates.io-index" 1597 + checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" 1598 + dependencies = [ 1599 + "displaydoc", 1600 + "icu_locale_core", 1601 + "writeable", 1602 + "yoke", 1603 + "zerofrom", 1604 + "zerotrie", 1605 + "zerovec", 1606 + ] 1607 + 1608 + [[package]] 1609 + name = "ident_case" 1610 + version = "1.0.1" 1611 + source = "registry+https://github.com/rust-lang/crates.io-index" 1612 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1613 + 1614 + [[package]] 1615 + name = "idna" 1616 + version = "1.1.0" 1617 + source = "registry+https://github.com/rust-lang/crates.io-index" 1618 + checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 1619 + dependencies = [ 1620 + "idna_adapter", 1621 + "smallvec", 1622 + "utf8_iter", 1623 + ] 1624 + 1625 + [[package]] 1626 + name = "idna_adapter" 1627 + version = "1.2.1" 1628 + source = "registry+https://github.com/rust-lang/crates.io-index" 1629 + checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 1630 + dependencies = [ 1631 + "icu_normalizer", 1632 + "icu_properties", 1633 + ] 1634 + 1635 + [[package]] 1636 + name = "indexmap" 1637 + version = "1.9.3" 1638 + source = "registry+https://github.com/rust-lang/crates.io-index" 1639 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1640 + dependencies = [ 1641 + "autocfg", 1642 + "hashbrown 0.12.3", 1643 + "serde", 1644 + ] 1645 + 1646 + [[package]] 1647 + name = "indexmap" 1648 + version = "2.12.1" 1649 + source = "registry+https://github.com/rust-lang/crates.io-index" 1650 + checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" 1651 + dependencies = [ 1652 + "equivalent", 1653 + "hashbrown 0.16.1", 1654 + "serde", 1655 + "serde_core", 1656 + ] 1657 + 1658 + [[package]] 1659 + name = "indoc" 1660 + version = "2.0.7" 1661 + source = "registry+https://github.com/rust-lang/crates.io-index" 1662 + checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706" 1663 + dependencies = [ 1664 + "rustversion", 1665 + ] 1666 + 1667 + [[package]] 1668 + name = "inventory" 1669 + version = "0.3.21" 1670 + source = "registry+https://github.com/rust-lang/crates.io-index" 1671 + checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e" 1672 + dependencies = [ 1673 + "rustversion", 1674 + ] 1675 + 1676 + [[package]] 1677 + name = "ipconfig" 1678 + version = "0.3.2" 1679 + source = "registry+https://github.com/rust-lang/crates.io-index" 1680 + checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" 1681 + dependencies = [ 1682 + "socket2 0.5.10", 1683 + "widestring", 1684 + "windows-sys 0.48.0", 1685 + "winreg", 1686 + ] 1687 + 1688 + [[package]] 1689 + name = "ipld-core" 1690 + version = "0.4.2" 1691 + source = "registry+https://github.com/rust-lang/crates.io-index" 1692 + checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db" 1693 + dependencies = [ 1694 + "cid", 1695 + "serde", 1696 + "serde_bytes", 1697 + ] 1698 + 1699 + [[package]] 1700 + name = "ipnet" 1701 + version = "2.11.0" 1702 + source = "registry+https://github.com/rust-lang/crates.io-index" 1703 + checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 1704 + 1705 + [[package]] 1706 + name = "iri-string" 1707 + version = "0.7.9" 1708 + source = "registry+https://github.com/rust-lang/crates.io-index" 1709 + checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397" 1710 + dependencies = [ 1711 + "memchr", 1712 + "serde", 1713 + ] 1714 + 1715 + [[package]] 1716 + name = "itoa" 1717 + version = "1.0.15" 1718 + source = "registry+https://github.com/rust-lang/crates.io-index" 1719 + checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 1720 + 1721 + [[package]] 1722 + name = "jacquard" 1723 + version = "0.9.4" 1724 + source = "git+https://tangled.org/nonbinary.computer/jacquard#5bd87b462e1b020feb232fefaf4926ff004eefe4" 1725 + dependencies = [ 1726 + "bytes", 1727 + "getrandom 0.2.16", 1728 + "gloo-storage", 1729 + "http", 1730 + "jacquard-api", 1731 + "jacquard-common", 1732 + "jacquard-identity", 1733 + "jacquard-oauth", 1734 + "jose-jwk", 1735 + "miette", 1736 + "regex", 1737 + "regex-lite", 1738 + "reqwest", 1739 + "ring", 1740 + "serde", 1741 + "serde_html_form", 1742 + "serde_json", 1743 + "smol_str", 1744 + "thiserror 2.0.17", 1745 + "tokio", 1746 + "trait-variant", 1747 + "url", 1748 + "webpage", 1749 + ] 1750 + 1751 + [[package]] 1752 + name = "jacquard-api" 1753 + version = "0.9.2" 1754 + source = "git+https://tangled.org/nonbinary.computer/jacquard#5bd87b462e1b020feb232fefaf4926ff004eefe4" 1755 + dependencies = [ 1756 + "bon", 1757 + "bytes", 1758 + "jacquard-common", 1759 + "jacquard-derive", 1760 + "jacquard-lexicon", 1761 + "miette", 1762 + "rustversion", 1763 + "serde", 1764 + "serde_bytes", 1765 + "serde_ipld_dagcbor", 1766 + "thiserror 2.0.17", 1767 + "unicode-segmentation", 1768 + ] 1769 + 1770 + [[package]] 1771 + name = "jacquard-common" 1772 + version = "0.9.2" 1773 + source = "git+https://tangled.org/nonbinary.computer/jacquard#5bd87b462e1b020feb232fefaf4926ff004eefe4" 1774 + dependencies = [ 1775 + "base64", 1776 + "bon", 1777 + "bytes", 1778 + "chrono", 1779 + "cid", 1780 + "getrandom 0.2.16", 1781 + "getrandom 0.3.4", 1782 + "http", 1783 + "ipld-core", 1784 + "k256", 1785 + "langtag", 1786 + "miette", 1787 + "multibase", 1788 + "multihash", 1789 + "ouroboros", 1790 + "p256", 1791 + "postcard", 1792 + "rand 0.9.2", 1793 + "regex", 1794 + "regex-lite", 1795 + "reqwest", 1796 + "ring", 1797 + "serde", 1798 + "serde_bytes", 1799 + "serde_html_form", 1800 + "serde_ipld_dagcbor", 1801 + "serde_json", 1802 + "signature", 1803 + "smol_str", 1804 + "thiserror 2.0.17", 1805 + "tokio", 1806 + "tokio-util", 1807 + "trait-variant", 1808 + "url", 1809 + ] 1810 + 1811 + [[package]] 1812 + name = "jacquard-derive" 1813 + version = "0.9.4" 1814 + source = "git+https://tangled.org/nonbinary.computer/jacquard#5bd87b462e1b020feb232fefaf4926ff004eefe4" 1815 + dependencies = [ 1816 + "heck 0.5.0", 1817 + "jacquard-lexicon", 1818 + "proc-macro2", 1819 + "quote", 1820 + "syn 2.0.111", 1821 + ] 1822 + 1823 + [[package]] 1824 + name = "jacquard-identity" 1825 + version = "0.9.2" 1826 + source = "git+https://tangled.org/nonbinary.computer/jacquard#5bd87b462e1b020feb232fefaf4926ff004eefe4" 1827 + dependencies = [ 1828 + "bon", 1829 + "bytes", 1830 + "hickory-resolver", 1831 + "http", 1832 + "jacquard-api", 1833 + "jacquard-common", 1834 + "jacquard-lexicon", 1835 + "miette", 1836 + "mini-moka", 1837 + "n0-future", 1838 + "percent-encoding", 1839 + "reqwest", 1840 + "ring", 1841 + "serde", 1842 + "serde_html_form", 1843 + "serde_json", 1844 + "thiserror 2.0.17", 1845 + "tokio", 1846 + "trait-variant", 1847 + "url", 1848 + "urlencoding", 1849 + ] 1850 + 1851 + [[package]] 1852 + name = "jacquard-lexicon" 1853 + version = "0.9.2" 1854 + source = "git+https://tangled.org/nonbinary.computer/jacquard#5bd87b462e1b020feb232fefaf4926ff004eefe4" 1855 + dependencies = [ 1856 + "cid", 1857 + "dashmap", 1858 + "heck 0.5.0", 1859 + "inventory", 1860 + "jacquard-common", 1861 + "miette", 1862 + "multihash", 1863 + "prettyplease", 1864 + "proc-macro2", 1865 + "quote", 1866 + "serde", 1867 + "serde_ipld_dagcbor", 1868 + "serde_json", 1869 + "serde_repr", 1870 + "serde_with", 1871 + "sha2", 1872 + "syn 2.0.111", 1873 + "thiserror 2.0.17", 1874 + "unicode-segmentation", 1875 + ] 1876 + 1877 + [[package]] 1878 + name = "jacquard-oauth" 1879 + version = "0.9.2" 1880 + source = "git+https://tangled.org/nonbinary.computer/jacquard#5bd87b462e1b020feb232fefaf4926ff004eefe4" 1881 + dependencies = [ 1882 + "base64", 1883 + "bytes", 1884 + "chrono", 1885 + "dashmap", 1886 + "elliptic-curve", 1887 + "http", 1888 + "jacquard-common", 1889 + "jacquard-identity", 1890 + "jose-jwa", 1891 + "jose-jwk", 1892 + "miette", 1893 + "p256", 1894 + "rand 0.8.5", 1895 + "ring", 1896 + "serde", 1897 + "serde_html_form", 1898 + "serde_json", 1899 + "sha2", 1900 + "smol_str", 1901 + "thiserror 2.0.17", 1902 + "tokio", 1903 + "trait-variant", 1904 + "url", 1905 + ] 1906 + 1907 + [[package]] 1908 + name = "jose-b64" 1909 + version = "0.1.2" 1910 + source = "registry+https://github.com/rust-lang/crates.io-index" 1911 + checksum = "bec69375368709666b21c76965ce67549f2d2db7605f1f8707d17c9656801b56" 1912 + dependencies = [ 1913 + "base64ct", 1914 + "serde", 1915 + "subtle", 1916 + "zeroize", 1917 + ] 1918 + 1919 + [[package]] 1920 + name = "jose-jwa" 1921 + version = "0.1.2" 1922 + source = "registry+https://github.com/rust-lang/crates.io-index" 1923 + checksum = "9ab78e053fe886a351d67cf0d194c000f9d0dcb92906eb34d853d7e758a4b3a7" 1924 + dependencies = [ 1925 + "serde", 1926 + ] 1927 + 1928 + [[package]] 1929 + name = "jose-jwk" 1930 + version = "0.1.2" 1931 + source = "registry+https://github.com/rust-lang/crates.io-index" 1932 + checksum = "280fa263807fe0782ecb6f2baadc28dffc04e00558a58e33bfdb801d11fd58e7" 1933 + dependencies = [ 1934 + "jose-b64", 1935 + "jose-jwa", 1936 + "p256", 1937 + "p384", 1938 + "rsa", 1939 + "serde", 1940 + "zeroize", 1941 + ] 1942 + 1943 + [[package]] 1944 + name = "js-sys" 1945 + version = "0.3.83" 1946 + source = "registry+https://github.com/rust-lang/crates.io-index" 1947 + checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" 1948 + dependencies = [ 1949 + "once_cell", 1950 + "wasm-bindgen", 1951 + ] 1952 + 1953 + [[package]] 1954 + name = "k256" 1955 + version = "0.13.4" 1956 + source = "registry+https://github.com/rust-lang/crates.io-index" 1957 + checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 1958 + dependencies = [ 1959 + "cfg-if", 1960 + "ecdsa", 1961 + "elliptic-curve", 1962 + "sha2", 1963 + ] 1964 + 1965 + [[package]] 1966 + name = "kv-log-macro" 1967 + version = "1.0.7" 1968 + source = "registry+https://github.com/rust-lang/crates.io-index" 1969 + checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 1970 + dependencies = [ 1971 + "log", 1972 + ] 1973 + 1974 + [[package]] 1975 + name = "langtag" 1976 + version = "0.4.0" 1977 + source = "registry+https://github.com/rust-lang/crates.io-index" 1978 + checksum = "9ecb4c689a30e48ebeaa14237f34037e300dd072e6ad21a9ec72e810ff3c6600" 1979 + dependencies = [ 1980 + "serde", 1981 + "static-regular-grammar", 1982 + "thiserror 1.0.69", 1983 + ] 1984 + 1985 + [[package]] 1986 + name = "lazy_static" 1987 + version = "1.5.0" 1988 + source = "registry+https://github.com/rust-lang/crates.io-index" 1989 + checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1990 + dependencies = [ 1991 + "spin 0.9.8", 1992 + ] 1993 + 1994 + [[package]] 1995 + name = "libc" 1996 + version = "0.2.178" 1997 + source = "registry+https://github.com/rust-lang/crates.io-index" 1998 + checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" 1999 + 2000 + [[package]] 2001 + name = "libm" 2002 + version = "0.2.15" 2003 + source = "registry+https://github.com/rust-lang/crates.io-index" 2004 + checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" 2005 + 2006 + [[package]] 2007 + name = "libredox" 2008 + version = "0.1.10" 2009 + source = "registry+https://github.com/rust-lang/crates.io-index" 2010 + checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" 2011 + dependencies = [ 2012 + "bitflags", 2013 + "libc", 2014 + "redox_syscall", 2015 + ] 2016 + 2017 + [[package]] 2018 + name = "linked-hash-map" 2019 + version = "0.5.6" 2020 + source = "registry+https://github.com/rust-lang/crates.io-index" 2021 + checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 2022 + 2023 + [[package]] 2024 + name = "linux-raw-sys" 2025 + version = "0.11.0" 2026 + source = "registry+https://github.com/rust-lang/crates.io-index" 2027 + checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 2028 + 2029 + [[package]] 2030 + name = "litemap" 2031 + version = "0.8.1" 2032 + source = "registry+https://github.com/rust-lang/crates.io-index" 2033 + checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" 2034 + 2035 + [[package]] 2036 + name = "lock_api" 2037 + version = "0.4.14" 2038 + source = "registry+https://github.com/rust-lang/crates.io-index" 2039 + checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 2040 + dependencies = [ 2041 + "scopeguard", 2042 + ] 2043 + 2044 + [[package]] 2045 + name = "log" 2046 + version = "0.4.29" 2047 + source = "registry+https://github.com/rust-lang/crates.io-index" 2048 + checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 2049 + dependencies = [ 2050 + "value-bag", 2051 + ] 2052 + 2053 + [[package]] 2054 + name = "loom" 2055 + version = "0.7.2" 2056 + source = "registry+https://github.com/rust-lang/crates.io-index" 2057 + checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 2058 + dependencies = [ 2059 + "cfg-if", 2060 + "generator", 2061 + "scoped-tls", 2062 + "tracing", 2063 + "tracing-subscriber", 2064 + ] 2065 + 2066 + [[package]] 2067 + name = "lru-cache" 2068 + version = "0.1.2" 2069 + source = "registry+https://github.com/rust-lang/crates.io-index" 2070 + checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" 2071 + dependencies = [ 2072 + "linked-hash-map", 2073 + ] 2074 + 2075 + [[package]] 2076 + name = "lru-slab" 2077 + version = "0.1.2" 2078 + source = "registry+https://github.com/rust-lang/crates.io-index" 2079 + checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 2080 + 2081 + [[package]] 2082 + name = "mac" 2083 + version = "0.1.1" 2084 + source = "registry+https://github.com/rust-lang/crates.io-index" 2085 + checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" 2086 + 2087 + [[package]] 2088 + name = "markup5ever" 2089 + version = "0.12.1" 2090 + source = "registry+https://github.com/rust-lang/crates.io-index" 2091 + checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45" 2092 + dependencies = [ 2093 + "log", 2094 + "phf", 2095 + "phf_codegen", 2096 + "string_cache", 2097 + "string_cache_codegen", 2098 + "tendril", 2099 + ] 2100 + 2101 + [[package]] 2102 + name = "markup5ever_rcdom" 2103 + version = "0.3.0" 2104 + source = "registry+https://github.com/rust-lang/crates.io-index" 2105 + checksum = "edaa21ab3701bfee5099ade5f7e1f84553fd19228cf332f13cd6e964bf59be18" 2106 + dependencies = [ 2107 + "html5ever", 2108 + "markup5ever", 2109 + "tendril", 2110 + "xml5ever", 2111 + ] 2112 + 2113 + [[package]] 2114 + name = "match-lookup" 2115 + version = "0.1.1" 2116 + source = "registry+https://github.com/rust-lang/crates.io-index" 2117 + checksum = "1265724d8cb29dbbc2b0f06fffb8bf1a8c0cf73a78eede9ba73a4a66c52a981e" 2118 + dependencies = [ 2119 + "proc-macro2", 2120 + "quote", 2121 + "syn 1.0.109", 2122 + ] 2123 + 2124 + [[package]] 2125 + name = "matchers" 2126 + version = "0.2.0" 2127 + source = "registry+https://github.com/rust-lang/crates.io-index" 2128 + checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 2129 + dependencies = [ 2130 + "regex-automata", 2131 + ] 2132 + 2133 + [[package]] 2134 + name = "memchr" 2135 + version = "2.7.6" 2136 + source = "registry+https://github.com/rust-lang/crates.io-index" 2137 + checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 2138 + 2139 + [[package]] 2140 + name = "miette" 2141 + version = "7.6.0" 2142 + source = "registry+https://github.com/rust-lang/crates.io-index" 2143 + checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7" 2144 + dependencies = [ 2145 + "cfg-if", 2146 + "miette-derive", 2147 + "unicode-width", 2148 + ] 2149 + 2150 + [[package]] 2151 + name = "miette-derive" 2152 + version = "7.6.0" 2153 + source = "registry+https://github.com/rust-lang/crates.io-index" 2154 + checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b" 2155 + dependencies = [ 2156 + "proc-macro2", 2157 + "quote", 2158 + "syn 2.0.111", 2159 + ] 2160 + 2161 + [[package]] 2162 + name = "mime" 2163 + version = "0.3.17" 2164 + source = "registry+https://github.com/rust-lang/crates.io-index" 2165 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2166 + 2167 + [[package]] 2168 + name = "mini-moka" 2169 + version = "0.10.99" 2170 + source = "git+https://tangled.org/nonbinary.computer/jacquard#5bd87b462e1b020feb232fefaf4926ff004eefe4" 2171 + dependencies = [ 2172 + "crossbeam-channel", 2173 + "crossbeam-utils", 2174 + "dashmap", 2175 + "smallvec", 2176 + "tagptr", 2177 + "triomphe", 2178 + "web-time", 2179 + ] 2180 + 2181 + [[package]] 2182 + name = "minimal-lexical" 2183 + version = "0.2.1" 2184 + source = "registry+https://github.com/rust-lang/crates.io-index" 2185 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2186 + 2187 + [[package]] 2188 + name = "miniz_oxide" 2189 + version = "0.8.9" 2190 + source = "registry+https://github.com/rust-lang/crates.io-index" 2191 + checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 2192 + dependencies = [ 2193 + "adler2", 2194 + "simd-adler32", 2195 + ] 2196 + 2197 + [[package]] 2198 + name = "mio" 2199 + version = "1.1.1" 2200 + source = "registry+https://github.com/rust-lang/crates.io-index" 2201 + checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 2202 + dependencies = [ 2203 + "libc", 2204 + "wasi", 2205 + "windows-sys 0.61.2", 2206 + ] 2207 + 2208 + [[package]] 2209 + name = "multibase" 2210 + version = "0.9.2" 2211 + source = "registry+https://github.com/rust-lang/crates.io-index" 2212 + checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" 2213 + dependencies = [ 2214 + "base-x", 2215 + "base256emoji", 2216 + "data-encoding", 2217 + "data-encoding-macro", 2218 + ] 2219 + 2220 + [[package]] 2221 + name = "multihash" 2222 + version = "0.19.3" 2223 + source = "registry+https://github.com/rust-lang/crates.io-index" 2224 + checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 2225 + dependencies = [ 2226 + "core2", 2227 + "serde", 2228 + "unsigned-varint", 2229 + ] 2230 + 2231 + [[package]] 2232 + name = "n0-future" 2233 + version = "0.1.3" 2234 + source = "registry+https://github.com/rust-lang/crates.io-index" 2235 + checksum = "7bb0e5d99e681ab3c938842b96fcb41bf8a7bb4bfdb11ccbd653a7e83e06c794" 2236 + dependencies = [ 2237 + "cfg_aliases", 2238 + "derive_more", 2239 + "futures-buffered", 2240 + "futures-lite", 2241 + "futures-util", 2242 + "js-sys", 2243 + "pin-project", 2244 + "send_wrapper", 2245 + "tokio", 2246 + "tokio-util", 2247 + "wasm-bindgen", 2248 + "wasm-bindgen-futures", 2249 + "web-time", 2250 + ] 2251 + 2252 + [[package]] 2253 + name = "new_debug_unreachable" 2254 + version = "1.0.6" 2255 + source = "registry+https://github.com/rust-lang/crates.io-index" 2256 + checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" 2257 + 2258 + [[package]] 2259 + name = "nix" 2260 + version = "0.29.0" 2261 + source = "registry+https://github.com/rust-lang/crates.io-index" 2262 + checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" 2263 + dependencies = [ 2264 + "bitflags", 2265 + "cfg-if", 2266 + "cfg_aliases", 2267 + "libc", 2268 + ] 2269 + 2270 + [[package]] 2271 + name = "nom" 2272 + version = "7.1.3" 2273 + source = "registry+https://github.com/rust-lang/crates.io-index" 2274 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2275 + dependencies = [ 2276 + "memchr", 2277 + "minimal-lexical", 2278 + ] 2279 + 2280 + [[package]] 2281 + name = "nu-ansi-term" 2282 + version = "0.50.3" 2283 + source = "registry+https://github.com/rust-lang/crates.io-index" 2284 + checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 2285 + dependencies = [ 2286 + "windows-sys 0.60.2", 2287 + ] 2288 + 2289 + [[package]] 2290 + name = "num-bigint-dig" 2291 + version = "0.8.6" 2292 + source = "registry+https://github.com/rust-lang/crates.io-index" 2293 + checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" 2294 + dependencies = [ 2295 + "lazy_static", 2296 + "libm", 2297 + "num-integer", 2298 + "num-iter", 2299 + "num-traits", 2300 + "rand 0.8.5", 2301 + "smallvec", 2302 + "zeroize", 2303 + ] 2304 + 2305 + [[package]] 2306 + name = "num-conv" 2307 + version = "0.1.0" 2308 + source = "registry+https://github.com/rust-lang/crates.io-index" 2309 + checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 2310 + 2311 + [[package]] 2312 + name = "num-integer" 2313 + version = "0.1.46" 2314 + source = "registry+https://github.com/rust-lang/crates.io-index" 2315 + checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2316 + dependencies = [ 2317 + "num-traits", 2318 + ] 2319 + 2320 + [[package]] 2321 + name = "num-iter" 2322 + version = "0.1.45" 2323 + source = "registry+https://github.com/rust-lang/crates.io-index" 2324 + checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" 2325 + dependencies = [ 2326 + "autocfg", 2327 + "num-integer", 2328 + "num-traits", 2329 + ] 2330 + 2331 + [[package]] 2332 + name = "num-traits" 2333 + version = "0.2.19" 2334 + source = "registry+https://github.com/rust-lang/crates.io-index" 2335 + checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2336 + dependencies = [ 2337 + "autocfg", 2338 + "libm", 2339 + ] 2340 + 2341 + [[package]] 2342 + name = "num_cpus" 2343 + version = "1.17.0" 2344 + source = "registry+https://github.com/rust-lang/crates.io-index" 2345 + checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" 2346 + dependencies = [ 2347 + "hermit-abi", 2348 + "libc", 2349 + ] 2350 + 2351 + [[package]] 2352 + name = "once_cell" 2353 + version = "1.21.3" 2354 + source = "registry+https://github.com/rust-lang/crates.io-index" 2355 + checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 2356 + 2357 + [[package]] 2358 + name = "ouroboros" 2359 + version = "0.18.5" 2360 + source = "registry+https://github.com/rust-lang/crates.io-index" 2361 + checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59" 2362 + dependencies = [ 2363 + "aliasable", 2364 + "ouroboros_macro", 2365 + "static_assertions", 2366 + ] 2367 + 2368 + [[package]] 2369 + name = "ouroboros_macro" 2370 + version = "0.18.5" 2371 + source = "registry+https://github.com/rust-lang/crates.io-index" 2372 + checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0" 2373 + dependencies = [ 2374 + "heck 0.4.1", 2375 + "proc-macro2", 2376 + "proc-macro2-diagnostics", 2377 + "quote", 2378 + "syn 2.0.111", 2379 + ] 2380 + 2381 + [[package]] 2382 + name = "p256" 2383 + version = "0.13.2" 2384 + source = "registry+https://github.com/rust-lang/crates.io-index" 2385 + checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 2386 + dependencies = [ 2387 + "ecdsa", 2388 + "elliptic-curve", 2389 + "primeorder", 2390 + "sha2", 2391 + ] 2392 + 2393 + [[package]] 2394 + name = "p384" 2395 + version = "0.13.1" 2396 + source = "registry+https://github.com/rust-lang/crates.io-index" 2397 + checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" 2398 + dependencies = [ 2399 + "elliptic-curve", 2400 + "primeorder", 2401 + ] 2402 + 2403 + [[package]] 2404 + name = "page_size" 2405 + version = "0.6.0" 2406 + source = "registry+https://github.com/rust-lang/crates.io-index" 2407 + checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da" 2408 + dependencies = [ 2409 + "libc", 2410 + "winapi", 2411 + ] 2412 + 2413 + [[package]] 2414 + name = "parking" 2415 + version = "2.2.1" 2416 + source = "registry+https://github.com/rust-lang/crates.io-index" 2417 + checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 2418 + 2419 + [[package]] 2420 + name = "parking_lot" 2421 + version = "0.12.5" 2422 + source = "registry+https://github.com/rust-lang/crates.io-index" 2423 + checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 2424 + dependencies = [ 2425 + "lock_api", 2426 + "parking_lot_core", 2427 + ] 2428 + 2429 + [[package]] 2430 + name = "parking_lot_core" 2431 + version = "0.9.12" 2432 + source = "registry+https://github.com/rust-lang/crates.io-index" 2433 + checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 2434 + dependencies = [ 2435 + "cfg-if", 2436 + "libc", 2437 + "redox_syscall", 2438 + "smallvec", 2439 + "windows-link 0.2.1", 2440 + ] 2441 + 2442 + [[package]] 2443 + name = "pem-rfc7468" 2444 + version = "0.7.0" 2445 + source = "registry+https://github.com/rust-lang/crates.io-index" 2446 + checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 2447 + dependencies = [ 2448 + "base64ct", 2449 + ] 2450 + 2451 + [[package]] 2452 + name = "percent-encoding" 2453 + version = "2.3.2" 2454 + source = "registry+https://github.com/rust-lang/crates.io-index" 2455 + checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 2456 + 2457 + [[package]] 2458 + name = "phf" 2459 + version = "0.11.3" 2460 + source = "registry+https://github.com/rust-lang/crates.io-index" 2461 + checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 2462 + dependencies = [ 2463 + "phf_shared", 2464 + ] 2465 + 2466 + [[package]] 2467 + name = "phf_codegen" 2468 + version = "0.11.3" 2469 + source = "registry+https://github.com/rust-lang/crates.io-index" 2470 + checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" 2471 + dependencies = [ 2472 + "phf_generator", 2473 + "phf_shared", 2474 + ] 2475 + 2476 + [[package]] 2477 + name = "phf_generator" 2478 + version = "0.11.3" 2479 + source = "registry+https://github.com/rust-lang/crates.io-index" 2480 + checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 2481 + dependencies = [ 2482 + "phf_shared", 2483 + "rand 0.8.5", 2484 + ] 2485 + 2486 + [[package]] 2487 + name = "phf_shared" 2488 + version = "0.11.3" 2489 + source = "registry+https://github.com/rust-lang/crates.io-index" 2490 + checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 2491 + dependencies = [ 2492 + "siphasher", 2493 + ] 2494 + 2495 + [[package]] 2496 + name = "pin-project" 2497 + version = "1.1.10" 2498 + source = "registry+https://github.com/rust-lang/crates.io-index" 2499 + checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" 2500 + dependencies = [ 2501 + "pin-project-internal", 2502 + ] 2503 + 2504 + [[package]] 2505 + name = "pin-project-internal" 2506 + version = "1.1.10" 2507 + source = "registry+https://github.com/rust-lang/crates.io-index" 2508 + checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" 2509 + dependencies = [ 2510 + "proc-macro2", 2511 + "quote", 2512 + "syn 2.0.111", 2513 + ] 2514 + 2515 + [[package]] 2516 + name = "pin-project-lite" 2517 + version = "0.2.16" 2518 + source = "registry+https://github.com/rust-lang/crates.io-index" 2519 + checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 2520 + 2521 + [[package]] 2522 + name = "pin-utils" 2523 + version = "0.1.0" 2524 + source = "registry+https://github.com/rust-lang/crates.io-index" 2525 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2526 + 2527 + [[package]] 2528 + name = "piper" 2529 + version = "0.2.4" 2530 + source = "registry+https://github.com/rust-lang/crates.io-index" 2531 + checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" 2532 + dependencies = [ 2533 + "atomic-waker", 2534 + "fastrand", 2535 + "futures-io", 2536 + ] 2537 + 2538 + [[package]] 2539 + name = "pkcs1" 2540 + version = "0.7.5" 2541 + source = "registry+https://github.com/rust-lang/crates.io-index" 2542 + checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" 2543 + dependencies = [ 2544 + "der", 2545 + "pkcs8", 2546 + "spki", 2547 + ] 2548 + 2549 + [[package]] 2550 + name = "pkcs8" 2551 + version = "0.10.2" 2552 + source = "registry+https://github.com/rust-lang/crates.io-index" 2553 + checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 2554 + dependencies = [ 2555 + "der", 2556 + "spki", 2557 + ] 2558 + 2559 + [[package]] 2560 + name = "polling" 2561 + version = "3.11.0" 2562 + source = "registry+https://github.com/rust-lang/crates.io-index" 2563 + checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" 2564 + dependencies = [ 2565 + "cfg-if", 2566 + "concurrent-queue", 2567 + "hermit-abi", 2568 + "pin-project-lite", 2569 + "rustix", 2570 + "windows-sys 0.61.2", 2571 + ] 2572 + 2573 + [[package]] 2574 + name = "postcard" 2575 + version = "1.1.3" 2576 + source = "registry+https://github.com/rust-lang/crates.io-index" 2577 + checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" 2578 + dependencies = [ 2579 + "cobs", 2580 + "embedded-io 0.4.0", 2581 + "embedded-io 0.6.1", 2582 + "heapless", 2583 + "serde", 2584 + ] 2585 + 2586 + [[package]] 2587 + name = "potential_utf" 2588 + version = "0.1.4" 2589 + source = "registry+https://github.com/rust-lang/crates.io-index" 2590 + checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" 2591 + dependencies = [ 2592 + "zerovec", 2593 + ] 2594 + 2595 + [[package]] 2596 + name = "powerfmt" 2597 + version = "0.2.0" 2598 + source = "registry+https://github.com/rust-lang/crates.io-index" 2599 + checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2600 + 2601 + [[package]] 2602 + name = "ppv-lite86" 2603 + version = "0.2.21" 2604 + source = "registry+https://github.com/rust-lang/crates.io-index" 2605 + checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 2606 + dependencies = [ 2607 + "zerocopy", 2608 + ] 2609 + 2610 + [[package]] 2611 + name = "precomputed-hash" 2612 + version = "0.1.1" 2613 + source = "registry+https://github.com/rust-lang/crates.io-index" 2614 + checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" 2615 + 2616 + [[package]] 2617 + name = "prettyplease" 2618 + version = "0.2.37" 2619 + source = "registry+https://github.com/rust-lang/crates.io-index" 2620 + checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 2621 + dependencies = [ 2622 + "proc-macro2", 2623 + "syn 2.0.111", 2624 + ] 2625 + 2626 + [[package]] 2627 + name = "primeorder" 2628 + version = "0.13.6" 2629 + source = "registry+https://github.com/rust-lang/crates.io-index" 2630 + checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 2631 + dependencies = [ 2632 + "elliptic-curve", 2633 + ] 2634 + 2635 + [[package]] 2636 + name = "proc-macro-error" 2637 + version = "1.0.4" 2638 + source = "registry+https://github.com/rust-lang/crates.io-index" 2639 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2640 + dependencies = [ 2641 + "proc-macro-error-attr", 2642 + "proc-macro2", 2643 + "quote", 2644 + "syn 1.0.109", 2645 + "version_check", 2646 + ] 2647 + 2648 + [[package]] 2649 + name = "proc-macro-error-attr" 2650 + version = "1.0.4" 2651 + source = "registry+https://github.com/rust-lang/crates.io-index" 2652 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2653 + dependencies = [ 2654 + "proc-macro2", 2655 + "quote", 2656 + "version_check", 2657 + ] 2658 + 2659 + [[package]] 2660 + name = "proc-macro2" 2661 + version = "1.0.103" 2662 + source = "registry+https://github.com/rust-lang/crates.io-index" 2663 + checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" 2664 + dependencies = [ 2665 + "unicode-ident", 2666 + ] 2667 + 2668 + [[package]] 2669 + name = "proc-macro2-diagnostics" 2670 + version = "0.10.1" 2671 + source = "registry+https://github.com/rust-lang/crates.io-index" 2672 + checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 2673 + dependencies = [ 2674 + "proc-macro2", 2675 + "quote", 2676 + "syn 2.0.111", 2677 + "version_check", 2678 + "yansi", 2679 + ] 2680 + 2681 + [[package]] 2682 + name = "quinn" 2683 + version = "0.11.9" 2684 + source = "registry+https://github.com/rust-lang/crates.io-index" 2685 + checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 2686 + dependencies = [ 2687 + "bytes", 2688 + "cfg_aliases", 2689 + "pin-project-lite", 2690 + "quinn-proto", 2691 + "quinn-udp", 2692 + "rustc-hash", 2693 + "rustls", 2694 + "socket2 0.6.1", 2695 + "thiserror 2.0.17", 2696 + "tokio", 2697 + "tracing", 2698 + "web-time", 2699 + ] 2700 + 2701 + [[package]] 2702 + name = "quinn-proto" 2703 + version = "0.11.13" 2704 + source = "registry+https://github.com/rust-lang/crates.io-index" 2705 + checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" 2706 + dependencies = [ 2707 + "bytes", 2708 + "getrandom 0.3.4", 2709 + "lru-slab", 2710 + "rand 0.9.2", 2711 + "ring", 2712 + "rustc-hash", 2713 + "rustls", 2714 + "rustls-pki-types", 2715 + "slab", 2716 + "thiserror 2.0.17", 2717 + "tinyvec", 2718 + "tracing", 2719 + "web-time", 2720 + ] 2721 + 2722 + [[package]] 2723 + name = "quinn-udp" 2724 + version = "0.5.14" 2725 + source = "registry+https://github.com/rust-lang/crates.io-index" 2726 + checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 2727 + dependencies = [ 2728 + "cfg_aliases", 2729 + "libc", 2730 + "once_cell", 2731 + "socket2 0.6.1", 2732 + "tracing", 2733 + "windows-sys 0.60.2", 2734 + ] 2735 + 2736 + [[package]] 2737 + name = "quote" 2738 + version = "1.0.42" 2739 + source = "registry+https://github.com/rust-lang/crates.io-index" 2740 + checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" 2741 + dependencies = [ 2742 + "proc-macro2", 2743 + ] 2744 + 2745 + [[package]] 2746 + name = "r-efi" 2747 + version = "5.3.0" 2748 + source = "registry+https://github.com/rust-lang/crates.io-index" 2749 + checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 2750 + 2751 + [[package]] 2752 + name = "rand" 2753 + version = "0.8.5" 2754 + source = "registry+https://github.com/rust-lang/crates.io-index" 2755 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2756 + dependencies = [ 2757 + "libc", 2758 + "rand_chacha 0.3.1", 2759 + "rand_core 0.6.4", 2760 + ] 2761 + 2762 + [[package]] 2763 + name = "rand" 2764 + version = "0.9.2" 2765 + source = "registry+https://github.com/rust-lang/crates.io-index" 2766 + checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 2767 + dependencies = [ 2768 + "rand_chacha 0.9.0", 2769 + "rand_core 0.9.3", 2770 + ] 2771 + 2772 + [[package]] 2773 + name = "rand_chacha" 2774 + version = "0.3.1" 2775 + source = "registry+https://github.com/rust-lang/crates.io-index" 2776 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2777 + dependencies = [ 2778 + "ppv-lite86", 2779 + "rand_core 0.6.4", 2780 + ] 2781 + 2782 + [[package]] 2783 + name = "rand_chacha" 2784 + version = "0.9.0" 2785 + source = "registry+https://github.com/rust-lang/crates.io-index" 2786 + checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 2787 + dependencies = [ 2788 + "ppv-lite86", 2789 + "rand_core 0.9.3", 2790 + ] 2791 + 2792 + [[package]] 2793 + name = "rand_core" 2794 + version = "0.6.4" 2795 + source = "registry+https://github.com/rust-lang/crates.io-index" 2796 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2797 + dependencies = [ 2798 + "getrandom 0.2.16", 2799 + ] 2800 + 2801 + [[package]] 2802 + name = "rand_core" 2803 + version = "0.9.3" 2804 + source = "registry+https://github.com/rust-lang/crates.io-index" 2805 + checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" 2806 + dependencies = [ 2807 + "getrandom 0.3.4", 2808 + ] 2809 + 2810 + [[package]] 2811 + name = "range-traits" 2812 + version = "0.3.2" 2813 + source = "registry+https://github.com/rust-lang/crates.io-index" 2814 + checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab" 2815 + 2816 + [[package]] 2817 + name = "redox_syscall" 2818 + version = "0.5.18" 2819 + source = "registry+https://github.com/rust-lang/crates.io-index" 2820 + checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 2821 + dependencies = [ 2822 + "bitflags", 2823 + ] 2824 + 2825 + [[package]] 2826 + name = "ref-cast" 2827 + version = "1.0.25" 2828 + source = "registry+https://github.com/rust-lang/crates.io-index" 2829 + checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" 2830 + dependencies = [ 2831 + "ref-cast-impl", 2832 + ] 2833 + 2834 + [[package]] 2835 + name = "ref-cast-impl" 2836 + version = "1.0.25" 2837 + source = "registry+https://github.com/rust-lang/crates.io-index" 2838 + checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" 2839 + dependencies = [ 2840 + "proc-macro2", 2841 + "quote", 2842 + "syn 2.0.111", 2843 + ] 2844 + 2845 + [[package]] 2846 + name = "regex" 2847 + version = "1.12.2" 2848 + source = "registry+https://github.com/rust-lang/crates.io-index" 2849 + checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" 2850 + dependencies = [ 2851 + "aho-corasick", 2852 + "memchr", 2853 + "regex-automata", 2854 + "regex-syntax", 2855 + ] 2856 + 2857 + [[package]] 2858 + name = "regex-automata" 2859 + version = "0.4.13" 2860 + source = "registry+https://github.com/rust-lang/crates.io-index" 2861 + checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" 2862 + dependencies = [ 2863 + "aho-corasick", 2864 + "memchr", 2865 + "regex-syntax", 2866 + ] 2867 + 2868 + [[package]] 2869 + name = "regex-lite" 2870 + version = "0.1.8" 2871 + source = "registry+https://github.com/rust-lang/crates.io-index" 2872 + checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da" 2873 + 2874 + [[package]] 2875 + name = "regex-syntax" 2876 + version = "0.8.8" 2877 + source = "registry+https://github.com/rust-lang/crates.io-index" 2878 + checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" 2879 + 2880 + [[package]] 2881 + name = "reqwest" 2882 + version = "0.12.25" 2883 + source = "registry+https://github.com/rust-lang/crates.io-index" 2884 + checksum = "b6eff9328d40131d43bd911d42d79eb6a47312002a4daefc9e37f17e74a7701a" 2885 + dependencies = [ 2886 + "base64", 2887 + "bytes", 2888 + "encoding_rs", 2889 + "futures-core", 2890 + "h2", 2891 + "http", 2892 + "http-body", 2893 + "http-body-util", 2894 + "hyper", 2895 + "hyper-rustls", 2896 + "hyper-util", 2897 + "js-sys", 2898 + "log", 2899 + "mime", 2900 + "percent-encoding", 2901 + "pin-project-lite", 2902 + "quinn", 2903 + "rustls", 2904 + "rustls-pki-types", 2905 + "serde", 2906 + "serde_json", 2907 + "serde_urlencoded", 2908 + "sync_wrapper", 2909 + "tokio", 2910 + "tokio-rustls", 2911 + "tower", 2912 + "tower-http", 2913 + "tower-service", 2914 + "url", 2915 + "wasm-bindgen", 2916 + "wasm-bindgen-futures", 2917 + "web-sys", 2918 + "webpki-roots", 2919 + ] 2920 + 2921 + [[package]] 2922 + name = "resolv-conf" 2923 + version = "0.7.6" 2924 + source = "registry+https://github.com/rust-lang/crates.io-index" 2925 + checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" 2926 + 2927 + [[package]] 2928 + name = "rfc6979" 2929 + version = "0.4.0" 2930 + source = "registry+https://github.com/rust-lang/crates.io-index" 2931 + checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 2932 + dependencies = [ 2933 + "hmac", 2934 + "subtle", 2935 + ] 2936 + 2937 + [[package]] 2938 + name = "ring" 2939 + version = "0.17.14" 2940 + source = "registry+https://github.com/rust-lang/crates.io-index" 2941 + checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 2942 + dependencies = [ 2943 + "cc", 2944 + "cfg-if", 2945 + "getrandom 0.2.16", 2946 + "libc", 2947 + "untrusted", 2948 + "windows-sys 0.52.0", 2949 + ] 2950 + 2951 + [[package]] 2952 + name = "rsa" 2953 + version = "0.9.9" 2954 + source = "registry+https://github.com/rust-lang/crates.io-index" 2955 + checksum = "40a0376c50d0358279d9d643e4bf7b7be212f1f4ff1da9070a7b54d22ef75c88" 2956 + dependencies = [ 2957 + "const-oid", 2958 + "digest", 2959 + "num-bigint-dig", 2960 + "num-integer", 2961 + "num-traits", 2962 + "pkcs1", 2963 + "pkcs8", 2964 + "rand_core 0.6.4", 2965 + "signature", 2966 + "spki", 2967 + "subtle", 2968 + "zeroize", 2969 + ] 2970 + 2971 + [[package]] 2972 + name = "rustc-hash" 2973 + version = "2.1.1" 2974 + source = "registry+https://github.com/rust-lang/crates.io-index" 2975 + checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" 2976 + 2977 + [[package]] 2978 + name = "rustc_version" 2979 + version = "0.4.1" 2980 + source = "registry+https://github.com/rust-lang/crates.io-index" 2981 + checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 2982 + dependencies = [ 2983 + "semver", 2984 + ] 2985 + 2986 + [[package]] 2987 + name = "rustix" 2988 + version = "1.1.2" 2989 + source = "registry+https://github.com/rust-lang/crates.io-index" 2990 + checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" 2991 + dependencies = [ 2992 + "bitflags", 2993 + "errno", 2994 + "libc", 2995 + "linux-raw-sys", 2996 + "windows-sys 0.61.2", 2997 + ] 2998 + 2999 + [[package]] 3000 + name = "rustls" 3001 + version = "0.23.35" 3002 + source = "registry+https://github.com/rust-lang/crates.io-index" 3003 + checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f" 3004 + dependencies = [ 3005 + "once_cell", 3006 + "ring", 3007 + "rustls-pki-types", 3008 + "rustls-webpki", 3009 + "subtle", 3010 + "zeroize", 3011 + ] 3012 + 3013 + [[package]] 3014 + name = "rustls-pki-types" 3015 + version = "1.13.1" 3016 + source = "registry+https://github.com/rust-lang/crates.io-index" 3017 + checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c" 3018 + dependencies = [ 3019 + "web-time", 3020 + "zeroize", 3021 + ] 3022 + 3023 + [[package]] 3024 + name = "rustls-webpki" 3025 + version = "0.103.8" 3026 + source = "registry+https://github.com/rust-lang/crates.io-index" 3027 + checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" 3028 + dependencies = [ 3029 + "ring", 3030 + "rustls-pki-types", 3031 + "untrusted", 3032 + ] 3033 + 3034 + [[package]] 3035 + name = "rustversion" 3036 + version = "1.0.22" 3037 + source = "registry+https://github.com/rust-lang/crates.io-index" 3038 + checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 3039 + 3040 + [[package]] 3041 + name = "ryu" 3042 + version = "1.0.20" 3043 + source = "registry+https://github.com/rust-lang/crates.io-index" 3044 + checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 3045 + 3046 + [[package]] 3047 + name = "scc" 3048 + version = "2.4.0" 3049 + source = "registry+https://github.com/rust-lang/crates.io-index" 3050 + checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc" 3051 + dependencies = [ 3052 + "sdd", 3053 + ] 3054 + 3055 + [[package]] 3056 + name = "schemars" 3057 + version = "0.9.0" 3058 + source = "registry+https://github.com/rust-lang/crates.io-index" 3059 + checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" 3060 + dependencies = [ 3061 + "dyn-clone", 3062 + "ref-cast", 3063 + "serde", 3064 + "serde_json", 3065 + ] 3066 + 3067 + [[package]] 3068 + name = "schemars" 3069 + version = "1.1.0" 3070 + source = "registry+https://github.com/rust-lang/crates.io-index" 3071 + checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289" 3072 + dependencies = [ 3073 + "dyn-clone", 3074 + "ref-cast", 3075 + "serde", 3076 + "serde_json", 3077 + ] 3078 + 3079 + [[package]] 3080 + name = "scoped-tls" 3081 + version = "1.0.1" 3082 + source = "registry+https://github.com/rust-lang/crates.io-index" 3083 + checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 3084 + 3085 + [[package]] 3086 + name = "scopeguard" 3087 + version = "1.2.0" 3088 + source = "registry+https://github.com/rust-lang/crates.io-index" 3089 + checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3090 + 3091 + [[package]] 3092 + name = "sdd" 3093 + version = "3.0.10" 3094 + source = "registry+https://github.com/rust-lang/crates.io-index" 3095 + checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca" 3096 + 3097 + [[package]] 3098 + name = "sec1" 3099 + version = "0.7.3" 3100 + source = "registry+https://github.com/rust-lang/crates.io-index" 3101 + checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 3102 + dependencies = [ 3103 + "base16ct", 3104 + "der", 3105 + "generic-array", 3106 + "pkcs8", 3107 + "subtle", 3108 + "zeroize", 3109 + ] 3110 + 3111 + [[package]] 3112 + name = "semver" 3113 + version = "1.0.27" 3114 + source = "registry+https://github.com/rust-lang/crates.io-index" 3115 + checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" 3116 + 3117 + [[package]] 3118 + name = "send_wrapper" 3119 + version = "0.6.0" 3120 + source = "registry+https://github.com/rust-lang/crates.io-index" 3121 + checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" 3122 + 3123 + [[package]] 3124 + name = "serde" 3125 + version = "1.0.228" 3126 + source = "registry+https://github.com/rust-lang/crates.io-index" 3127 + checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 3128 + dependencies = [ 3129 + "serde_core", 3130 + "serde_derive", 3131 + ] 3132 + 3133 + [[package]] 3134 + name = "serde_bytes" 3135 + version = "0.11.19" 3136 + source = "registry+https://github.com/rust-lang/crates.io-index" 3137 + checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 3138 + dependencies = [ 3139 + "serde", 3140 + "serde_core", 3141 + ] 3142 + 3143 + [[package]] 3144 + name = "serde_core" 3145 + version = "1.0.228" 3146 + source = "registry+https://github.com/rust-lang/crates.io-index" 3147 + checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 3148 + dependencies = [ 3149 + "serde_derive", 3150 + ] 3151 + 3152 + [[package]] 3153 + name = "serde_derive" 3154 + version = "1.0.228" 3155 + source = "registry+https://github.com/rust-lang/crates.io-index" 3156 + checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 3157 + dependencies = [ 3158 + "proc-macro2", 3159 + "quote", 3160 + "syn 2.0.111", 3161 + ] 3162 + 3163 + [[package]] 3164 + name = "serde_html_form" 3165 + version = "0.2.8" 3166 + source = "registry+https://github.com/rust-lang/crates.io-index" 3167 + checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f" 3168 + dependencies = [ 3169 + "form_urlencoded", 3170 + "indexmap 2.12.1", 3171 + "itoa", 3172 + "ryu", 3173 + "serde_core", 3174 + ] 3175 + 3176 + [[package]] 3177 + name = "serde_ipld_dagcbor" 3178 + version = "0.6.4" 3179 + source = "registry+https://github.com/rust-lang/crates.io-index" 3180 + checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778" 3181 + dependencies = [ 3182 + "cbor4ii", 3183 + "ipld-core", 3184 + "scopeguard", 3185 + "serde", 3186 + ] 3187 + 3188 + [[package]] 3189 + name = "serde_json" 3190 + version = "1.0.145" 3191 + source = "registry+https://github.com/rust-lang/crates.io-index" 3192 + checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 3193 + dependencies = [ 3194 + "itoa", 3195 + "memchr", 3196 + "ryu", 3197 + "serde", 3198 + "serde_core", 3199 + ] 3200 + 3201 + [[package]] 3202 + name = "serde_repr" 3203 + version = "0.1.20" 3204 + source = "registry+https://github.com/rust-lang/crates.io-index" 3205 + checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 3206 + dependencies = [ 3207 + "proc-macro2", 3208 + "quote", 3209 + "syn 2.0.111", 3210 + ] 3211 + 3212 + [[package]] 3213 + name = "serde_urlencoded" 3214 + version = "0.7.1" 3215 + source = "registry+https://github.com/rust-lang/crates.io-index" 3216 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3217 + dependencies = [ 3218 + "form_urlencoded", 3219 + "itoa", 3220 + "ryu", 3221 + "serde", 3222 + ] 3223 + 3224 + [[package]] 3225 + name = "serde_with" 3226 + version = "3.16.1" 3227 + source = "registry+https://github.com/rust-lang/crates.io-index" 3228 + checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" 3229 + dependencies = [ 3230 + "base64", 3231 + "chrono", 3232 + "hex", 3233 + "indexmap 1.9.3", 3234 + "indexmap 2.12.1", 3235 + "schemars 0.9.0", 3236 + "schemars 1.1.0", 3237 + "serde_core", 3238 + "serde_json", 3239 + "serde_with_macros", 3240 + "time", 3241 + ] 3242 + 3243 + [[package]] 3244 + name = "serde_with_macros" 3245 + version = "3.16.1" 3246 + source = "registry+https://github.com/rust-lang/crates.io-index" 3247 + checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" 3248 + dependencies = [ 3249 + "darling", 3250 + "proc-macro2", 3251 + "quote", 3252 + "syn 2.0.111", 3253 + ] 3254 + 3255 + [[package]] 3256 + name = "sha2" 3257 + version = "0.10.9" 3258 + source = "registry+https://github.com/rust-lang/crates.io-index" 3259 + checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 3260 + dependencies = [ 3261 + "cfg-if", 3262 + "cpufeatures", 3263 + "digest", 3264 + ] 3265 + 3266 + [[package]] 3267 + name = "sharded-slab" 3268 + version = "0.1.7" 3269 + source = "registry+https://github.com/rust-lang/crates.io-index" 3270 + checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 3271 + dependencies = [ 3272 + "lazy_static", 3273 + ] 3274 + 3275 + [[package]] 3276 + name = "shlex" 3277 + version = "1.3.0" 3278 + source = "registry+https://github.com/rust-lang/crates.io-index" 3279 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 3280 + 3281 + [[package]] 3282 + name = "signal-hook-registry" 3283 + version = "1.4.7" 3284 + source = "registry+https://github.com/rust-lang/crates.io-index" 3285 + checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad" 3286 + dependencies = [ 3287 + "libc", 3288 + ] 3289 + 3290 + [[package]] 3291 + name = "signature" 3292 + version = "2.2.0" 3293 + source = "registry+https://github.com/rust-lang/crates.io-index" 3294 + checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 3295 + dependencies = [ 3296 + "digest", 3297 + "rand_core 0.6.4", 3298 + ] 3299 + 3300 + [[package]] 3301 + name = "simd-adler32" 3302 + version = "0.3.8" 3303 + source = "registry+https://github.com/rust-lang/crates.io-index" 3304 + checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" 3305 + 3306 + [[package]] 3307 + name = "siphasher" 3308 + version = "1.0.1" 3309 + source = "registry+https://github.com/rust-lang/crates.io-index" 3310 + checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" 3311 + 3312 + [[package]] 3313 + name = "slab" 3314 + version = "0.4.11" 3315 + source = "registry+https://github.com/rust-lang/crates.io-index" 3316 + checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 3317 + 3318 + [[package]] 3319 + name = "smallvec" 3320 + version = "1.15.1" 3321 + source = "registry+https://github.com/rust-lang/crates.io-index" 3322 + checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 3323 + 3324 + [[package]] 3325 + name = "smol_str" 3326 + version = "0.3.4" 3327 + source = "registry+https://github.com/rust-lang/crates.io-index" 3328 + checksum = "3498b0a27f93ef1402f20eefacfaa1691272ac4eca1cdc8c596cb0a245d6cbf5" 3329 + dependencies = [ 3330 + "borsh", 3331 + "serde_core", 3332 + ] 3333 + 3334 + [[package]] 3335 + name = "socket2" 3336 + version = "0.5.10" 3337 + source = "registry+https://github.com/rust-lang/crates.io-index" 3338 + checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 3339 + dependencies = [ 3340 + "libc", 3341 + "windows-sys 0.52.0", 3342 + ] 3343 + 3344 + [[package]] 3345 + name = "socket2" 3346 + version = "0.6.1" 3347 + source = "registry+https://github.com/rust-lang/crates.io-index" 3348 + checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 3349 + dependencies = [ 3350 + "libc", 3351 + "windows-sys 0.60.2", 3352 + ] 3353 + 3354 + [[package]] 3355 + name = "spin" 3356 + version = "0.9.8" 3357 + source = "registry+https://github.com/rust-lang/crates.io-index" 3358 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 3359 + dependencies = [ 3360 + "lock_api", 3361 + ] 3362 + 3363 + [[package]] 3364 + name = "spin" 3365 + version = "0.10.0" 3366 + source = "registry+https://github.com/rust-lang/crates.io-index" 3367 + checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" 3368 + 3369 + [[package]] 3370 + name = "spki" 3371 + version = "0.7.3" 3372 + source = "registry+https://github.com/rust-lang/crates.io-index" 3373 + checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 3374 + dependencies = [ 3375 + "base64ct", 3376 + "der", 3377 + ] 3378 + 3379 + [[package]] 3380 + name = "stable_deref_trait" 3381 + version = "1.2.1" 3382 + source = "registry+https://github.com/rust-lang/crates.io-index" 3383 + checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 3384 + 3385 + [[package]] 3386 + name = "static-regular-grammar" 3387 + version = "2.0.2" 3388 + source = "registry+https://github.com/rust-lang/crates.io-index" 3389 + checksum = "4f4a6c40247579acfbb138c3cd7de3dab113ab4ac6227f1b7de7d626ee667957" 3390 + dependencies = [ 3391 + "abnf", 3392 + "btree-range-map", 3393 + "ciborium", 3394 + "hex_fmt", 3395 + "indoc", 3396 + "proc-macro-error", 3397 + "proc-macro2", 3398 + "quote", 3399 + "serde", 3400 + "sha2", 3401 + "syn 2.0.111", 3402 + "thiserror 1.0.69", 3403 + ] 3404 + 3405 + [[package]] 3406 + name = "static_assertions" 3407 + version = "1.1.0" 3408 + source = "registry+https://github.com/rust-lang/crates.io-index" 3409 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3410 + 3411 + [[package]] 3412 + name = "string_cache" 3413 + version = "0.8.9" 3414 + source = "registry+https://github.com/rust-lang/crates.io-index" 3415 + checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" 3416 + dependencies = [ 3417 + "new_debug_unreachable", 3418 + "parking_lot", 3419 + "phf_shared", 3420 + "precomputed-hash", 3421 + "serde", 3422 + ] 3423 + 3424 + [[package]] 3425 + name = "string_cache_codegen" 3426 + version = "0.5.4" 3427 + source = "registry+https://github.com/rust-lang/crates.io-index" 3428 + checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" 3429 + dependencies = [ 3430 + "phf_generator", 3431 + "phf_shared", 3432 + "proc-macro2", 3433 + "quote", 3434 + ] 3435 + 3436 + [[package]] 3437 + name = "strsim" 3438 + version = "0.11.1" 3439 + source = "registry+https://github.com/rust-lang/crates.io-index" 3440 + checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 3441 + 3442 + [[package]] 3443 + name = "subtle" 3444 + version = "2.6.1" 3445 + source = "registry+https://github.com/rust-lang/crates.io-index" 3446 + checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 3447 + 3448 + [[package]] 3449 + name = "syn" 3450 + version = "1.0.109" 3451 + source = "registry+https://github.com/rust-lang/crates.io-index" 3452 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3453 + dependencies = [ 3454 + "proc-macro2", 3455 + "quote", 3456 + "unicode-ident", 3457 + ] 3458 + 3459 + [[package]] 3460 + name = "syn" 3461 + version = "2.0.111" 3462 + source = "registry+https://github.com/rust-lang/crates.io-index" 3463 + checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" 3464 + dependencies = [ 3465 + "proc-macro2", 3466 + "quote", 3467 + "unicode-ident", 3468 + ] 3469 + 3470 + [[package]] 3471 + name = "sync_wrapper" 3472 + version = "1.0.2" 3473 + source = "registry+https://github.com/rust-lang/crates.io-index" 3474 + checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 3475 + dependencies = [ 3476 + "futures-core", 3477 + ] 3478 + 3479 + [[package]] 3480 + name = "synstructure" 3481 + version = "0.13.2" 3482 + source = "registry+https://github.com/rust-lang/crates.io-index" 3483 + checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 3484 + dependencies = [ 3485 + "proc-macro2", 3486 + "quote", 3487 + "syn 2.0.111", 3488 + ] 3489 + 3490 + [[package]] 3491 + name = "system-configuration" 3492 + version = "0.6.1" 3493 + source = "registry+https://github.com/rust-lang/crates.io-index" 3494 + checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" 3495 + dependencies = [ 3496 + "bitflags", 3497 + "core-foundation", 3498 + "system-configuration-sys", 3499 + ] 3500 + 3501 + [[package]] 3502 + name = "system-configuration-sys" 3503 + version = "0.6.0" 3504 + source = "registry+https://github.com/rust-lang/crates.io-index" 3505 + checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 3506 + dependencies = [ 3507 + "core-foundation-sys", 3508 + "libc", 3509 + ] 3510 + 3511 + [[package]] 3512 + name = "tagptr" 3513 + version = "0.2.0" 3514 + source = "registry+https://github.com/rust-lang/crates.io-index" 3515 + checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 3516 + 3517 + [[package]] 3518 + name = "tendril" 3519 + version = "0.4.3" 3520 + source = "registry+https://github.com/rust-lang/crates.io-index" 3521 + checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" 3522 + dependencies = [ 3523 + "futf", 3524 + "mac", 3525 + "utf-8", 3526 + ] 3527 + 3528 + [[package]] 3529 + name = "thiserror" 3530 + version = "1.0.69" 3531 + source = "registry+https://github.com/rust-lang/crates.io-index" 3532 + checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 3533 + dependencies = [ 3534 + "thiserror-impl 1.0.69", 3535 + ] 3536 + 3537 + [[package]] 3538 + name = "thiserror" 3539 + version = "2.0.17" 3540 + source = "registry+https://github.com/rust-lang/crates.io-index" 3541 + checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 3542 + dependencies = [ 3543 + "thiserror-impl 2.0.17", 3544 + ] 3545 + 3546 + [[package]] 3547 + name = "thiserror-impl" 3548 + version = "1.0.69" 3549 + source = "registry+https://github.com/rust-lang/crates.io-index" 3550 + checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 3551 + dependencies = [ 3552 + "proc-macro2", 3553 + "quote", 3554 + "syn 2.0.111", 3555 + ] 3556 + 3557 + [[package]] 3558 + name = "thiserror-impl" 3559 + version = "2.0.17" 3560 + source = "registry+https://github.com/rust-lang/crates.io-index" 3561 + checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 3562 + dependencies = [ 3563 + "proc-macro2", 3564 + "quote", 3565 + "syn 2.0.111", 3566 + ] 3567 + 3568 + [[package]] 3569 + name = "thread_local" 3570 + version = "1.1.9" 3571 + source = "registry+https://github.com/rust-lang/crates.io-index" 3572 + checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 3573 + dependencies = [ 3574 + "cfg-if", 3575 + ] 3576 + 3577 + [[package]] 3578 + name = "threadpool" 3579 + version = "1.8.1" 3580 + source = "registry+https://github.com/rust-lang/crates.io-index" 3581 + checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa" 3582 + dependencies = [ 3583 + "num_cpus", 3584 + ] 3585 + 3586 + [[package]] 3587 + name = "time" 3588 + version = "0.3.44" 3589 + source = "registry+https://github.com/rust-lang/crates.io-index" 3590 + checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" 3591 + dependencies = [ 3592 + "deranged", 3593 + "itoa", 3594 + "num-conv", 3595 + "powerfmt", 3596 + "serde", 3597 + "time-core", 3598 + "time-macros", 3599 + ] 3600 + 3601 + [[package]] 3602 + name = "time-core" 3603 + version = "0.1.6" 3604 + source = "registry+https://github.com/rust-lang/crates.io-index" 3605 + checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" 3606 + 3607 + [[package]] 3608 + name = "time-macros" 3609 + version = "0.2.24" 3610 + source = "registry+https://github.com/rust-lang/crates.io-index" 3611 + checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" 3612 + dependencies = [ 3613 + "num-conv", 3614 + "time-core", 3615 + ] 3616 + 3617 + [[package]] 3618 + name = "tinystr" 3619 + version = "0.8.2" 3620 + source = "registry+https://github.com/rust-lang/crates.io-index" 3621 + checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" 3622 + dependencies = [ 3623 + "displaydoc", 3624 + "zerovec", 3625 + ] 3626 + 3627 + [[package]] 3628 + name = "tinyvec" 3629 + version = "1.10.0" 3630 + source = "registry+https://github.com/rust-lang/crates.io-index" 3631 + checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" 3632 + dependencies = [ 3633 + "tinyvec_macros", 3634 + ] 3635 + 3636 + [[package]] 3637 + name = "tinyvec_macros" 3638 + version = "0.1.1" 3639 + source = "registry+https://github.com/rust-lang/crates.io-index" 3640 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3641 + 3642 + [[package]] 3643 + name = "tokio" 3644 + version = "1.48.0" 3645 + source = "registry+https://github.com/rust-lang/crates.io-index" 3646 + checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" 3647 + dependencies = [ 3648 + "bytes", 3649 + "libc", 3650 + "mio", 3651 + "parking_lot", 3652 + "pin-project-lite", 3653 + "signal-hook-registry", 3654 + "socket2 0.6.1", 3655 + "tokio-macros", 3656 + "windows-sys 0.61.2", 3657 + ] 3658 + 3659 + [[package]] 3660 + name = "tokio-macros" 3661 + version = "2.6.0" 3662 + source = "registry+https://github.com/rust-lang/crates.io-index" 3663 + checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 3664 + dependencies = [ 3665 + "proc-macro2", 3666 + "quote", 3667 + "syn 2.0.111", 3668 + ] 3669 + 3670 + [[package]] 3671 + name = "tokio-rustls" 3672 + version = "0.26.4" 3673 + source = "registry+https://github.com/rust-lang/crates.io-index" 3674 + checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 3675 + dependencies = [ 3676 + "rustls", 3677 + "tokio", 3678 + ] 3679 + 3680 + [[package]] 3681 + name = "tokio-util" 3682 + version = "0.7.17" 3683 + source = "registry+https://github.com/rust-lang/crates.io-index" 3684 + checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" 3685 + dependencies = [ 3686 + "bytes", 3687 + "futures-core", 3688 + "futures-sink", 3689 + "futures-util", 3690 + "pin-project-lite", 3691 + "tokio", 3692 + ] 3693 + 3694 + [[package]] 3695 + name = "tower" 3696 + version = "0.5.2" 3697 + source = "registry+https://github.com/rust-lang/crates.io-index" 3698 + checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 3699 + dependencies = [ 3700 + "futures-core", 3701 + "futures-util", 3702 + "pin-project-lite", 3703 + "sync_wrapper", 3704 + "tokio", 3705 + "tower-layer", 3706 + "tower-service", 3707 + ] 3708 + 3709 + [[package]] 3710 + name = "tower-http" 3711 + version = "0.6.8" 3712 + source = "registry+https://github.com/rust-lang/crates.io-index" 3713 + checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 3714 + dependencies = [ 3715 + "async-compression", 3716 + "bitflags", 3717 + "bytes", 3718 + "futures-core", 3719 + "futures-util", 3720 + "http", 3721 + "http-body", 3722 + "http-body-util", 3723 + "iri-string", 3724 + "pin-project-lite", 3725 + "tokio", 3726 + "tokio-util", 3727 + "tower", 3728 + "tower-layer", 3729 + "tower-service", 3730 + ] 3731 + 3732 + [[package]] 3733 + name = "tower-layer" 3734 + version = "0.3.3" 3735 + source = "registry+https://github.com/rust-lang/crates.io-index" 3736 + checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 3737 + 3738 + [[package]] 3739 + name = "tower-service" 3740 + version = "0.3.3" 3741 + source = "registry+https://github.com/rust-lang/crates.io-index" 3742 + checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 3743 + 3744 + [[package]] 3745 + name = "tracing" 3746 + version = "0.1.43" 3747 + source = "registry+https://github.com/rust-lang/crates.io-index" 3748 + checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647" 3749 + dependencies = [ 3750 + "pin-project-lite", 3751 + "tracing-attributes", 3752 + "tracing-core", 3753 + ] 3754 + 3755 + [[package]] 3756 + name = "tracing-attributes" 3757 + version = "0.1.31" 3758 + source = "registry+https://github.com/rust-lang/crates.io-index" 3759 + checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 3760 + dependencies = [ 3761 + "proc-macro2", 3762 + "quote", 3763 + "syn 2.0.111", 3764 + ] 3765 + 3766 + [[package]] 3767 + name = "tracing-core" 3768 + version = "0.1.35" 3769 + source = "registry+https://github.com/rust-lang/crates.io-index" 3770 + checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c" 3771 + dependencies = [ 3772 + "once_cell", 3773 + "valuable", 3774 + ] 3775 + 3776 + [[package]] 3777 + name = "tracing-log" 3778 + version = "0.2.0" 3779 + source = "registry+https://github.com/rust-lang/crates.io-index" 3780 + checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 3781 + dependencies = [ 3782 + "log", 3783 + "once_cell", 3784 + "tracing-core", 3785 + ] 3786 + 3787 + [[package]] 3788 + name = "tracing-subscriber" 3789 + version = "0.3.22" 3790 + source = "registry+https://github.com/rust-lang/crates.io-index" 3791 + checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" 3792 + dependencies = [ 3793 + "matchers", 3794 + "nu-ansi-term", 3795 + "once_cell", 3796 + "regex-automata", 3797 + "sharded-slab", 3798 + "smallvec", 3799 + "thread_local", 3800 + "tracing", 3801 + "tracing-core", 3802 + "tracing-log", 3803 + ] 3804 + 3805 + [[package]] 3806 + name = "trait-variant" 3807 + version = "0.1.2" 3808 + source = "registry+https://github.com/rust-lang/crates.io-index" 3809 + checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" 3810 + dependencies = [ 3811 + "proc-macro2", 3812 + "quote", 3813 + "syn 2.0.111", 3814 + ] 3815 + 3816 + [[package]] 3817 + name = "triomphe" 3818 + version = "0.1.15" 3819 + source = "registry+https://github.com/rust-lang/crates.io-index" 3820 + checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39" 3821 + 3822 + [[package]] 3823 + name = "try-lock" 3824 + version = "0.2.5" 3825 + source = "registry+https://github.com/rust-lang/crates.io-index" 3826 + checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3827 + 3828 + [[package]] 3829 + name = "typenum" 3830 + version = "1.19.0" 3831 + source = "registry+https://github.com/rust-lang/crates.io-index" 3832 + checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 3833 + 3834 + [[package]] 3835 + name = "unicode-ident" 3836 + version = "1.0.22" 3837 + source = "registry+https://github.com/rust-lang/crates.io-index" 3838 + checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 3839 + 3840 + [[package]] 3841 + name = "unicode-segmentation" 3842 + version = "1.12.0" 3843 + source = "registry+https://github.com/rust-lang/crates.io-index" 3844 + checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 3845 + 3846 + [[package]] 3847 + name = "unicode-width" 3848 + version = "0.1.14" 3849 + source = "registry+https://github.com/rust-lang/crates.io-index" 3850 + checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 3851 + 3852 + [[package]] 3853 + name = "unicode-xid" 3854 + version = "0.2.6" 3855 + source = "registry+https://github.com/rust-lang/crates.io-index" 3856 + checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 3857 + 3858 + [[package]] 3859 + name = "unsigned-varint" 3860 + version = "0.8.0" 3861 + source = "registry+https://github.com/rust-lang/crates.io-index" 3862 + checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 3863 + 3864 + [[package]] 3865 + name = "untrusted" 3866 + version = "0.9.0" 3867 + source = "registry+https://github.com/rust-lang/crates.io-index" 3868 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3869 + 3870 + [[package]] 3871 + name = "url" 3872 + version = "2.5.7" 3873 + source = "registry+https://github.com/rust-lang/crates.io-index" 3874 + checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 3875 + dependencies = [ 3876 + "form_urlencoded", 3877 + "idna", 3878 + "percent-encoding", 3879 + "serde", 3880 + ] 3881 + 3882 + [[package]] 3883 + name = "urlencoding" 3884 + version = "2.1.3" 3885 + source = "registry+https://github.com/rust-lang/crates.io-index" 3886 + checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" 3887 + 3888 + [[package]] 3889 + name = "utf-8" 3890 + version = "0.7.6" 3891 + source = "registry+https://github.com/rust-lang/crates.io-index" 3892 + checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 3893 + 3894 + [[package]] 3895 + name = "utf8_iter" 3896 + version = "1.0.4" 3897 + source = "registry+https://github.com/rust-lang/crates.io-index" 3898 + checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 3899 + 3900 + [[package]] 3901 + name = "valuable" 3902 + version = "0.1.1" 3903 + source = "registry+https://github.com/rust-lang/crates.io-index" 3904 + checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 3905 + 3906 + [[package]] 3907 + name = "value-bag" 3908 + version = "1.12.0" 3909 + source = "registry+https://github.com/rust-lang/crates.io-index" 3910 + checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0" 3911 + 3912 + [[package]] 3913 + name = "version_check" 3914 + version = "0.9.5" 3915 + source = "registry+https://github.com/rust-lang/crates.io-index" 3916 + checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 3917 + 3918 + [[package]] 3919 + name = "vfs" 3920 + version = "0.12.2" 3921 + source = "registry+https://github.com/rust-lang/crates.io-index" 3922 + checksum = "9e723b9e1c02a3cf9f9d0de6a4ddb8cdc1df859078902fe0ae0589d615711ae6" 3923 + dependencies = [ 3924 + "async-recursion", 3925 + "async-std", 3926 + "async-trait", 3927 + "filetime", 3928 + "futures", 3929 + "tokio", 3930 + ] 3931 + 3932 + [[package]] 3933 + name = "want" 3934 + version = "0.3.1" 3935 + source = "registry+https://github.com/rust-lang/crates.io-index" 3936 + checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 3937 + dependencies = [ 3938 + "try-lock", 3939 + ] 3940 + 3941 + [[package]] 3942 + name = "wasi" 3943 + version = "0.11.1+wasi-snapshot-preview1" 3944 + source = "registry+https://github.com/rust-lang/crates.io-index" 3945 + checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 3946 + 3947 + [[package]] 3948 + name = "wasip2" 3949 + version = "1.0.1+wasi-0.2.4" 3950 + source = "registry+https://github.com/rust-lang/crates.io-index" 3951 + checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 3952 + dependencies = [ 3953 + "wit-bindgen", 3954 + ] 3955 + 3956 + [[package]] 3957 + name = "wasm-bindgen" 3958 + version = "0.2.106" 3959 + source = "registry+https://github.com/rust-lang/crates.io-index" 3960 + checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" 3961 + dependencies = [ 3962 + "cfg-if", 3963 + "once_cell", 3964 + "rustversion", 3965 + "wasm-bindgen-macro", 3966 + "wasm-bindgen-shared", 3967 + ] 3968 + 3969 + [[package]] 3970 + name = "wasm-bindgen-futures" 3971 + version = "0.4.56" 3972 + source = "registry+https://github.com/rust-lang/crates.io-index" 3973 + checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" 3974 + dependencies = [ 3975 + "cfg-if", 3976 + "js-sys", 3977 + "once_cell", 3978 + "wasm-bindgen", 3979 + "web-sys", 3980 + ] 3981 + 3982 + [[package]] 3983 + name = "wasm-bindgen-macro" 3984 + version = "0.2.106" 3985 + source = "registry+https://github.com/rust-lang/crates.io-index" 3986 + checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" 3987 + dependencies = [ 3988 + "quote", 3989 + "wasm-bindgen-macro-support", 3990 + ] 3991 + 3992 + [[package]] 3993 + name = "wasm-bindgen-macro-support" 3994 + version = "0.2.106" 3995 + source = "registry+https://github.com/rust-lang/crates.io-index" 3996 + checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" 3997 + dependencies = [ 3998 + "bumpalo", 3999 + "proc-macro2", 4000 + "quote", 4001 + "syn 2.0.111", 4002 + "wasm-bindgen-shared", 4003 + ] 4004 + 4005 + [[package]] 4006 + name = "wasm-bindgen-shared" 4007 + version = "0.2.106" 4008 + source = "registry+https://github.com/rust-lang/crates.io-index" 4009 + checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" 4010 + dependencies = [ 4011 + "unicode-ident", 4012 + ] 4013 + 4014 + [[package]] 4015 + name = "web-sys" 4016 + version = "0.3.83" 4017 + source = "registry+https://github.com/rust-lang/crates.io-index" 4018 + checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" 4019 + dependencies = [ 4020 + "js-sys", 4021 + "wasm-bindgen", 4022 + ] 4023 + 4024 + [[package]] 4025 + name = "web-time" 4026 + version = "1.1.0" 4027 + source = "registry+https://github.com/rust-lang/crates.io-index" 4028 + checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 4029 + dependencies = [ 4030 + "js-sys", 4031 + "wasm-bindgen", 4032 + ] 4033 + 4034 + [[package]] 4035 + name = "webpage" 4036 + version = "2.0.1" 4037 + source = "registry+https://github.com/rust-lang/crates.io-index" 4038 + checksum = "70862efc041d46e6bbaa82bb9c34ae0596d090e86cbd14bd9e93b36ee6802eac" 4039 + dependencies = [ 4040 + "html5ever", 4041 + "markup5ever_rcdom", 4042 + "serde_json", 4043 + "url", 4044 + ] 4045 + 4046 + [[package]] 4047 + name = "webpki-roots" 4048 + version = "1.0.4" 4049 + source = "registry+https://github.com/rust-lang/crates.io-index" 4050 + checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e" 4051 + dependencies = [ 4052 + "rustls-pki-types", 4053 + ] 4054 + 4055 + [[package]] 4056 + name = "widestring" 4057 + version = "1.2.1" 4058 + source = "registry+https://github.com/rust-lang/crates.io-index" 4059 + checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" 4060 + 4061 + [[package]] 4062 + name = "winapi" 4063 + version = "0.3.9" 4064 + source = "registry+https://github.com/rust-lang/crates.io-index" 4065 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 4066 + dependencies = [ 4067 + "winapi-i686-pc-windows-gnu", 4068 + "winapi-x86_64-pc-windows-gnu", 4069 + ] 4070 + 4071 + [[package]] 4072 + name = "winapi-i686-pc-windows-gnu" 4073 + version = "0.4.0" 4074 + source = "registry+https://github.com/rust-lang/crates.io-index" 4075 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 4076 + 4077 + [[package]] 4078 + name = "winapi-x86_64-pc-windows-gnu" 4079 + version = "0.4.0" 4080 + source = "registry+https://github.com/rust-lang/crates.io-index" 4081 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 4082 + 4083 + [[package]] 4084 + name = "windows" 4085 + version = "0.61.3" 4086 + source = "registry+https://github.com/rust-lang/crates.io-index" 4087 + checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" 4088 + dependencies = [ 4089 + "windows-collections", 4090 + "windows-core 0.61.2", 4091 + "windows-future", 4092 + "windows-link 0.1.3", 4093 + "windows-numerics", 4094 + ] 4095 + 4096 + [[package]] 4097 + name = "windows-collections" 4098 + version = "0.2.0" 4099 + source = "registry+https://github.com/rust-lang/crates.io-index" 4100 + checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" 4101 + dependencies = [ 4102 + "windows-core 0.61.2", 4103 + ] 4104 + 4105 + [[package]] 4106 + name = "windows-core" 4107 + version = "0.61.2" 4108 + source = "registry+https://github.com/rust-lang/crates.io-index" 4109 + checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" 4110 + dependencies = [ 4111 + "windows-implement", 4112 + "windows-interface", 4113 + "windows-link 0.1.3", 4114 + "windows-result 0.3.4", 4115 + "windows-strings 0.4.2", 4116 + ] 4117 + 4118 + [[package]] 4119 + name = "windows-core" 4120 + version = "0.62.2" 4121 + source = "registry+https://github.com/rust-lang/crates.io-index" 4122 + checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 4123 + dependencies = [ 4124 + "windows-implement", 4125 + "windows-interface", 4126 + "windows-link 0.2.1", 4127 + "windows-result 0.4.1", 4128 + "windows-strings 0.5.1", 4129 + ] 4130 + 4131 + [[package]] 4132 + name = "windows-future" 4133 + version = "0.2.1" 4134 + source = "registry+https://github.com/rust-lang/crates.io-index" 4135 + checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" 4136 + dependencies = [ 4137 + "windows-core 0.61.2", 4138 + "windows-link 0.1.3", 4139 + "windows-threading", 4140 + ] 4141 + 4142 + [[package]] 4143 + name = "windows-implement" 4144 + version = "0.60.2" 4145 + source = "registry+https://github.com/rust-lang/crates.io-index" 4146 + checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 4147 + dependencies = [ 4148 + "proc-macro2", 4149 + "quote", 4150 + "syn 2.0.111", 4151 + ] 4152 + 4153 + [[package]] 4154 + name = "windows-interface" 4155 + version = "0.59.3" 4156 + source = "registry+https://github.com/rust-lang/crates.io-index" 4157 + checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 4158 + dependencies = [ 4159 + "proc-macro2", 4160 + "quote", 4161 + "syn 2.0.111", 4162 + ] 4163 + 4164 + [[package]] 4165 + name = "windows-link" 4166 + version = "0.1.3" 4167 + source = "registry+https://github.com/rust-lang/crates.io-index" 4168 + checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 4169 + 4170 + [[package]] 4171 + name = "windows-link" 4172 + version = "0.2.1" 4173 + source = "registry+https://github.com/rust-lang/crates.io-index" 4174 + checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 4175 + 4176 + [[package]] 4177 + name = "windows-numerics" 4178 + version = "0.2.0" 4179 + source = "registry+https://github.com/rust-lang/crates.io-index" 4180 + checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" 4181 + dependencies = [ 4182 + "windows-core 0.61.2", 4183 + "windows-link 0.1.3", 4184 + ] 4185 + 4186 + [[package]] 4187 + name = "windows-registry" 4188 + version = "0.6.1" 4189 + source = "registry+https://github.com/rust-lang/crates.io-index" 4190 + checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" 4191 + dependencies = [ 4192 + "windows-link 0.2.1", 4193 + "windows-result 0.4.1", 4194 + "windows-strings 0.5.1", 4195 + ] 4196 + 4197 + [[package]] 4198 + name = "windows-result" 4199 + version = "0.3.4" 4200 + source = "registry+https://github.com/rust-lang/crates.io-index" 4201 + checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" 4202 + dependencies = [ 4203 + "windows-link 0.1.3", 4204 + ] 4205 + 4206 + [[package]] 4207 + name = "windows-result" 4208 + version = "0.4.1" 4209 + source = "registry+https://github.com/rust-lang/crates.io-index" 4210 + checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 4211 + dependencies = [ 4212 + "windows-link 0.2.1", 4213 + ] 4214 + 4215 + [[package]] 4216 + name = "windows-strings" 4217 + version = "0.4.2" 4218 + source = "registry+https://github.com/rust-lang/crates.io-index" 4219 + checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" 4220 + dependencies = [ 4221 + "windows-link 0.1.3", 4222 + ] 4223 + 4224 + [[package]] 4225 + name = "windows-strings" 4226 + version = "0.5.1" 4227 + source = "registry+https://github.com/rust-lang/crates.io-index" 4228 + checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 4229 + dependencies = [ 4230 + "windows-link 0.2.1", 4231 + ] 4232 + 4233 + [[package]] 4234 + name = "windows-sys" 4235 + version = "0.48.0" 4236 + source = "registry+https://github.com/rust-lang/crates.io-index" 4237 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 4238 + dependencies = [ 4239 + "windows-targets 0.48.5", 4240 + ] 4241 + 4242 + [[package]] 4243 + name = "windows-sys" 4244 + version = "0.52.0" 4245 + source = "registry+https://github.com/rust-lang/crates.io-index" 4246 + checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4247 + dependencies = [ 4248 + "windows-targets 0.52.6", 4249 + ] 4250 + 4251 + [[package]] 4252 + name = "windows-sys" 4253 + version = "0.60.2" 4254 + source = "registry+https://github.com/rust-lang/crates.io-index" 4255 + checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 4256 + dependencies = [ 4257 + "windows-targets 0.53.5", 4258 + ] 4259 + 4260 + [[package]] 4261 + name = "windows-sys" 4262 + version = "0.61.2" 4263 + source = "registry+https://github.com/rust-lang/crates.io-index" 4264 + checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 4265 + dependencies = [ 4266 + "windows-link 0.2.1", 4267 + ] 4268 + 4269 + [[package]] 4270 + name = "windows-targets" 4271 + version = "0.48.5" 4272 + source = "registry+https://github.com/rust-lang/crates.io-index" 4273 + checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 4274 + dependencies = [ 4275 + "windows_aarch64_gnullvm 0.48.5", 4276 + "windows_aarch64_msvc 0.48.5", 4277 + "windows_i686_gnu 0.48.5", 4278 + "windows_i686_msvc 0.48.5", 4279 + "windows_x86_64_gnu 0.48.5", 4280 + "windows_x86_64_gnullvm 0.48.5", 4281 + "windows_x86_64_msvc 0.48.5", 4282 + ] 4283 + 4284 + [[package]] 4285 + name = "windows-targets" 4286 + version = "0.52.6" 4287 + source = "registry+https://github.com/rust-lang/crates.io-index" 4288 + checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 4289 + dependencies = [ 4290 + "windows_aarch64_gnullvm 0.52.6", 4291 + "windows_aarch64_msvc 0.52.6", 4292 + "windows_i686_gnu 0.52.6", 4293 + "windows_i686_gnullvm 0.52.6", 4294 + "windows_i686_msvc 0.52.6", 4295 + "windows_x86_64_gnu 0.52.6", 4296 + "windows_x86_64_gnullvm 0.52.6", 4297 + "windows_x86_64_msvc 0.52.6", 4298 + ] 4299 + 4300 + [[package]] 4301 + name = "windows-targets" 4302 + version = "0.53.5" 4303 + source = "registry+https://github.com/rust-lang/crates.io-index" 4304 + checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 4305 + dependencies = [ 4306 + "windows-link 0.2.1", 4307 + "windows_aarch64_gnullvm 0.53.1", 4308 + "windows_aarch64_msvc 0.53.1", 4309 + "windows_i686_gnu 0.53.1", 4310 + "windows_i686_gnullvm 0.53.1", 4311 + "windows_i686_msvc 0.53.1", 4312 + "windows_x86_64_gnu 0.53.1", 4313 + "windows_x86_64_gnullvm 0.53.1", 4314 + "windows_x86_64_msvc 0.53.1", 4315 + ] 4316 + 4317 + [[package]] 4318 + name = "windows-threading" 4319 + version = "0.1.0" 4320 + source = "registry+https://github.com/rust-lang/crates.io-index" 4321 + checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" 4322 + dependencies = [ 4323 + "windows-link 0.1.3", 4324 + ] 4325 + 4326 + [[package]] 4327 + name = "windows_aarch64_gnullvm" 4328 + version = "0.48.5" 4329 + source = "registry+https://github.com/rust-lang/crates.io-index" 4330 + checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 4331 + 4332 + [[package]] 4333 + name = "windows_aarch64_gnullvm" 4334 + version = "0.52.6" 4335 + source = "registry+https://github.com/rust-lang/crates.io-index" 4336 + checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 4337 + 4338 + [[package]] 4339 + name = "windows_aarch64_gnullvm" 4340 + version = "0.53.1" 4341 + source = "registry+https://github.com/rust-lang/crates.io-index" 4342 + checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 4343 + 4344 + [[package]] 4345 + name = "windows_aarch64_msvc" 4346 + version = "0.48.5" 4347 + source = "registry+https://github.com/rust-lang/crates.io-index" 4348 + checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 4349 + 4350 + [[package]] 4351 + name = "windows_aarch64_msvc" 4352 + version = "0.52.6" 4353 + source = "registry+https://github.com/rust-lang/crates.io-index" 4354 + checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 4355 + 4356 + [[package]] 4357 + name = "windows_aarch64_msvc" 4358 + version = "0.53.1" 4359 + source = "registry+https://github.com/rust-lang/crates.io-index" 4360 + checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 4361 + 4362 + [[package]] 4363 + name = "windows_i686_gnu" 4364 + version = "0.48.5" 4365 + source = "registry+https://github.com/rust-lang/crates.io-index" 4366 + checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 4367 + 4368 + [[package]] 4369 + name = "windows_i686_gnu" 4370 + version = "0.52.6" 4371 + source = "registry+https://github.com/rust-lang/crates.io-index" 4372 + checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 4373 + 4374 + [[package]] 4375 + name = "windows_i686_gnu" 4376 + version = "0.53.1" 4377 + source = "registry+https://github.com/rust-lang/crates.io-index" 4378 + checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 4379 + 4380 + [[package]] 4381 + name = "windows_i686_gnullvm" 4382 + version = "0.52.6" 4383 + source = "registry+https://github.com/rust-lang/crates.io-index" 4384 + checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 4385 + 4386 + [[package]] 4387 + name = "windows_i686_gnullvm" 4388 + version = "0.53.1" 4389 + source = "registry+https://github.com/rust-lang/crates.io-index" 4390 + checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 4391 + 4392 + [[package]] 4393 + name = "windows_i686_msvc" 4394 + version = "0.48.5" 4395 + source = "registry+https://github.com/rust-lang/crates.io-index" 4396 + checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 4397 + 4398 + [[package]] 4399 + name = "windows_i686_msvc" 4400 + version = "0.52.6" 4401 + source = "registry+https://github.com/rust-lang/crates.io-index" 4402 + checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 4403 + 4404 + [[package]] 4405 + name = "windows_i686_msvc" 4406 + version = "0.53.1" 4407 + source = "registry+https://github.com/rust-lang/crates.io-index" 4408 + checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 4409 + 4410 + [[package]] 4411 + name = "windows_x86_64_gnu" 4412 + version = "0.48.5" 4413 + source = "registry+https://github.com/rust-lang/crates.io-index" 4414 + checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 4415 + 4416 + [[package]] 4417 + name = "windows_x86_64_gnu" 4418 + version = "0.52.6" 4419 + source = "registry+https://github.com/rust-lang/crates.io-index" 4420 + checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 4421 + 4422 + [[package]] 4423 + name = "windows_x86_64_gnu" 4424 + version = "0.53.1" 4425 + source = "registry+https://github.com/rust-lang/crates.io-index" 4426 + checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 4427 + 4428 + [[package]] 4429 + name = "windows_x86_64_gnullvm" 4430 + version = "0.48.5" 4431 + source = "registry+https://github.com/rust-lang/crates.io-index" 4432 + checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 4433 + 4434 + [[package]] 4435 + name = "windows_x86_64_gnullvm" 4436 + version = "0.52.6" 4437 + source = "registry+https://github.com/rust-lang/crates.io-index" 4438 + checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 4439 + 4440 + [[package]] 4441 + name = "windows_x86_64_gnullvm" 4442 + version = "0.53.1" 4443 + source = "registry+https://github.com/rust-lang/crates.io-index" 4444 + checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 4445 + 4446 + [[package]] 4447 + name = "windows_x86_64_msvc" 4448 + version = "0.48.5" 4449 + source = "registry+https://github.com/rust-lang/crates.io-index" 4450 + checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 4451 + 4452 + [[package]] 4453 + name = "windows_x86_64_msvc" 4454 + version = "0.52.6" 4455 + source = "registry+https://github.com/rust-lang/crates.io-index" 4456 + checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 4457 + 4458 + [[package]] 4459 + name = "windows_x86_64_msvc" 4460 + version = "0.53.1" 4461 + source = "registry+https://github.com/rust-lang/crates.io-index" 4462 + checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 4463 + 4464 + [[package]] 4465 + name = "winreg" 4466 + version = "0.50.0" 4467 + source = "registry+https://github.com/rust-lang/crates.io-index" 4468 + checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 4469 + dependencies = [ 4470 + "cfg-if", 4471 + "windows-sys 0.48.0", 4472 + ] 4473 + 4474 + [[package]] 4475 + name = "wit-bindgen" 4476 + version = "0.46.0" 4477 + source = "registry+https://github.com/rust-lang/crates.io-index" 4478 + checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 4479 + 4480 + [[package]] 4481 + name = "writeable" 4482 + version = "0.6.2" 4483 + source = "registry+https://github.com/rust-lang/crates.io-index" 4484 + checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" 4485 + 4486 + [[package]] 4487 + name = "xml5ever" 4488 + version = "0.18.1" 4489 + source = "registry+https://github.com/rust-lang/crates.io-index" 4490 + checksum = "9bbb26405d8e919bc1547a5aa9abc95cbfa438f04844f5fdd9dc7596b748bf69" 4491 + dependencies = [ 4492 + "log", 4493 + "mac", 4494 + "markup5ever", 4495 + ] 4496 + 4497 + [[package]] 4498 + name = "yansi" 4499 + version = "1.0.1" 4500 + source = "registry+https://github.com/rust-lang/crates.io-index" 4501 + checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 4502 + 4503 + [[package]] 4504 + name = "yoke" 4505 + version = "0.8.1" 4506 + source = "registry+https://github.com/rust-lang/crates.io-index" 4507 + checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" 4508 + dependencies = [ 4509 + "stable_deref_trait", 4510 + "yoke-derive", 4511 + "zerofrom", 4512 + ] 4513 + 4514 + [[package]] 4515 + name = "yoke-derive" 4516 + version = "0.8.1" 4517 + source = "registry+https://github.com/rust-lang/crates.io-index" 4518 + checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" 4519 + dependencies = [ 4520 + "proc-macro2", 4521 + "quote", 4522 + "syn 2.0.111", 4523 + "synstructure", 4524 + ] 4525 + 4526 + [[package]] 4527 + name = "zerocopy" 4528 + version = "0.8.31" 4529 + source = "registry+https://github.com/rust-lang/crates.io-index" 4530 + checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3" 4531 + dependencies = [ 4532 + "zerocopy-derive", 4533 + ] 4534 + 4535 + [[package]] 4536 + name = "zerocopy-derive" 4537 + version = "0.8.31" 4538 + source = "registry+https://github.com/rust-lang/crates.io-index" 4539 + checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a" 4540 + dependencies = [ 4541 + "proc-macro2", 4542 + "quote", 4543 + "syn 2.0.111", 4544 + ] 4545 + 4546 + [[package]] 4547 + name = "zerofrom" 4548 + version = "0.1.6" 4549 + source = "registry+https://github.com/rust-lang/crates.io-index" 4550 + checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 4551 + dependencies = [ 4552 + "zerofrom-derive", 4553 + ] 4554 + 4555 + [[package]] 4556 + name = "zerofrom-derive" 4557 + version = "0.1.6" 4558 + source = "registry+https://github.com/rust-lang/crates.io-index" 4559 + checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 4560 + dependencies = [ 4561 + "proc-macro2", 4562 + "quote", 4563 + "syn 2.0.111", 4564 + "synstructure", 4565 + ] 4566 + 4567 + [[package]] 4568 + name = "zeroize" 4569 + version = "1.8.2" 4570 + source = "registry+https://github.com/rust-lang/crates.io-index" 4571 + checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 4572 + dependencies = [ 4573 + "serde", 4574 + ] 4575 + 4576 + [[package]] 4577 + name = "zerotrie" 4578 + version = "0.2.3" 4579 + source = "registry+https://github.com/rust-lang/crates.io-index" 4580 + checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" 4581 + dependencies = [ 4582 + "displaydoc", 4583 + "yoke", 4584 + "zerofrom", 4585 + ] 4586 + 4587 + [[package]] 4588 + name = "zerovec" 4589 + version = "0.11.5" 4590 + source = "registry+https://github.com/rust-lang/crates.io-index" 4591 + checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" 4592 + dependencies = [ 4593 + "yoke", 4594 + "zerofrom", 4595 + "zerovec-derive", 4596 + ] 4597 + 4598 + [[package]] 4599 + name = "zerovec-derive" 4600 + version = "0.11.2" 4601 + source = "registry+https://github.com/rust-lang/crates.io-index" 4602 + checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" 4603 + dependencies = [ 4604 + "proc-macro2", 4605 + "quote", 4606 + "syn 2.0.111", 4607 + ]
+21
Cargo.toml
··· 1 + [package] 2 + name = "atpfs" 3 + version = "0.1.0" 4 + edition = "2021" 5 + 6 + [dependencies] 7 + vfs = { version = "0.12", features = ["async-vfs"] } 8 + bpaf = { version = "0.9", features = ["derive"] } 9 + anyhow = "1.0" 10 + scc = "2.1" 11 + url = "2.5" 12 + tokio = { version = "1.0", features = ["full"] } 13 + futures = "0.3" 14 + async-trait = "0.1" 15 + serde = { version = "1.0", features = ["derive"] } 16 + serde_json = "1.0" 17 + jacquard = { git = "https://tangled.org/nonbinary.computer/jacquard", default-features = false, features = ["api", "cache", "dns"] } 18 + 19 + [target.'cfg(target_os = "linux")'.dependencies] 20 + easy_fuser = { version = "0.4", features = ["parallel"] } 21 + libc = "0.2"
+61
flake.lock
··· 1 + { 2 + "nodes": { 3 + "nixpkgs": { 4 + "locked": { 5 + "lastModified": 1765270179, 6 + "narHash": "sha256-g2a4MhRKu4ymR4xwo+I+auTknXt/+j37Lnf0Mvfl1rE=", 7 + "owner": "nixos", 8 + "repo": "nixpkgs", 9 + "rev": "677fbe97984e7af3175b6c121f3c39ee5c8d62c9", 10 + "type": "github" 11 + }, 12 + "original": { 13 + "owner": "nixos", 14 + "ref": "nixpkgs-unstable", 15 + "repo": "nixpkgs", 16 + "type": "github" 17 + } 18 + }, 19 + "nixpkgs-lib": { 20 + "locked": { 21 + "lastModified": 1761765539, 22 + "narHash": "sha256-b0yj6kfvO8ApcSE+QmA6mUfu8IYG6/uU28OFn4PaC8M=", 23 + "owner": "nix-community", 24 + "repo": "nixpkgs.lib", 25 + "rev": "719359f4562934ae99f5443f20aa06c2ffff91fc", 26 + "type": "github" 27 + }, 28 + "original": { 29 + "owner": "nix-community", 30 + "repo": "nixpkgs.lib", 31 + "type": "github" 32 + } 33 + }, 34 + "parts": { 35 + "inputs": { 36 + "nixpkgs-lib": "nixpkgs-lib" 37 + }, 38 + "locked": { 39 + "lastModified": 1763759067, 40 + "narHash": "sha256-LlLt2Jo/gMNYAwOgdRQBrsRoOz7BPRkzvNaI/fzXi2Q=", 41 + "owner": "hercules-ci", 42 + "repo": "flake-parts", 43 + "rev": "2cccadc7357c0ba201788ae99c4dfa90728ef5e0", 44 + "type": "github" 45 + }, 46 + "original": { 47 + "owner": "hercules-ci", 48 + "repo": "flake-parts", 49 + "type": "github" 50 + } 51 + }, 52 + "root": { 53 + "inputs": { 54 + "nixpkgs": "nixpkgs", 55 + "parts": "parts" 56 + } 57 + } 58 + }, 59 + "root": "root", 60 + "version": 7 61 + }
+21
flake.nix
··· 1 + { 2 + inputs.parts.url = "github:hercules-ci/flake-parts"; 3 + inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; 4 + 5 + outputs = inp: 6 + inp.parts.lib.mkFlake {inputs = inp;} { 7 + systems = ["x86_64-linux"]; 8 + perSystem = { 9 + pkgs, 10 + ... 11 + }: { 12 + devShells.default = pkgs.mkShell { 13 + name = "atpfs-devshell"; 14 + packages = with pkgs; [ 15 + rustc rust-analyzer cargo rustfmt 16 + wasm-pack wasm-bindgen-cli lld 17 + ]; 18 + }; 19 + }; 20 + }; 21 + }
+28
src/cli.rs
··· 1 + #[cfg(target_os = "linux")] 2 + use std::path::PathBuf; 3 + 4 + use bpaf::*; 5 + 6 + #[derive(Bpaf, Clone, Debug)] 7 + pub enum SubCommand { 8 + #[cfg(target_os = "linux")] 9 + Fuse { 10 + #[bpaf(argument("MOUNT_POINT"))] 11 + mount_point: PathBuf, 12 + }, 13 + Ls { 14 + #[bpaf(argument("PATH"))] 15 + path: String, 16 + }, 17 + } 18 + 19 + #[derive(Bpaf, Clone, Debug)] 20 + #[bpaf(options, version)] 21 + pub struct Opts { 22 + /// handle or DID 23 + #[bpaf(long, short, argument("IDENTIFIER"))] 24 + pub identifier: String, 25 + 26 + #[bpaf(external(sub_command))] 27 + pub cmd: SubCommand, 28 + }
+191
src/fuse.rs
··· 1 + use super::*; 2 + use easy_fuser::{prelude::*, templates::DefaultFuseHandler}; 3 + use futures::StreamExt; 4 + use tokio::runtime::Handle; 5 + 6 + use std::{ 7 + ffi::{OsStr, OsString}, 8 + path::PathBuf, 9 + time::UNIX_EPOCH, 10 + }; 11 + 12 + pub struct AtpFuse { 13 + pub fs: Arc<AtpFS>, 14 + pub inner: DefaultFuseHandler, 15 + pub rt: Handle, 16 + } 17 + 18 + impl AtpFuse { 19 + fn path_to_str(&self, path: &std::path::Path) -> String { 20 + // Strip leading '/' for VFS compatibility 21 + path.to_str() 22 + .unwrap_or("") 23 + .trim_start_matches('/') 24 + .to_string() 25 + } 26 + 27 + fn fileattr_for_root(&self) -> FileAttribute { 28 + FileAttribute { 29 + size: 0, 30 + blocks: 0, 31 + atime: UNIX_EPOCH, 32 + mtime: UNIX_EPOCH, 33 + ctime: UNIX_EPOCH, 34 + crtime: UNIX_EPOCH, 35 + kind: FileKind::Directory, 36 + perm: 0o755, 37 + nlink: 2, 38 + uid: 1000, 39 + gid: 1000, 40 + rdev: 0, 41 + flags: 0, 42 + blksize: 512, 43 + ttl: None, 44 + generation: None, 45 + } 46 + } 47 + 48 + fn vfs_metadata_attr(&self, vfs_path: &str) -> FuseResult<FileAttribute> { 49 + let meta = self 50 + .rt 51 + .block_on(self.fs.metadata(vfs_path)) 52 + .map_err(|_| ErrorKind::FileNotFound.to_error("Not found"))?; 53 + 54 + let (kind, perm, nlink) = match meta.file_type { 55 + VfsFileType::Directory => (FileKind::Directory, 0o755, 2), 56 + VfsFileType::File => (FileKind::RegularFile, 0o644, 1), 57 + }; 58 + 59 + Ok(FileAttribute { 60 + size: meta.len, 61 + blocks: (meta.len + 511) / 512, 62 + atime: UNIX_EPOCH, 63 + mtime: UNIX_EPOCH, 64 + ctime: UNIX_EPOCH, 65 + crtime: UNIX_EPOCH, 66 + kind, 67 + perm, 68 + nlink, 69 + uid: 1000, 70 + gid: 1000, 71 + rdev: 0, 72 + flags: 0, 73 + blksize: 512, 74 + ttl: None, 75 + generation: None, 76 + }) 77 + } 78 + } 79 + 80 + impl FuseHandler<PathBuf> for AtpFuse { 81 + fn get_inner(&self) -> &dyn FuseHandler<PathBuf> { 82 + &self.inner 83 + } 84 + 85 + fn lookup( 86 + &self, 87 + _req: &RequestInfo, 88 + parent_id: PathBuf, 89 + name: &OsStr, 90 + ) -> FuseResult<FileAttribute> { 91 + let path = parent_id.join(name); 92 + let vfs_path = self.path_to_str(&path); 93 + self.vfs_metadata_attr(&vfs_path) 94 + } 95 + 96 + fn getattr( 97 + &self, 98 + _req: &RequestInfo, 99 + file_id: PathBuf, 100 + _fh: Option<BorrowedFileHandle>, 101 + ) -> FuseResult<FileAttribute> { 102 + // Root handling 103 + if file_id.as_os_str().is_empty() || file_id == PathBuf::from("/") { 104 + return Ok(self.fileattr_for_root()); 105 + } 106 + 107 + let vfs_path = self.path_to_str(&file_id); 108 + self.vfs_metadata_attr(&vfs_path) 109 + } 110 + 111 + fn readdir( 112 + &self, 113 + _req: &RequestInfo, 114 + file_id: PathBuf, 115 + _fh: BorrowedFileHandle, 116 + ) -> FuseResult<Vec<(OsString, FileKind)>> { 117 + let vfs_path = self.path_to_str(&file_id); 118 + 119 + let mut stream = self 120 + .rt 121 + .block_on(self.fs.read_dir(&vfs_path)) 122 + .map_err(|_| ErrorKind::InputOutputError.to_error("Read dir failed"))?; 123 + 124 + let mut entries = vec![ 125 + (OsString::from("."), FileKind::Directory), 126 + (OsString::from(".."), FileKind::Directory), 127 + ]; 128 + 129 + while let Some(name) = self.rt.block_on(stream.next()) { 130 + let kind = name 131 + .ends_with(".json") 132 + .then_some(FileKind::RegularFile) 133 + .unwrap_or(FileKind::Directory); 134 + entries.push((OsString::from(name), kind)); 135 + } 136 + 137 + Ok(entries) 138 + } 139 + 140 + fn read( 141 + &self, 142 + _req: &RequestInfo, 143 + file_id: PathBuf, 144 + _fh: BorrowedFileHandle, 145 + seek: SeekFrom, 146 + size: u32, 147 + _flags: FUSEOpenFlags, 148 + _lock_owner: Option<u64>, 149 + ) -> FuseResult<Vec<u8>> { 150 + let vfs_path = self.path_to_str(&file_id); 151 + let mut reader = self 152 + .rt 153 + .block_on(self.fs.open_file(&vfs_path)) 154 + .map_err(|_| ErrorKind::FileNotFound.to_error("File not found"))?; 155 + 156 + // Only support absolute start seeks for now. 157 + let pos = match seek { 158 + SeekFrom::Start(p) => p, 159 + SeekFrom::Current(_) | SeekFrom::End(_) => { 160 + return Err(ErrorKind::InputOutputError.to_error("Unsupported seek")) 161 + } 162 + }; 163 + 164 + if size == 0 { 165 + return Ok(Vec::new()); 166 + } 167 + 168 + // Read directly into a buffer of the requested size without loading the whole file. 169 + let mut buf = vec![0u8; size as usize]; 170 + 171 + // Use the async seek/read methods on the underlying reader via the runtime. 172 + use futures::{AsyncReadExt, AsyncSeekExt}; 173 + self.rt 174 + .block_on(async { 175 + // Seek to the requested position. 176 + reader 177 + .seek(std::io::SeekFrom::Start(pos)) 178 + .await 179 + .map_err(|_| ())?; 180 + // Read up to `size` bytes into the buffer. 181 + let n = reader.read(&mut buf).await.map_err(|_| ())?; 182 + Ok::<usize, ()>(n) 183 + }) 184 + .map_err(|_| ErrorKind::InputOutputError.to_error("Read failed")) 185 + .and_then(|n| { 186 + // Truncate to actual read length and return. 187 + buf.truncate(n); 188 + Ok(buf) 189 + }) 190 + } 191 + }
+358
src/lib.rs
··· 1 + use anyhow::{anyhow, Result}; 2 + use futures::stream; 3 + use jacquard::{ 4 + api::com_atproto::repo::{describe_repo::DescribeRepo, list_records::ListRecords}, 5 + client::{credential_session::CredentialSession, Agent, BasicClient, MemorySessionStore}, 6 + identity::{resolver::IdentityResolver, slingshot_resolver_default}, 7 + types::{did::Did, nsid::Nsid, string::Handle}, 8 + xrpc::XrpcClient, 9 + }; 10 + use scc::{HashMap, HashSet}; 11 + use url::Url; 12 + use vfs::{ 13 + async_vfs::{AsyncFileSystem, SeekAndRead}, 14 + error::VfsErrorKind, 15 + VfsFileType, VfsMetadata, VfsResult, 16 + }; 17 + 18 + use std::{collections::HashMap as StdHashMap, fmt::Debug, sync::Arc}; 19 + 20 + pub mod cli; 21 + #[cfg(target_os = "linux")] 22 + pub mod fuse; 23 + 24 + pub async fn resolve_did(identifier: &str) -> Result<Did<'static>> { 25 + if let Ok(did) = Did::new_owned(identifier) { 26 + return Ok(did); 27 + } 28 + 29 + let handle = Handle::new(identifier).map_err(|e| anyhow!("invalid handle: {}", e))?; 30 + let did = slingshot_resolver_default() 31 + .resolve_handle(&handle) 32 + .await 33 + .map_err(|e| anyhow!("resolution failed: {}", e))?; 34 + 35 + Ok(did) 36 + } 37 + 38 + pub async fn resolve_pds(did: &Did<'_>) -> Result<Url> { 39 + slingshot_resolver_default() 40 + .resolve_did_doc(did) 41 + .await? 42 + .parse()? 43 + .pds_endpoint() 44 + .ok_or_else(|| anyhow!("no pds endpoint in did doc")) 45 + } 46 + 47 + #[derive(Debug)] 48 + struct CachedPage { 49 + files: StdHashMap<String, Vec<u8>>, 50 + next_cursor: Option<String>, 51 + } 52 + 53 + pub struct AtpFS { 54 + did: Did<'static>, 55 + client: BasicClient, 56 + cache: HashMap<String, Arc<CachedPage>>, 57 + root_cache: HashSet<String>, 58 + } 59 + 60 + impl Debug for AtpFS { 61 + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { 62 + f.debug_struct("AtProtoFS").field("did", &self.did).finish() 63 + } 64 + } 65 + 66 + impl AtpFS { 67 + pub async fn new(did: Did<'static>, pds: Url) -> Self { 68 + let store = MemorySessionStore::default(); 69 + let session = 70 + CredentialSession::new(Arc::new(store), Arc::new(slingshot_resolver_default())); 71 + session.set_endpoint(pds).await; 72 + Self { 73 + did, 74 + client: Agent::new(session), 75 + cache: HashMap::default(), 76 + root_cache: HashSet::default(), 77 + } 78 + } 79 + 80 + fn segments<'a, 's>(&'s self, path: &'a str) -> Vec<&'a str> { 81 + path.trim_matches('/') 82 + .split('/') 83 + .filter(|s| !s.is_empty()) 84 + .collect() 85 + } 86 + 87 + fn vfs_dir_metadata() -> VfsMetadata { 88 + VfsMetadata { 89 + file_type: VfsFileType::Directory, 90 + len: 0, 91 + created: None, 92 + modified: None, 93 + accessed: None, 94 + } 95 + } 96 + 97 + fn vfs_file_metadata(len: u64) -> VfsMetadata { 98 + VfsMetadata { 99 + file_type: VfsFileType::File, 100 + len, 101 + created: None, 102 + modified: None, 103 + accessed: None, 104 + } 105 + } 106 + 107 + async fn ensure_root_loaded(&self) -> VfsResult<String> { 108 + if self.root_cache.is_empty() { 109 + let request = DescribeRepo::new().repo(self.did.clone()).build(); 110 + 111 + let response = self 112 + .client 113 + .send(request) 114 + .await 115 + .map_err(|e| VfsErrorKind::Other(e.to_string()))?; 116 + 117 + let output = response 118 + .into_output() 119 + .map_err(|e| VfsErrorKind::Other(e.to_string()))?; 120 + 121 + for col in output.collections { 122 + let _ = self.root_cache.insert_async(col.to_string()).await; 123 + } 124 + } 125 + return Ok("".to_string()); 126 + } 127 + 128 + async fn ensure_loaded(&self, path: &str) -> VfsResult<String> { 129 + let segs = self.segments(path); 130 + 131 + if segs.is_empty() { 132 + return self.ensure_root_loaded().await; 133 + } 134 + 135 + let collection = segs[0]; 136 + if self.root_cache.is_empty() { 137 + self.ensure_root_loaded().await?; 138 + } 139 + 140 + if !self.root_cache.contains(collection) { 141 + return Err(VfsErrorKind::FileNotFound.into()); 142 + } 143 + 144 + let mut current_key = collection.to_string(); 145 + let mut parent_cursor: Option<String> = None; 146 + 147 + for (_i, segment) in segs.iter().enumerate().skip(1) { 148 + if *segment == "next" { 149 + self.fetch_page_if_missing(&current_key, parent_cursor.clone()) 150 + .await?; 151 + let next_cursor_val = self.cache.read(&current_key, |_, v| v.next_cursor.clone()); 152 + 153 + if let Some(Some(cursor)) = next_cursor_val { 154 + parent_cursor = Some(cursor); 155 + current_key = format!("{}/next", current_key); 156 + } else { 157 + return Err(VfsErrorKind::FileNotFound.into()); 158 + } 159 + } else if segment.ends_with(".json") { 160 + break; 161 + } else { 162 + return Err(VfsErrorKind::FileNotFound.into()); 163 + } 164 + } 165 + 166 + self.fetch_page_if_missing(&current_key, parent_cursor) 167 + .await?; 168 + Ok(current_key) 169 + } 170 + 171 + async fn fetch_page_if_missing(&self, key: &str, cursor: Option<String>) -> VfsResult<()> { 172 + if self.cache.contains(key) { 173 + return Ok(()); 174 + } 175 + 176 + let parts: Vec<&str> = key.split('/').collect(); 177 + let collection = parts[0]; 178 + 179 + let request = ListRecords::new() 180 + .repo(self.did.clone()) 181 + .collection(Nsid::new(collection).expect("nsid should be valid")) 182 + .limit(100) 183 + .cursor(cursor.map(Into::into)); 184 + 185 + let response = self 186 + .client 187 + .send(request.build()) 188 + .await 189 + .map_err(|e| VfsErrorKind::Other(e.to_string()))?; 190 + 191 + let output = response 192 + .into_output() 193 + .map_err(|e| VfsErrorKind::Other(e.to_string()))?; 194 + 195 + let mut files = StdHashMap::new(); 196 + for rec in output.records { 197 + if let Some(rkey) = rec.uri.rkey() { 198 + let filename = format!("{}.json", rkey.0); 199 + let content = serde_json::to_vec_pretty(&rec.value).unwrap_or_default(); 200 + files.insert(filename, content); 201 + } 202 + } 203 + 204 + let _ = self 205 + .cache 206 + .insert_async( 207 + key.to_string(), 208 + Arc::new(CachedPage { 209 + files, 210 + next_cursor: output.cursor.map(Into::into), 211 + }), 212 + ) 213 + .await; 214 + 215 + Ok(()) 216 + } 217 + } 218 + 219 + #[async_trait::async_trait] 220 + impl AsyncFileSystem for AtpFS { 221 + async fn read_dir( 222 + &self, 223 + path: &str, 224 + ) -> VfsResult<Box<dyn Unpin + futures::Stream<Item = String> + Send>> { 225 + let segs = self.segments(path); 226 + 227 + if segs.is_empty() { 228 + self.ensure_root_loaded().await?; 229 + let mut keys = Vec::new(); 230 + self.root_cache.scan(|k| keys.push(k.clone())); 231 + return Ok(Box::new(stream::iter(keys))); 232 + } 233 + 234 + let cache_key = self.ensure_loaded(path).await?; 235 + 236 + if path.ends_with(".json") { 237 + return Err(VfsErrorKind::Other("not a directory".into()).into()); 238 + } 239 + 240 + let page = self 241 + .cache 242 + .read(&cache_key, |_, v| v.clone()) 243 + .ok_or(VfsErrorKind::FileNotFound)?; 244 + 245 + let mut entries: Vec<String> = page.files.keys().cloned().collect(); 246 + if page.next_cursor.is_some() { 247 + entries.push("next".to_string()); 248 + } 249 + 250 + Ok(Box::new(stream::iter(entries))) 251 + } 252 + 253 + async fn create_dir(&self, _path: &str) -> VfsResult<()> { 254 + Err(VfsErrorKind::NotSupported.into()) 255 + } 256 + 257 + async fn open_file(&self, path: &str) -> VfsResult<Box<dyn SeekAndRead + Send + Unpin>> { 258 + let parent_path = std::path::Path::new(path) 259 + .parent() 260 + .unwrap_or(std::path::Path::new("")) 261 + .to_str() 262 + .unwrap(); 263 + let cache_key = self.ensure_loaded(parent_path).await?; 264 + let filename = path.split('/').last().ok_or(VfsErrorKind::FileNotFound)?; 265 + 266 + let content = self 267 + .cache 268 + .read(&cache_key, |_, page| page.files.get(filename).cloned()) 269 + .flatten(); 270 + 271 + if let Some(data) = content { 272 + return Ok(Box::new(futures::io::Cursor::new(data))); 273 + } 274 + 275 + Err(VfsErrorKind::FileNotFound.into()) 276 + } 277 + 278 + async fn create_file( 279 + &self, 280 + _path: &str, 281 + ) -> VfsResult<Box<dyn futures::io::AsyncWrite + Send + Unpin>> { 282 + Err(VfsErrorKind::NotSupported.into()) 283 + } 284 + 285 + async fn append_file( 286 + &self, 287 + _path: &str, 288 + ) -> VfsResult<Box<dyn futures::io::AsyncWrite + Send + Unpin>> { 289 + Err(VfsErrorKind::NotSupported.into()) 290 + } 291 + 292 + async fn metadata(&self, path: &str) -> VfsResult<VfsMetadata> { 293 + let segs = self.segments(path); 294 + if segs.is_empty() { 295 + return Ok(AtpFS::vfs_dir_metadata()); 296 + } 297 + 298 + if segs.len() == 1 { 299 + self.ensure_root_loaded().await?; 300 + if self.root_cache.contains(segs[0]) { 301 + return Ok(AtpFS::vfs_dir_metadata()); 302 + } else { 303 + return Err(VfsErrorKind::FileNotFound.into()); 304 + } 305 + } 306 + 307 + if let Some(last) = segs.last() { 308 + if *last == "next" { 309 + let parent = &path[0..path.len() - 5]; 310 + let cache_key = self.ensure_loaded(parent).await?; 311 + let has_next = self 312 + .cache 313 + .read(&cache_key, |_, v| v.next_cursor.is_some()) 314 + .unwrap_or(false); 315 + if has_next { 316 + return Ok(AtpFS::vfs_dir_metadata()); 317 + } 318 + return Err(VfsErrorKind::FileNotFound.into()); 319 + } 320 + } 321 + 322 + if path.ends_with(".json") { 323 + let parent_path = std::path::Path::new(path) 324 + .parent() 325 + .unwrap() 326 + .to_str() 327 + .unwrap(); 328 + let cache_key = self.ensure_loaded(parent_path).await?; 329 + let filename = segs.last().unwrap(); 330 + 331 + let len = self 332 + .cache 333 + .read(&cache_key, |_, page| { 334 + page.files.get(*filename).map(|f| f.len()) 335 + }) 336 + .flatten(); 337 + 338 + if let Some(l) = len { 339 + return Ok(AtpFS::vfs_file_metadata(l as u64)); 340 + } 341 + return Err(VfsErrorKind::FileNotFound.into()); 342 + } 343 + 344 + Err(VfsErrorKind::FileNotFound.into()) 345 + } 346 + 347 + async fn exists(&self, path: &str) -> VfsResult<bool> { 348 + Ok(self.metadata(path).await.is_ok()) 349 + } 350 + 351 + async fn remove_file(&self, _path: &str) -> VfsResult<()> { 352 + Err(VfsErrorKind::NotSupported.into()) 353 + } 354 + 355 + async fn remove_dir(&self, _path: &str) -> VfsResult<()> { 356 + Err(VfsErrorKind::NotSupported.into()) 357 + } 358 + }
+65
src/main.rs
··· 1 + use anyhow::Result; 2 + use atpfs::{ 3 + cli::{opts, SubCommand}, 4 + resolve_did, resolve_pds, AtpFS, 5 + }; 6 + use futures::StreamExt; 7 + use vfs::async_vfs::AsyncFileSystem; 8 + 9 + use std::sync::Arc; 10 + 11 + async fn run_app(args: Vec<String>) -> Result<()> { 12 + let opts = opts().run_inner(args.as_slice()); 13 + 14 + if let Err(err) = opts { 15 + err.print_message(80); 16 + return Ok(()); 17 + } 18 + 19 + let opts = opts.unwrap(); 20 + 21 + println!("resolving identity for: {}", opts.identifier); 22 + let did = resolve_did(&opts.identifier).await?; 23 + println!("resolved DID: {}", did); 24 + let pds = resolve_pds(&did).await?; 25 + println!("resolved PDS: {}", pds); 26 + 27 + let fs = Arc::new(AtpFS::new(did, pds).await); 28 + 29 + match opts.cmd { 30 + SubCommand::Ls { path } => { 31 + println!("Listing: {}", path); 32 + let mut stream = fs.read_dir(&path).await?; 33 + while let Some(item) = stream.next().await { 34 + println!("{}", item); 35 + } 36 + } 37 + #[cfg(target_os = "linux")] 38 + SubCommand::Fuse { mount_point } => { 39 + use atpfs::fuse::AtpFuse; 40 + use easy_fuser::{prelude::*, templates::DefaultFuseHandler}; 41 + 42 + let options = vec![MountOption::RO, MountOption::FSName("atproto".to_string())]; 43 + 44 + let rt = tokio::runtime::Handle::current(); 45 + let fuse_handler = AtpFuse { 46 + fs, 47 + inner: DefaultFuseHandler::new(), 48 + rt, 49 + }; 50 + 51 + println!("mounting at {:?}...", mount_point); 52 + tokio::task::block_in_place(|| { 53 + easy_fuser::mount(fuse_handler, mount_point, &options, 4) 54 + })?; 55 + } 56 + } 57 + 58 + Ok(()) 59 + } 60 + 61 + #[tokio::main] 62 + async fn main() -> Result<()> { 63 + let args: Vec<String> = std::env::args().skip(1).collect(); 64 + run_app(args).await 65 + }