Monorepo for Tangled
0

Configure Feed

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

core / Cargo.lock
162 kB 6814 lines
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "adler2" 7version = "2.0.1" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 10 11[[package]] 12name = "ahash" 13version = "0.8.12" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 16dependencies = [ 17 "cfg-if", 18 "getrandom 0.3.4", 19 "once_cell", 20 "version_check", 21 "zerocopy", 22] 23 24[[package]] 25name = "aho-corasick" 26version = "1.1.4" 27source = "registry+https://github.com/rust-lang/crates.io-index" 28checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 29dependencies = [ 30 "memchr", 31] 32 33[[package]] 34name = "aliasable" 35version = "0.1.3" 36source = "registry+https://github.com/rust-lang/crates.io-index" 37checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" 38 39[[package]] 40name = "alloca" 41version = "0.4.0" 42source = "registry+https://github.com/rust-lang/crates.io-index" 43checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4" 44dependencies = [ 45 "cc", 46] 47 48[[package]] 49name = "allocator-api2" 50version = "0.2.21" 51source = "registry+https://github.com/rust-lang/crates.io-index" 52checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 53 54[[package]] 55name = "android_system_properties" 56version = "0.1.5" 57source = "registry+https://github.com/rust-lang/crates.io-index" 58checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 59dependencies = [ 60 "libc", 61] 62 63[[package]] 64name = "anes" 65version = "0.1.6" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 68 69[[package]] 70name = "anstream" 71version = "1.0.0" 72source = "registry+https://github.com/rust-lang/crates.io-index" 73checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" 74dependencies = [ 75 "anstyle", 76 "anstyle-parse", 77 "anstyle-query", 78 "anstyle-wincon", 79 "colorchoice", 80 "is_terminal_polyfill", 81 "utf8parse", 82] 83 84[[package]] 85name = "anstyle" 86version = "1.0.14" 87source = "registry+https://github.com/rust-lang/crates.io-index" 88checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" 89 90[[package]] 91name = "anstyle-parse" 92version = "1.0.0" 93source = "registry+https://github.com/rust-lang/crates.io-index" 94checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" 95dependencies = [ 96 "utf8parse", 97] 98 99[[package]] 100name = "anstyle-query" 101version = "1.1.5" 102source = "registry+https://github.com/rust-lang/crates.io-index" 103checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" 104dependencies = [ 105 "windows-sys 0.61.2", 106] 107 108[[package]] 109name = "anstyle-wincon" 110version = "3.0.11" 111source = "registry+https://github.com/rust-lang/crates.io-index" 112checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" 113dependencies = [ 114 "anstyle", 115 "once_cell_polyfill", 116 "windows-sys 0.61.2", 117] 118 119[[package]] 120name = "antlr4rust" 121version = "0.5.2" 122source = "registry+https://github.com/rust-lang/crates.io-index" 123checksum = "093d520274bfff7278d776f7ea12981a0a0a6f96db90964658e0f38fc6e9a6a6" 124dependencies = [ 125 "better_any", 126 "bit-set", 127 "byteorder", 128 "lazy_static", 129 "murmur3", 130 "once_cell", 131 "parking_lot", 132 "typed-arena", 133 "uuid", 134] 135 136[[package]] 137name = "anyhow" 138version = "1.0.102" 139source = "registry+https://github.com/rust-lang/crates.io-index" 140checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" 141 142[[package]] 143name = "arc-swap" 144version = "1.9.1" 145source = "registry+https://github.com/rust-lang/crates.io-index" 146checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207" 147dependencies = [ 148 "rustversion", 149] 150 151[[package]] 152name = "arrayvec" 153version = "0.7.7" 154source = "registry+https://github.com/rust-lang/crates.io-index" 155checksum = "f02882884d3e1bc524fb12c79f107f6ad0e1cfd498c536ffb494301740995dfe" 156 157[[package]] 158name = "assert-json-diff" 159version = "2.0.2" 160source = "registry+https://github.com/rust-lang/crates.io-index" 161checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12" 162dependencies = [ 163 "serde", 164 "serde_json", 165] 166 167[[package]] 168name = "async-compression" 169version = "0.4.42" 170source = "registry+https://github.com/rust-lang/crates.io-index" 171checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac" 172dependencies = [ 173 "compression-codecs", 174 "compression-core", 175 "pin-project-lite", 176 "tokio", 177] 178 179[[package]] 180name = "async-trait" 181version = "0.1.89" 182source = "registry+https://github.com/rust-lang/crates.io-index" 183checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 184dependencies = [ 185 "proc-macro2", 186 "quote", 187 "syn", 188] 189 190[[package]] 191name = "atomic-polyfill" 192version = "1.0.3" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4" 195dependencies = [ 196 "critical-section", 197] 198 199[[package]] 200name = "atomic-waker" 201version = "1.1.2" 202source = "registry+https://github.com/rust-lang/crates.io-index" 203checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 204 205[[package]] 206name = "autocfg" 207version = "1.5.1" 208source = "registry+https://github.com/rust-lang/crates.io-index" 209checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" 210 211[[package]] 212name = "axum" 213version = "0.8.9" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90" 216dependencies = [ 217 "axum-core", 218 "bytes", 219 "form_urlencoded", 220 "futures-util", 221 "http", 222 "http-body", 223 "http-body-util", 224 "hyper", 225 "hyper-util", 226 "itoa", 227 "matchit", 228 "memchr", 229 "mime", 230 "percent-encoding", 231 "pin-project-lite", 232 "serde_core", 233 "serde_json", 234 "serde_path_to_error", 235 "serde_urlencoded", 236 "sync_wrapper", 237 "tokio", 238 "tower", 239 "tower-layer", 240 "tower-service", 241 "tracing", 242] 243 244[[package]] 245name = "axum-core" 246version = "0.5.6" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1" 249dependencies = [ 250 "bytes", 251 "futures-core", 252 "http", 253 "http-body", 254 "http-body-util", 255 "mime", 256 "pin-project-lite", 257 "sync_wrapper", 258 "tower-layer", 259 "tower-service", 260 "tracing", 261] 262 263[[package]] 264name = "base-x" 265version = "0.2.11" 266source = "registry+https://github.com/rust-lang/crates.io-index" 267checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 268 269[[package]] 270name = "base16ct" 271version = "0.2.0" 272source = "registry+https://github.com/rust-lang/crates.io-index" 273checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" 274 275[[package]] 276name = "base256emoji" 277version = "1.0.2" 278source = "registry+https://github.com/rust-lang/crates.io-index" 279checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" 280dependencies = [ 281 "const-str", 282 "match-lookup", 283] 284 285[[package]] 286name = "base64" 287version = "0.22.1" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 290 291[[package]] 292name = "base64ct" 293version = "1.8.3" 294source = "registry+https://github.com/rust-lang/crates.io-index" 295checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" 296 297[[package]] 298name = "better_any" 299version = "0.2.1" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "4372b9543397a4b86050cc5e7ee36953edf4bac9518e8a774c2da694977fb6e4" 302 303[[package]] 304name = "bit-set" 305version = "0.8.0" 306source = "registry+https://github.com/rust-lang/crates.io-index" 307checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" 308dependencies = [ 309 "bit-vec", 310] 311 312[[package]] 313name = "bit-vec" 314version = "0.8.0" 315source = "registry+https://github.com/rust-lang/crates.io-index" 316checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" 317 318[[package]] 319name = "bitflags" 320version = "1.3.2" 321source = "registry+https://github.com/rust-lang/crates.io-index" 322checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 323 324[[package]] 325name = "bitflags" 326version = "2.11.1" 327source = "registry+https://github.com/rust-lang/crates.io-index" 328checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3" 329 330[[package]] 331name = "bitpacking" 332version = "0.9.3" 333source = "registry+https://github.com/rust-lang/crates.io-index" 334checksum = "96a7139abd3d9cebf8cd6f920a389cf3dc9576172e32f4563f188cae3c3eb019" 335dependencies = [ 336 "crunchy", 337] 338 339[[package]] 340name = "block-buffer" 341version = "0.10.4" 342source = "registry+https://github.com/rust-lang/crates.io-index" 343checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 344dependencies = [ 345 "generic-array", 346] 347 348[[package]] 349name = "block-buffer" 350version = "0.12.1" 351source = "registry+https://github.com/rust-lang/crates.io-index" 352checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa" 353dependencies = [ 354 "hybrid-array", 355] 356 357[[package]] 358name = "bobbin" 359version = "0.0.1" 360dependencies = [ 361 "anyhow", 362 "axum", 363 "bobbin-edge-index", 364 "bobbin-ingest", 365 "bobbin-knot-ingest", 366 "bobbin-knot-proxy", 367 "bobbin-record-lru", 368 "bobbin-runtime", 369 "bobbin-search", 370 "bobbin-slingshot-client", 371 "bobbin-xrpc", 372 "clap", 373 "confique", 374 "futures", 375 "serde", 376 "socket2", 377 "thiserror 2.0.18", 378 "tikv-jemalloc-ctl", 379 "tikv-jemallocator", 380 "tokio", 381 "tokio-util", 382 "toml", 383 "tracing", 384 "tracing-subscriber", 385 "url", 386] 387 388[[package]] 389name = "bobbin-edge-index" 390version = "0.0.1" 391dependencies = [ 392 "bobbin-runtime", 393 "bobbin-types", 394 "either", 395 "jacquard-common", 396 "lasso", 397 "scc", 398 "smallvec", 399 "thiserror 2.0.18", 400 "tokio", 401] 402 403[[package]] 404name = "bobbin-ingest" 405version = "0.0.1" 406dependencies = [ 407 "bobbin-edge-index", 408 "bobbin-knot-ingest", 409 "bobbin-record-lru", 410 "bobbin-resolver", 411 "bobbin-runtime", 412 "bobbin-slingshot-client", 413 "bobbin-types", 414 "bytes", 415 "chrono", 416 "criterion", 417 "futures", 418 "jacquard-common", 419 "scc", 420 "serde", 421 "serde_json", 422 "thiserror 2.0.18", 423 "tokio", 424 "tokio-stream", 425 "tokio-util", 426 "tracing", 427 "tracing-subscriber", 428 "url", 429 "wiremock", 430] 431 432[[package]] 433name = "bobbin-knot-ingest" 434version = "0.0.1" 435dependencies = [ 436 "bobbin-edge-index", 437 "bobbin-knot-proxy", 438 "bobbin-runtime", 439 "bobbin-types", 440 "bytes", 441 "chrono", 442 "futures", 443 "http", 444 "jacquard-common", 445 "reqwest", 446 "serde", 447 "serde_json", 448 "thiserror 2.0.18", 449 "tokio", 450 "tokio-util", 451 "tracing", 452 "url", 453 "wiremock", 454] 455 456[[package]] 457name = "bobbin-knot-proxy" 458version = "0.0.1" 459dependencies = [ 460 "bobbin-runtime", 461 "bytes", 462 "futures", 463 "http", 464 "jacquard-common", 465 "reqwest", 466 "scc", 467 "thiserror 2.0.18", 468 "tokio", 469 "url", 470 "wiremock", 471] 472 473[[package]] 474name = "bobbin-record-lru" 475version = "0.0.1" 476dependencies = [ 477 "bobbin-types", 478 "bytes", 479 "jacquard-common", 480 "quick_cache", 481 "zstd", 482] 483 484[[package]] 485name = "bobbin-resolver" 486version = "0.0.1" 487dependencies = [ 488 "bobbin-runtime", 489 "bobbin-slingshot-client", 490 "bobbin-types", 491 "jacquard-common", 492 "scc", 493 "serde_json", 494 "tokio", 495 "tracing", 496 "url", 497 "wiremock", 498] 499 500[[package]] 501name = "bobbin-runtime" 502version = "0.0.1" 503dependencies = [ 504 "ahash", 505 "bytes", 506 "futures", 507 "getrandom 0.3.4", 508 "http", 509 "reqwest", 510 "thiserror 2.0.18", 511 "tokio", 512 "tokio-tungstenite 0.29.0", 513 "url", 514] 515 516[[package]] 517name = "bobbin-search" 518version = "0.0.1" 519dependencies = [ 520 "bobbin-runtime", 521 "bobbin-types", 522 "jacquard-common", 523 "tantivy", 524 "thiserror 2.0.18", 525 "tokio", 526 "tracing", 527] 528 529[[package]] 530name = "bobbin-sim" 531version = "0.0.1" 532dependencies = [ 533 "bobbin-edge-index", 534 "bobbin-ingest", 535 "bobbin-record-lru", 536 "bobbin-runtime", 537 "bobbin-search", 538 "bobbin-slingshot-client", 539 "bobbin-types", 540 "bytes", 541 "clap", 542 "futures", 543 "http", 544 "jacquard-common", 545 "serde", 546 "serde_json", 547 "thiserror 2.0.18", 548 "tokio", 549 "tokio-util", 550 "tracing", 551 "tracing-subscriber", 552 "url", 553] 554 555[[package]] 556name = "bobbin-slingshot-client" 557version = "0.0.1" 558dependencies = [ 559 "bobbin-runtime", 560 "bobbin-types", 561 "bytes", 562 "cid", 563 "futures", 564 "http", 565 "jacquard-common", 566 "reqwest", 567 "serde", 568 "serde_json", 569 "thiserror 2.0.18", 570 "tokio", 571 "url", 572 "wiremock", 573] 574 575[[package]] 576name = "bobbin-types" 577version = "0.0.1" 578dependencies = [ 579 "anyhow", 580 "bytes", 581 "chrono", 582 "cid", 583 "jacquard-common", 584 "jacquard-derive", 585 "jacquard-lexicon", 586 "miette", 587 "serde", 588 "serde_json", 589 "thiserror 2.0.18", 590 "walkdir", 591] 592 593[[package]] 594name = "bobbin-xrpc" 595version = "0.0.1" 596dependencies = [ 597 "axum", 598 "bobbin-edge-index", 599 "bobbin-knot-proxy", 600 "bobbin-record-lru", 601 "bobbin-resolver", 602 "bobbin-runtime", 603 "bobbin-search", 604 "bobbin-slingshot-client", 605 "bobbin-types", 606 "chrono", 607 "futures", 608 "http", 609 "jacquard-common", 610 "serde", 611 "serde_json", 612 "thiserror 2.0.18", 613 "tokio", 614 "tower", 615 "tower-http", 616 "tracing", 617 "url", 618 "wiremock", 619] 620 621[[package]] 622name = "bon" 623version = "3.9.1" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "f47dbe92550676ee653353c310dfb9cf6ba17ee70396e1f7cf0a2020ad49b2fe" 626dependencies = [ 627 "bon-macros", 628 "rustversion", 629] 630 631[[package]] 632name = "bon-macros" 633version = "3.9.1" 634source = "registry+https://github.com/rust-lang/crates.io-index" 635checksum = "519bd3116aeeb42d5372c29d982d16d0170d3d4a5ed85fc7dd91642ffff3c67c" 636dependencies = [ 637 "darling", 638 "ident_case", 639 "prettyplease", 640 "proc-macro2", 641 "quote", 642 "rustversion", 643 "syn", 644] 645 646[[package]] 647name = "borrow-or-share" 648version = "0.2.4" 649source = "registry+https://github.com/rust-lang/crates.io-index" 650checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c" 651 652[[package]] 653name = "borsh" 654version = "1.6.1" 655source = "registry+https://github.com/rust-lang/crates.io-index" 656checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a" 657dependencies = [ 658 "bytes", 659 "cfg_aliases", 660] 661 662[[package]] 663name = "bs58" 664version = "0.5.1" 665source = "registry+https://github.com/rust-lang/crates.io-index" 666checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" 667dependencies = [ 668 "tinyvec", 669] 670 671[[package]] 672name = "bstr" 673version = "1.12.3" 674source = "registry+https://github.com/rust-lang/crates.io-index" 675checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79" 676dependencies = [ 677 "memchr", 678 "regex-automata", 679 "serde_core", 680] 681 682[[package]] 683name = "bumpalo" 684version = "3.20.3" 685source = "registry+https://github.com/rust-lang/crates.io-index" 686checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" 687 688[[package]] 689name = "byteorder" 690version = "1.5.0" 691source = "registry+https://github.com/rust-lang/crates.io-index" 692checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 693 694[[package]] 695name = "bytes" 696version = "1.11.1" 697source = "registry+https://github.com/rust-lang/crates.io-index" 698checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" 699dependencies = [ 700 "serde", 701] 702 703[[package]] 704name = "bytesize" 705version = "2.4.0" 706source = "registry+https://github.com/rust-lang/crates.io-index" 707checksum = "49e78e506b9d7633710dab98996f22f95f3d0f488e8f1aa162830556ed9fc14d" 708 709[[package]] 710name = "cast" 711version = "0.3.0" 712source = "registry+https://github.com/rust-lang/crates.io-index" 713checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 714 715[[package]] 716name = "cbor4ii" 717version = "0.2.14" 718source = "registry+https://github.com/rust-lang/crates.io-index" 719checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 720dependencies = [ 721 "serde", 722] 723 724[[package]] 725name = "cc" 726version = "1.2.62" 727source = "registry+https://github.com/rust-lang/crates.io-index" 728checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98" 729dependencies = [ 730 "find-msvc-tools", 731 "jobserver", 732 "libc", 733 "shlex", 734] 735 736[[package]] 737name = "cel" 738version = "0.12.0" 739source = "registry+https://github.com/rust-lang/crates.io-index" 740checksum = "ca1e5eda1b0f8476181bed1bfc9232a91d62ff0b9f1bc0e48afff3cbcb5b0b5c" 741dependencies = [ 742 "antlr4rust", 743 "base64", 744 "chrono", 745 "lazy_static", 746 "nom", 747 "paste", 748 "regex", 749 "serde", 750 "serde_json", 751 "thiserror 1.0.69", 752] 753 754[[package]] 755name = "census" 756version = "0.4.2" 757source = "registry+https://github.com/rust-lang/crates.io-index" 758checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0" 759 760[[package]] 761name = "cfg-if" 762version = "1.0.4" 763source = "registry+https://github.com/rust-lang/crates.io-index" 764checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 765 766[[package]] 767name = "cfg_aliases" 768version = "0.2.1" 769source = "registry+https://github.com/rust-lang/crates.io-index" 770checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 771 772[[package]] 773name = "chrono" 774version = "0.4.44" 775source = "registry+https://github.com/rust-lang/crates.io-index" 776checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" 777dependencies = [ 778 "iana-time-zone", 779 "js-sys", 780 "num-traits", 781 "serde", 782 "wasm-bindgen", 783 "windows-link", 784] 785 786[[package]] 787name = "ciborium" 788version = "0.2.2" 789source = "registry+https://github.com/rust-lang/crates.io-index" 790checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" 791dependencies = [ 792 "ciborium-io", 793 "ciborium-ll", 794 "serde", 795] 796 797[[package]] 798name = "ciborium-io" 799version = "0.2.2" 800source = "registry+https://github.com/rust-lang/crates.io-index" 801checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" 802 803[[package]] 804name = "ciborium-ll" 805version = "0.2.2" 806source = "registry+https://github.com/rust-lang/crates.io-index" 807checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" 808dependencies = [ 809 "ciborium-io", 810 "half", 811] 812 813[[package]] 814name = "cid" 815version = "0.11.3" 816source = "registry+https://github.com/rust-lang/crates.io-index" 817checksum = "21a304f95f84d169a6f31c4d0a30d784643aaa0bbc9c1e449a2c23e963ec4971" 818dependencies = [ 819 "multibase", 820 "multihash", 821 "serde", 822 "serde_bytes", 823 "unsigned-varint", 824] 825 826[[package]] 827name = "clap" 828version = "4.6.1" 829source = "registry+https://github.com/rust-lang/crates.io-index" 830checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51" 831dependencies = [ 832 "clap_builder", 833 "clap_derive", 834] 835 836[[package]] 837name = "clap_builder" 838version = "4.6.0" 839source = "registry+https://github.com/rust-lang/crates.io-index" 840checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" 841dependencies = [ 842 "anstream", 843 "anstyle", 844 "clap_lex", 845 "strsim", 846] 847 848[[package]] 849name = "clap_derive" 850version = "4.6.1" 851source = "registry+https://github.com/rust-lang/crates.io-index" 852checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9" 853dependencies = [ 854 "heck 0.5.0", 855 "proc-macro2", 856 "quote", 857 "syn", 858] 859 860[[package]] 861name = "clap_lex" 862version = "1.1.0" 863source = "registry+https://github.com/rust-lang/crates.io-index" 864checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" 865 866[[package]] 867name = "clru" 868version = "0.6.3" 869source = "registry+https://github.com/rust-lang/crates.io-index" 870checksum = "197fd99cb113a8d5d9b6376f3aa817f32c1078f2343b714fff7d2ca44fdf67d5" 871dependencies = [ 872 "hashbrown 0.16.1", 873] 874 875[[package]] 876name = "cobs" 877version = "0.3.0" 878source = "registry+https://github.com/rust-lang/crates.io-index" 879checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" 880dependencies = [ 881 "thiserror 2.0.18", 882] 883 884[[package]] 885name = "colorchoice" 886version = "1.0.5" 887source = "registry+https://github.com/rust-lang/crates.io-index" 888checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" 889 890[[package]] 891name = "compression-codecs" 892version = "0.4.38" 893source = "registry+https://github.com/rust-lang/crates.io-index" 894checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf" 895dependencies = [ 896 "compression-core", 897 "flate2", 898 "memchr", 899] 900 901[[package]] 902name = "compression-core" 903version = "0.4.32" 904source = "registry+https://github.com/rust-lang/crates.io-index" 905checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789" 906 907[[package]] 908name = "confique" 909version = "0.4.0" 910source = "registry+https://github.com/rust-lang/crates.io-index" 911checksum = "06b4f5ec222421e22bb0a8cbaa36b1d2b50fd45cdd30c915ded34108da78b29f" 912dependencies = [ 913 "confique-macro", 914 "serde", 915 "toml", 916] 917 918[[package]] 919name = "confique-macro" 920version = "0.0.13" 921source = "registry+https://github.com/rust-lang/crates.io-index" 922checksum = "e4d1754680cd218e7bcb4c960cc9bae3444b5197d64563dccccfdf83cab9e1a7" 923dependencies = [ 924 "heck 0.5.0", 925 "proc-macro2", 926 "quote", 927 "syn", 928] 929 930[[package]] 931name = "const-oid" 932version = "0.9.6" 933source = "registry+https://github.com/rust-lang/crates.io-index" 934checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" 935 936[[package]] 937name = "const-str" 938version = "0.4.3" 939source = "registry+https://github.com/rust-lang/crates.io-index" 940checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" 941 942[[package]] 943name = "cordyceps" 944version = "0.3.4" 945source = "registry+https://github.com/rust-lang/crates.io-index" 946checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a" 947dependencies = [ 948 "loom", 949 "tracing", 950] 951 952[[package]] 953name = "core-foundation" 954version = "0.9.4" 955source = "registry+https://github.com/rust-lang/crates.io-index" 956checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 957dependencies = [ 958 "core-foundation-sys", 959 "libc", 960] 961 962[[package]] 963name = "core-foundation" 964version = "0.10.1" 965source = "registry+https://github.com/rust-lang/crates.io-index" 966checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 967dependencies = [ 968 "core-foundation-sys", 969 "libc", 970] 971 972[[package]] 973name = "core-foundation-sys" 974version = "0.8.7" 975source = "registry+https://github.com/rust-lang/crates.io-index" 976checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 977 978[[package]] 979name = "cpufeatures" 980version = "0.2.17" 981source = "registry+https://github.com/rust-lang/crates.io-index" 982checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 983dependencies = [ 984 "libc", 985] 986 987[[package]] 988name = "cpufeatures" 989version = "0.3.0" 990source = "registry+https://github.com/rust-lang/crates.io-index" 991checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" 992dependencies = [ 993 "libc", 994] 995 996[[package]] 997name = "crc32fast" 998version = "1.5.0" 999source = "registry+https://github.com/rust-lang/crates.io-index" 1000checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 1001dependencies = [ 1002 "cfg-if", 1003] 1004 1005[[package]] 1006name = "criterion" 1007version = "0.8.2" 1008source = "registry+https://github.com/rust-lang/crates.io-index" 1009checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3" 1010dependencies = [ 1011 "alloca", 1012 "anes", 1013 "cast", 1014 "ciborium", 1015 "clap", 1016 "criterion-plot", 1017 "itertools 0.13.0", 1018 "num-traits", 1019 "oorandom", 1020 "page_size", 1021 "regex", 1022 "serde", 1023 "serde_json", 1024 "tinytemplate", 1025 "walkdir", 1026] 1027 1028[[package]] 1029name = "criterion-plot" 1030version = "0.8.2" 1031source = "registry+https://github.com/rust-lang/crates.io-index" 1032checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea" 1033dependencies = [ 1034 "cast", 1035 "itertools 0.13.0", 1036] 1037 1038[[package]] 1039name = "critical-section" 1040version = "1.2.0" 1041source = "registry+https://github.com/rust-lang/crates.io-index" 1042checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 1043 1044[[package]] 1045name = "crossbeam-channel" 1046version = "0.5.15" 1047source = "registry+https://github.com/rust-lang/crates.io-index" 1048checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 1049dependencies = [ 1050 "crossbeam-utils", 1051] 1052 1053[[package]] 1054name = "crossbeam-deque" 1055version = "0.8.6" 1056source = "registry+https://github.com/rust-lang/crates.io-index" 1057checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" 1058dependencies = [ 1059 "crossbeam-epoch", 1060 "crossbeam-utils", 1061] 1062 1063[[package]] 1064name = "crossbeam-epoch" 1065version = "0.9.18" 1066source = "registry+https://github.com/rust-lang/crates.io-index" 1067checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" 1068dependencies = [ 1069 "crossbeam-utils", 1070] 1071 1072[[package]] 1073name = "crossbeam-utils" 1074version = "0.8.21" 1075source = "registry+https://github.com/rust-lang/crates.io-index" 1076checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 1077 1078[[package]] 1079name = "crunchy" 1080version = "0.2.4" 1081source = "registry+https://github.com/rust-lang/crates.io-index" 1082checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" 1083 1084[[package]] 1085name = "crypto-bigint" 1086version = "0.5.5" 1087source = "registry+https://github.com/rust-lang/crates.io-index" 1088checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" 1089dependencies = [ 1090 "generic-array", 1091 "rand_core 0.6.4", 1092 "subtle", 1093 "zeroize", 1094] 1095 1096[[package]] 1097name = "crypto-common" 1098version = "0.1.6" 1099source = "registry+https://github.com/rust-lang/crates.io-index" 1100checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1101dependencies = [ 1102 "generic-array", 1103 "typenum", 1104] 1105 1106[[package]] 1107name = "crypto-common" 1108version = "0.2.2" 1109source = "registry+https://github.com/rust-lang/crates.io-index" 1110checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453" 1111dependencies = [ 1112 "hybrid-array", 1113] 1114 1115[[package]] 1116name = "darling" 1117version = "0.23.0" 1118source = "registry+https://github.com/rust-lang/crates.io-index" 1119checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" 1120dependencies = [ 1121 "darling_core", 1122 "darling_macro", 1123] 1124 1125[[package]] 1126name = "darling_core" 1127version = "0.23.0" 1128source = "registry+https://github.com/rust-lang/crates.io-index" 1129checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" 1130dependencies = [ 1131 "ident_case", 1132 "proc-macro2", 1133 "quote", 1134 "strsim", 1135 "syn", 1136] 1137 1138[[package]] 1139name = "darling_macro" 1140version = "0.23.0" 1141source = "registry+https://github.com/rust-lang/crates.io-index" 1142checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" 1143dependencies = [ 1144 "darling_core", 1145 "quote", 1146 "syn", 1147] 1148 1149[[package]] 1150name = "dashmap" 1151version = "6.2.1" 1152source = "registry+https://github.com/rust-lang/crates.io-index" 1153checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c" 1154dependencies = [ 1155 "cfg-if", 1156 "crossbeam-utils", 1157 "hashbrown 0.14.5", 1158 "lock_api", 1159 "once_cell", 1160 "parking_lot_core", 1161] 1162 1163[[package]] 1164name = "data-encoding" 1165version = "2.11.0" 1166source = "registry+https://github.com/rust-lang/crates.io-index" 1167checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8" 1168 1169[[package]] 1170name = "data-encoding-macro" 1171version = "0.1.20" 1172source = "registry+https://github.com/rust-lang/crates.io-index" 1173checksum = "3259c913752a86488b501ed8680446a5ed2d5aeac6e596cb23ba3800768ea32c" 1174dependencies = [ 1175 "data-encoding", 1176 "data-encoding-macro-internal", 1177] 1178 1179[[package]] 1180name = "data-encoding-macro-internal" 1181version = "0.1.18" 1182source = "registry+https://github.com/rust-lang/crates.io-index" 1183checksum = "ccc2776f0c61eca1ca32528f85548abd1a4be8fb53d1b21c013e4f18da1e7090" 1184dependencies = [ 1185 "data-encoding", 1186 "syn", 1187] 1188 1189[[package]] 1190name = "datasketches" 1191version = "0.2.0" 1192source = "registry+https://github.com/rust-lang/crates.io-index" 1193checksum = "c286de4e81ea2590afc24d754e0f83810c566f50a1388fa75ebd57928c0d9745" 1194 1195[[package]] 1196name = "deadpool" 1197version = "0.12.3" 1198source = "registry+https://github.com/rust-lang/crates.io-index" 1199checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b" 1200dependencies = [ 1201 "deadpool-runtime", 1202 "lazy_static", 1203 "num_cpus", 1204 "tokio", 1205] 1206 1207[[package]] 1208name = "deadpool-runtime" 1209version = "0.1.4" 1210source = "registry+https://github.com/rust-lang/crates.io-index" 1211checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b" 1212 1213[[package]] 1214name = "defmt" 1215version = "1.1.0" 1216source = "registry+https://github.com/rust-lang/crates.io-index" 1217checksum = "a6e524506490a1953d237cb87b1cfc1e46f88c18f10a22dfe0f507dc6bfc7f7f" 1218dependencies = [ 1219 "bitflags 1.3.2", 1220 "defmt-macros", 1221] 1222 1223[[package]] 1224name = "defmt-macros" 1225version = "1.1.0" 1226source = "registry+https://github.com/rust-lang/crates.io-index" 1227checksum = "f0a27770e9c8f719a79d8b638281f4d828f77d8fd61e0bd94451b9b85e576a0b" 1228dependencies = [ 1229 "defmt-parser", 1230 "proc-macro-error2", 1231 "proc-macro2", 1232 "quote", 1233 "syn", 1234] 1235 1236[[package]] 1237name = "defmt-parser" 1238version = "1.0.0" 1239source = "registry+https://github.com/rust-lang/crates.io-index" 1240checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e" 1241dependencies = [ 1242 "thiserror 2.0.18", 1243] 1244 1245[[package]] 1246name = "der" 1247version = "0.7.10" 1248source = "registry+https://github.com/rust-lang/crates.io-index" 1249checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" 1250dependencies = [ 1251 "const-oid", 1252 "pem-rfc7468", 1253 "zeroize", 1254] 1255 1256[[package]] 1257name = "deranged" 1258version = "0.5.8" 1259source = "registry+https://github.com/rust-lang/crates.io-index" 1260checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" 1261dependencies = [ 1262 "powerfmt", 1263 "serde_core", 1264] 1265 1266[[package]] 1267name = "derive_more" 1268version = "1.0.0" 1269source = "registry+https://github.com/rust-lang/crates.io-index" 1270checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" 1271dependencies = [ 1272 "derive_more-impl", 1273] 1274 1275[[package]] 1276name = "derive_more-impl" 1277version = "1.0.0" 1278source = "registry+https://github.com/rust-lang/crates.io-index" 1279checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" 1280dependencies = [ 1281 "proc-macro2", 1282 "quote", 1283 "syn", 1284 "unicode-xid", 1285] 1286 1287[[package]] 1288name = "diatomic-waker" 1289version = "0.2.3" 1290source = "registry+https://github.com/rust-lang/crates.io-index" 1291checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c" 1292 1293[[package]] 1294name = "digest" 1295version = "0.10.7" 1296source = "registry+https://github.com/rust-lang/crates.io-index" 1297checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1298dependencies = [ 1299 "block-buffer 0.10.4", 1300 "const-oid", 1301 "crypto-common 0.1.6", 1302 "subtle", 1303] 1304 1305[[package]] 1306name = "digest" 1307version = "0.11.3" 1308source = "registry+https://github.com/rust-lang/crates.io-index" 1309checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" 1310dependencies = [ 1311 "block-buffer 0.12.1", 1312 "crypto-common 0.2.2", 1313] 1314 1315[[package]] 1316name = "displaydoc" 1317version = "0.2.6" 1318source = "registry+https://github.com/rust-lang/crates.io-index" 1319checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f" 1320dependencies = [ 1321 "proc-macro2", 1322 "quote", 1323 "syn", 1324] 1325 1326[[package]] 1327name = "downcast-rs" 1328version = "2.0.2" 1329source = "registry+https://github.com/rust-lang/crates.io-index" 1330checksum = "117240f60069e65410b3ae1bb213295bd828f707b5bec6596a1afc8793ce0cbc" 1331 1332[[package]] 1333name = "dunce" 1334version = "1.0.5" 1335source = "registry+https://github.com/rust-lang/crates.io-index" 1336checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 1337 1338[[package]] 1339name = "ecdsa" 1340version = "0.16.9" 1341source = "registry+https://github.com/rust-lang/crates.io-index" 1342checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" 1343dependencies = [ 1344 "der", 1345 "digest 0.10.7", 1346 "elliptic-curve", 1347 "rfc6979", 1348 "signature", 1349 "spki", 1350] 1351 1352[[package]] 1353name = "either" 1354version = "1.16.0" 1355source = "registry+https://github.com/rust-lang/crates.io-index" 1356checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e" 1357 1358[[package]] 1359name = "elliptic-curve" 1360version = "0.13.8" 1361source = "registry+https://github.com/rust-lang/crates.io-index" 1362checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" 1363dependencies = [ 1364 "base16ct", 1365 "crypto-bigint", 1366 "digest 0.10.7", 1367 "ff", 1368 "generic-array", 1369 "group", 1370 "pem-rfc7468", 1371 "pkcs8", 1372 "rand_core 0.6.4", 1373 "sec1", 1374 "subtle", 1375 "zeroize", 1376] 1377 1378[[package]] 1379name = "embedded-io" 1380version = "0.4.0" 1381source = "registry+https://github.com/rust-lang/crates.io-index" 1382checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 1383 1384[[package]] 1385name = "embedded-io" 1386version = "0.6.1" 1387source = "registry+https://github.com/rust-lang/crates.io-index" 1388checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" 1389 1390[[package]] 1391name = "encoding_rs" 1392version = "0.8.35" 1393source = "registry+https://github.com/rust-lang/crates.io-index" 1394checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 1395dependencies = [ 1396 "cfg-if", 1397] 1398 1399[[package]] 1400name = "equivalent" 1401version = "1.0.2" 1402source = "registry+https://github.com/rust-lang/crates.io-index" 1403checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 1404 1405[[package]] 1406name = "erased-serde" 1407version = "0.4.10" 1408source = "registry+https://github.com/rust-lang/crates.io-index" 1409checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec" 1410dependencies = [ 1411 "serde", 1412 "serde_core", 1413 "typeid", 1414] 1415 1416[[package]] 1417name = "errno" 1418version = "0.3.14" 1419source = "registry+https://github.com/rust-lang/crates.io-index" 1420checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 1421dependencies = [ 1422 "libc", 1423 "windows-sys 0.61.2", 1424] 1425 1426[[package]] 1427name = "fastdivide" 1428version = "0.4.2" 1429source = "registry+https://github.com/rust-lang/crates.io-index" 1430checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471" 1431 1432[[package]] 1433name = "faster-hex" 1434version = "0.10.0" 1435source = "registry+https://github.com/rust-lang/crates.io-index" 1436checksum = "7223ae2d2f179b803433d9c830478527e92b8117eab39460edae7f1614d9fb73" 1437dependencies = [ 1438 "heapless 0.8.0", 1439 "serde", 1440] 1441 1442[[package]] 1443name = "fastrand" 1444version = "2.4.1" 1445source = "registry+https://github.com/rust-lang/crates.io-index" 1446checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" 1447 1448[[package]] 1449name = "ff" 1450version = "0.13.1" 1451source = "registry+https://github.com/rust-lang/crates.io-index" 1452checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" 1453dependencies = [ 1454 "rand_core 0.6.4", 1455 "subtle", 1456] 1457 1458[[package]] 1459name = "filetime" 1460version = "0.2.29" 1461source = "registry+https://github.com/rust-lang/crates.io-index" 1462checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759" 1463dependencies = [ 1464 "cfg-if", 1465 "libc", 1466] 1467 1468[[package]] 1469name = "find-msvc-tools" 1470version = "0.1.9" 1471source = "registry+https://github.com/rust-lang/crates.io-index" 1472checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" 1473 1474[[package]] 1475name = "fixedbitset" 1476version = "0.5.7" 1477source = "registry+https://github.com/rust-lang/crates.io-index" 1478checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" 1479 1480[[package]] 1481name = "flate2" 1482version = "1.1.9" 1483source = "registry+https://github.com/rust-lang/crates.io-index" 1484checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" 1485dependencies = [ 1486 "crc32fast", 1487 "miniz_oxide", 1488] 1489 1490[[package]] 1491name = "fluent-uri" 1492version = "0.4.1" 1493source = "registry+https://github.com/rust-lang/crates.io-index" 1494checksum = "bc74ac4d8359ae70623506d512209619e5cf8f347124910440dbc221714b328e" 1495dependencies = [ 1496 "borrow-or-share", 1497 "ref-cast", 1498 "serde", 1499] 1500 1501[[package]] 1502name = "fnv" 1503version = "1.0.7" 1504source = "registry+https://github.com/rust-lang/crates.io-index" 1505checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1506 1507[[package]] 1508name = "foldhash" 1509version = "0.1.5" 1510source = "registry+https://github.com/rust-lang/crates.io-index" 1511checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 1512 1513[[package]] 1514name = "foldhash" 1515version = "0.2.0" 1516source = "registry+https://github.com/rust-lang/crates.io-index" 1517checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" 1518 1519[[package]] 1520name = "form_urlencoded" 1521version = "1.2.2" 1522source = "registry+https://github.com/rust-lang/crates.io-index" 1523checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 1524dependencies = [ 1525 "percent-encoding", 1526] 1527 1528[[package]] 1529name = "fs4" 1530version = "0.13.1" 1531source = "registry+https://github.com/rust-lang/crates.io-index" 1532checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4" 1533dependencies = [ 1534 "rustix", 1535 "windows-sys 0.59.0", 1536] 1537 1538[[package]] 1539name = "futures" 1540version = "0.3.32" 1541source = "registry+https://github.com/rust-lang/crates.io-index" 1542checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" 1543dependencies = [ 1544 "futures-channel", 1545 "futures-core", 1546 "futures-executor", 1547 "futures-io", 1548 "futures-sink", 1549 "futures-task", 1550 "futures-util", 1551] 1552 1553[[package]] 1554name = "futures-buffered" 1555version = "0.2.13" 1556source = "registry+https://github.com/rust-lang/crates.io-index" 1557checksum = "4421cb78ee172b6b06080093479d3c50f058e7c81b7d577bbb8d118d551d4cd5" 1558dependencies = [ 1559 "cordyceps", 1560 "diatomic-waker", 1561 "futures-core", 1562 "pin-project-lite", 1563 "spin 0.10.0", 1564] 1565 1566[[package]] 1567name = "futures-channel" 1568version = "0.3.32" 1569source = "registry+https://github.com/rust-lang/crates.io-index" 1570checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" 1571dependencies = [ 1572 "futures-core", 1573 "futures-sink", 1574] 1575 1576[[package]] 1577name = "futures-core" 1578version = "0.3.32" 1579source = "registry+https://github.com/rust-lang/crates.io-index" 1580checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" 1581 1582[[package]] 1583name = "futures-executor" 1584version = "0.3.32" 1585source = "registry+https://github.com/rust-lang/crates.io-index" 1586checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" 1587dependencies = [ 1588 "futures-core", 1589 "futures-task", 1590 "futures-util", 1591] 1592 1593[[package]] 1594name = "futures-io" 1595version = "0.3.32" 1596source = "registry+https://github.com/rust-lang/crates.io-index" 1597checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" 1598 1599[[package]] 1600name = "futures-lite" 1601version = "2.6.1" 1602source = "registry+https://github.com/rust-lang/crates.io-index" 1603checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 1604dependencies = [ 1605 "fastrand", 1606 "futures-core", 1607 "futures-io", 1608 "parking", 1609 "pin-project-lite", 1610] 1611 1612[[package]] 1613name = "futures-macro" 1614version = "0.3.32" 1615source = "registry+https://github.com/rust-lang/crates.io-index" 1616checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" 1617dependencies = [ 1618 "proc-macro2", 1619 "quote", 1620 "syn", 1621] 1622 1623[[package]] 1624name = "futures-sink" 1625version = "0.3.32" 1626source = "registry+https://github.com/rust-lang/crates.io-index" 1627checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" 1628 1629[[package]] 1630name = "futures-task" 1631version = "0.3.32" 1632source = "registry+https://github.com/rust-lang/crates.io-index" 1633checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" 1634 1635[[package]] 1636name = "futures-util" 1637version = "0.3.32" 1638source = "registry+https://github.com/rust-lang/crates.io-index" 1639checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" 1640dependencies = [ 1641 "futures-channel", 1642 "futures-core", 1643 "futures-io", 1644 "futures-macro", 1645 "futures-sink", 1646 "futures-task", 1647 "memchr", 1648 "pin-project-lite", 1649 "slab", 1650] 1651 1652[[package]] 1653name = "generator" 1654version = "0.8.8" 1655source = "registry+https://github.com/rust-lang/crates.io-index" 1656checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9" 1657dependencies = [ 1658 "cc", 1659 "cfg-if", 1660 "libc", 1661 "log", 1662 "rustversion", 1663 "windows-link", 1664 "windows-result", 1665] 1666 1667[[package]] 1668name = "generic-array" 1669version = "0.14.9" 1670source = "registry+https://github.com/rust-lang/crates.io-index" 1671checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2" 1672dependencies = [ 1673 "typenum", 1674 "version_check", 1675 "zeroize", 1676] 1677 1678[[package]] 1679name = "getrandom" 1680version = "0.2.17" 1681source = "registry+https://github.com/rust-lang/crates.io-index" 1682checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 1683dependencies = [ 1684 "cfg-if", 1685 "js-sys", 1686 "libc", 1687 "wasi", 1688 "wasm-bindgen", 1689] 1690 1691[[package]] 1692name = "getrandom" 1693version = "0.3.4" 1694source = "registry+https://github.com/rust-lang/crates.io-index" 1695checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 1696dependencies = [ 1697 "cfg-if", 1698 "js-sys", 1699 "libc", 1700 "r-efi 5.3.0", 1701 "wasip2", 1702 "wasm-bindgen", 1703] 1704 1705[[package]] 1706name = "getrandom" 1707version = "0.4.2" 1708source = "registry+https://github.com/rust-lang/crates.io-index" 1709checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" 1710dependencies = [ 1711 "cfg-if", 1712 "libc", 1713 "r-efi 6.0.0", 1714 "wasip2", 1715 "wasip3", 1716] 1717 1718[[package]] 1719name = "gitmirror" 1720version = "0.1.0" 1721dependencies = [ 1722 "anyhow", 1723 "clap", 1724 "gix", 1725 "line-numbers", 1726 "prost", 1727 "prost-types", 1728 "rustc-hash", 1729 "tempfile", 1730 "tokio", 1731 "tokio-stream", 1732 "tonic", 1733 "tonic-prost", 1734 "tonic-prost-build", 1735 "tracing", 1736 "tracing-subscriber", 1737] 1738 1739[[package]] 1740name = "gix" 1741version = "0.84.0" 1742source = "registry+https://github.com/rust-lang/crates.io-index" 1743checksum = "ae54ae0ebd1a5a3c3f8d95dd3b5ca6e63f4fed9bfd585e13801a97d7bde8f9ce" 1744dependencies = [ 1745 "gix-actor", 1746 "gix-archive", 1747 "gix-attributes", 1748 "gix-blame", 1749 "gix-command", 1750 "gix-commitgraph", 1751 "gix-config", 1752 "gix-credentials", 1753 "gix-date", 1754 "gix-diff", 1755 "gix-dir", 1756 "gix-discover", 1757 "gix-error", 1758 "gix-features", 1759 "gix-filter", 1760 "gix-fs", 1761 "gix-glob", 1762 "gix-hash", 1763 "gix-hashtable", 1764 "gix-ignore", 1765 "gix-index", 1766 "gix-lock", 1767 "gix-mailmap", 1768 "gix-merge", 1769 "gix-negotiate", 1770 "gix-object", 1771 "gix-odb", 1772 "gix-pack", 1773 "gix-path", 1774 "gix-pathspec", 1775 "gix-prompt", 1776 "gix-protocol", 1777 "gix-ref", 1778 "gix-refspec", 1779 "gix-revision", 1780 "gix-revwalk", 1781 "gix-sec", 1782 "gix-shallow", 1783 "gix-status", 1784 "gix-submodule", 1785 "gix-tempfile", 1786 "gix-trace", 1787 "gix-traverse", 1788 "gix-url", 1789 "gix-utils", 1790 "gix-validate", 1791 "gix-worktree", 1792 "gix-worktree-state", 1793 "gix-worktree-stream", 1794 "nonempty", 1795 "parking_lot", 1796 "regex", 1797 "signal-hook", 1798 "smallvec", 1799 "thiserror 2.0.18", 1800] 1801 1802[[package]] 1803name = "gix-actor" 1804version = "0.41.1" 1805source = "registry+https://github.com/rust-lang/crates.io-index" 1806checksum = "8bc998b8f746dda8565450d08a63b792ced9165d8c27a1ed3f02799ec6a7820f" 1807dependencies = [ 1808 "bstr", 1809 "gix-date", 1810 "gix-error", 1811] 1812 1813[[package]] 1814name = "gix-archive" 1815version = "0.33.0" 1816source = "registry+https://github.com/rust-lang/crates.io-index" 1817checksum = "16909cacc78936ab96f6c3be08379d0a2e88bfa3a7527972d2ed75c7517ef31e" 1818dependencies = [ 1819 "bstr", 1820 "gix-date", 1821 "gix-error", 1822 "gix-object", 1823 "gix-worktree-stream", 1824] 1825 1826[[package]] 1827name = "gix-attributes" 1828version = "0.33.2" 1829source = "registry+https://github.com/rust-lang/crates.io-index" 1830checksum = "39b40888d0ed415c0744a6cdc61eebf0304c9d26ab726725b718443c322e5ba4" 1831dependencies = [ 1832 "bstr", 1833 "gix-glob", 1834 "gix-path", 1835 "gix-quote", 1836 "gix-trace", 1837 "kstring", 1838 "smallvec", 1839 "thiserror 2.0.18", 1840 "unicode-bom", 1841] 1842 1843[[package]] 1844name = "gix-bitmap" 1845version = "0.3.2" 1846source = "registry+https://github.com/rust-lang/crates.io-index" 1847checksum = "52ebef0c26ad305747649e727bbcd56a7b7910754eb7cea88f6dff6f93c51283" 1848dependencies = [ 1849 "gix-error", 1850] 1851 1852[[package]] 1853name = "gix-blame" 1854version = "0.14.0" 1855source = "registry+https://github.com/rust-lang/crates.io-index" 1856checksum = "4d39a0c14af94c2edaa5eefe06d5ef2cdea55316ae9a9321314288e3f55fa4c0" 1857dependencies = [ 1858 "gix-commitgraph", 1859 "gix-date", 1860 "gix-diff", 1861 "gix-error", 1862 "gix-hash", 1863 "gix-object", 1864 "gix-revwalk", 1865 "gix-trace", 1866 "gix-traverse", 1867 "gix-worktree", 1868 "smallvec", 1869 "thiserror 2.0.18", 1870] 1871 1872[[package]] 1873name = "gix-chunk" 1874version = "0.7.2" 1875source = "registry+https://github.com/rust-lang/crates.io-index" 1876checksum = "9faee47943b638e58ddd5e275a4906ad3e4b6c8584f1d41bd18ab9032ec52afb" 1877dependencies = [ 1878 "gix-error", 1879] 1880 1881[[package]] 1882name = "gix-command" 1883version = "0.9.1" 1884source = "registry+https://github.com/rust-lang/crates.io-index" 1885checksum = "00706d4fef135ef4b01680d5218c6ee40cda8baf697b864296cbc887d19118f6" 1886dependencies = [ 1887 "bstr", 1888 "gix-path", 1889 "gix-quote", 1890 "gix-trace", 1891 "shell-words", 1892] 1893 1894[[package]] 1895name = "gix-commitgraph" 1896version = "0.37.1" 1897source = "registry+https://github.com/rust-lang/crates.io-index" 1898checksum = "7f675d0df484a7f6a47e64bd6f311af489d947c0323b0564f36d14f3d7762abb" 1899dependencies = [ 1900 "bstr", 1901 "gix-chunk", 1902 "gix-error", 1903 "gix-hash", 1904 "memmap2", 1905 "nonempty", 1906] 1907 1908[[package]] 1909name = "gix-config" 1910version = "0.57.0" 1911source = "registry+https://github.com/rust-lang/crates.io-index" 1912checksum = "4f2372d4b49ca28431e7d150cab9d25edc1890f0184bd57eb0e917c7799e63de" 1913dependencies = [ 1914 "bstr", 1915 "gix-config-value", 1916 "gix-features", 1917 "gix-glob", 1918 "gix-path", 1919 "gix-ref", 1920 "gix-sec", 1921 "smallvec", 1922 "thiserror 2.0.18", 1923 "unicode-bom", 1924] 1925 1926[[package]] 1927name = "gix-config-value" 1928version = "0.18.1" 1929source = "registry+https://github.com/rust-lang/crates.io-index" 1930checksum = "ed42168329552f6c2e5df09665c104199d45d84bedb53683738a49b57fe1baab" 1931dependencies = [ 1932 "bitflags 2.11.1", 1933 "bstr", 1934 "gix-path", 1935 "libc", 1936 "thiserror 2.0.18", 1937] 1938 1939[[package]] 1940name = "gix-credentials" 1941version = "0.38.1" 1942source = "registry+https://github.com/rust-lang/crates.io-index" 1943checksum = "f40cd22f0dd71988be12d6e78b1709de2370e1957c5f107ff31e56caeba3745d" 1944dependencies = [ 1945 "bstr", 1946 "gix-command", 1947 "gix-config-value", 1948 "gix-date", 1949 "gix-path", 1950 "gix-prompt", 1951 "gix-sec", 1952 "gix-trace", 1953 "gix-url", 1954 "thiserror 2.0.18", 1955] 1956 1957[[package]] 1958name = "gix-date" 1959version = "0.15.5" 1960source = "registry+https://github.com/rust-lang/crates.io-index" 1961checksum = "3d63f9e28b59ddeb1a1eb9e5cf986a9222b5d484947445edbc20473939cc7fd0" 1962dependencies = [ 1963 "bstr", 1964 "gix-error", 1965 "itoa", 1966 "jiff", 1967] 1968 1969[[package]] 1970name = "gix-diff" 1971version = "0.64.0" 1972source = "registry+https://github.com/rust-lang/crates.io-index" 1973checksum = "3b6d9528f32d94cef2edf39a1ac01fe5a0fc44ddbb18d9e44099936047c3302b" 1974dependencies = [ 1975 "bstr", 1976 "gix-attributes", 1977 "gix-command", 1978 "gix-filter", 1979 "gix-fs", 1980 "gix-hash", 1981 "gix-imara-diff", 1982 "gix-index", 1983 "gix-object", 1984 "gix-path", 1985 "gix-pathspec", 1986 "gix-tempfile", 1987 "gix-trace", 1988 "gix-traverse", 1989 "gix-worktree", 1990 "thiserror 2.0.18", 1991] 1992 1993[[package]] 1994name = "gix-dir" 1995version = "0.26.0" 1996source = "registry+https://github.com/rust-lang/crates.io-index" 1997checksum = "21bb2a53a6fd917ec499ed0bfb5b6887de7a15bd79197dcea7c987938749a9f1" 1998dependencies = [ 1999 "bstr", 2000 "gix-discover", 2001 "gix-fs", 2002 "gix-ignore", 2003 "gix-index", 2004 "gix-object", 2005 "gix-path", 2006 "gix-pathspec", 2007 "gix-trace", 2008 "gix-utils", 2009 "gix-worktree", 2010 "thiserror 2.0.18", 2011] 2012 2013[[package]] 2014name = "gix-discover" 2015version = "0.52.0" 2016source = "registry+https://github.com/rust-lang/crates.io-index" 2017checksum = "77bacdd12b7879d2178a80c58c2f319995e4654e1a7a23e3181e5c8a12b824f7" 2018dependencies = [ 2019 "bstr", 2020 "dunce", 2021 "gix-fs", 2022 "gix-path", 2023 "gix-ref", 2024 "gix-sec", 2025 "thiserror 2.0.18", 2026] 2027 2028[[package]] 2029name = "gix-error" 2030version = "0.2.4" 2031source = "registry+https://github.com/rust-lang/crates.io-index" 2032checksum = "e57831e199be480af90dcd7e459abed8a174c09ec9a6e2cc8f7ca6c54598b06b" 2033dependencies = [ 2034 "bstr", 2035] 2036 2037[[package]] 2038name = "gix-features" 2039version = "0.48.1" 2040source = "registry+https://github.com/rust-lang/crates.io-index" 2041checksum = "1849ae154d38bc403185be14fa871e38e3c93ee606875d94e207fdb9fba52dbc" 2042dependencies = [ 2043 "bytes", 2044 "bytesize", 2045 "crc32fast", 2046 "crossbeam-channel", 2047 "gix-path", 2048 "gix-trace", 2049 "gix-utils", 2050 "libc", 2051 "once_cell", 2052 "parking_lot", 2053 "prodash", 2054 "thiserror 2.0.18", 2055 "walkdir", 2056 "zlib-rs", 2057] 2058 2059[[package]] 2060name = "gix-filter" 2061version = "0.31.0" 2062source = "registry+https://github.com/rust-lang/crates.io-index" 2063checksum = "ecf74b7d16f6694ce4a3049074c41be0c7987105743674f1671807bd6dce09fa" 2064dependencies = [ 2065 "bstr", 2066 "encoding_rs", 2067 "gix-attributes", 2068 "gix-command", 2069 "gix-hash", 2070 "gix-object", 2071 "gix-packetline", 2072 "gix-path", 2073 "gix-quote", 2074 "gix-trace", 2075 "gix-utils", 2076 "smallvec", 2077 "thiserror 2.0.18", 2078] 2079 2080[[package]] 2081name = "gix-fs" 2082version = "0.21.2" 2083source = "registry+https://github.com/rust-lang/crates.io-index" 2084checksum = "6cdff46db8798e47e2f727d84b9379aac5add3dd3d9d0b07bb4d7d5d640771fe" 2085dependencies = [ 2086 "bstr", 2087 "fastrand", 2088 "gix-features", 2089 "gix-path", 2090 "gix-utils", 2091 "thiserror 2.0.18", 2092] 2093 2094[[package]] 2095name = "gix-glob" 2096version = "0.26.1" 2097source = "registry+https://github.com/rust-lang/crates.io-index" 2098checksum = "d1fcb8ef5b16bcf874abe9b68d8abb3c0493c876d367ab824151f30a0f3f3756" 2099dependencies = [ 2100 "bitflags 2.11.1", 2101 "bstr", 2102 "gix-features", 2103 "gix-path", 2104] 2105 2106[[package]] 2107name = "gix-hash" 2108version = "0.25.1" 2109source = "registry+https://github.com/rust-lang/crates.io-index" 2110checksum = "cb0926d3819c837750b4e03c7754901e73f68b8c9b690753a6372a1bed4eedce" 2111dependencies = [ 2112 "faster-hex", 2113 "gix-features", 2114 "sha1-checked", 2115 "sha2 0.11.0", 2116 "thiserror 2.0.18", 2117] 2118 2119[[package]] 2120name = "gix-hashtable" 2121version = "0.15.2" 2122source = "registry+https://github.com/rust-lang/crates.io-index" 2123checksum = "7e261d54091f0d1c729bc83f54548c071bdec60a697de1e58e88bdfd7a99d24e" 2124dependencies = [ 2125 "gix-hash", 2126 "hashbrown 0.17.1", 2127 "parking_lot", 2128] 2129 2130[[package]] 2131name = "gix-ignore" 2132version = "0.21.1" 2133source = "registry+https://github.com/rust-lang/crates.io-index" 2134checksum = "d491bab9bf2c9f341dc754f425c31d5d3f63aca615312167b82e1deeaca97d8d" 2135dependencies = [ 2136 "bstr", 2137 "gix-glob", 2138 "gix-path", 2139 "gix-trace", 2140 "unicode-bom", 2141] 2142 2143[[package]] 2144name = "gix-imara-diff" 2145version = "0.2.3" 2146source = "registry+https://github.com/rust-lang/crates.io-index" 2147checksum = "b305d85504de270ad3525d726a6b69cc59ee7b2269b014387651107ab9f0755b" 2148dependencies = [ 2149 "bstr", 2150 "hashbrown 0.17.1", 2151] 2152 2153[[package]] 2154name = "gix-index" 2155version = "0.52.0" 2156source = "registry+https://github.com/rust-lang/crates.io-index" 2157checksum = "4e6b28cc592dc753adb58302bb14a64e412ee591a3bec77aa4df87bff74fa80d" 2158dependencies = [ 2159 "bitflags 2.11.1", 2160 "bstr", 2161 "filetime", 2162 "fnv", 2163 "gix-bitmap", 2164 "gix-features", 2165 "gix-fs", 2166 "gix-hash", 2167 "gix-lock", 2168 "gix-object", 2169 "gix-traverse", 2170 "gix-utils", 2171 "gix-validate", 2172 "hashbrown 0.17.1", 2173 "itoa", 2174 "libc", 2175 "memmap2", 2176 "rustix", 2177 "smallvec", 2178 "thiserror 2.0.18", 2179] 2180 2181[[package]] 2182name = "gix-lock" 2183version = "23.0.1" 2184source = "registry+https://github.com/rust-lang/crates.io-index" 2185checksum = "65c9dedd9e90b0d47624d2ed241d394e09294118364e87b9b7e5f1fe755f3c2c" 2186dependencies = [ 2187 "gix-tempfile", 2188 "gix-utils", 2189 "thiserror 2.0.18", 2190] 2191 2192[[package]] 2193name = "gix-mailmap" 2194version = "0.33.1" 2195source = "registry+https://github.com/rust-lang/crates.io-index" 2196checksum = "195fd20808055824531be2fd0d34136d900e5fbca3ffb0a3c07e8beeefb9c828" 2197dependencies = [ 2198 "bstr", 2199 "gix-actor", 2200 "gix-date", 2201 "gix-error", 2202] 2203 2204[[package]] 2205name = "gix-merge" 2206version = "0.17.0" 2207source = "registry+https://github.com/rust-lang/crates.io-index" 2208checksum = "7543e1eceb25fbbd1a29459c794148d8bafc1c77555eb386617a2d99b5371971" 2209dependencies = [ 2210 "bstr", 2211 "gix-command", 2212 "gix-diff", 2213 "gix-filter", 2214 "gix-fs", 2215 "gix-hash", 2216 "gix-imara-diff", 2217 "gix-index", 2218 "gix-object", 2219 "gix-path", 2220 "gix-quote", 2221 "gix-revision", 2222 "gix-revwalk", 2223 "gix-tempfile", 2224 "gix-trace", 2225 "gix-worktree", 2226 "nonempty", 2227 "thiserror 2.0.18", 2228] 2229 2230[[package]] 2231name = "gix-negotiate" 2232version = "0.32.0" 2233source = "registry+https://github.com/rust-lang/crates.io-index" 2234checksum = "890c936a215bae25818c076cb881cb2e54d2c66ba947ba58b8dd47cff921bf55" 2235dependencies = [ 2236 "bitflags 2.11.1", 2237 "gix-commitgraph", 2238 "gix-date", 2239 "gix-hash", 2240 "gix-object", 2241 "gix-revwalk", 2242] 2243 2244[[package]] 2245name = "gix-object" 2246version = "0.61.0" 2247source = "registry+https://github.com/rust-lang/crates.io-index" 2248checksum = "d5cd857e29429c7213bdef3f5aef83f8cc124774fe8ae0d27b1607d218d6d525" 2249dependencies = [ 2250 "bstr", 2251 "gix-actor", 2252 "gix-date", 2253 "gix-features", 2254 "gix-hash", 2255 "gix-hashtable", 2256 "gix-utils", 2257 "gix-validate", 2258 "itoa", 2259 "smallvec", 2260 "thiserror 2.0.18", 2261] 2262 2263[[package]] 2264name = "gix-odb" 2265version = "0.81.0" 2266source = "registry+https://github.com/rust-lang/crates.io-index" 2267checksum = "7d004c32858b1556f2d7874405edb3c97dc78fc09beaa87d57bb077ee2858a7d" 2268dependencies = [ 2269 "arc-swap", 2270 "gix-features", 2271 "gix-fs", 2272 "gix-hash", 2273 "gix-hashtable", 2274 "gix-object", 2275 "gix-pack", 2276 "gix-path", 2277 "gix-quote", 2278 "memmap2", 2279 "parking_lot", 2280 "tempfile", 2281 "thiserror 2.0.18", 2282] 2283 2284[[package]] 2285name = "gix-pack" 2286version = "0.71.0" 2287source = "registry+https://github.com/rust-lang/crates.io-index" 2288checksum = "e43626f2a27d1033674ec1a196b845614231e6bbd949d5e21c133045ff56b174" 2289dependencies = [ 2290 "clru", 2291 "gix-chunk", 2292 "gix-error", 2293 "gix-features", 2294 "gix-hash", 2295 "gix-hashtable", 2296 "gix-object", 2297 "gix-path", 2298 "memmap2", 2299 "smallvec", 2300 "thiserror 2.0.18", 2301 "uluru", 2302] 2303 2304[[package]] 2305name = "gix-packetline" 2306version = "0.21.5" 2307source = "registry+https://github.com/rust-lang/crates.io-index" 2308checksum = "b217dd0ee0c4021ecf169a4a519b1b4f80d15e3f3765f3dc466223dc0ac891d7" 2309dependencies = [ 2310 "bstr", 2311 "faster-hex", 2312 "gix-trace", 2313 "thiserror 2.0.18", 2314] 2315 2316[[package]] 2317name = "gix-path" 2318version = "0.12.1" 2319source = "registry+https://github.com/rust-lang/crates.io-index" 2320checksum = "afa6ac14cd14939ea94a496ce7460daa6511c09f5b84757e9cfc6f9c8d0f93a6" 2321dependencies = [ 2322 "bstr", 2323 "gix-trace", 2324 "gix-validate", 2325 "thiserror 2.0.18", 2326] 2327 2328[[package]] 2329name = "gix-pathspec" 2330version = "0.18.1" 2331source = "registry+https://github.com/rust-lang/crates.io-index" 2332checksum = "3050783b41ee11511e1e8fb35623df81806194f4030395f14f48ea37c2798c9f" 2333dependencies = [ 2334 "bitflags 2.11.1", 2335 "bstr", 2336 "gix-attributes", 2337 "gix-config-value", 2338 "gix-glob", 2339 "gix-path", 2340 "thiserror 2.0.18", 2341] 2342 2343[[package]] 2344name = "gix-prompt" 2345version = "0.15.1" 2346source = "registry+https://github.com/rust-lang/crates.io-index" 2347checksum = "3ee604d7746080ae7e1023bf47204bcc2c5f307bfbe2306a3c90b1bfd1a2c6d8" 2348dependencies = [ 2349 "gix-command", 2350 "gix-config-value", 2351 "parking_lot", 2352 "rustix", 2353 "thiserror 2.0.18", 2354] 2355 2356[[package]] 2357name = "gix-protocol" 2358version = "0.62.0" 2359source = "registry+https://github.com/rust-lang/crates.io-index" 2360checksum = "51dea3acb390707ab868f1f9584f18449eb95d869deffae96768e47d303595ee" 2361dependencies = [ 2362 "bstr", 2363 "gix-date", 2364 "gix-features", 2365 "gix-hash", 2366 "gix-ref", 2367 "gix-shallow", 2368 "gix-transport", 2369 "gix-utils", 2370 "maybe-async", 2371 "nonempty", 2372 "thiserror 2.0.18", 2373] 2374 2375[[package]] 2376name = "gix-quote" 2377version = "0.7.2" 2378source = "registry+https://github.com/rust-lang/crates.io-index" 2379checksum = "a6e541fc33cc2b783b7979040d445a0c86a2eca747c8faea4ca84230d06ae6ef" 2380dependencies = [ 2381 "bstr", 2382 "gix-error", 2383 "gix-utils", 2384] 2385 2386[[package]] 2387name = "gix-ref" 2388version = "0.64.0" 2389source = "registry+https://github.com/rust-lang/crates.io-index" 2390checksum = "4c04f64c37eb7e6feb73c7060f8dc6f381cc5de5d53249bfd450bc48a86b2e8b" 2391dependencies = [ 2392 "gix-actor", 2393 "gix-features", 2394 "gix-fs", 2395 "gix-hash", 2396 "gix-lock", 2397 "gix-object", 2398 "gix-path", 2399 "gix-tempfile", 2400 "gix-utils", 2401 "gix-validate", 2402 "memmap2", 2403 "thiserror 2.0.18", 2404] 2405 2406[[package]] 2407name = "gix-refspec" 2408version = "0.42.0" 2409source = "registry+https://github.com/rust-lang/crates.io-index" 2410checksum = "b216ae06ec74b5f24ad0142026a997fb0a935b7410eaf9c1616fc3f0e6c5a6d3" 2411dependencies = [ 2412 "bstr", 2413 "gix-error", 2414 "gix-glob", 2415 "gix-hash", 2416 "gix-revision", 2417 "gix-validate", 2418 "smallvec", 2419 "thiserror 2.0.18", 2420] 2421 2422[[package]] 2423name = "gix-revision" 2424version = "0.46.0" 2425source = "registry+https://github.com/rust-lang/crates.io-index" 2426checksum = "0b47c88884dd3c1a19a39da19d10211fcdea2809aadc86869b6e824a1774340f" 2427dependencies = [ 2428 "bitflags 2.11.1", 2429 "bstr", 2430 "gix-commitgraph", 2431 "gix-date", 2432 "gix-error", 2433 "gix-hash", 2434 "gix-hashtable", 2435 "gix-object", 2436 "gix-revwalk", 2437 "gix-trace", 2438 "nonempty", 2439] 2440 2441[[package]] 2442name = "gix-revwalk" 2443version = "0.32.0" 2444source = "registry+https://github.com/rust-lang/crates.io-index" 2445checksum = "85f5756abffe0917827aac683b13684ed99875bc398fa1f9b8f479b0681ef9e6" 2446dependencies = [ 2447 "gix-commitgraph", 2448 "gix-date", 2449 "gix-error", 2450 "gix-hash", 2451 "gix-hashtable", 2452 "gix-object", 2453 "smallvec", 2454 "thiserror 2.0.18", 2455] 2456 2457[[package]] 2458name = "gix-sec" 2459version = "0.14.1" 2460source = "registry+https://github.com/rust-lang/crates.io-index" 2461checksum = "ab8519976e4c7e486270740a5400369f37940779b80bd1377d94cfa1125d01b3" 2462dependencies = [ 2463 "bitflags 2.11.1", 2464 "gix-path", 2465 "libc", 2466 "windows-sys 0.61.2", 2467] 2468 2469[[package]] 2470name = "gix-shallow" 2471version = "0.12.1" 2472source = "registry+https://github.com/rust-lang/crates.io-index" 2473checksum = "a292fc2fe548c5dfa575479d16b445b0ddf1dd2f56f1fec6aed386f82553cd97" 2474dependencies = [ 2475 "bstr", 2476 "gix-hash", 2477 "gix-lock", 2478 "nonempty", 2479 "thiserror 2.0.18", 2480] 2481 2482[[package]] 2483name = "gix-status" 2484version = "0.31.0" 2485source = "registry+https://github.com/rust-lang/crates.io-index" 2486checksum = "22042e385d28a34275e029d98f4970285045be14b9073658ca897923f2ed8700" 2487dependencies = [ 2488 "bstr", 2489 "filetime", 2490 "gix-diff", 2491 "gix-dir", 2492 "gix-features", 2493 "gix-filter", 2494 "gix-fs", 2495 "gix-hash", 2496 "gix-index", 2497 "gix-object", 2498 "gix-path", 2499 "gix-pathspec", 2500 "gix-worktree", 2501 "portable-atomic", 2502 "thiserror 2.0.18", 2503] 2504 2505[[package]] 2506name = "gix-submodule" 2507version = "0.31.0" 2508source = "registry+https://github.com/rust-lang/crates.io-index" 2509checksum = "3059890ef054066c22a94bfc6a3eaba0d806aedcd630a0bc9e5783fd88884781" 2510dependencies = [ 2511 "bstr", 2512 "gix-config", 2513 "gix-path", 2514 "gix-pathspec", 2515 "gix-refspec", 2516 "gix-url", 2517 "thiserror 2.0.18", 2518] 2519 2520[[package]] 2521name = "gix-tempfile" 2522version = "23.0.2" 2523source = "registry+https://github.com/rust-lang/crates.io-index" 2524checksum = "6ef60812443484e67bf84e444cc71b4c78ae62deb822221774a4fa0c57fdb17f" 2525dependencies = [ 2526 "dashmap", 2527 "gix-fs", 2528 "libc", 2529 "parking_lot", 2530 "signal-hook", 2531 "signal-hook-registry", 2532 "tempfile", 2533] 2534 2535[[package]] 2536name = "gix-trace" 2537version = "0.1.20" 2538source = "registry+https://github.com/rust-lang/crates.io-index" 2539checksum = "44dc45eae785c0eb14173e0f152e6e224dcf4d45b6a6999a3aed22af541ad678" 2540 2541[[package]] 2542name = "gix-transport" 2543version = "0.57.2" 2544source = "registry+https://github.com/rust-lang/crates.io-index" 2545checksum = "186874f7ad1fb2f9a2f2aa9c2dabc7f9dd087bef74c1a0eee2b4a9cf0248fcb3" 2546dependencies = [ 2547 "bstr", 2548 "gix-command", 2549 "gix-features", 2550 "gix-packetline", 2551 "gix-quote", 2552 "gix-sec", 2553 "gix-url", 2554 "thiserror 2.0.18", 2555] 2556 2557[[package]] 2558name = "gix-traverse" 2559version = "0.58.0" 2560source = "registry+https://github.com/rust-lang/crates.io-index" 2561checksum = "e8de590ecc86a3b2870665f2288324fa9f7f8672c7fc2d4e020fdd81cd1f7aed" 2562dependencies = [ 2563 "bitflags 2.11.1", 2564 "gix-commitgraph", 2565 "gix-date", 2566 "gix-hash", 2567 "gix-hashtable", 2568 "gix-object", 2569 "gix-revwalk", 2570 "smallvec", 2571 "thiserror 2.0.18", 2572] 2573 2574[[package]] 2575name = "gix-url" 2576version = "0.36.1" 2577source = "registry+https://github.com/rust-lang/crates.io-index" 2578checksum = "65bb01ec69d55e82ccb7a19e264501ead4e6aac38463a8cebfdd81e22bb67ab2" 2579dependencies = [ 2580 "bstr", 2581 "gix-path", 2582 "percent-encoding", 2583 "thiserror 2.0.18", 2584] 2585 2586[[package]] 2587name = "gix-utils" 2588version = "0.3.3" 2589source = "registry+https://github.com/rust-lang/crates.io-index" 2590checksum = "66c50966184123caf580ffa64e28031a878597f1c7fceb8fe19566c38eb1b771" 2591dependencies = [ 2592 "bstr", 2593 "fastrand", 2594 "unicode-normalization", 2595] 2596 2597[[package]] 2598name = "gix-validate" 2599version = "0.11.2" 2600source = "registry+https://github.com/rust-lang/crates.io-index" 2601checksum = "7bc6fc771c4063ba7cd2f47b91fb6076251c6a823b64b7fe7b8874b0fe4afae3" 2602dependencies = [ 2603 "bstr", 2604] 2605 2606[[package]] 2607name = "gix-worktree" 2608version = "0.53.0" 2609source = "registry+https://github.com/rust-lang/crates.io-index" 2610checksum = "cef414ed275e8407cd5d53d301e83be19700b0dd3f859d2434417b58f454a2d1" 2611dependencies = [ 2612 "bstr", 2613 "gix-attributes", 2614 "gix-fs", 2615 "gix-glob", 2616 "gix-hash", 2617 "gix-ignore", 2618 "gix-index", 2619 "gix-object", 2620 "gix-path", 2621 "gix-validate", 2622] 2623 2624[[package]] 2625name = "gix-worktree-state" 2626version = "0.31.0" 2627source = "registry+https://github.com/rust-lang/crates.io-index" 2628checksum = "4bffae8b3ca258fdd50370cd51f06deb4c76a3b43db3868bc28dde45ffa77d69" 2629dependencies = [ 2630 "bstr", 2631 "gix-features", 2632 "gix-filter", 2633 "gix-fs", 2634 "gix-index", 2635 "gix-object", 2636 "gix-path", 2637 "gix-worktree", 2638 "io-close", 2639 "thiserror 2.0.18", 2640] 2641 2642[[package]] 2643name = "gix-worktree-stream" 2644version = "0.33.0" 2645source = "registry+https://github.com/rust-lang/crates.io-index" 2646checksum = "d25e9ed30100c63f7590bc581c225e53f731a53e06aa79a245739c07f7dcc557" 2647dependencies = [ 2648 "gix-attributes", 2649 "gix-error", 2650 "gix-features", 2651 "gix-filter", 2652 "gix-fs", 2653 "gix-hash", 2654 "gix-object", 2655 "gix-path", 2656 "gix-traverse", 2657 "parking_lot", 2658] 2659 2660[[package]] 2661name = "group" 2662version = "0.13.0" 2663source = "registry+https://github.com/rust-lang/crates.io-index" 2664checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" 2665dependencies = [ 2666 "ff", 2667 "rand_core 0.6.4", 2668 "subtle", 2669] 2670 2671[[package]] 2672name = "h2" 2673version = "0.4.14" 2674source = "registry+https://github.com/rust-lang/crates.io-index" 2675checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733" 2676dependencies = [ 2677 "atomic-waker", 2678 "bytes", 2679 "fnv", 2680 "futures-core", 2681 "futures-sink", 2682 "http", 2683 "indexmap", 2684 "slab", 2685 "tokio", 2686 "tokio-util", 2687 "tracing", 2688] 2689 2690[[package]] 2691name = "half" 2692version = "2.7.1" 2693source = "registry+https://github.com/rust-lang/crates.io-index" 2694checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" 2695dependencies = [ 2696 "cfg-if", 2697 "crunchy", 2698 "zerocopy", 2699] 2700 2701[[package]] 2702name = "hash32" 2703version = "0.2.1" 2704source = "registry+https://github.com/rust-lang/crates.io-index" 2705checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67" 2706dependencies = [ 2707 "byteorder", 2708] 2709 2710[[package]] 2711name = "hash32" 2712version = "0.3.1" 2713source = "registry+https://github.com/rust-lang/crates.io-index" 2714checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606" 2715dependencies = [ 2716 "byteorder", 2717] 2718 2719[[package]] 2720name = "hashbrown" 2721version = "0.14.5" 2722source = "registry+https://github.com/rust-lang/crates.io-index" 2723checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 2724dependencies = [ 2725 "ahash", 2726 "allocator-api2", 2727] 2728 2729[[package]] 2730name = "hashbrown" 2731version = "0.15.5" 2732source = "registry+https://github.com/rust-lang/crates.io-index" 2733checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 2734dependencies = [ 2735 "allocator-api2", 2736 "equivalent", 2737 "foldhash 0.1.5", 2738] 2739 2740[[package]] 2741name = "hashbrown" 2742version = "0.16.1" 2743source = "registry+https://github.com/rust-lang/crates.io-index" 2744checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 2745dependencies = [ 2746 "allocator-api2", 2747 "equivalent", 2748 "foldhash 0.2.0", 2749] 2750 2751[[package]] 2752name = "hashbrown" 2753version = "0.17.1" 2754source = "registry+https://github.com/rust-lang/crates.io-index" 2755checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" 2756dependencies = [ 2757 "allocator-api2", 2758 "equivalent", 2759 "foldhash 0.2.0", 2760] 2761 2762[[package]] 2763name = "heapless" 2764version = "0.7.17" 2765source = "registry+https://github.com/rust-lang/crates.io-index" 2766checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f" 2767dependencies = [ 2768 "atomic-polyfill", 2769 "hash32 0.2.1", 2770 "rustc_version", 2771 "serde", 2772 "spin 0.9.8", 2773 "stable_deref_trait", 2774] 2775 2776[[package]] 2777name = "heapless" 2778version = "0.8.0" 2779source = "registry+https://github.com/rust-lang/crates.io-index" 2780checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad" 2781dependencies = [ 2782 "hash32 0.3.1", 2783 "stable_deref_trait", 2784] 2785 2786[[package]] 2787name = "heck" 2788version = "0.4.1" 2789source = "registry+https://github.com/rust-lang/crates.io-index" 2790checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 2791 2792[[package]] 2793name = "heck" 2794version = "0.5.0" 2795source = "registry+https://github.com/rust-lang/crates.io-index" 2796checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 2797 2798[[package]] 2799name = "hermit-abi" 2800version = "0.5.2" 2801source = "registry+https://github.com/rust-lang/crates.io-index" 2802checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 2803 2804[[package]] 2805name = "hex" 2806version = "0.4.3" 2807source = "registry+https://github.com/rust-lang/crates.io-index" 2808checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 2809 2810[[package]] 2811name = "hmac" 2812version = "0.12.1" 2813source = "registry+https://github.com/rust-lang/crates.io-index" 2814checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" 2815dependencies = [ 2816 "digest 0.10.7", 2817] 2818 2819[[package]] 2820name = "htmlescape" 2821version = "0.3.1" 2822source = "registry+https://github.com/rust-lang/crates.io-index" 2823checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" 2824 2825[[package]] 2826name = "http" 2827version = "1.4.1" 2828source = "registry+https://github.com/rust-lang/crates.io-index" 2829checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0" 2830dependencies = [ 2831 "bytes", 2832 "itoa", 2833] 2834 2835[[package]] 2836name = "http-body" 2837version = "1.0.1" 2838source = "registry+https://github.com/rust-lang/crates.io-index" 2839checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 2840dependencies = [ 2841 "bytes", 2842 "http", 2843] 2844 2845[[package]] 2846name = "http-body-util" 2847version = "0.1.3" 2848source = "registry+https://github.com/rust-lang/crates.io-index" 2849checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 2850dependencies = [ 2851 "bytes", 2852 "futures-core", 2853 "http", 2854 "http-body", 2855 "pin-project-lite", 2856] 2857 2858[[package]] 2859name = "httparse" 2860version = "1.10.1" 2861source = "registry+https://github.com/rust-lang/crates.io-index" 2862checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 2863 2864[[package]] 2865name = "httpdate" 2866version = "1.0.3" 2867source = "registry+https://github.com/rust-lang/crates.io-index" 2868checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 2869 2870[[package]] 2871name = "human_format" 2872version = "1.2.1" 2873source = "registry+https://github.com/rust-lang/crates.io-index" 2874checksum = "eaec953f16e5bcf6b8a3cb3aa959b17e5577dbd2693e94554c462c08be22624b" 2875 2876[[package]] 2877name = "hybrid-array" 2878version = "0.4.12" 2879source = "registry+https://github.com/rust-lang/crates.io-index" 2880checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da" 2881dependencies = [ 2882 "typenum", 2883] 2884 2885[[package]] 2886name = "hyper" 2887version = "1.10.0" 2888source = "registry+https://github.com/rust-lang/crates.io-index" 2889checksum = "eb92f162bf56536459fc83c79b974bb12837acfed43d6bc370a7916d0ae15ecc" 2890dependencies = [ 2891 "atomic-waker", 2892 "bytes", 2893 "futures-channel", 2894 "futures-core", 2895 "h2", 2896 "http", 2897 "http-body", 2898 "httparse", 2899 "httpdate", 2900 "itoa", 2901 "pin-project-lite", 2902 "smallvec", 2903 "tokio", 2904 "want", 2905] 2906 2907[[package]] 2908name = "hyper-rustls" 2909version = "0.27.9" 2910source = "registry+https://github.com/rust-lang/crates.io-index" 2911checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" 2912dependencies = [ 2913 "http", 2914 "hyper", 2915 "hyper-util", 2916 "rustls", 2917 "tokio", 2918 "tokio-rustls", 2919 "tower-service", 2920 "webpki-roots 1.0.7", 2921] 2922 2923[[package]] 2924name = "hyper-timeout" 2925version = "0.5.2" 2926source = "registry+https://github.com/rust-lang/crates.io-index" 2927checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" 2928dependencies = [ 2929 "hyper", 2930 "hyper-util", 2931 "pin-project-lite", 2932 "tokio", 2933 "tower-service", 2934] 2935 2936[[package]] 2937name = "hyper-util" 2938version = "0.1.20" 2939source = "registry+https://github.com/rust-lang/crates.io-index" 2940checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" 2941dependencies = [ 2942 "base64", 2943 "bytes", 2944 "futures-channel", 2945 "futures-util", 2946 "http", 2947 "http-body", 2948 "hyper", 2949 "ipnet", 2950 "libc", 2951 "percent-encoding", 2952 "pin-project-lite", 2953 "socket2", 2954 "system-configuration", 2955 "tokio", 2956 "tower-service", 2957 "tracing", 2958 "windows-registry", 2959] 2960 2961[[package]] 2962name = "iana-time-zone" 2963version = "0.1.65" 2964source = "registry+https://github.com/rust-lang/crates.io-index" 2965checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" 2966dependencies = [ 2967 "android_system_properties", 2968 "core-foundation-sys", 2969 "iana-time-zone-haiku", 2970 "js-sys", 2971 "log", 2972 "wasm-bindgen", 2973 "windows-core", 2974] 2975 2976[[package]] 2977name = "iana-time-zone-haiku" 2978version = "0.1.2" 2979source = "registry+https://github.com/rust-lang/crates.io-index" 2980checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2981dependencies = [ 2982 "cc", 2983] 2984 2985[[package]] 2986name = "icu_collections" 2987version = "2.2.0" 2988source = "registry+https://github.com/rust-lang/crates.io-index" 2989checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" 2990dependencies = [ 2991 "displaydoc", 2992 "potential_utf", 2993 "utf8_iter", 2994 "yoke", 2995 "zerofrom", 2996 "zerovec", 2997] 2998 2999[[package]] 3000name = "icu_locale_core" 3001version = "2.2.0" 3002source = "registry+https://github.com/rust-lang/crates.io-index" 3003checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" 3004dependencies = [ 3005 "displaydoc", 3006 "litemap", 3007 "tinystr", 3008 "writeable", 3009 "zerovec", 3010] 3011 3012[[package]] 3013name = "icu_normalizer" 3014version = "2.2.0" 3015source = "registry+https://github.com/rust-lang/crates.io-index" 3016checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" 3017dependencies = [ 3018 "icu_collections", 3019 "icu_normalizer_data", 3020 "icu_properties", 3021 "icu_provider", 3022 "smallvec", 3023 "zerovec", 3024] 3025 3026[[package]] 3027name = "icu_normalizer_data" 3028version = "2.2.0" 3029source = "registry+https://github.com/rust-lang/crates.io-index" 3030checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" 3031 3032[[package]] 3033name = "icu_properties" 3034version = "2.2.0" 3035source = "registry+https://github.com/rust-lang/crates.io-index" 3036checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" 3037dependencies = [ 3038 "icu_collections", 3039 "icu_locale_core", 3040 "icu_properties_data", 3041 "icu_provider", 3042 "zerotrie", 3043 "zerovec", 3044] 3045 3046[[package]] 3047name = "icu_properties_data" 3048version = "2.2.0" 3049source = "registry+https://github.com/rust-lang/crates.io-index" 3050checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" 3051 3052[[package]] 3053name = "icu_provider" 3054version = "2.2.0" 3055source = "registry+https://github.com/rust-lang/crates.io-index" 3056checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" 3057dependencies = [ 3058 "displaydoc", 3059 "icu_locale_core", 3060 "writeable", 3061 "yoke", 3062 "zerofrom", 3063 "zerotrie", 3064 "zerovec", 3065] 3066 3067[[package]] 3068name = "id-arena" 3069version = "2.3.0" 3070source = "registry+https://github.com/rust-lang/crates.io-index" 3071checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" 3072 3073[[package]] 3074name = "ident_case" 3075version = "1.0.1" 3076source = "registry+https://github.com/rust-lang/crates.io-index" 3077checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 3078 3079[[package]] 3080name = "idna" 3081version = "1.1.0" 3082source = "registry+https://github.com/rust-lang/crates.io-index" 3083checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 3084dependencies = [ 3085 "idna_adapter", 3086 "smallvec", 3087 "utf8_iter", 3088] 3089 3090[[package]] 3091name = "idna_adapter" 3092version = "1.2.2" 3093source = "registry+https://github.com/rust-lang/crates.io-index" 3094checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" 3095dependencies = [ 3096 "icu_normalizer", 3097 "icu_properties", 3098] 3099 3100[[package]] 3101name = "indexmap" 3102version = "2.14.0" 3103source = "registry+https://github.com/rust-lang/crates.io-index" 3104checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" 3105dependencies = [ 3106 "equivalent", 3107 "hashbrown 0.17.1", 3108 "serde", 3109 "serde_core", 3110] 3111 3112[[package]] 3113name = "inventory" 3114version = "0.3.24" 3115source = "registry+https://github.com/rust-lang/crates.io-index" 3116checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b" 3117dependencies = [ 3118 "rustversion", 3119] 3120 3121[[package]] 3122name = "io-close" 3123version = "0.3.7" 3124source = "registry+https://github.com/rust-lang/crates.io-index" 3125checksum = "9cadcf447f06744f8ce713d2d6239bb5bde2c357a452397a9ed90c625da390bc" 3126dependencies = [ 3127 "libc", 3128 "winapi", 3129] 3130 3131[[package]] 3132name = "ipld-core" 3133version = "0.4.3" 3134source = "registry+https://github.com/rust-lang/crates.io-index" 3135checksum = "090f624976d72f0b0bb71b86d58dc16c15e069193067cb3a3a09d655246cbbda" 3136dependencies = [ 3137 "cid", 3138 "serde", 3139 "serde_bytes", 3140] 3141 3142[[package]] 3143name = "ipnet" 3144version = "2.12.0" 3145source = "registry+https://github.com/rust-lang/crates.io-index" 3146checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" 3147 3148[[package]] 3149name = "is_terminal_polyfill" 3150version = "1.70.2" 3151source = "registry+https://github.com/rust-lang/crates.io-index" 3152checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 3153 3154[[package]] 3155name = "itertools" 3156version = "0.13.0" 3157source = "registry+https://github.com/rust-lang/crates.io-index" 3158checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 3159dependencies = [ 3160 "either", 3161] 3162 3163[[package]] 3164name = "itertools" 3165version = "0.14.0" 3166source = "registry+https://github.com/rust-lang/crates.io-index" 3167checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 3168dependencies = [ 3169 "either", 3170] 3171 3172[[package]] 3173name = "itoa" 3174version = "1.0.18" 3175source = "registry+https://github.com/rust-lang/crates.io-index" 3176checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" 3177 3178[[package]] 3179name = "jacquard-common" 3180version = "0.12.0-beta.2" 3181source = "registry+https://github.com/rust-lang/crates.io-index" 3182checksum = "e830579811d60e29209c9466d034225d5e045ecdc2b3c55282709bd07da97869" 3183dependencies = [ 3184 "base64", 3185 "bon", 3186 "bytes", 3187 "chrono", 3188 "ciborium", 3189 "ciborium-io", 3190 "cid", 3191 "fluent-uri", 3192 "futures", 3193 "getrandom 0.2.17", 3194 "getrandom 0.3.4", 3195 "hashbrown 0.15.5", 3196 "http", 3197 "ipld-core", 3198 "k256", 3199 "maitake-sync", 3200 "miette", 3201 "multibase", 3202 "multihash", 3203 "n0-future", 3204 "ouroboros", 3205 "oxilangtag", 3206 "p256", 3207 "phf", 3208 "postcard", 3209 "rand 0.9.4", 3210 "regex", 3211 "regex-automata", 3212 "regex-lite", 3213 "reqwest", 3214 "rustversion", 3215 "serde", 3216 "serde_bytes", 3217 "serde_html_form", 3218 "serde_ipld_dagcbor", 3219 "serde_json", 3220 "signature", 3221 "smol_str", 3222 "spin 0.10.0", 3223 "thiserror 2.0.18", 3224 "tokio", 3225 "tokio-tungstenite-wasm", 3226 "tokio-util", 3227 "trait-variant", 3228 "unicode-segmentation", 3229] 3230 3231[[package]] 3232name = "jacquard-derive" 3233version = "0.12.0-beta.2" 3234source = "registry+https://github.com/rust-lang/crates.io-index" 3235checksum = "93f83b8049e4e7916e0f6764c3deaf5e55a7ffbab26c379415e9b1d4d645d957" 3236dependencies = [ 3237 "heck 0.5.0", 3238 "jacquard-lexicon", 3239 "proc-macro2", 3240 "quote", 3241 "syn", 3242] 3243 3244[[package]] 3245name = "jacquard-lexicon" 3246version = "0.12.0-beta.2" 3247source = "registry+https://github.com/rust-lang/crates.io-index" 3248checksum = "64935ef85dd24f60f467082c21ad52f739a02dd402a2adf40e5794e3de949e1f" 3249dependencies = [ 3250 "cid", 3251 "dashmap", 3252 "heck 0.5.0", 3253 "inventory", 3254 "jacquard-common", 3255 "miette", 3256 "multihash", 3257 "prettyplease", 3258 "proc-macro2", 3259 "quote", 3260 "serde", 3261 "serde_ipld_dagcbor", 3262 "serde_json", 3263 "serde_path_to_error", 3264 "serde_repr", 3265 "serde_with", 3266 "sha2 0.10.9", 3267 "syn", 3268 "thiserror 2.0.18", 3269 "unicode-segmentation", 3270] 3271 3272[[package]] 3273name = "jiff" 3274version = "0.2.29" 3275source = "registry+https://github.com/rust-lang/crates.io-index" 3276checksum = "34f877a98676d2fb664698d74cc6a51ce6c484ce8c770f05d0108ec9090aeb46" 3277dependencies = [ 3278 "defmt", 3279 "jiff-static", 3280 "jiff-tzdb-platform", 3281 "log", 3282 "portable-atomic", 3283 "portable-atomic-util", 3284 "serde_core", 3285 "windows-link", 3286] 3287 3288[[package]] 3289name = "jiff-static" 3290version = "0.2.29" 3291source = "registry+https://github.com/rust-lang/crates.io-index" 3292checksum = "0666b5ab5ecaca213fc2a85b8c0083d9004e84ee2d5f9a7e0017aaf50986f25f" 3293dependencies = [ 3294 "proc-macro2", 3295 "quote", 3296 "syn", 3297] 3298 3299[[package]] 3300name = "jiff-tzdb" 3301version = "0.1.6" 3302source = "registry+https://github.com/rust-lang/crates.io-index" 3303checksum = "c900ef84826f1338a557697dc8fc601df9ca9af4ac137c7fb61d4c6f2dfd3076" 3304 3305[[package]] 3306name = "jiff-tzdb-platform" 3307version = "0.1.3" 3308source = "registry+https://github.com/rust-lang/crates.io-index" 3309checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8" 3310dependencies = [ 3311 "jiff-tzdb", 3312] 3313 3314[[package]] 3315name = "jobserver" 3316version = "0.1.34" 3317source = "registry+https://github.com/rust-lang/crates.io-index" 3318checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 3319dependencies = [ 3320 "getrandom 0.3.4", 3321 "libc", 3322] 3323 3324[[package]] 3325name = "js-sys" 3326version = "0.3.99" 3327source = "registry+https://github.com/rust-lang/crates.io-index" 3328checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11" 3329dependencies = [ 3330 "cfg-if", 3331 "futures-util", 3332 "once_cell", 3333 "wasm-bindgen", 3334] 3335 3336[[package]] 3337name = "k256" 3338version = "0.13.4" 3339source = "registry+https://github.com/rust-lang/crates.io-index" 3340checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" 3341dependencies = [ 3342 "cfg-if", 3343 "ecdsa", 3344 "elliptic-curve", 3345 "sha2 0.10.9", 3346] 3347 3348[[package]] 3349name = "kstring" 3350version = "2.0.2" 3351source = "registry+https://github.com/rust-lang/crates.io-index" 3352checksum = "558bf9508a558512042d3095138b1f7b8fe90c5467d94f9f1da28b3731c5dbd1" 3353dependencies = [ 3354 "static_assertions", 3355] 3356 3357[[package]] 3358name = "lasso" 3359version = "0.7.3" 3360source = "registry+https://github.com/rust-lang/crates.io-index" 3361checksum = "6e14eda50a3494b3bf7b9ce51c52434a761e383d7238ce1dd5dcec2fbc13e9fb" 3362dependencies = [ 3363 "dashmap", 3364 "hashbrown 0.14.5", 3365] 3366 3367[[package]] 3368name = "lazy_static" 3369version = "1.5.0" 3370source = "registry+https://github.com/rust-lang/crates.io-index" 3371checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 3372 3373[[package]] 3374name = "leb128fmt" 3375version = "0.1.0" 3376source = "registry+https://github.com/rust-lang/crates.io-index" 3377checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" 3378 3379[[package]] 3380name = "levenshtein_automata" 3381version = "0.2.1" 3382source = "registry+https://github.com/rust-lang/crates.io-index" 3383checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25" 3384 3385[[package]] 3386name = "libc" 3387version = "0.2.186" 3388source = "registry+https://github.com/rust-lang/crates.io-index" 3389checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" 3390 3391[[package]] 3392name = "line-numbers" 3393version = "0.4.0" 3394source = "registry+https://github.com/rust-lang/crates.io-index" 3395checksum = "24ab6409a2f9ffae158ae823a012a7d7d68386663a14bedc260ca66eacf65c2c" 3396 3397[[package]] 3398name = "linux-raw-sys" 3399version = "0.12.1" 3400source = "registry+https://github.com/rust-lang/crates.io-index" 3401checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" 3402 3403[[package]] 3404name = "litemap" 3405version = "0.8.2" 3406source = "registry+https://github.com/rust-lang/crates.io-index" 3407checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" 3408 3409[[package]] 3410name = "lock_api" 3411version = "0.4.14" 3412source = "registry+https://github.com/rust-lang/crates.io-index" 3413checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 3414dependencies = [ 3415 "scopeguard", 3416] 3417 3418[[package]] 3419name = "log" 3420version = "0.4.30" 3421source = "registry+https://github.com/rust-lang/crates.io-index" 3422checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5" 3423 3424[[package]] 3425name = "loom" 3426version = "0.7.2" 3427source = "registry+https://github.com/rust-lang/crates.io-index" 3428checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 3429dependencies = [ 3430 "cfg-if", 3431 "generator", 3432 "scoped-tls", 3433 "tracing", 3434 "tracing-subscriber", 3435] 3436 3437[[package]] 3438name = "lru" 3439version = "0.16.4" 3440source = "registry+https://github.com/rust-lang/crates.io-index" 3441checksum = "7f66e8d5d03f609abc3a39e6f08e4164ebf1447a732906d39eb9b99b7919ef39" 3442dependencies = [ 3443 "hashbrown 0.16.1", 3444] 3445 3446[[package]] 3447name = "lru-slab" 3448version = "0.1.2" 3449source = "registry+https://github.com/rust-lang/crates.io-index" 3450checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 3451 3452[[package]] 3453name = "lz4_flex" 3454version = "0.13.1" 3455source = "registry+https://github.com/rust-lang/crates.io-index" 3456checksum = "7ef0d4ed8669f8f8826eb00dc878084aa8f253506c4fd5e8f58f5bce72ddb97e" 3457 3458[[package]] 3459name = "maitake-sync" 3460version = "0.1.2" 3461source = "registry+https://github.com/rust-lang/crates.io-index" 3462checksum = "6816ab14147f80234c675b80ed6dc4f440d8a1cefc158e766067aedb84c0bcd5" 3463dependencies = [ 3464 "cordyceps", 3465 "loom", 3466 "mycelium-bitfield", 3467 "pin-project", 3468 "portable-atomic", 3469] 3470 3471[[package]] 3472name = "match-lookup" 3473version = "0.1.2" 3474source = "registry+https://github.com/rust-lang/crates.io-index" 3475checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771" 3476dependencies = [ 3477 "proc-macro2", 3478 "quote", 3479 "syn", 3480] 3481 3482[[package]] 3483name = "matchers" 3484version = "0.2.0" 3485source = "registry+https://github.com/rust-lang/crates.io-index" 3486checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 3487dependencies = [ 3488 "regex-automata", 3489] 3490 3491[[package]] 3492name = "matchit" 3493version = "0.8.4" 3494source = "registry+https://github.com/rust-lang/crates.io-index" 3495checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" 3496 3497[[package]] 3498name = "maybe-async" 3499version = "0.2.11" 3500source = "registry+https://github.com/rust-lang/crates.io-index" 3501checksum = "746873a384ad60adc5db74471dfaba74bd278afbdcfd81db93fafcdfc8b5ca0c" 3502dependencies = [ 3503 "proc-macro2", 3504 "quote", 3505 "syn", 3506] 3507 3508[[package]] 3509name = "measure_time" 3510version = "0.9.0" 3511source = "registry+https://github.com/rust-lang/crates.io-index" 3512checksum = "51c55d61e72fc3ab704396c5fa16f4c184db37978ae4e94ca8959693a235fc0e" 3513dependencies = [ 3514 "log", 3515] 3516 3517[[package]] 3518name = "memchr" 3519version = "2.8.1" 3520source = "registry+https://github.com/rust-lang/crates.io-index" 3521checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8" 3522 3523[[package]] 3524name = "memmap2" 3525version = "0.9.10" 3526source = "registry+https://github.com/rust-lang/crates.io-index" 3527checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3" 3528dependencies = [ 3529 "libc", 3530] 3531 3532[[package]] 3533name = "memoffset" 3534version = "0.9.1" 3535source = "registry+https://github.com/rust-lang/crates.io-index" 3536checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 3537dependencies = [ 3538 "autocfg", 3539] 3540 3541[[package]] 3542name = "miette" 3543version = "7.6.0" 3544source = "registry+https://github.com/rust-lang/crates.io-index" 3545checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7" 3546dependencies = [ 3547 "cfg-if", 3548 "miette-derive", 3549 "unicode-width", 3550] 3551 3552[[package]] 3553name = "miette-derive" 3554version = "7.6.0" 3555source = "registry+https://github.com/rust-lang/crates.io-index" 3556checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b" 3557dependencies = [ 3558 "proc-macro2", 3559 "quote", 3560 "syn", 3561] 3562 3563[[package]] 3564name = "mime" 3565version = "0.3.17" 3566source = "registry+https://github.com/rust-lang/crates.io-index" 3567checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 3568 3569[[package]] 3570name = "minimal-lexical" 3571version = "0.2.1" 3572source = "registry+https://github.com/rust-lang/crates.io-index" 3573checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 3574 3575[[package]] 3576name = "miniz_oxide" 3577version = "0.8.9" 3578source = "registry+https://github.com/rust-lang/crates.io-index" 3579checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 3580dependencies = [ 3581 "adler2", 3582 "simd-adler32", 3583] 3584 3585[[package]] 3586name = "mio" 3587version = "1.2.0" 3588source = "registry+https://github.com/rust-lang/crates.io-index" 3589checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1" 3590dependencies = [ 3591 "libc", 3592 "wasi", 3593 "windows-sys 0.61.2", 3594] 3595 3596[[package]] 3597name = "multibase" 3598version = "0.9.2" 3599source = "registry+https://github.com/rust-lang/crates.io-index" 3600checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" 3601dependencies = [ 3602 "base-x", 3603 "base256emoji", 3604 "data-encoding", 3605 "data-encoding-macro", 3606] 3607 3608[[package]] 3609name = "multihash" 3610version = "0.19.5" 3611source = "registry+https://github.com/rust-lang/crates.io-index" 3612checksum = "577c63b00ad74d57e8c9aa870b5fccebf2fd64a308a5aee9f1bb88e4aea19447" 3613dependencies = [ 3614 "serde", 3615 "unsigned-varint", 3616] 3617 3618[[package]] 3619name = "multimap" 3620version = "0.10.1" 3621source = "registry+https://github.com/rust-lang/crates.io-index" 3622checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084" 3623 3624[[package]] 3625name = "murmur3" 3626version = "0.4.1" 3627source = "registry+https://github.com/rust-lang/crates.io-index" 3628checksum = "a198f9589efc03f544388dfc4a19fe8af4323662b62f598b8dcfdac62c14771c" 3629dependencies = [ 3630 "byteorder", 3631] 3632 3633[[package]] 3634name = "murmurhash32" 3635version = "0.3.1" 3636source = "registry+https://github.com/rust-lang/crates.io-index" 3637checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b" 3638 3639[[package]] 3640name = "mycelium-bitfield" 3641version = "0.1.5" 3642source = "registry+https://github.com/rust-lang/crates.io-index" 3643checksum = "24e0cc5e2c585acbd15c5ce911dff71e1f4d5313f43345873311c4f5efd741cc" 3644 3645[[package]] 3646name = "n0-future" 3647version = "0.1.3" 3648source = "registry+https://github.com/rust-lang/crates.io-index" 3649checksum = "7bb0e5d99e681ab3c938842b96fcb41bf8a7bb4bfdb11ccbd653a7e83e06c794" 3650dependencies = [ 3651 "cfg_aliases", 3652 "derive_more", 3653 "futures-buffered", 3654 "futures-lite", 3655 "futures-util", 3656 "js-sys", 3657 "pin-project", 3658 "send_wrapper", 3659 "tokio", 3660 "tokio-util", 3661 "wasm-bindgen", 3662 "wasm-bindgen-futures", 3663 "web-time", 3664] 3665 3666[[package]] 3667name = "nix" 3668version = "0.31.3" 3669source = "registry+https://github.com/rust-lang/crates.io-index" 3670checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d" 3671dependencies = [ 3672 "bitflags 2.11.1", 3673 "cfg-if", 3674 "cfg_aliases", 3675 "libc", 3676 "memoffset", 3677] 3678 3679[[package]] 3680name = "nom" 3681version = "7.1.3" 3682source = "registry+https://github.com/rust-lang/crates.io-index" 3683checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 3684dependencies = [ 3685 "memchr", 3686 "minimal-lexical", 3687] 3688 3689[[package]] 3690name = "nonempty" 3691version = "0.12.0" 3692source = "registry+https://github.com/rust-lang/crates.io-index" 3693checksum = "9737e026353e5cd0736f98eddae28665118eb6f6600902a7f50db585621fecb6" 3694 3695[[package]] 3696name = "nu-ansi-term" 3697version = "0.50.3" 3698source = "registry+https://github.com/rust-lang/crates.io-index" 3699checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 3700dependencies = [ 3701 "windows-sys 0.61.2", 3702] 3703 3704[[package]] 3705name = "num-conv" 3706version = "0.2.2" 3707source = "registry+https://github.com/rust-lang/crates.io-index" 3708checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" 3709 3710[[package]] 3711name = "num-traits" 3712version = "0.2.19" 3713source = "registry+https://github.com/rust-lang/crates.io-index" 3714checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 3715dependencies = [ 3716 "autocfg", 3717] 3718 3719[[package]] 3720name = "num_cpus" 3721version = "1.17.0" 3722source = "registry+https://github.com/rust-lang/crates.io-index" 3723checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" 3724dependencies = [ 3725 "hermit-abi", 3726 "libc", 3727] 3728 3729[[package]] 3730name = "once_cell" 3731version = "1.21.4" 3732source = "registry+https://github.com/rust-lang/crates.io-index" 3733checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" 3734 3735[[package]] 3736name = "once_cell_polyfill" 3737version = "1.70.2" 3738source = "registry+https://github.com/rust-lang/crates.io-index" 3739checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 3740 3741[[package]] 3742name = "oneshot" 3743version = "0.1.13" 3744source = "registry+https://github.com/rust-lang/crates.io-index" 3745checksum = "269bca4c2591a28585d6bf10d9ed0332b7d76900a1b02bec41bdc3a2cdcda107" 3746 3747[[package]] 3748name = "oorandom" 3749version = "11.1.5" 3750source = "registry+https://github.com/rust-lang/crates.io-index" 3751checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" 3752 3753[[package]] 3754name = "openssl-probe" 3755version = "0.2.1" 3756source = "registry+https://github.com/rust-lang/crates.io-index" 3757checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" 3758 3759[[package]] 3760name = "ordered-float" 3761version = "2.10.1" 3762source = "registry+https://github.com/rust-lang/crates.io-index" 3763checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" 3764dependencies = [ 3765 "num-traits", 3766] 3767 3768[[package]] 3769name = "ordered-float" 3770version = "5.3.0" 3771source = "registry+https://github.com/rust-lang/crates.io-index" 3772checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e" 3773dependencies = [ 3774 "num-traits", 3775] 3776 3777[[package]] 3778name = "ouroboros" 3779version = "0.18.5" 3780source = "registry+https://github.com/rust-lang/crates.io-index" 3781checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59" 3782dependencies = [ 3783 "aliasable", 3784 "ouroboros_macro", 3785 "static_assertions", 3786] 3787 3788[[package]] 3789name = "ouroboros_macro" 3790version = "0.18.5" 3791source = "registry+https://github.com/rust-lang/crates.io-index" 3792checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0" 3793dependencies = [ 3794 "heck 0.4.1", 3795 "proc-macro2", 3796 "proc-macro2-diagnostics", 3797 "quote", 3798 "syn", 3799] 3800 3801[[package]] 3802name = "ownedbytes" 3803version = "0.9.0" 3804source = "registry+https://github.com/rust-lang/crates.io-index" 3805checksum = "2fbd56f7631767e61784dc43f8580f403f4475bd4aaa4da003e6295e1bab4a7e" 3806dependencies = [ 3807 "stable_deref_trait", 3808] 3809 3810[[package]] 3811name = "oxilangtag" 3812version = "0.1.6" 3813source = "registry+https://github.com/rust-lang/crates.io-index" 3814checksum = "5d3b4eb570abd4a1dcb062c31fd37b832264d9dc7292c3e69acfe926c87b063f" 3815dependencies = [ 3816 "serde", 3817] 3818 3819[[package]] 3820name = "p256" 3821version = "0.13.2" 3822source = "registry+https://github.com/rust-lang/crates.io-index" 3823checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" 3824dependencies = [ 3825 "ecdsa", 3826 "elliptic-curve", 3827 "primeorder", 3828 "sha2 0.10.9", 3829] 3830 3831[[package]] 3832name = "page_size" 3833version = "0.6.0" 3834source = "registry+https://github.com/rust-lang/crates.io-index" 3835checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da" 3836dependencies = [ 3837 "libc", 3838 "winapi", 3839] 3840 3841[[package]] 3842name = "parking" 3843version = "2.2.1" 3844source = "registry+https://github.com/rust-lang/crates.io-index" 3845checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 3846 3847[[package]] 3848name = "parking_lot" 3849version = "0.12.5" 3850source = "registry+https://github.com/rust-lang/crates.io-index" 3851checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 3852dependencies = [ 3853 "lock_api", 3854 "parking_lot_core", 3855] 3856 3857[[package]] 3858name = "parking_lot_core" 3859version = "0.9.12" 3860source = "registry+https://github.com/rust-lang/crates.io-index" 3861checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 3862dependencies = [ 3863 "cfg-if", 3864 "libc", 3865 "redox_syscall", 3866 "smallvec", 3867 "windows-link", 3868] 3869 3870[[package]] 3871name = "paste" 3872version = "1.0.15" 3873source = "registry+https://github.com/rust-lang/crates.io-index" 3874checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 3875 3876[[package]] 3877name = "pem-rfc7468" 3878version = "0.7.0" 3879source = "registry+https://github.com/rust-lang/crates.io-index" 3880checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" 3881dependencies = [ 3882 "base64ct", 3883] 3884 3885[[package]] 3886name = "percent-encoding" 3887version = "2.3.2" 3888source = "registry+https://github.com/rust-lang/crates.io-index" 3889checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 3890 3891[[package]] 3892name = "petgraph" 3893version = "0.8.3" 3894source = "registry+https://github.com/rust-lang/crates.io-index" 3895checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" 3896dependencies = [ 3897 "fixedbitset", 3898 "hashbrown 0.15.5", 3899 "indexmap", 3900] 3901 3902[[package]] 3903name = "phf" 3904version = "0.11.3" 3905source = "registry+https://github.com/rust-lang/crates.io-index" 3906checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" 3907dependencies = [ 3908 "phf_macros", 3909 "phf_shared", 3910] 3911 3912[[package]] 3913name = "phf_generator" 3914version = "0.11.3" 3915source = "registry+https://github.com/rust-lang/crates.io-index" 3916checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" 3917dependencies = [ 3918 "phf_shared", 3919 "rand 0.8.6", 3920] 3921 3922[[package]] 3923name = "phf_macros" 3924version = "0.11.3" 3925source = "registry+https://github.com/rust-lang/crates.io-index" 3926checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" 3927dependencies = [ 3928 "phf_generator", 3929 "phf_shared", 3930 "proc-macro2", 3931 "quote", 3932 "syn", 3933] 3934 3935[[package]] 3936name = "phf_shared" 3937version = "0.11.3" 3938source = "registry+https://github.com/rust-lang/crates.io-index" 3939checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" 3940dependencies = [ 3941 "siphasher", 3942] 3943 3944[[package]] 3945name = "pin-project" 3946version = "1.1.13" 3947source = "registry+https://github.com/rust-lang/crates.io-index" 3948checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924" 3949dependencies = [ 3950 "pin-project-internal", 3951] 3952 3953[[package]] 3954name = "pin-project-internal" 3955version = "1.1.13" 3956source = "registry+https://github.com/rust-lang/crates.io-index" 3957checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b" 3958dependencies = [ 3959 "proc-macro2", 3960 "quote", 3961 "syn", 3962] 3963 3964[[package]] 3965name = "pin-project-lite" 3966version = "0.2.17" 3967source = "registry+https://github.com/rust-lang/crates.io-index" 3968checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" 3969 3970[[package]] 3971name = "pkcs8" 3972version = "0.10.2" 3973source = "registry+https://github.com/rust-lang/crates.io-index" 3974checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" 3975dependencies = [ 3976 "der", 3977 "spki", 3978] 3979 3980[[package]] 3981name = "pkg-config" 3982version = "0.3.33" 3983source = "registry+https://github.com/rust-lang/crates.io-index" 3984checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" 3985 3986[[package]] 3987name = "portable-atomic" 3988version = "1.13.1" 3989source = "registry+https://github.com/rust-lang/crates.io-index" 3990checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" 3991 3992[[package]] 3993name = "portable-atomic-util" 3994version = "0.2.7" 3995source = "registry+https://github.com/rust-lang/crates.io-index" 3996checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618" 3997dependencies = [ 3998 "portable-atomic", 3999] 4000 4001[[package]] 4002name = "postcard" 4003version = "1.1.3" 4004source = "registry+https://github.com/rust-lang/crates.io-index" 4005checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" 4006dependencies = [ 4007 "cobs", 4008 "embedded-io 0.4.0", 4009 "embedded-io 0.6.1", 4010 "heapless 0.7.17", 4011 "serde", 4012] 4013 4014[[package]] 4015name = "potential_utf" 4016version = "0.1.5" 4017source = "registry+https://github.com/rust-lang/crates.io-index" 4018checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" 4019dependencies = [ 4020 "zerovec", 4021] 4022 4023[[package]] 4024name = "powerfmt" 4025version = "0.2.0" 4026source = "registry+https://github.com/rust-lang/crates.io-index" 4027checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 4028 4029[[package]] 4030name = "ppv-lite86" 4031version = "0.2.21" 4032source = "registry+https://github.com/rust-lang/crates.io-index" 4033checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 4034dependencies = [ 4035 "zerocopy", 4036] 4037 4038[[package]] 4039name = "prettyplease" 4040version = "0.2.37" 4041source = "registry+https://github.com/rust-lang/crates.io-index" 4042checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 4043dependencies = [ 4044 "proc-macro2", 4045 "syn", 4046] 4047 4048[[package]] 4049name = "primeorder" 4050version = "0.13.6" 4051source = "registry+https://github.com/rust-lang/crates.io-index" 4052checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" 4053dependencies = [ 4054 "elliptic-curve", 4055] 4056 4057[[package]] 4058name = "proc-macro-error-attr2" 4059version = "2.0.0" 4060source = "registry+https://github.com/rust-lang/crates.io-index" 4061checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" 4062dependencies = [ 4063 "proc-macro2", 4064 "quote", 4065] 4066 4067[[package]] 4068name = "proc-macro-error2" 4069version = "2.0.1" 4070source = "registry+https://github.com/rust-lang/crates.io-index" 4071checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" 4072dependencies = [ 4073 "proc-macro-error-attr2", 4074 "proc-macro2", 4075 "quote", 4076 "syn", 4077] 4078 4079[[package]] 4080name = "proc-macro2" 4081version = "1.0.106" 4082source = "registry+https://github.com/rust-lang/crates.io-index" 4083checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" 4084dependencies = [ 4085 "unicode-ident", 4086] 4087 4088[[package]] 4089name = "proc-macro2-diagnostics" 4090version = "0.10.1" 4091source = "registry+https://github.com/rust-lang/crates.io-index" 4092checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" 4093dependencies = [ 4094 "proc-macro2", 4095 "quote", 4096 "syn", 4097 "version_check", 4098 "yansi", 4099] 4100 4101[[package]] 4102name = "prodash" 4103version = "31.0.0" 4104source = "registry+https://github.com/rust-lang/crates.io-index" 4105checksum = "962200e2d7d551451297d9fdce85138374019ada198e30ea9ede38034e27604c" 4106dependencies = [ 4107 "bytesize", 4108 "human_format", 4109 "parking_lot", 4110] 4111 4112[[package]] 4113name = "prost" 4114version = "0.14.4" 4115source = "registry+https://github.com/rust-lang/crates.io-index" 4116checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1" 4117dependencies = [ 4118 "bytes", 4119 "prost-derive", 4120] 4121 4122[[package]] 4123name = "prost-build" 4124version = "0.14.3" 4125source = "registry+https://github.com/rust-lang/crates.io-index" 4126checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7" 4127dependencies = [ 4128 "heck 0.5.0", 4129 "itertools 0.14.0", 4130 "log", 4131 "multimap", 4132 "petgraph", 4133 "prettyplease", 4134 "prost", 4135 "prost-types", 4136 "pulldown-cmark", 4137 "pulldown-cmark-to-cmark", 4138 "regex", 4139 "syn", 4140 "tempfile", 4141] 4142 4143[[package]] 4144name = "prost-derive" 4145version = "0.14.4" 4146source = "registry+https://github.com/rust-lang/crates.io-index" 4147checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf" 4148dependencies = [ 4149 "anyhow", 4150 "itertools 0.14.0", 4151 "proc-macro2", 4152 "quote", 4153 "syn", 4154] 4155 4156[[package]] 4157name = "prost-protovalidate" 4158version = "0.3.0" 4159source = "registry+https://github.com/rust-lang/crates.io-index" 4160checksum = "c3807965edce2730437ec19f99eae81064d152421c4c875a3e8f9e80cf2dd234" 4161dependencies = [ 4162 "cel", 4163 "chrono", 4164 "fluent-uri", 4165 "prost", 4166 "prost-protovalidate-types", 4167 "prost-reflect", 4168 "prost-types", 4169 "regex", 4170 "serde_json", 4171 "thiserror 2.0.18", 4172] 4173 4174[[package]] 4175name = "prost-protovalidate-types" 4176version = "0.3.0" 4177source = "registry+https://github.com/rust-lang/crates.io-index" 4178checksum = "ddb5c8151aa3da0ea9ba5d91b170c7763b6c7c7352c3643d57b2b28de29afde9" 4179dependencies = [ 4180 "prost", 4181 "prost-build", 4182 "prost-reflect", 4183 "prost-reflect-build", 4184 "prost-types", 4185 "thiserror 2.0.18", 4186] 4187 4188[[package]] 4189name = "prost-reflect" 4190version = "0.16.4" 4191source = "registry+https://github.com/rust-lang/crates.io-index" 4192checksum = "590aa145fee8f7a26b5a6055365e7c5e89a5c1caae9869de76ec0ee73181a2f9" 4193dependencies = [ 4194 "base64", 4195 "prost", 4196 "prost-reflect-derive", 4197 "prost-types", 4198 "serde", 4199 "serde-value", 4200] 4201 4202[[package]] 4203name = "prost-reflect-build" 4204version = "0.16.0" 4205source = "registry+https://github.com/rust-lang/crates.io-index" 4206checksum = "8214ae2c30bbac390db0134d08300e770ef89b6d4e5abf855e8d300eded87e28" 4207dependencies = [ 4208 "prost-build", 4209 "prost-reflect", 4210] 4211 4212[[package]] 4213name = "prost-reflect-derive" 4214version = "0.16.0" 4215source = "registry+https://github.com/rust-lang/crates.io-index" 4216checksum = "7b6d90e29fa6c0d13c2c19ba5e4b3fb0efbf5975d27bcf4e260b7b15455bcabe" 4217dependencies = [ 4218 "proc-macro2", 4219 "quote", 4220 "syn", 4221] 4222 4223[[package]] 4224name = "prost-types" 4225version = "0.14.4" 4226source = "registry+https://github.com/rust-lang/crates.io-index" 4227checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a" 4228dependencies = [ 4229 "prost", 4230] 4231 4232[[package]] 4233name = "pulldown-cmark" 4234version = "0.13.4" 4235source = "registry+https://github.com/rust-lang/crates.io-index" 4236checksum = "e9f068eba8e7071c5f9511831b44f32c740d5adf574e990f946ddb53db2f314e" 4237dependencies = [ 4238 "bitflags 2.11.1", 4239 "memchr", 4240 "unicase", 4241] 4242 4243[[package]] 4244name = "pulldown-cmark-to-cmark" 4245version = "22.0.0" 4246source = "registry+https://github.com/rust-lang/crates.io-index" 4247checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90" 4248dependencies = [ 4249 "pulldown-cmark", 4250] 4251 4252[[package]] 4253name = "quick_cache" 4254version = "0.6.22" 4255source = "registry+https://github.com/rust-lang/crates.io-index" 4256checksum = "d1c821816e9b928e20e92ed59bb3ac4aab321d16ca2316871c9fe7ca739cd477" 4257dependencies = [ 4258 "ahash", 4259 "equivalent", 4260 "hashbrown 0.16.1", 4261 "parking_lot", 4262] 4263 4264[[package]] 4265name = "quinn" 4266version = "0.11.9" 4267source = "registry+https://github.com/rust-lang/crates.io-index" 4268checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 4269dependencies = [ 4270 "bytes", 4271 "cfg_aliases", 4272 "pin-project-lite", 4273 "quinn-proto", 4274 "quinn-udp", 4275 "rustc-hash", 4276 "rustls", 4277 "socket2", 4278 "thiserror 2.0.18", 4279 "tokio", 4280 "tracing", 4281 "web-time", 4282] 4283 4284[[package]] 4285name = "quinn-proto" 4286version = "0.11.14" 4287source = "registry+https://github.com/rust-lang/crates.io-index" 4288checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" 4289dependencies = [ 4290 "bytes", 4291 "getrandom 0.3.4", 4292 "lru-slab", 4293 "rand 0.9.4", 4294 "ring", 4295 "rustc-hash", 4296 "rustls", 4297 "rustls-pki-types", 4298 "slab", 4299 "thiserror 2.0.18", 4300 "tinyvec", 4301 "tracing", 4302 "web-time", 4303] 4304 4305[[package]] 4306name = "quinn-udp" 4307version = "0.5.14" 4308source = "registry+https://github.com/rust-lang/crates.io-index" 4309checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 4310dependencies = [ 4311 "cfg_aliases", 4312 "libc", 4313 "once_cell", 4314 "socket2", 4315 "tracing", 4316 "windows-sys 0.60.2", 4317] 4318 4319[[package]] 4320name = "quote" 4321version = "1.0.45" 4322source = "registry+https://github.com/rust-lang/crates.io-index" 4323checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" 4324dependencies = [ 4325 "proc-macro2", 4326] 4327 4328[[package]] 4329name = "r-efi" 4330version = "5.3.0" 4331source = "registry+https://github.com/rust-lang/crates.io-index" 4332checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 4333 4334[[package]] 4335name = "r-efi" 4336version = "6.0.0" 4337source = "registry+https://github.com/rust-lang/crates.io-index" 4338checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" 4339 4340[[package]] 4341name = "rand" 4342version = "0.8.6" 4343source = "registry+https://github.com/rust-lang/crates.io-index" 4344checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" 4345dependencies = [ 4346 "libc", 4347 "rand_chacha 0.3.1", 4348 "rand_core 0.6.4", 4349] 4350 4351[[package]] 4352name = "rand" 4353version = "0.9.4" 4354source = "registry+https://github.com/rust-lang/crates.io-index" 4355checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" 4356dependencies = [ 4357 "rand_chacha 0.9.0", 4358 "rand_core 0.9.5", 4359] 4360 4361[[package]] 4362name = "rand_chacha" 4363version = "0.3.1" 4364source = "registry+https://github.com/rust-lang/crates.io-index" 4365checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 4366dependencies = [ 4367 "ppv-lite86", 4368 "rand_core 0.6.4", 4369] 4370 4371[[package]] 4372name = "rand_chacha" 4373version = "0.9.0" 4374source = "registry+https://github.com/rust-lang/crates.io-index" 4375checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 4376dependencies = [ 4377 "ppv-lite86", 4378 "rand_core 0.9.5", 4379] 4380 4381[[package]] 4382name = "rand_core" 4383version = "0.6.4" 4384source = "registry+https://github.com/rust-lang/crates.io-index" 4385checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 4386dependencies = [ 4387 "getrandom 0.2.17", 4388] 4389 4390[[package]] 4391name = "rand_core" 4392version = "0.9.5" 4393source = "registry+https://github.com/rust-lang/crates.io-index" 4394checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" 4395dependencies = [ 4396 "getrandom 0.3.4", 4397] 4398 4399[[package]] 4400name = "rayon" 4401version = "1.12.0" 4402source = "registry+https://github.com/rust-lang/crates.io-index" 4403checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d" 4404dependencies = [ 4405 "either", 4406 "rayon-core", 4407] 4408 4409[[package]] 4410name = "rayon-core" 4411version = "1.13.0" 4412source = "registry+https://github.com/rust-lang/crates.io-index" 4413checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" 4414dependencies = [ 4415 "crossbeam-deque", 4416 "crossbeam-utils", 4417] 4418 4419[[package]] 4420name = "redox_syscall" 4421version = "0.5.18" 4422source = "registry+https://github.com/rust-lang/crates.io-index" 4423checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 4424dependencies = [ 4425 "bitflags 2.11.1", 4426] 4427 4428[[package]] 4429name = "ref-cast" 4430version = "1.0.25" 4431source = "registry+https://github.com/rust-lang/crates.io-index" 4432checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" 4433dependencies = [ 4434 "ref-cast-impl", 4435] 4436 4437[[package]] 4438name = "ref-cast-impl" 4439version = "1.0.25" 4440source = "registry+https://github.com/rust-lang/crates.io-index" 4441checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" 4442dependencies = [ 4443 "proc-macro2", 4444 "quote", 4445 "syn", 4446] 4447 4448[[package]] 4449name = "regex" 4450version = "1.12.3" 4451source = "registry+https://github.com/rust-lang/crates.io-index" 4452checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" 4453dependencies = [ 4454 "aho-corasick", 4455 "memchr", 4456 "regex-automata", 4457 "regex-syntax", 4458] 4459 4460[[package]] 4461name = "regex-automata" 4462version = "0.4.14" 4463source = "registry+https://github.com/rust-lang/crates.io-index" 4464checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" 4465dependencies = [ 4466 "aho-corasick", 4467 "memchr", 4468 "regex-syntax", 4469] 4470 4471[[package]] 4472name = "regex-lite" 4473version = "0.1.9" 4474source = "registry+https://github.com/rust-lang/crates.io-index" 4475checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973" 4476 4477[[package]] 4478name = "regex-syntax" 4479version = "0.8.10" 4480source = "registry+https://github.com/rust-lang/crates.io-index" 4481checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" 4482 4483[[package]] 4484name = "reqwest" 4485version = "0.12.28" 4486source = "registry+https://github.com/rust-lang/crates.io-index" 4487checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 4488dependencies = [ 4489 "base64", 4490 "bytes", 4491 "encoding_rs", 4492 "futures-core", 4493 "futures-util", 4494 "h2", 4495 "http", 4496 "http-body", 4497 "http-body-util", 4498 "hyper", 4499 "hyper-rustls", 4500 "hyper-util", 4501 "js-sys", 4502 "log", 4503 "mime", 4504 "percent-encoding", 4505 "pin-project-lite", 4506 "quinn", 4507 "rustls", 4508 "rustls-pki-types", 4509 "serde", 4510 "serde_json", 4511 "serde_urlencoded", 4512 "sync_wrapper", 4513 "tokio", 4514 "tokio-rustls", 4515 "tokio-util", 4516 "tower", 4517 "tower-http", 4518 "tower-service", 4519 "url", 4520 "wasm-bindgen", 4521 "wasm-bindgen-futures", 4522 "wasm-streams", 4523 "web-sys", 4524 "webpki-roots 1.0.7", 4525] 4526 4527[[package]] 4528name = "rfc6979" 4529version = "0.4.0" 4530source = "registry+https://github.com/rust-lang/crates.io-index" 4531checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" 4532dependencies = [ 4533 "hmac", 4534 "subtle", 4535] 4536 4537[[package]] 4538name = "ring" 4539version = "0.17.14" 4540source = "registry+https://github.com/rust-lang/crates.io-index" 4541checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 4542dependencies = [ 4543 "cc", 4544 "cfg-if", 4545 "getrandom 0.2.17", 4546 "libc", 4547 "untrusted", 4548 "windows-sys 0.52.0", 4549] 4550 4551[[package]] 4552name = "rust-stemmers" 4553version = "1.2.0" 4554source = "registry+https://github.com/rust-lang/crates.io-index" 4555checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54" 4556dependencies = [ 4557 "serde", 4558 "serde_derive", 4559] 4560 4561[[package]] 4562name = "rustc-hash" 4563version = "2.1.2" 4564source = "registry+https://github.com/rust-lang/crates.io-index" 4565checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" 4566 4567[[package]] 4568name = "rustc_version" 4569version = "0.4.1" 4570source = "registry+https://github.com/rust-lang/crates.io-index" 4571checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 4572dependencies = [ 4573 "semver", 4574] 4575 4576[[package]] 4577name = "rustix" 4578version = "1.1.4" 4579source = "registry+https://github.com/rust-lang/crates.io-index" 4580checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" 4581dependencies = [ 4582 "bitflags 2.11.1", 4583 "errno", 4584 "libc", 4585 "linux-raw-sys", 4586 "windows-sys 0.61.2", 4587] 4588 4589[[package]] 4590name = "rustls" 4591version = "0.23.40" 4592source = "registry+https://github.com/rust-lang/crates.io-index" 4593checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b" 4594dependencies = [ 4595 "once_cell", 4596 "ring", 4597 "rustls-pki-types", 4598 "rustls-webpki", 4599 "subtle", 4600 "zeroize", 4601] 4602 4603[[package]] 4604name = "rustls-native-certs" 4605version = "0.8.3" 4606source = "registry+https://github.com/rust-lang/crates.io-index" 4607checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" 4608dependencies = [ 4609 "openssl-probe", 4610 "rustls-pki-types", 4611 "schannel", 4612 "security-framework", 4613] 4614 4615[[package]] 4616name = "rustls-pki-types" 4617version = "1.14.1" 4618source = "registry+https://github.com/rust-lang/crates.io-index" 4619checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9" 4620dependencies = [ 4621 "web-time", 4622 "zeroize", 4623] 4624 4625[[package]] 4626name = "rustls-webpki" 4627version = "0.103.13" 4628source = "registry+https://github.com/rust-lang/crates.io-index" 4629checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" 4630dependencies = [ 4631 "ring", 4632 "rustls-pki-types", 4633 "untrusted", 4634] 4635 4636[[package]] 4637name = "rustversion" 4638version = "1.0.22" 4639source = "registry+https://github.com/rust-lang/crates.io-index" 4640checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 4641 4642[[package]] 4643name = "ryu" 4644version = "1.0.23" 4645source = "registry+https://github.com/rust-lang/crates.io-index" 4646checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" 4647 4648[[package]] 4649name = "saa" 4650version = "5.6.0" 4651source = "registry+https://github.com/rust-lang/crates.io-index" 4652checksum = "68f5acb362a0e75c2a963532fa7fabf13dff81626dc494df16488d30befcbea0" 4653 4654[[package]] 4655name = "same-file" 4656version = "1.0.6" 4657source = "registry+https://github.com/rust-lang/crates.io-index" 4658checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 4659dependencies = [ 4660 "winapi-util", 4661] 4662 4663[[package]] 4664name = "scc" 4665version = "3.7.1" 4666source = "registry+https://github.com/rust-lang/crates.io-index" 4667checksum = "5bcd12b6caff5213cc3c03123cde8c3db5e413008a63b0c0ba35e6275825ea92" 4668dependencies = [ 4669 "saa", 4670 "sdd", 4671] 4672 4673[[package]] 4674name = "schannel" 4675version = "0.1.29" 4676source = "registry+https://github.com/rust-lang/crates.io-index" 4677checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" 4678dependencies = [ 4679 "windows-sys 0.61.2", 4680] 4681 4682[[package]] 4683name = "scoped-tls" 4684version = "1.0.1" 4685source = "registry+https://github.com/rust-lang/crates.io-index" 4686checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 4687 4688[[package]] 4689name = "scopeguard" 4690version = "1.2.0" 4691source = "registry+https://github.com/rust-lang/crates.io-index" 4692checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 4693 4694[[package]] 4695name = "sdd" 4696version = "4.8.6" 4697source = "registry+https://github.com/rust-lang/crates.io-index" 4698checksum = "e5f0e40a01b94e35d1dacbcfbe5bfd3d31e37d9590b2e6d86a82b0e87bd4f551" 4699dependencies = [ 4700 "saa", 4701] 4702 4703[[package]] 4704name = "sec1" 4705version = "0.7.3" 4706source = "registry+https://github.com/rust-lang/crates.io-index" 4707checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" 4708dependencies = [ 4709 "base16ct", 4710 "der", 4711 "generic-array", 4712 "pkcs8", 4713 "subtle", 4714 "zeroize", 4715] 4716 4717[[package]] 4718name = "security-framework" 4719version = "3.7.0" 4720source = "registry+https://github.com/rust-lang/crates.io-index" 4721checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" 4722dependencies = [ 4723 "bitflags 2.11.1", 4724 "core-foundation 0.10.1", 4725 "core-foundation-sys", 4726 "libc", 4727 "security-framework-sys", 4728] 4729 4730[[package]] 4731name = "security-framework-sys" 4732version = "2.17.0" 4733source = "registry+https://github.com/rust-lang/crates.io-index" 4734checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" 4735dependencies = [ 4736 "core-foundation-sys", 4737 "libc", 4738] 4739 4740[[package]] 4741name = "semver" 4742version = "1.0.28" 4743source = "registry+https://github.com/rust-lang/crates.io-index" 4744checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" 4745 4746[[package]] 4747name = "send_wrapper" 4748version = "0.6.0" 4749source = "registry+https://github.com/rust-lang/crates.io-index" 4750checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" 4751 4752[[package]] 4753name = "serde" 4754version = "1.0.228" 4755source = "registry+https://github.com/rust-lang/crates.io-index" 4756checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 4757dependencies = [ 4758 "serde_core", 4759 "serde_derive", 4760] 4761 4762[[package]] 4763name = "serde-value" 4764version = "0.7.0" 4765source = "registry+https://github.com/rust-lang/crates.io-index" 4766checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" 4767dependencies = [ 4768 "ordered-float 2.10.1", 4769 "serde", 4770] 4771 4772[[package]] 4773name = "serde_bytes" 4774version = "0.11.19" 4775source = "registry+https://github.com/rust-lang/crates.io-index" 4776checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 4777dependencies = [ 4778 "serde", 4779 "serde_core", 4780] 4781 4782[[package]] 4783name = "serde_core" 4784version = "1.0.228" 4785source = "registry+https://github.com/rust-lang/crates.io-index" 4786checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 4787dependencies = [ 4788 "serde_derive", 4789] 4790 4791[[package]] 4792name = "serde_derive" 4793version = "1.0.228" 4794source = "registry+https://github.com/rust-lang/crates.io-index" 4795checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 4796dependencies = [ 4797 "proc-macro2", 4798 "quote", 4799 "syn", 4800] 4801 4802[[package]] 4803name = "serde_html_form" 4804version = "0.3.2" 4805source = "registry+https://github.com/rust-lang/crates.io-index" 4806checksum = "2acf96b1d9364968fce46ebb548f1c0e1d7eceae27bdff73865d42e6c7369d94" 4807dependencies = [ 4808 "form_urlencoded", 4809 "indexmap", 4810 "itoa", 4811 "serde_core", 4812] 4813 4814[[package]] 4815name = "serde_ipld_dagcbor" 4816version = "0.6.4" 4817source = "registry+https://github.com/rust-lang/crates.io-index" 4818checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778" 4819dependencies = [ 4820 "cbor4ii", 4821 "ipld-core", 4822 "scopeguard", 4823 "serde", 4824] 4825 4826[[package]] 4827name = "serde_json" 4828version = "1.0.150" 4829source = "registry+https://github.com/rust-lang/crates.io-index" 4830checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9" 4831dependencies = [ 4832 "itoa", 4833 "memchr", 4834 "serde", 4835 "serde_core", 4836 "zmij", 4837] 4838 4839[[package]] 4840name = "serde_path_to_error" 4841version = "0.1.20" 4842source = "registry+https://github.com/rust-lang/crates.io-index" 4843checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" 4844dependencies = [ 4845 "itoa", 4846 "serde", 4847 "serde_core", 4848] 4849 4850[[package]] 4851name = "serde_repr" 4852version = "0.1.20" 4853source = "registry+https://github.com/rust-lang/crates.io-index" 4854checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" 4855dependencies = [ 4856 "proc-macro2", 4857 "quote", 4858 "syn", 4859] 4860 4861[[package]] 4862name = "serde_spanned" 4863version = "1.1.1" 4864source = "registry+https://github.com/rust-lang/crates.io-index" 4865checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26" 4866dependencies = [ 4867 "serde_core", 4868] 4869 4870[[package]] 4871name = "serde_urlencoded" 4872version = "0.7.1" 4873source = "registry+https://github.com/rust-lang/crates.io-index" 4874checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 4875dependencies = [ 4876 "form_urlencoded", 4877 "itoa", 4878 "ryu", 4879 "serde", 4880] 4881 4882[[package]] 4883name = "serde_with" 4884version = "3.20.0" 4885source = "registry+https://github.com/rust-lang/crates.io-index" 4886checksum = "e72c1c2cb7b223fafb600a619537a871c2818583d619401b785e7c0b746ccde2" 4887dependencies = [ 4888 "base64", 4889 "bs58", 4890 "chrono", 4891 "hex", 4892 "serde_core", 4893 "serde_json", 4894 "serde_with_macros", 4895 "time", 4896] 4897 4898[[package]] 4899name = "serde_with_macros" 4900version = "3.20.0" 4901source = "registry+https://github.com/rust-lang/crates.io-index" 4902checksum = "b90c488738ecb4fb0262f41f43bc40efc5868d9fb744319ddf5f5317f417bfac" 4903dependencies = [ 4904 "darling", 4905 "proc-macro2", 4906 "quote", 4907 "syn", 4908] 4909 4910[[package]] 4911name = "sha1" 4912version = "0.10.6" 4913source = "registry+https://github.com/rust-lang/crates.io-index" 4914checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 4915dependencies = [ 4916 "cfg-if", 4917 "cpufeatures 0.2.17", 4918 "digest 0.10.7", 4919] 4920 4921[[package]] 4922name = "sha1-checked" 4923version = "0.10.0" 4924source = "registry+https://github.com/rust-lang/crates.io-index" 4925checksum = "89f599ac0c323ebb1c6082821a54962b839832b03984598375bff3975b804423" 4926dependencies = [ 4927 "digest 0.10.7", 4928 "sha1", 4929] 4930 4931[[package]] 4932name = "sha2" 4933version = "0.10.9" 4934source = "registry+https://github.com/rust-lang/crates.io-index" 4935checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 4936dependencies = [ 4937 "cfg-if", 4938 "cpufeatures 0.2.17", 4939 "digest 0.10.7", 4940] 4941 4942[[package]] 4943name = "sha2" 4944version = "0.11.0" 4945source = "registry+https://github.com/rust-lang/crates.io-index" 4946checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" 4947dependencies = [ 4948 "cfg-if", 4949 "cpufeatures 0.3.0", 4950 "digest 0.11.3", 4951] 4952 4953[[package]] 4954name = "sharded-slab" 4955version = "0.1.7" 4956source = "registry+https://github.com/rust-lang/crates.io-index" 4957checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 4958dependencies = [ 4959 "lazy_static", 4960] 4961 4962[[package]] 4963name = "shell-words" 4964version = "1.1.1" 4965source = "registry+https://github.com/rust-lang/crates.io-index" 4966checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77" 4967 4968[[package]] 4969name = "shlex" 4970version = "1.3.0" 4971source = "registry+https://github.com/rust-lang/crates.io-index" 4972checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 4973 4974[[package]] 4975name = "shuttle" 4976version = "0.1.0" 4977dependencies = [ 4978 "anyhow", 4979 "base64", 4980 "nix", 4981 "once_cell", 4982 "prost", 4983 "prost-protovalidate", 4984 "prost-reflect", 4985 "serde", 4986 "serde_json", 4987 "tempfile", 4988 "tokio", 4989 "tokio-vsock", 4990 "tracing", 4991 "tracing-subscriber", 4992] 4993 4994[[package]] 4995name = "signal-hook" 4996version = "0.4.4" 4997source = "registry+https://github.com/rust-lang/crates.io-index" 4998checksum = "b2a0c28ca5908dbdbcd52e6fdaa00358ab88637f8ab33e1f188dd510eb44b53d" 4999dependencies = [ 5000 "libc", 5001 "signal-hook-registry", 5002] 5003 5004[[package]] 5005name = "signal-hook-registry" 5006version = "1.4.8" 5007source = "registry+https://github.com/rust-lang/crates.io-index" 5008checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 5009dependencies = [ 5010 "errno", 5011 "libc", 5012] 5013 5014[[package]] 5015name = "signature" 5016version = "2.2.0" 5017source = "registry+https://github.com/rust-lang/crates.io-index" 5018checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" 5019dependencies = [ 5020 "digest 0.10.7", 5021 "rand_core 0.6.4", 5022] 5023 5024[[package]] 5025name = "simd-adler32" 5026version = "0.3.9" 5027source = "registry+https://github.com/rust-lang/crates.io-index" 5028checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214" 5029 5030[[package]] 5031name = "siphasher" 5032version = "1.0.3" 5033source = "registry+https://github.com/rust-lang/crates.io-index" 5034checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649" 5035 5036[[package]] 5037name = "sketches-ddsketch" 5038version = "0.4.0" 5039source = "registry+https://github.com/rust-lang/crates.io-index" 5040checksum = "05e40b6cf54d988dc1a2223531b969c9a9e30906ad90ef64890c27b4bfbb46ea" 5041dependencies = [ 5042 "serde", 5043] 5044 5045[[package]] 5046name = "slab" 5047version = "0.4.12" 5048source = "registry+https://github.com/rust-lang/crates.io-index" 5049checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" 5050 5051[[package]] 5052name = "smallvec" 5053version = "1.15.1" 5054source = "registry+https://github.com/rust-lang/crates.io-index" 5055checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 5056 5057[[package]] 5058name = "smol_str" 5059version = "0.3.6" 5060source = "registry+https://github.com/rust-lang/crates.io-index" 5061checksum = "4aaa7368fcf4852a4c2dd92df0cace6a71f2091ca0a23391ce7f3a31833f1523" 5062dependencies = [ 5063 "borsh", 5064 "serde_core", 5065] 5066 5067[[package]] 5068name = "socket2" 5069version = "0.6.3" 5070source = "registry+https://github.com/rust-lang/crates.io-index" 5071checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" 5072dependencies = [ 5073 "libc", 5074 "windows-sys 0.61.2", 5075] 5076 5077[[package]] 5078name = "spin" 5079version = "0.9.8" 5080source = "registry+https://github.com/rust-lang/crates.io-index" 5081checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 5082dependencies = [ 5083 "lock_api", 5084] 5085 5086[[package]] 5087name = "spin" 5088version = "0.10.0" 5089source = "registry+https://github.com/rust-lang/crates.io-index" 5090checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" 5091 5092[[package]] 5093name = "spki" 5094version = "0.7.3" 5095source = "registry+https://github.com/rust-lang/crates.io-index" 5096checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" 5097dependencies = [ 5098 "base64ct", 5099 "der", 5100] 5101 5102[[package]] 5103name = "stable_deref_trait" 5104version = "1.2.1" 5105source = "registry+https://github.com/rust-lang/crates.io-index" 5106checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 5107 5108[[package]] 5109name = "static_assertions" 5110version = "1.1.0" 5111source = "registry+https://github.com/rust-lang/crates.io-index" 5112checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 5113 5114[[package]] 5115name = "strsim" 5116version = "0.11.1" 5117source = "registry+https://github.com/rust-lang/crates.io-index" 5118checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 5119 5120[[package]] 5121name = "subtle" 5122version = "2.6.1" 5123source = "registry+https://github.com/rust-lang/crates.io-index" 5124checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 5125 5126[[package]] 5127name = "syn" 5128version = "2.0.117" 5129source = "registry+https://github.com/rust-lang/crates.io-index" 5130checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" 5131dependencies = [ 5132 "proc-macro2", 5133 "quote", 5134 "unicode-ident", 5135] 5136 5137[[package]] 5138name = "sync_wrapper" 5139version = "1.0.2" 5140source = "registry+https://github.com/rust-lang/crates.io-index" 5141checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 5142dependencies = [ 5143 "futures-core", 5144] 5145 5146[[package]] 5147name = "synstructure" 5148version = "0.13.2" 5149source = "registry+https://github.com/rust-lang/crates.io-index" 5150checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 5151dependencies = [ 5152 "proc-macro2", 5153 "quote", 5154 "syn", 5155] 5156 5157[[package]] 5158name = "system-configuration" 5159version = "0.7.0" 5160source = "registry+https://github.com/rust-lang/crates.io-index" 5161checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" 5162dependencies = [ 5163 "bitflags 2.11.1", 5164 "core-foundation 0.9.4", 5165 "system-configuration-sys", 5166] 5167 5168[[package]] 5169name = "system-configuration-sys" 5170version = "0.6.0" 5171source = "registry+https://github.com/rust-lang/crates.io-index" 5172checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 5173dependencies = [ 5174 "core-foundation-sys", 5175 "libc", 5176] 5177 5178[[package]] 5179name = "tantivy" 5180version = "0.26.1" 5181source = "registry+https://github.com/rust-lang/crates.io-index" 5182checksum = "edde6a10743fff00a4e1a8c9ef020bf5f3cbad301b7d2d39f2b07f123c4eac07" 5183dependencies = [ 5184 "aho-corasick", 5185 "arc-swap", 5186 "base64", 5187 "bitpacking", 5188 "bon", 5189 "byteorder", 5190 "census", 5191 "crc32fast", 5192 "crossbeam-channel", 5193 "datasketches", 5194 "downcast-rs", 5195 "fastdivide", 5196 "fnv", 5197 "fs4", 5198 "htmlescape", 5199 "itertools 0.14.0", 5200 "levenshtein_automata", 5201 "log", 5202 "lru", 5203 "lz4_flex", 5204 "measure_time", 5205 "memmap2", 5206 "once_cell", 5207 "oneshot", 5208 "rayon", 5209 "regex", 5210 "rust-stemmers", 5211 "rustc-hash", 5212 "serde", 5213 "serde_json", 5214 "sketches-ddsketch", 5215 "smallvec", 5216 "tantivy-bitpacker", 5217 "tantivy-columnar", 5218 "tantivy-common", 5219 "tantivy-fst", 5220 "tantivy-query-grammar", 5221 "tantivy-stacker", 5222 "tantivy-tokenizer-api", 5223 "tempfile", 5224 "thiserror 2.0.18", 5225 "time", 5226 "typetag", 5227 "uuid", 5228 "winapi", 5229] 5230 5231[[package]] 5232name = "tantivy-bitpacker" 5233version = "0.10.0" 5234source = "registry+https://github.com/rust-lang/crates.io-index" 5235checksum = "4fed3d674429bcd2de5d0a6d1aa5495fed8afd9c5ecce993019caf7615f53fa4" 5236dependencies = [ 5237 "bitpacking", 5238] 5239 5240[[package]] 5241name = "tantivy-columnar" 5242version = "0.7.0" 5243source = "registry+https://github.com/rust-lang/crates.io-index" 5244checksum = "c57166f5bcfd478f370ab8445afb4678dce44801fa5ce5c451aaf8595583c5dc" 5245dependencies = [ 5246 "downcast-rs", 5247 "fastdivide", 5248 "itertools 0.14.0", 5249 "serde", 5250 "tantivy-bitpacker", 5251 "tantivy-common", 5252 "tantivy-sstable", 5253 "tantivy-stacker", 5254] 5255 5256[[package]] 5257name = "tantivy-common" 5258version = "0.11.0" 5259source = "registry+https://github.com/rust-lang/crates.io-index" 5260checksum = "bbf10915aa75da3c3b0d58b58853d2e889efbaf32d4982a4c3715dde6bba23e5" 5261dependencies = [ 5262 "async-trait", 5263 "byteorder", 5264 "ownedbytes", 5265 "serde", 5266 "time", 5267] 5268 5269[[package]] 5270name = "tantivy-fst" 5271version = "0.5.0" 5272source = "registry+https://github.com/rust-lang/crates.io-index" 5273checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18" 5274dependencies = [ 5275 "byteorder", 5276 "regex-syntax", 5277 "utf8-ranges", 5278] 5279 5280[[package]] 5281name = "tantivy-query-grammar" 5282version = "0.26.0" 5283source = "registry+https://github.com/rust-lang/crates.io-index" 5284checksum = "dfadb8526b6da90704feb293b0701a6aae62ea14983143344be2dc5ce30f1d82" 5285dependencies = [ 5286 "fnv", 5287 "nom", 5288 "ordered-float 5.3.0", 5289 "serde", 5290 "serde_json", 5291] 5292 5293[[package]] 5294name = "tantivy-sstable" 5295version = "0.7.0" 5296source = "registry+https://github.com/rust-lang/crates.io-index" 5297checksum = "8a2cfc3ac5164cbadc28965ffb145a8f47582a60ae5897859ad8d4316596c606" 5298dependencies = [ 5299 "futures-util", 5300 "itertools 0.14.0", 5301 "tantivy-bitpacker", 5302 "tantivy-common", 5303 "tantivy-fst", 5304 "zstd", 5305] 5306 5307[[package]] 5308name = "tantivy-stacker" 5309version = "0.7.0" 5310source = "registry+https://github.com/rust-lang/crates.io-index" 5311checksum = "6cbb051742da9d53ca9e8fff43a9b10e319338b24e2c0e15d0372df19ffeb951" 5312dependencies = [ 5313 "murmurhash32", 5314 "tantivy-common", 5315] 5316 5317[[package]] 5318name = "tantivy-tokenizer-api" 5319version = "0.7.0" 5320source = "registry+https://github.com/rust-lang/crates.io-index" 5321checksum = "eac258c2c6390673f2685813afeeafcb8c4e0ee7de8dd3fc46838dcc37263f98" 5322dependencies = [ 5323 "serde", 5324] 5325 5326[[package]] 5327name = "tempfile" 5328version = "3.27.0" 5329source = "registry+https://github.com/rust-lang/crates.io-index" 5330checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" 5331dependencies = [ 5332 "fastrand", 5333 "getrandom 0.4.2", 5334 "once_cell", 5335 "rustix", 5336 "windows-sys 0.61.2", 5337] 5338 5339[[package]] 5340name = "thiserror" 5341version = "1.0.69" 5342source = "registry+https://github.com/rust-lang/crates.io-index" 5343checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 5344dependencies = [ 5345 "thiserror-impl 1.0.69", 5346] 5347 5348[[package]] 5349name = "thiserror" 5350version = "2.0.18" 5351source = "registry+https://github.com/rust-lang/crates.io-index" 5352checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" 5353dependencies = [ 5354 "thiserror-impl 2.0.18", 5355] 5356 5357[[package]] 5358name = "thiserror-impl" 5359version = "1.0.69" 5360source = "registry+https://github.com/rust-lang/crates.io-index" 5361checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 5362dependencies = [ 5363 "proc-macro2", 5364 "quote", 5365 "syn", 5366] 5367 5368[[package]] 5369name = "thiserror-impl" 5370version = "2.0.18" 5371source = "registry+https://github.com/rust-lang/crates.io-index" 5372checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" 5373dependencies = [ 5374 "proc-macro2", 5375 "quote", 5376 "syn", 5377] 5378 5379[[package]] 5380name = "thread_local" 5381version = "1.1.9" 5382source = "registry+https://github.com/rust-lang/crates.io-index" 5383checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 5384dependencies = [ 5385 "cfg-if", 5386] 5387 5388[[package]] 5389name = "tikv-jemalloc-ctl" 5390version = "0.7.0" 5391source = "registry+https://github.com/rust-lang/crates.io-index" 5392checksum = "3a184c43b8ab2f41df2733b55556e3f5f632f4aeaa205b1bb018f574b7f5f142" 5393dependencies = [ 5394 "libc", 5395 "paste", 5396 "tikv-jemalloc-sys", 5397] 5398 5399[[package]] 5400name = "tikv-jemalloc-sys" 5401version = "0.7.1+5.3.1-0-g81034ce1f1373e37dc865038e1bc8eeecf559ce8" 5402source = "registry+https://github.com/rust-lang/crates.io-index" 5403checksum = "1a2825c78386b4ae0314074867860ba9577875de945f05992c38815cbec327f0" 5404dependencies = [ 5405 "cc", 5406 "libc", 5407] 5408 5409[[package]] 5410name = "tikv-jemallocator" 5411version = "0.7.0" 5412source = "registry+https://github.com/rust-lang/crates.io-index" 5413checksum = "249f09e49ab1609436f34c776e84231bead18d6a955f119f939bdc1d847561bd" 5414dependencies = [ 5415 "libc", 5416 "tikv-jemalloc-sys", 5417] 5418 5419[[package]] 5420name = "time" 5421version = "0.3.47" 5422source = "registry+https://github.com/rust-lang/crates.io-index" 5423checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" 5424dependencies = [ 5425 "deranged", 5426 "itoa", 5427 "num-conv", 5428 "powerfmt", 5429 "serde_core", 5430 "time-core", 5431 "time-macros", 5432] 5433 5434[[package]] 5435name = "time-core" 5436version = "0.1.8" 5437source = "registry+https://github.com/rust-lang/crates.io-index" 5438checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" 5439 5440[[package]] 5441name = "time-macros" 5442version = "0.2.27" 5443source = "registry+https://github.com/rust-lang/crates.io-index" 5444checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" 5445dependencies = [ 5446 "num-conv", 5447 "time-core", 5448] 5449 5450[[package]] 5451name = "tinystr" 5452version = "0.8.3" 5453source = "registry+https://github.com/rust-lang/crates.io-index" 5454checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" 5455dependencies = [ 5456 "displaydoc", 5457 "zerovec", 5458] 5459 5460[[package]] 5461name = "tinytemplate" 5462version = "1.2.1" 5463source = "registry+https://github.com/rust-lang/crates.io-index" 5464checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 5465dependencies = [ 5466 "serde", 5467 "serde_json", 5468] 5469 5470[[package]] 5471name = "tinyvec" 5472version = "1.11.0" 5473source = "registry+https://github.com/rust-lang/crates.io-index" 5474checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" 5475dependencies = [ 5476 "tinyvec_macros", 5477] 5478 5479[[package]] 5480name = "tinyvec_macros" 5481version = "0.1.1" 5482source = "registry+https://github.com/rust-lang/crates.io-index" 5483checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 5484 5485[[package]] 5486name = "tokio" 5487version = "1.52.3" 5488source = "registry+https://github.com/rust-lang/crates.io-index" 5489checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" 5490dependencies = [ 5491 "bytes", 5492 "libc", 5493 "mio", 5494 "pin-project-lite", 5495 "signal-hook-registry", 5496 "socket2", 5497 "tokio-macros", 5498 "windows-sys 0.61.2", 5499] 5500 5501[[package]] 5502name = "tokio-macros" 5503version = "2.7.0" 5504source = "registry+https://github.com/rust-lang/crates.io-index" 5505checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" 5506dependencies = [ 5507 "proc-macro2", 5508 "quote", 5509 "syn", 5510] 5511 5512[[package]] 5513name = "tokio-rustls" 5514version = "0.26.4" 5515source = "registry+https://github.com/rust-lang/crates.io-index" 5516checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 5517dependencies = [ 5518 "rustls", 5519 "tokio", 5520] 5521 5522[[package]] 5523name = "tokio-stream" 5524version = "0.1.18" 5525source = "registry+https://github.com/rust-lang/crates.io-index" 5526checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" 5527dependencies = [ 5528 "futures-core", 5529 "pin-project-lite", 5530 "tokio", 5531 "tokio-util", 5532] 5533 5534[[package]] 5535name = "tokio-tungstenite" 5536version = "0.24.0" 5537source = "registry+https://github.com/rust-lang/crates.io-index" 5538checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" 5539dependencies = [ 5540 "futures-util", 5541 "log", 5542 "rustls", 5543 "rustls-native-certs", 5544 "rustls-pki-types", 5545 "tokio", 5546 "tokio-rustls", 5547 "tungstenite 0.24.0", 5548] 5549 5550[[package]] 5551name = "tokio-tungstenite" 5552version = "0.29.0" 5553source = "registry+https://github.com/rust-lang/crates.io-index" 5554checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c" 5555dependencies = [ 5556 "futures-util", 5557 "log", 5558 "rustls", 5559 "rustls-pki-types", 5560 "tokio", 5561 "tokio-rustls", 5562 "tungstenite 0.29.0", 5563 "webpki-roots 0.26.11", 5564] 5565 5566[[package]] 5567name = "tokio-tungstenite-wasm" 5568version = "0.4.0" 5569source = "registry+https://github.com/rust-lang/crates.io-index" 5570checksum = "e21a5c399399c3db9f08d8297ac12b500e86bca82e930253fdc62eaf9c0de6ae" 5571dependencies = [ 5572 "futures-channel", 5573 "futures-util", 5574 "http", 5575 "httparse", 5576 "js-sys", 5577 "rustls", 5578 "thiserror 1.0.69", 5579 "tokio", 5580 "tokio-tungstenite 0.24.0", 5581 "wasm-bindgen", 5582 "web-sys", 5583] 5584 5585[[package]] 5586name = "tokio-util" 5587version = "0.7.18" 5588source = "registry+https://github.com/rust-lang/crates.io-index" 5589checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" 5590dependencies = [ 5591 "bytes", 5592 "futures-core", 5593 "futures-sink", 5594 "futures-util", 5595 "pin-project-lite", 5596 "tokio", 5597] 5598 5599[[package]] 5600name = "tokio-vsock" 5601version = "0.7.2" 5602source = "registry+https://github.com/rust-lang/crates.io-index" 5603checksum = "8b319ef9394889dab2e1b4f0085b45ba11d0c79dc9d1a9d1afc057d009d0f1c7" 5604dependencies = [ 5605 "bytes", 5606 "futures", 5607 "libc", 5608 "tokio", 5609 "vsock", 5610] 5611 5612[[package]] 5613name = "toml" 5614version = "0.9.12+spec-1.1.0" 5615source = "registry+https://github.com/rust-lang/crates.io-index" 5616checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" 5617dependencies = [ 5618 "indexmap", 5619 "serde_core", 5620 "serde_spanned", 5621 "toml_datetime", 5622 "toml_parser", 5623 "toml_writer", 5624 "winnow 0.7.15", 5625] 5626 5627[[package]] 5628name = "toml_datetime" 5629version = "0.7.5+spec-1.1.0" 5630source = "registry+https://github.com/rust-lang/crates.io-index" 5631checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" 5632dependencies = [ 5633 "serde_core", 5634] 5635 5636[[package]] 5637name = "toml_parser" 5638version = "1.1.2+spec-1.1.0" 5639source = "registry+https://github.com/rust-lang/crates.io-index" 5640checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" 5641dependencies = [ 5642 "winnow 1.0.3", 5643] 5644 5645[[package]] 5646name = "toml_writer" 5647version = "1.1.1+spec-1.1.0" 5648source = "registry+https://github.com/rust-lang/crates.io-index" 5649checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db" 5650 5651[[package]] 5652name = "tonic" 5653version = "0.14.6" 5654source = "registry+https://github.com/rust-lang/crates.io-index" 5655checksum = "ac2a5518c70fa84342385732db33fb3f44bc4cc748936eb5833d2df34d6445ef" 5656dependencies = [ 5657 "async-trait", 5658 "axum", 5659 "base64", 5660 "bytes", 5661 "h2", 5662 "http", 5663 "http-body", 5664 "http-body-util", 5665 "hyper", 5666 "hyper-timeout", 5667 "hyper-util", 5668 "percent-encoding", 5669 "pin-project", 5670 "socket2", 5671 "sync_wrapper", 5672 "tokio", 5673 "tokio-stream", 5674 "tower", 5675 "tower-layer", 5676 "tower-service", 5677 "tracing", 5678] 5679 5680[[package]] 5681name = "tonic-build" 5682version = "0.14.6" 5683source = "registry+https://github.com/rust-lang/crates.io-index" 5684checksum = "c68f61875ac5293cf72e6c8cf0158086428c82c37229e98c840878f1706b0322" 5685dependencies = [ 5686 "prettyplease", 5687 "proc-macro2", 5688 "quote", 5689 "syn", 5690] 5691 5692[[package]] 5693name = "tonic-prost" 5694version = "0.14.6" 5695source = "registry+https://github.com/rust-lang/crates.io-index" 5696checksum = "50849f68853be452acf590cde0b146665b8d507b3b8af17261df47e02c209ea0" 5697dependencies = [ 5698 "bytes", 5699 "prost", 5700 "tonic", 5701] 5702 5703[[package]] 5704name = "tonic-prost-build" 5705version = "0.14.6" 5706source = "registry+https://github.com/rust-lang/crates.io-index" 5707checksum = "654e5643eff75d7f8c99197ce1440ed19a3474eada74c12bbac488b2cafdae27" 5708dependencies = [ 5709 "prettyplease", 5710 "proc-macro2", 5711 "prost-build", 5712 "prost-types", 5713 "quote", 5714 "syn", 5715 "tempfile", 5716 "tonic-build", 5717] 5718 5719[[package]] 5720name = "tower" 5721version = "0.5.3" 5722source = "registry+https://github.com/rust-lang/crates.io-index" 5723checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" 5724dependencies = [ 5725 "futures-core", 5726 "futures-util", 5727 "indexmap", 5728 "pin-project-lite", 5729 "slab", 5730 "sync_wrapper", 5731 "tokio", 5732 "tokio-util", 5733 "tower-layer", 5734 "tower-service", 5735 "tracing", 5736] 5737 5738[[package]] 5739name = "tower-http" 5740version = "0.6.11" 5741source = "registry+https://github.com/rust-lang/crates.io-index" 5742checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" 5743dependencies = [ 5744 "async-compression", 5745 "bitflags 2.11.1", 5746 "bytes", 5747 "futures-core", 5748 "futures-util", 5749 "http", 5750 "http-body", 5751 "http-body-util", 5752 "pin-project-lite", 5753 "tokio", 5754 "tokio-util", 5755 "tower", 5756 "tower-layer", 5757 "tower-service", 5758 "tracing", 5759 "url", 5760] 5761 5762[[package]] 5763name = "tower-layer" 5764version = "0.3.3" 5765source = "registry+https://github.com/rust-lang/crates.io-index" 5766checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 5767 5768[[package]] 5769name = "tower-service" 5770version = "0.3.3" 5771source = "registry+https://github.com/rust-lang/crates.io-index" 5772checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 5773 5774[[package]] 5775name = "tracing" 5776version = "0.1.44" 5777source = "registry+https://github.com/rust-lang/crates.io-index" 5778checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 5779dependencies = [ 5780 "log", 5781 "pin-project-lite", 5782 "tracing-attributes", 5783 "tracing-core", 5784] 5785 5786[[package]] 5787name = "tracing-attributes" 5788version = "0.1.31" 5789source = "registry+https://github.com/rust-lang/crates.io-index" 5790checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 5791dependencies = [ 5792 "proc-macro2", 5793 "quote", 5794 "syn", 5795] 5796 5797[[package]] 5798name = "tracing-core" 5799version = "0.1.36" 5800source = "registry+https://github.com/rust-lang/crates.io-index" 5801checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 5802dependencies = [ 5803 "once_cell", 5804 "valuable", 5805] 5806 5807[[package]] 5808name = "tracing-log" 5809version = "0.2.0" 5810source = "registry+https://github.com/rust-lang/crates.io-index" 5811checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 5812dependencies = [ 5813 "log", 5814 "once_cell", 5815 "tracing-core", 5816] 5817 5818[[package]] 5819name = "tracing-serde" 5820version = "0.2.0" 5821source = "registry+https://github.com/rust-lang/crates.io-index" 5822checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" 5823dependencies = [ 5824 "serde", 5825 "tracing-core", 5826] 5827 5828[[package]] 5829name = "tracing-subscriber" 5830version = "0.3.23" 5831source = "registry+https://github.com/rust-lang/crates.io-index" 5832checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" 5833dependencies = [ 5834 "matchers", 5835 "nu-ansi-term", 5836 "once_cell", 5837 "regex-automata", 5838 "serde", 5839 "serde_json", 5840 "sharded-slab", 5841 "smallvec", 5842 "thread_local", 5843 "tracing", 5844 "tracing-core", 5845 "tracing-log", 5846 "tracing-serde", 5847] 5848 5849[[package]] 5850name = "trait-variant" 5851version = "0.1.2" 5852source = "registry+https://github.com/rust-lang/crates.io-index" 5853checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7" 5854dependencies = [ 5855 "proc-macro2", 5856 "quote", 5857 "syn", 5858] 5859 5860[[package]] 5861name = "try-lock" 5862version = "0.2.5" 5863source = "registry+https://github.com/rust-lang/crates.io-index" 5864checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 5865 5866[[package]] 5867name = "tungstenite" 5868version = "0.24.0" 5869source = "registry+https://github.com/rust-lang/crates.io-index" 5870checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" 5871dependencies = [ 5872 "byteorder", 5873 "bytes", 5874 "data-encoding", 5875 "http", 5876 "httparse", 5877 "log", 5878 "rand 0.8.6", 5879 "rustls", 5880 "rustls-pki-types", 5881 "sha1", 5882 "thiserror 1.0.69", 5883 "utf-8", 5884] 5885 5886[[package]] 5887name = "tungstenite" 5888version = "0.29.0" 5889source = "registry+https://github.com/rust-lang/crates.io-index" 5890checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8" 5891dependencies = [ 5892 "bytes", 5893 "data-encoding", 5894 "http", 5895 "httparse", 5896 "log", 5897 "rand 0.9.4", 5898 "rustls", 5899 "rustls-pki-types", 5900 "sha1", 5901 "thiserror 2.0.18", 5902] 5903 5904[[package]] 5905name = "typed-arena" 5906version = "2.0.2" 5907source = "registry+https://github.com/rust-lang/crates.io-index" 5908checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" 5909 5910[[package]] 5911name = "typeid" 5912version = "1.0.3" 5913source = "registry+https://github.com/rust-lang/crates.io-index" 5914checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" 5915 5916[[package]] 5917name = "typenum" 5918version = "1.20.0" 5919source = "registry+https://github.com/rust-lang/crates.io-index" 5920checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de" 5921 5922[[package]] 5923name = "typetag" 5924version = "0.2.22" 5925source = "registry+https://github.com/rust-lang/crates.io-index" 5926checksum = "c5a897b12c6c1151ad0b138b8db50252dc301f93bc3b027db05eec82aeed298c" 5927dependencies = [ 5928 "erased-serde", 5929 "inventory", 5930 "once_cell", 5931 "serde", 5932 "typetag-impl", 5933] 5934 5935[[package]] 5936name = "typetag-impl" 5937version = "0.2.22" 5938source = "registry+https://github.com/rust-lang/crates.io-index" 5939checksum = "cf808357c6ed7e13ba0f3277ec8d8f21b2d501274895104263985330c726c1c5" 5940dependencies = [ 5941 "proc-macro2", 5942 "quote", 5943 "syn", 5944] 5945 5946[[package]] 5947name = "uluru" 5948version = "3.1.0" 5949source = "registry+https://github.com/rust-lang/crates.io-index" 5950checksum = "7c8a2469e56e6e5095c82ccd3afb98dad95f7af7929aab6d8ba8d6e0f73657da" 5951dependencies = [ 5952 "arrayvec", 5953] 5954 5955[[package]] 5956name = "unicase" 5957version = "2.9.0" 5958source = "registry+https://github.com/rust-lang/crates.io-index" 5959checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142" 5960 5961[[package]] 5962name = "unicode-bom" 5963version = "2.0.3" 5964source = "registry+https://github.com/rust-lang/crates.io-index" 5965checksum = "7eec5d1121208364f6793f7d2e222bf75a915c19557537745b195b253dd64217" 5966 5967[[package]] 5968name = "unicode-ident" 5969version = "1.0.24" 5970source = "registry+https://github.com/rust-lang/crates.io-index" 5971checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 5972 5973[[package]] 5974name = "unicode-normalization" 5975version = "0.1.25" 5976source = "registry+https://github.com/rust-lang/crates.io-index" 5977checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" 5978dependencies = [ 5979 "tinyvec", 5980] 5981 5982[[package]] 5983name = "unicode-segmentation" 5984version = "1.13.2" 5985source = "registry+https://github.com/rust-lang/crates.io-index" 5986checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c" 5987 5988[[package]] 5989name = "unicode-width" 5990version = "0.1.14" 5991source = "registry+https://github.com/rust-lang/crates.io-index" 5992checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 5993 5994[[package]] 5995name = "unicode-xid" 5996version = "0.2.6" 5997source = "registry+https://github.com/rust-lang/crates.io-index" 5998checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 5999 6000[[package]] 6001name = "unsigned-varint" 6002version = "0.8.0" 6003source = "registry+https://github.com/rust-lang/crates.io-index" 6004checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 6005 6006[[package]] 6007name = "untrusted" 6008version = "0.9.0" 6009source = "registry+https://github.com/rust-lang/crates.io-index" 6010checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 6011 6012[[package]] 6013name = "url" 6014version = "2.5.8" 6015source = "registry+https://github.com/rust-lang/crates.io-index" 6016checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" 6017dependencies = [ 6018 "form_urlencoded", 6019 "idna", 6020 "percent-encoding", 6021 "serde", 6022 "serde_derive", 6023] 6024 6025[[package]] 6026name = "utf-8" 6027version = "0.7.6" 6028source = "registry+https://github.com/rust-lang/crates.io-index" 6029checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 6030 6031[[package]] 6032name = "utf8-ranges" 6033version = "1.0.5" 6034source = "registry+https://github.com/rust-lang/crates.io-index" 6035checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba" 6036 6037[[package]] 6038name = "utf8_iter" 6039version = "1.0.4" 6040source = "registry+https://github.com/rust-lang/crates.io-index" 6041checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 6042 6043[[package]] 6044name = "utf8parse" 6045version = "0.2.2" 6046source = "registry+https://github.com/rust-lang/crates.io-index" 6047checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 6048 6049[[package]] 6050name = "uuid" 6051version = "1.23.1" 6052source = "registry+https://github.com/rust-lang/crates.io-index" 6053checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76" 6054dependencies = [ 6055 "getrandom 0.4.2", 6056 "js-sys", 6057 "serde_core", 6058 "wasm-bindgen", 6059] 6060 6061[[package]] 6062name = "valuable" 6063version = "0.1.1" 6064source = "registry+https://github.com/rust-lang/crates.io-index" 6065checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 6066 6067[[package]] 6068name = "version_check" 6069version = "0.9.5" 6070source = "registry+https://github.com/rust-lang/crates.io-index" 6071checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 6072 6073[[package]] 6074name = "vsock" 6075version = "0.5.4" 6076source = "registry+https://github.com/rust-lang/crates.io-index" 6077checksum = "6ba782755fc073877e567c2253c0be48e4aa9a254c232d36d3985dfae0bd5205" 6078dependencies = [ 6079 "libc", 6080 "nix", 6081] 6082 6083[[package]] 6084name = "walkdir" 6085version = "2.5.0" 6086source = "registry+https://github.com/rust-lang/crates.io-index" 6087checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 6088dependencies = [ 6089 "same-file", 6090 "winapi-util", 6091] 6092 6093[[package]] 6094name = "want" 6095version = "0.3.1" 6096source = "registry+https://github.com/rust-lang/crates.io-index" 6097checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 6098dependencies = [ 6099 "try-lock", 6100] 6101 6102[[package]] 6103name = "wasi" 6104version = "0.11.1+wasi-snapshot-preview1" 6105source = "registry+https://github.com/rust-lang/crates.io-index" 6106checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 6107 6108[[package]] 6109name = "wasip2" 6110version = "1.0.3+wasi-0.2.9" 6111source = "registry+https://github.com/rust-lang/crates.io-index" 6112checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6" 6113dependencies = [ 6114 "wit-bindgen 0.57.1", 6115] 6116 6117[[package]] 6118name = "wasip3" 6119version = "0.4.0+wasi-0.3.0-rc-2026-01-06" 6120source = "registry+https://github.com/rust-lang/crates.io-index" 6121checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" 6122dependencies = [ 6123 "wit-bindgen 0.51.0", 6124] 6125 6126[[package]] 6127name = "wasm-bindgen" 6128version = "0.2.122" 6129source = "registry+https://github.com/rust-lang/crates.io-index" 6130checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409" 6131dependencies = [ 6132 "cfg-if", 6133 "once_cell", 6134 "rustversion", 6135 "wasm-bindgen-macro", 6136 "wasm-bindgen-shared", 6137] 6138 6139[[package]] 6140name = "wasm-bindgen-futures" 6141version = "0.4.72" 6142source = "registry+https://github.com/rust-lang/crates.io-index" 6143checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f" 6144dependencies = [ 6145 "js-sys", 6146 "wasm-bindgen", 6147] 6148 6149[[package]] 6150name = "wasm-bindgen-macro" 6151version = "0.2.122" 6152source = "registry+https://github.com/rust-lang/crates.io-index" 6153checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6" 6154dependencies = [ 6155 "quote", 6156 "wasm-bindgen-macro-support", 6157] 6158 6159[[package]] 6160name = "wasm-bindgen-macro-support" 6161version = "0.2.122" 6162source = "registry+https://github.com/rust-lang/crates.io-index" 6163checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e" 6164dependencies = [ 6165 "bumpalo", 6166 "proc-macro2", 6167 "quote", 6168 "syn", 6169 "wasm-bindgen-shared", 6170] 6171 6172[[package]] 6173name = "wasm-bindgen-shared" 6174version = "0.2.122" 6175source = "registry+https://github.com/rust-lang/crates.io-index" 6176checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437" 6177dependencies = [ 6178 "unicode-ident", 6179] 6180 6181[[package]] 6182name = "wasm-encoder" 6183version = "0.244.0" 6184source = "registry+https://github.com/rust-lang/crates.io-index" 6185checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" 6186dependencies = [ 6187 "leb128fmt", 6188 "wasmparser", 6189] 6190 6191[[package]] 6192name = "wasm-metadata" 6193version = "0.244.0" 6194source = "registry+https://github.com/rust-lang/crates.io-index" 6195checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" 6196dependencies = [ 6197 "anyhow", 6198 "indexmap", 6199 "wasm-encoder", 6200 "wasmparser", 6201] 6202 6203[[package]] 6204name = "wasm-streams" 6205version = "0.4.2" 6206source = "registry+https://github.com/rust-lang/crates.io-index" 6207checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" 6208dependencies = [ 6209 "futures-util", 6210 "js-sys", 6211 "wasm-bindgen", 6212 "wasm-bindgen-futures", 6213 "web-sys", 6214] 6215 6216[[package]] 6217name = "wasmparser" 6218version = "0.244.0" 6219source = "registry+https://github.com/rust-lang/crates.io-index" 6220checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" 6221dependencies = [ 6222 "bitflags 2.11.1", 6223 "hashbrown 0.15.5", 6224 "indexmap", 6225 "semver", 6226] 6227 6228[[package]] 6229name = "web-sys" 6230version = "0.3.99" 6231source = "registry+https://github.com/rust-lang/crates.io-index" 6232checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436" 6233dependencies = [ 6234 "js-sys", 6235 "wasm-bindgen", 6236] 6237 6238[[package]] 6239name = "web-time" 6240version = "1.1.0" 6241source = "registry+https://github.com/rust-lang/crates.io-index" 6242checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 6243dependencies = [ 6244 "js-sys", 6245 "wasm-bindgen", 6246] 6247 6248[[package]] 6249name = "webpki-roots" 6250version = "0.26.11" 6251source = "registry+https://github.com/rust-lang/crates.io-index" 6252checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" 6253dependencies = [ 6254 "webpki-roots 1.0.7", 6255] 6256 6257[[package]] 6258name = "webpki-roots" 6259version = "1.0.7" 6260source = "registry+https://github.com/rust-lang/crates.io-index" 6261checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d" 6262dependencies = [ 6263 "rustls-pki-types", 6264] 6265 6266[[package]] 6267name = "winapi" 6268version = "0.3.9" 6269source = "registry+https://github.com/rust-lang/crates.io-index" 6270checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 6271dependencies = [ 6272 "winapi-i686-pc-windows-gnu", 6273 "winapi-x86_64-pc-windows-gnu", 6274] 6275 6276[[package]] 6277name = "winapi-i686-pc-windows-gnu" 6278version = "0.4.0" 6279source = "registry+https://github.com/rust-lang/crates.io-index" 6280checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 6281 6282[[package]] 6283name = "winapi-util" 6284version = "0.1.11" 6285source = "registry+https://github.com/rust-lang/crates.io-index" 6286checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 6287dependencies = [ 6288 "windows-sys 0.61.2", 6289] 6290 6291[[package]] 6292name = "winapi-x86_64-pc-windows-gnu" 6293version = "0.4.0" 6294source = "registry+https://github.com/rust-lang/crates.io-index" 6295checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 6296 6297[[package]] 6298name = "windows-core" 6299version = "0.62.2" 6300source = "registry+https://github.com/rust-lang/crates.io-index" 6301checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 6302dependencies = [ 6303 "windows-implement", 6304 "windows-interface", 6305 "windows-link", 6306 "windows-result", 6307 "windows-strings", 6308] 6309 6310[[package]] 6311name = "windows-implement" 6312version = "0.60.2" 6313source = "registry+https://github.com/rust-lang/crates.io-index" 6314checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 6315dependencies = [ 6316 "proc-macro2", 6317 "quote", 6318 "syn", 6319] 6320 6321[[package]] 6322name = "windows-interface" 6323version = "0.59.3" 6324source = "registry+https://github.com/rust-lang/crates.io-index" 6325checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 6326dependencies = [ 6327 "proc-macro2", 6328 "quote", 6329 "syn", 6330] 6331 6332[[package]] 6333name = "windows-link" 6334version = "0.2.1" 6335source = "registry+https://github.com/rust-lang/crates.io-index" 6336checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 6337 6338[[package]] 6339name = "windows-registry" 6340version = "0.6.1" 6341source = "registry+https://github.com/rust-lang/crates.io-index" 6342checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" 6343dependencies = [ 6344 "windows-link", 6345 "windows-result", 6346 "windows-strings", 6347] 6348 6349[[package]] 6350name = "windows-result" 6351version = "0.4.1" 6352source = "registry+https://github.com/rust-lang/crates.io-index" 6353checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 6354dependencies = [ 6355 "windows-link", 6356] 6357 6358[[package]] 6359name = "windows-strings" 6360version = "0.5.1" 6361source = "registry+https://github.com/rust-lang/crates.io-index" 6362checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 6363dependencies = [ 6364 "windows-link", 6365] 6366 6367[[package]] 6368name = "windows-sys" 6369version = "0.52.0" 6370source = "registry+https://github.com/rust-lang/crates.io-index" 6371checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 6372dependencies = [ 6373 "windows-targets 0.52.6", 6374] 6375 6376[[package]] 6377name = "windows-sys" 6378version = "0.59.0" 6379source = "registry+https://github.com/rust-lang/crates.io-index" 6380checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 6381dependencies = [ 6382 "windows-targets 0.52.6", 6383] 6384 6385[[package]] 6386name = "windows-sys" 6387version = "0.60.2" 6388source = "registry+https://github.com/rust-lang/crates.io-index" 6389checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 6390dependencies = [ 6391 "windows-targets 0.53.5", 6392] 6393 6394[[package]] 6395name = "windows-sys" 6396version = "0.61.2" 6397source = "registry+https://github.com/rust-lang/crates.io-index" 6398checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 6399dependencies = [ 6400 "windows-link", 6401] 6402 6403[[package]] 6404name = "windows-targets" 6405version = "0.52.6" 6406source = "registry+https://github.com/rust-lang/crates.io-index" 6407checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 6408dependencies = [ 6409 "windows_aarch64_gnullvm 0.52.6", 6410 "windows_aarch64_msvc 0.52.6", 6411 "windows_i686_gnu 0.52.6", 6412 "windows_i686_gnullvm 0.52.6", 6413 "windows_i686_msvc 0.52.6", 6414 "windows_x86_64_gnu 0.52.6", 6415 "windows_x86_64_gnullvm 0.52.6", 6416 "windows_x86_64_msvc 0.52.6", 6417] 6418 6419[[package]] 6420name = "windows-targets" 6421version = "0.53.5" 6422source = "registry+https://github.com/rust-lang/crates.io-index" 6423checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 6424dependencies = [ 6425 "windows-link", 6426 "windows_aarch64_gnullvm 0.53.1", 6427 "windows_aarch64_msvc 0.53.1", 6428 "windows_i686_gnu 0.53.1", 6429 "windows_i686_gnullvm 0.53.1", 6430 "windows_i686_msvc 0.53.1", 6431 "windows_x86_64_gnu 0.53.1", 6432 "windows_x86_64_gnullvm 0.53.1", 6433 "windows_x86_64_msvc 0.53.1", 6434] 6435 6436[[package]] 6437name = "windows_aarch64_gnullvm" 6438version = "0.52.6" 6439source = "registry+https://github.com/rust-lang/crates.io-index" 6440checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 6441 6442[[package]] 6443name = "windows_aarch64_gnullvm" 6444version = "0.53.1" 6445source = "registry+https://github.com/rust-lang/crates.io-index" 6446checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 6447 6448[[package]] 6449name = "windows_aarch64_msvc" 6450version = "0.52.6" 6451source = "registry+https://github.com/rust-lang/crates.io-index" 6452checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 6453 6454[[package]] 6455name = "windows_aarch64_msvc" 6456version = "0.53.1" 6457source = "registry+https://github.com/rust-lang/crates.io-index" 6458checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 6459 6460[[package]] 6461name = "windows_i686_gnu" 6462version = "0.52.6" 6463source = "registry+https://github.com/rust-lang/crates.io-index" 6464checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 6465 6466[[package]] 6467name = "windows_i686_gnu" 6468version = "0.53.1" 6469source = "registry+https://github.com/rust-lang/crates.io-index" 6470checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 6471 6472[[package]] 6473name = "windows_i686_gnullvm" 6474version = "0.52.6" 6475source = "registry+https://github.com/rust-lang/crates.io-index" 6476checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 6477 6478[[package]] 6479name = "windows_i686_gnullvm" 6480version = "0.53.1" 6481source = "registry+https://github.com/rust-lang/crates.io-index" 6482checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 6483 6484[[package]] 6485name = "windows_i686_msvc" 6486version = "0.52.6" 6487source = "registry+https://github.com/rust-lang/crates.io-index" 6488checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 6489 6490[[package]] 6491name = "windows_i686_msvc" 6492version = "0.53.1" 6493source = "registry+https://github.com/rust-lang/crates.io-index" 6494checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 6495 6496[[package]] 6497name = "windows_x86_64_gnu" 6498version = "0.52.6" 6499source = "registry+https://github.com/rust-lang/crates.io-index" 6500checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 6501 6502[[package]] 6503name = "windows_x86_64_gnu" 6504version = "0.53.1" 6505source = "registry+https://github.com/rust-lang/crates.io-index" 6506checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 6507 6508[[package]] 6509name = "windows_x86_64_gnullvm" 6510version = "0.52.6" 6511source = "registry+https://github.com/rust-lang/crates.io-index" 6512checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 6513 6514[[package]] 6515name = "windows_x86_64_gnullvm" 6516version = "0.53.1" 6517source = "registry+https://github.com/rust-lang/crates.io-index" 6518checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 6519 6520[[package]] 6521name = "windows_x86_64_msvc" 6522version = "0.52.6" 6523source = "registry+https://github.com/rust-lang/crates.io-index" 6524checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 6525 6526[[package]] 6527name = "windows_x86_64_msvc" 6528version = "0.53.1" 6529source = "registry+https://github.com/rust-lang/crates.io-index" 6530checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 6531 6532[[package]] 6533name = "winnow" 6534version = "0.7.15" 6535source = "registry+https://github.com/rust-lang/crates.io-index" 6536checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" 6537 6538[[package]] 6539name = "winnow" 6540version = "1.0.3" 6541source = "registry+https://github.com/rust-lang/crates.io-index" 6542checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1" 6543 6544[[package]] 6545name = "wiremock" 6546version = "0.6.5" 6547source = "registry+https://github.com/rust-lang/crates.io-index" 6548checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031" 6549dependencies = [ 6550 "assert-json-diff", 6551 "base64", 6552 "deadpool", 6553 "futures", 6554 "http", 6555 "http-body-util", 6556 "hyper", 6557 "hyper-util", 6558 "log", 6559 "once_cell", 6560 "regex", 6561 "serde", 6562 "serde_json", 6563 "tokio", 6564 "url", 6565] 6566 6567[[package]] 6568name = "wit-bindgen" 6569version = "0.51.0" 6570source = "registry+https://github.com/rust-lang/crates.io-index" 6571checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" 6572dependencies = [ 6573 "wit-bindgen-rust-macro", 6574] 6575 6576[[package]] 6577name = "wit-bindgen" 6578version = "0.57.1" 6579source = "registry+https://github.com/rust-lang/crates.io-index" 6580checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" 6581 6582[[package]] 6583name = "wit-bindgen-core" 6584version = "0.51.0" 6585source = "registry+https://github.com/rust-lang/crates.io-index" 6586checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" 6587dependencies = [ 6588 "anyhow", 6589 "heck 0.5.0", 6590 "wit-parser", 6591] 6592 6593[[package]] 6594name = "wit-bindgen-rust" 6595version = "0.51.0" 6596source = "registry+https://github.com/rust-lang/crates.io-index" 6597checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" 6598dependencies = [ 6599 "anyhow", 6600 "heck 0.5.0", 6601 "indexmap", 6602 "prettyplease", 6603 "syn", 6604 "wasm-metadata", 6605 "wit-bindgen-core", 6606 "wit-component", 6607] 6608 6609[[package]] 6610name = "wit-bindgen-rust-macro" 6611version = "0.51.0" 6612source = "registry+https://github.com/rust-lang/crates.io-index" 6613checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" 6614dependencies = [ 6615 "anyhow", 6616 "prettyplease", 6617 "proc-macro2", 6618 "quote", 6619 "syn", 6620 "wit-bindgen-core", 6621 "wit-bindgen-rust", 6622] 6623 6624[[package]] 6625name = "wit-component" 6626version = "0.244.0" 6627source = "registry+https://github.com/rust-lang/crates.io-index" 6628checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" 6629dependencies = [ 6630 "anyhow", 6631 "bitflags 2.11.1", 6632 "indexmap", 6633 "log", 6634 "serde", 6635 "serde_derive", 6636 "serde_json", 6637 "wasm-encoder", 6638 "wasm-metadata", 6639 "wasmparser", 6640 "wit-parser", 6641] 6642 6643[[package]] 6644name = "wit-parser" 6645version = "0.244.0" 6646source = "registry+https://github.com/rust-lang/crates.io-index" 6647checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" 6648dependencies = [ 6649 "anyhow", 6650 "id-arena", 6651 "indexmap", 6652 "log", 6653 "semver", 6654 "serde", 6655 "serde_derive", 6656 "serde_json", 6657 "unicode-xid", 6658 "wasmparser", 6659] 6660 6661[[package]] 6662name = "writeable" 6663version = "0.6.3" 6664source = "registry+https://github.com/rust-lang/crates.io-index" 6665checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" 6666 6667[[package]] 6668name = "yansi" 6669version = "1.0.1" 6670source = "registry+https://github.com/rust-lang/crates.io-index" 6671checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" 6672 6673[[package]] 6674name = "yoke" 6675version = "0.8.2" 6676source = "registry+https://github.com/rust-lang/crates.io-index" 6677checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca" 6678dependencies = [ 6679 "stable_deref_trait", 6680 "yoke-derive", 6681 "zerofrom", 6682] 6683 6684[[package]] 6685name = "yoke-derive" 6686version = "0.8.2" 6687source = "registry+https://github.com/rust-lang/crates.io-index" 6688checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" 6689dependencies = [ 6690 "proc-macro2", 6691 "quote", 6692 "syn", 6693 "synstructure", 6694] 6695 6696[[package]] 6697name = "zerocopy" 6698version = "0.8.49" 6699source = "registry+https://github.com/rust-lang/crates.io-index" 6700checksum = "bce33a6288fa3f072a8c2c7d0f2fdbb90e28298f0135c1f99b96c3db2efcc60b" 6701dependencies = [ 6702 "zerocopy-derive", 6703] 6704 6705[[package]] 6706name = "zerocopy-derive" 6707version = "0.8.49" 6708source = "registry+https://github.com/rust-lang/crates.io-index" 6709checksum = "8fd425244944f4ab65ccff928e7323354c5a018c75838362fdce749dfad2ee1e" 6710dependencies = [ 6711 "proc-macro2", 6712 "quote", 6713 "syn", 6714] 6715 6716[[package]] 6717name = "zerofrom" 6718version = "0.1.8" 6719source = "registry+https://github.com/rust-lang/crates.io-index" 6720checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" 6721dependencies = [ 6722 "zerofrom-derive", 6723] 6724 6725[[package]] 6726name = "zerofrom-derive" 6727version = "0.1.7" 6728source = "registry+https://github.com/rust-lang/crates.io-index" 6729checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" 6730dependencies = [ 6731 "proc-macro2", 6732 "quote", 6733 "syn", 6734 "synstructure", 6735] 6736 6737[[package]] 6738name = "zeroize" 6739version = "1.8.2" 6740source = "registry+https://github.com/rust-lang/crates.io-index" 6741checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 6742 6743[[package]] 6744name = "zerotrie" 6745version = "0.2.4" 6746source = "registry+https://github.com/rust-lang/crates.io-index" 6747checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" 6748dependencies = [ 6749 "displaydoc", 6750 "yoke", 6751 "zerofrom", 6752] 6753 6754[[package]] 6755name = "zerovec" 6756version = "0.11.6" 6757source = "registry+https://github.com/rust-lang/crates.io-index" 6758checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" 6759dependencies = [ 6760 "yoke", 6761 "zerofrom", 6762 "zerovec-derive", 6763] 6764 6765[[package]] 6766name = "zerovec-derive" 6767version = "0.11.3" 6768source = "registry+https://github.com/rust-lang/crates.io-index" 6769checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" 6770dependencies = [ 6771 "proc-macro2", 6772 "quote", 6773 "syn", 6774] 6775 6776[[package]] 6777name = "zlib-rs" 6778version = "0.6.4" 6779source = "registry+https://github.com/rust-lang/crates.io-index" 6780checksum = "977347db8caa080403f6b6b7c1cda9479a8e869316f7e13a59b19076a40f94e3" 6781 6782[[package]] 6783name = "zmij" 6784version = "1.0.21" 6785source = "registry+https://github.com/rust-lang/crates.io-index" 6786checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" 6787 6788[[package]] 6789name = "zstd" 6790version = "0.13.3" 6791source = "registry+https://github.com/rust-lang/crates.io-index" 6792checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" 6793dependencies = [ 6794 "zstd-safe", 6795] 6796 6797[[package]] 6798name = "zstd-safe" 6799version = "7.2.4" 6800source = "registry+https://github.com/rust-lang/crates.io-index" 6801checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" 6802dependencies = [ 6803 "zstd-sys", 6804] 6805 6806[[package]] 6807name = "zstd-sys" 6808version = "2.0.16+zstd.1.5.7" 6809source = "registry+https://github.com/rust-lang/crates.io-index" 6810checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" 6811dependencies = [ 6812 "cc", 6813 "pkg-config", 6814]