A Wrapped / Replay like for teal.fm and rocksky.app (currently on hiatus)
3
fork

Configure Feed

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

init

Mia ee9cbd23

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