Restore a rocks database from object storage
9
fork

Configure Feed

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

at main 2683 lines 67 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "aho-corasick" 7version = "1.1.4" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 10dependencies = [ 11 "memchr", 12] 13 14[[package]] 15name = "android_system_properties" 16version = "0.1.5" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 19dependencies = [ 20 "libc", 21] 22 23[[package]] 24name = "anstream" 25version = "1.0.0" 26source = "registry+https://github.com/rust-lang/crates.io-index" 27checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" 28dependencies = [ 29 "anstyle", 30 "anstyle-parse", 31 "anstyle-query", 32 "anstyle-wincon", 33 "colorchoice", 34 "is_terminal_polyfill", 35 "utf8parse", 36] 37 38[[package]] 39name = "anstyle" 40version = "1.0.14" 41source = "registry+https://github.com/rust-lang/crates.io-index" 42checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" 43 44[[package]] 45name = "anstyle-parse" 46version = "1.0.0" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" 49dependencies = [ 50 "utf8parse", 51] 52 53[[package]] 54name = "anstyle-query" 55version = "1.1.5" 56source = "registry+https://github.com/rust-lang/crates.io-index" 57checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" 58dependencies = [ 59 "windows-sys 0.61.2", 60] 61 62[[package]] 63name = "anstyle-wincon" 64version = "3.0.11" 65source = "registry+https://github.com/rust-lang/crates.io-index" 66checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" 67dependencies = [ 68 "anstyle", 69 "once_cell_polyfill", 70 "windows-sys 0.61.2", 71] 72 73[[package]] 74name = "anyhow" 75version = "1.0.102" 76source = "registry+https://github.com/rust-lang/crates.io-index" 77checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" 78 79[[package]] 80name = "async-trait" 81version = "0.1.89" 82source = "registry+https://github.com/rust-lang/crates.io-index" 83checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" 84dependencies = [ 85 "proc-macro2", 86 "quote", 87 "syn", 88] 89 90[[package]] 91name = "atomic-waker" 92version = "1.1.2" 93source = "registry+https://github.com/rust-lang/crates.io-index" 94checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 95 96[[package]] 97name = "autocfg" 98version = "1.5.0" 99source = "registry+https://github.com/rust-lang/crates.io-index" 100checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" 101 102[[package]] 103name = "base64" 104version = "0.22.1" 105source = "registry+https://github.com/rust-lang/crates.io-index" 106checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 107 108[[package]] 109name = "bindgen" 110version = "0.69.5" 111source = "registry+https://github.com/rust-lang/crates.io-index" 112checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" 113dependencies = [ 114 "bitflags", 115 "cexpr", 116 "clang-sys", 117 "itertools 0.12.1", 118 "lazy_static", 119 "lazycell", 120 "proc-macro2", 121 "quote", 122 "regex", 123 "rustc-hash 1.1.0", 124 "shlex", 125 "syn", 126] 127 128[[package]] 129name = "bindgen" 130version = "0.72.1" 131source = "registry+https://github.com/rust-lang/crates.io-index" 132checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895" 133dependencies = [ 134 "bitflags", 135 "cexpr", 136 "clang-sys", 137 "itertools 0.13.0", 138 "proc-macro2", 139 "quote", 140 "regex", 141 "rustc-hash 2.1.2", 142 "shlex", 143 "syn", 144] 145 146[[package]] 147name = "bitflags" 148version = "2.11.0" 149source = "registry+https://github.com/rust-lang/crates.io-index" 150checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" 151 152[[package]] 153name = "block-buffer" 154version = "0.10.4" 155source = "registry+https://github.com/rust-lang/crates.io-index" 156checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 157dependencies = [ 158 "generic-array", 159] 160 161[[package]] 162name = "bumpalo" 163version = "3.20.2" 164source = "registry+https://github.com/rust-lang/crates.io-index" 165checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" 166 167[[package]] 168name = "bytes" 169version = "1.11.1" 170source = "registry+https://github.com/rust-lang/crates.io-index" 171checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" 172 173[[package]] 174name = "bzip2-sys" 175version = "0.1.13+1.0.8" 176source = "registry+https://github.com/rust-lang/crates.io-index" 177checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" 178dependencies = [ 179 "cc", 180 "pkg-config", 181] 182 183[[package]] 184name = "cc" 185version = "1.2.59" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283" 188dependencies = [ 189 "find-msvc-tools", 190 "jobserver", 191 "libc", 192 "shlex", 193] 194 195[[package]] 196name = "cexpr" 197version = "0.6.0" 198source = "registry+https://github.com/rust-lang/crates.io-index" 199checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" 200dependencies = [ 201 "nom", 202] 203 204[[package]] 205name = "cfg-if" 206version = "1.0.4" 207source = "registry+https://github.com/rust-lang/crates.io-index" 208checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 209 210[[package]] 211name = "cfg_aliases" 212version = "0.2.1" 213source = "registry+https://github.com/rust-lang/crates.io-index" 214checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 215 216[[package]] 217name = "chacha20" 218version = "0.10.0" 219source = "registry+https://github.com/rust-lang/crates.io-index" 220checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601" 221dependencies = [ 222 "cfg-if", 223 "cpufeatures", 224 "rand_core 0.10.0", 225] 226 227[[package]] 228name = "chrono" 229version = "0.4.44" 230source = "registry+https://github.com/rust-lang/crates.io-index" 231checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" 232dependencies = [ 233 "iana-time-zone", 234 "num-traits", 235 "serde", 236 "windows-link", 237] 238 239[[package]] 240name = "clang-sys" 241version = "1.8.1" 242source = "registry+https://github.com/rust-lang/crates.io-index" 243checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" 244dependencies = [ 245 "glob", 246 "libc", 247 "libloading", 248] 249 250[[package]] 251name = "clap" 252version = "4.6.0" 253source = "registry+https://github.com/rust-lang/crates.io-index" 254checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351" 255dependencies = [ 256 "clap_builder", 257 "clap_derive", 258] 259 260[[package]] 261name = "clap_builder" 262version = "4.6.0" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" 265dependencies = [ 266 "anstream", 267 "anstyle", 268 "clap_lex", 269 "strsim", 270] 271 272[[package]] 273name = "clap_derive" 274version = "4.6.0" 275source = "registry+https://github.com/rust-lang/crates.io-index" 276checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a" 277dependencies = [ 278 "heck", 279 "proc-macro2", 280 "quote", 281 "syn", 282] 283 284[[package]] 285name = "clap_lex" 286version = "1.1.0" 287source = "registry+https://github.com/rust-lang/crates.io-index" 288checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" 289 290[[package]] 291name = "colorchoice" 292version = "1.0.5" 293source = "registry+https://github.com/rust-lang/crates.io-index" 294checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" 295 296[[package]] 297name = "core-foundation" 298version = "0.10.1" 299source = "registry+https://github.com/rust-lang/crates.io-index" 300checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 301dependencies = [ 302 "core-foundation-sys", 303 "libc", 304] 305 306[[package]] 307name = "core-foundation-sys" 308version = "0.8.7" 309source = "registry+https://github.com/rust-lang/crates.io-index" 310checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 311 312[[package]] 313name = "cpufeatures" 314version = "0.3.0" 315source = "registry+https://github.com/rust-lang/crates.io-index" 316checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" 317dependencies = [ 318 "libc", 319] 320 321[[package]] 322name = "crc32c" 323version = "0.6.8" 324source = "registry+https://github.com/rust-lang/crates.io-index" 325checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47" 326dependencies = [ 327 "rustc_version", 328] 329 330[[package]] 331name = "crypto-common" 332version = "0.1.7" 333source = "registry+https://github.com/rust-lang/crates.io-index" 334checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 335dependencies = [ 336 "generic-array", 337 "typenum", 338] 339 340[[package]] 341name = "digest" 342version = "0.10.7" 343source = "registry+https://github.com/rust-lang/crates.io-index" 344checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 345dependencies = [ 346 "block-buffer", 347 "crypto-common", 348] 349 350[[package]] 351name = "displaydoc" 352version = "0.2.5" 353source = "registry+https://github.com/rust-lang/crates.io-index" 354checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 355dependencies = [ 356 "proc-macro2", 357 "quote", 358 "syn", 359] 360 361[[package]] 362name = "eat-rocks" 363version = "0.1.1" 364dependencies = [ 365 "clap", 366 "crc32c", 367 "futures", 368 "object_store", 369 "rocksdb", 370 "tempfile", 371 "thiserror", 372 "tokio", 373 "tracing", 374 "tracing-subscriber", 375] 376 377[[package]] 378name = "either" 379version = "1.15.0" 380source = "registry+https://github.com/rust-lang/crates.io-index" 381checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 382 383[[package]] 384name = "equivalent" 385version = "1.0.2" 386source = "registry+https://github.com/rust-lang/crates.io-index" 387checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 388 389[[package]] 390name = "errno" 391version = "0.3.14" 392source = "registry+https://github.com/rust-lang/crates.io-index" 393checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 394dependencies = [ 395 "libc", 396 "windows-sys 0.61.2", 397] 398 399[[package]] 400name = "fastrand" 401version = "2.4.1" 402source = "registry+https://github.com/rust-lang/crates.io-index" 403checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" 404 405[[package]] 406name = "find-msvc-tools" 407version = "0.1.9" 408source = "registry+https://github.com/rust-lang/crates.io-index" 409checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" 410 411[[package]] 412name = "fnv" 413version = "1.0.7" 414source = "registry+https://github.com/rust-lang/crates.io-index" 415checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 416 417[[package]] 418name = "foldhash" 419version = "0.1.5" 420source = "registry+https://github.com/rust-lang/crates.io-index" 421checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 422 423[[package]] 424name = "form_urlencoded" 425version = "1.2.2" 426source = "registry+https://github.com/rust-lang/crates.io-index" 427checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 428dependencies = [ 429 "percent-encoding", 430] 431 432[[package]] 433name = "futures" 434version = "0.3.32" 435source = "registry+https://github.com/rust-lang/crates.io-index" 436checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" 437dependencies = [ 438 "futures-channel", 439 "futures-core", 440 "futures-executor", 441 "futures-io", 442 "futures-sink", 443 "futures-task", 444 "futures-util", 445] 446 447[[package]] 448name = "futures-channel" 449version = "0.3.32" 450source = "registry+https://github.com/rust-lang/crates.io-index" 451checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" 452dependencies = [ 453 "futures-core", 454 "futures-sink", 455] 456 457[[package]] 458name = "futures-core" 459version = "0.3.32" 460source = "registry+https://github.com/rust-lang/crates.io-index" 461checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" 462 463[[package]] 464name = "futures-executor" 465version = "0.3.32" 466source = "registry+https://github.com/rust-lang/crates.io-index" 467checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" 468dependencies = [ 469 "futures-core", 470 "futures-task", 471 "futures-util", 472] 473 474[[package]] 475name = "futures-io" 476version = "0.3.32" 477source = "registry+https://github.com/rust-lang/crates.io-index" 478checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" 479 480[[package]] 481name = "futures-macro" 482version = "0.3.32" 483source = "registry+https://github.com/rust-lang/crates.io-index" 484checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" 485dependencies = [ 486 "proc-macro2", 487 "quote", 488 "syn", 489] 490 491[[package]] 492name = "futures-sink" 493version = "0.3.32" 494source = "registry+https://github.com/rust-lang/crates.io-index" 495checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" 496 497[[package]] 498name = "futures-task" 499version = "0.3.32" 500source = "registry+https://github.com/rust-lang/crates.io-index" 501checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" 502 503[[package]] 504name = "futures-util" 505version = "0.3.32" 506source = "registry+https://github.com/rust-lang/crates.io-index" 507checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" 508dependencies = [ 509 "futures-channel", 510 "futures-core", 511 "futures-io", 512 "futures-macro", 513 "futures-sink", 514 "futures-task", 515 "memchr", 516 "pin-project-lite", 517 "slab", 518] 519 520[[package]] 521name = "generic-array" 522version = "0.14.7" 523source = "registry+https://github.com/rust-lang/crates.io-index" 524checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 525dependencies = [ 526 "typenum", 527 "version_check", 528] 529 530[[package]] 531name = "getrandom" 532version = "0.2.17" 533source = "registry+https://github.com/rust-lang/crates.io-index" 534checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 535dependencies = [ 536 "cfg-if", 537 "js-sys", 538 "libc", 539 "wasi", 540 "wasm-bindgen", 541] 542 543[[package]] 544name = "getrandom" 545version = "0.3.4" 546source = "registry+https://github.com/rust-lang/crates.io-index" 547checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 548dependencies = [ 549 "cfg-if", 550 "js-sys", 551 "libc", 552 "r-efi 5.3.0", 553 "wasip2", 554 "wasm-bindgen", 555] 556 557[[package]] 558name = "getrandom" 559version = "0.4.2" 560source = "registry+https://github.com/rust-lang/crates.io-index" 561checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" 562dependencies = [ 563 "cfg-if", 564 "libc", 565 "r-efi 6.0.0", 566 "rand_core 0.10.0", 567 "wasip2", 568 "wasip3", 569] 570 571[[package]] 572name = "glob" 573version = "0.3.3" 574source = "registry+https://github.com/rust-lang/crates.io-index" 575checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" 576 577[[package]] 578name = "h2" 579version = "0.4.13" 580source = "registry+https://github.com/rust-lang/crates.io-index" 581checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" 582dependencies = [ 583 "atomic-waker", 584 "bytes", 585 "fnv", 586 "futures-core", 587 "futures-sink", 588 "http", 589 "indexmap", 590 "slab", 591 "tokio", 592 "tokio-util", 593 "tracing", 594] 595 596[[package]] 597name = "hashbrown" 598version = "0.15.5" 599source = "registry+https://github.com/rust-lang/crates.io-index" 600checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" 601dependencies = [ 602 "foldhash", 603] 604 605[[package]] 606name = "hashbrown" 607version = "0.16.1" 608source = "registry+https://github.com/rust-lang/crates.io-index" 609checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 610 611[[package]] 612name = "heck" 613version = "0.5.0" 614source = "registry+https://github.com/rust-lang/crates.io-index" 615checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 616 617[[package]] 618name = "http" 619version = "1.4.0" 620source = "registry+https://github.com/rust-lang/crates.io-index" 621checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" 622dependencies = [ 623 "bytes", 624 "itoa", 625] 626 627[[package]] 628name = "http-body" 629version = "1.0.1" 630source = "registry+https://github.com/rust-lang/crates.io-index" 631checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 632dependencies = [ 633 "bytes", 634 "http", 635] 636 637[[package]] 638name = "http-body-util" 639version = "0.1.3" 640source = "registry+https://github.com/rust-lang/crates.io-index" 641checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 642dependencies = [ 643 "bytes", 644 "futures-core", 645 "http", 646 "http-body", 647 "pin-project-lite", 648] 649 650[[package]] 651name = "httparse" 652version = "1.10.1" 653source = "registry+https://github.com/rust-lang/crates.io-index" 654checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 655 656[[package]] 657name = "humantime" 658version = "2.3.0" 659source = "registry+https://github.com/rust-lang/crates.io-index" 660checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424" 661 662[[package]] 663name = "hyper" 664version = "1.9.0" 665source = "registry+https://github.com/rust-lang/crates.io-index" 666checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca" 667dependencies = [ 668 "atomic-waker", 669 "bytes", 670 "futures-channel", 671 "futures-core", 672 "h2", 673 "http", 674 "http-body", 675 "httparse", 676 "itoa", 677 "pin-project-lite", 678 "smallvec", 679 "tokio", 680 "want", 681] 682 683[[package]] 684name = "hyper-rustls" 685version = "0.27.7" 686source = "registry+https://github.com/rust-lang/crates.io-index" 687checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" 688dependencies = [ 689 "http", 690 "hyper", 691 "hyper-util", 692 "rustls", 693 "rustls-native-certs", 694 "rustls-pki-types", 695 "tokio", 696 "tokio-rustls", 697 "tower-service", 698] 699 700[[package]] 701name = "hyper-util" 702version = "0.1.20" 703source = "registry+https://github.com/rust-lang/crates.io-index" 704checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" 705dependencies = [ 706 "base64", 707 "bytes", 708 "futures-channel", 709 "futures-util", 710 "http", 711 "http-body", 712 "hyper", 713 "ipnet", 714 "libc", 715 "percent-encoding", 716 "pin-project-lite", 717 "socket2", 718 "tokio", 719 "tower-service", 720 "tracing", 721] 722 723[[package]] 724name = "iana-time-zone" 725version = "0.1.65" 726source = "registry+https://github.com/rust-lang/crates.io-index" 727checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" 728dependencies = [ 729 "android_system_properties", 730 "core-foundation-sys", 731 "iana-time-zone-haiku", 732 "js-sys", 733 "log", 734 "wasm-bindgen", 735 "windows-core", 736] 737 738[[package]] 739name = "iana-time-zone-haiku" 740version = "0.1.2" 741source = "registry+https://github.com/rust-lang/crates.io-index" 742checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 743dependencies = [ 744 "cc", 745] 746 747[[package]] 748name = "icu_collections" 749version = "2.2.0" 750source = "registry+https://github.com/rust-lang/crates.io-index" 751checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" 752dependencies = [ 753 "displaydoc", 754 "potential_utf", 755 "utf8_iter", 756 "yoke", 757 "zerofrom", 758 "zerovec", 759] 760 761[[package]] 762name = "icu_locale_core" 763version = "2.2.0" 764source = "registry+https://github.com/rust-lang/crates.io-index" 765checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" 766dependencies = [ 767 "displaydoc", 768 "litemap", 769 "tinystr", 770 "writeable", 771 "zerovec", 772] 773 774[[package]] 775name = "icu_normalizer" 776version = "2.2.0" 777source = "registry+https://github.com/rust-lang/crates.io-index" 778checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" 779dependencies = [ 780 "icu_collections", 781 "icu_normalizer_data", 782 "icu_properties", 783 "icu_provider", 784 "smallvec", 785 "zerovec", 786] 787 788[[package]] 789name = "icu_normalizer_data" 790version = "2.2.0" 791source = "registry+https://github.com/rust-lang/crates.io-index" 792checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" 793 794[[package]] 795name = "icu_properties" 796version = "2.2.0" 797source = "registry+https://github.com/rust-lang/crates.io-index" 798checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" 799dependencies = [ 800 "icu_collections", 801 "icu_locale_core", 802 "icu_properties_data", 803 "icu_provider", 804 "zerotrie", 805 "zerovec", 806] 807 808[[package]] 809name = "icu_properties_data" 810version = "2.2.0" 811source = "registry+https://github.com/rust-lang/crates.io-index" 812checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" 813 814[[package]] 815name = "icu_provider" 816version = "2.2.0" 817source = "registry+https://github.com/rust-lang/crates.io-index" 818checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" 819dependencies = [ 820 "displaydoc", 821 "icu_locale_core", 822 "writeable", 823 "yoke", 824 "zerofrom", 825 "zerotrie", 826 "zerovec", 827] 828 829[[package]] 830name = "id-arena" 831version = "2.3.0" 832source = "registry+https://github.com/rust-lang/crates.io-index" 833checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" 834 835[[package]] 836name = "idna" 837version = "1.1.0" 838source = "registry+https://github.com/rust-lang/crates.io-index" 839checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 840dependencies = [ 841 "idna_adapter", 842 "smallvec", 843 "utf8_iter", 844] 845 846[[package]] 847name = "idna_adapter" 848version = "1.2.1" 849source = "registry+https://github.com/rust-lang/crates.io-index" 850checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 851dependencies = [ 852 "icu_normalizer", 853 "icu_properties", 854] 855 856[[package]] 857name = "indexmap" 858version = "2.13.1" 859source = "registry+https://github.com/rust-lang/crates.io-index" 860checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff" 861dependencies = [ 862 "equivalent", 863 "hashbrown 0.16.1", 864 "serde", 865 "serde_core", 866] 867 868[[package]] 869name = "ipnet" 870version = "2.12.0" 871source = "registry+https://github.com/rust-lang/crates.io-index" 872checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" 873 874[[package]] 875name = "iri-string" 876version = "0.7.12" 877source = "registry+https://github.com/rust-lang/crates.io-index" 878checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20" 879dependencies = [ 880 "memchr", 881 "serde", 882] 883 884[[package]] 885name = "is_terminal_polyfill" 886version = "1.70.2" 887source = "registry+https://github.com/rust-lang/crates.io-index" 888checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 889 890[[package]] 891name = "itertools" 892version = "0.12.1" 893source = "registry+https://github.com/rust-lang/crates.io-index" 894checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 895dependencies = [ 896 "either", 897] 898 899[[package]] 900name = "itertools" 901version = "0.13.0" 902source = "registry+https://github.com/rust-lang/crates.io-index" 903checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 904dependencies = [ 905 "either", 906] 907 908[[package]] 909name = "itertools" 910version = "0.14.0" 911source = "registry+https://github.com/rust-lang/crates.io-index" 912checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 913dependencies = [ 914 "either", 915] 916 917[[package]] 918name = "itoa" 919version = "1.0.18" 920source = "registry+https://github.com/rust-lang/crates.io-index" 921checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" 922 923[[package]] 924name = "jobserver" 925version = "0.1.34" 926source = "registry+https://github.com/rust-lang/crates.io-index" 927checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" 928dependencies = [ 929 "getrandom 0.3.4", 930 "libc", 931] 932 933[[package]] 934name = "js-sys" 935version = "0.3.94" 936source = "registry+https://github.com/rust-lang/crates.io-index" 937checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9" 938dependencies = [ 939 "cfg-if", 940 "futures-util", 941 "once_cell", 942 "wasm-bindgen", 943] 944 945[[package]] 946name = "lazy_static" 947version = "1.5.0" 948source = "registry+https://github.com/rust-lang/crates.io-index" 949checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 950 951[[package]] 952name = "lazycell" 953version = "1.3.0" 954source = "registry+https://github.com/rust-lang/crates.io-index" 955checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 956 957[[package]] 958name = "leb128fmt" 959version = "0.1.0" 960source = "registry+https://github.com/rust-lang/crates.io-index" 961checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" 962 963[[package]] 964name = "libc" 965version = "0.2.184" 966source = "registry+https://github.com/rust-lang/crates.io-index" 967checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af" 968 969[[package]] 970name = "libloading" 971version = "0.8.9" 972source = "registry+https://github.com/rust-lang/crates.io-index" 973checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" 974dependencies = [ 975 "cfg-if", 976 "windows-link", 977] 978 979[[package]] 980name = "librocksdb-sys" 981version = "0.16.0+8.10.0" 982source = "registry+https://github.com/rust-lang/crates.io-index" 983checksum = "ce3d60bc059831dc1c83903fb45c103f75db65c5a7bf22272764d9cc683e348c" 984dependencies = [ 985 "bindgen 0.69.5", 986 "bzip2-sys", 987 "cc", 988 "glob", 989 "libc", 990 "libz-sys", 991 "lz4-sys", 992 "zstd-sys", 993] 994 995[[package]] 996name = "libz-sys" 997version = "1.1.28" 998source = "registry+https://github.com/rust-lang/crates.io-index" 999checksum = "fc3a226e576f50782b3305c5ccf458698f92798987f551c6a02efe8276721e22" 1000dependencies = [ 1001 "cc", 1002 "pkg-config", 1003 "vcpkg", 1004] 1005 1006[[package]] 1007name = "linux-raw-sys" 1008version = "0.12.1" 1009source = "registry+https://github.com/rust-lang/crates.io-index" 1010checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" 1011 1012[[package]] 1013name = "litemap" 1014version = "0.8.2" 1015source = "registry+https://github.com/rust-lang/crates.io-index" 1016checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" 1017 1018[[package]] 1019name = "lock_api" 1020version = "0.4.14" 1021source = "registry+https://github.com/rust-lang/crates.io-index" 1022checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 1023dependencies = [ 1024 "scopeguard", 1025] 1026 1027[[package]] 1028name = "log" 1029version = "0.4.29" 1030source = "registry+https://github.com/rust-lang/crates.io-index" 1031checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" 1032 1033[[package]] 1034name = "lru-slab" 1035version = "0.1.2" 1036source = "registry+https://github.com/rust-lang/crates.io-index" 1037checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 1038 1039[[package]] 1040name = "lz4-sys" 1041version = "1.11.1+lz4-1.10.0" 1042source = "registry+https://github.com/rust-lang/crates.io-index" 1043checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6" 1044dependencies = [ 1045 "cc", 1046 "libc", 1047] 1048 1049[[package]] 1050name = "matchers" 1051version = "0.2.0" 1052source = "registry+https://github.com/rust-lang/crates.io-index" 1053checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 1054dependencies = [ 1055 "regex-automata", 1056] 1057 1058[[package]] 1059name = "md-5" 1060version = "0.10.6" 1061source = "registry+https://github.com/rust-lang/crates.io-index" 1062checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" 1063dependencies = [ 1064 "cfg-if", 1065 "digest", 1066] 1067 1068[[package]] 1069name = "memchr" 1070version = "2.8.0" 1071source = "registry+https://github.com/rust-lang/crates.io-index" 1072checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" 1073 1074[[package]] 1075name = "minimal-lexical" 1076version = "0.2.1" 1077source = "registry+https://github.com/rust-lang/crates.io-index" 1078checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1079 1080[[package]] 1081name = "mio" 1082version = "1.2.0" 1083source = "registry+https://github.com/rust-lang/crates.io-index" 1084checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1" 1085dependencies = [ 1086 "libc", 1087 "wasi", 1088 "windows-sys 0.61.2", 1089] 1090 1091[[package]] 1092name = "nom" 1093version = "7.1.3" 1094source = "registry+https://github.com/rust-lang/crates.io-index" 1095checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1096dependencies = [ 1097 "memchr", 1098 "minimal-lexical", 1099] 1100 1101[[package]] 1102name = "nu-ansi-term" 1103version = "0.50.3" 1104source = "registry+https://github.com/rust-lang/crates.io-index" 1105checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 1106dependencies = [ 1107 "windows-sys 0.61.2", 1108] 1109 1110[[package]] 1111name = "num-traits" 1112version = "0.2.19" 1113source = "registry+https://github.com/rust-lang/crates.io-index" 1114checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 1115dependencies = [ 1116 "autocfg", 1117] 1118 1119[[package]] 1120name = "object_store" 1121version = "0.13.2" 1122source = "registry+https://github.com/rust-lang/crates.io-index" 1123checksum = "622acbc9100d3c10e2ee15804b0caa40e55c933d5aa53814cd520805b7958a49" 1124dependencies = [ 1125 "async-trait", 1126 "base64", 1127 "bytes", 1128 "chrono", 1129 "form_urlencoded", 1130 "futures-channel", 1131 "futures-core", 1132 "futures-util", 1133 "http", 1134 "http-body-util", 1135 "humantime", 1136 "hyper", 1137 "itertools 0.14.0", 1138 "md-5", 1139 "parking_lot", 1140 "percent-encoding", 1141 "quick-xml", 1142 "rand 0.10.0", 1143 "reqwest", 1144 "ring", 1145 "serde", 1146 "serde_json", 1147 "serde_urlencoded", 1148 "thiserror", 1149 "tokio", 1150 "tracing", 1151 "url", 1152 "walkdir", 1153 "wasm-bindgen-futures", 1154 "web-time", 1155] 1156 1157[[package]] 1158name = "once_cell" 1159version = "1.21.4" 1160source = "registry+https://github.com/rust-lang/crates.io-index" 1161checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" 1162 1163[[package]] 1164name = "once_cell_polyfill" 1165version = "1.70.2" 1166source = "registry+https://github.com/rust-lang/crates.io-index" 1167checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 1168 1169[[package]] 1170name = "openssl-probe" 1171version = "0.2.1" 1172source = "registry+https://github.com/rust-lang/crates.io-index" 1173checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" 1174 1175[[package]] 1176name = "parking_lot" 1177version = "0.12.5" 1178source = "registry+https://github.com/rust-lang/crates.io-index" 1179checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 1180dependencies = [ 1181 "lock_api", 1182 "parking_lot_core", 1183] 1184 1185[[package]] 1186name = "parking_lot_core" 1187version = "0.9.12" 1188source = "registry+https://github.com/rust-lang/crates.io-index" 1189checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 1190dependencies = [ 1191 "cfg-if", 1192 "libc", 1193 "redox_syscall", 1194 "smallvec", 1195 "windows-link", 1196] 1197 1198[[package]] 1199name = "percent-encoding" 1200version = "2.3.2" 1201source = "registry+https://github.com/rust-lang/crates.io-index" 1202checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 1203 1204[[package]] 1205name = "pin-project-lite" 1206version = "0.2.17" 1207source = "registry+https://github.com/rust-lang/crates.io-index" 1208checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" 1209 1210[[package]] 1211name = "pkg-config" 1212version = "0.3.32" 1213source = "registry+https://github.com/rust-lang/crates.io-index" 1214checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 1215 1216[[package]] 1217name = "potential_utf" 1218version = "0.1.5" 1219source = "registry+https://github.com/rust-lang/crates.io-index" 1220checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" 1221dependencies = [ 1222 "zerovec", 1223] 1224 1225[[package]] 1226name = "ppv-lite86" 1227version = "0.2.21" 1228source = "registry+https://github.com/rust-lang/crates.io-index" 1229checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 1230dependencies = [ 1231 "zerocopy", 1232] 1233 1234[[package]] 1235name = "prettyplease" 1236version = "0.2.37" 1237source = "registry+https://github.com/rust-lang/crates.io-index" 1238checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" 1239dependencies = [ 1240 "proc-macro2", 1241 "syn", 1242] 1243 1244[[package]] 1245name = "proc-macro2" 1246version = "1.0.106" 1247source = "registry+https://github.com/rust-lang/crates.io-index" 1248checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" 1249dependencies = [ 1250 "unicode-ident", 1251] 1252 1253[[package]] 1254name = "quick-xml" 1255version = "0.39.2" 1256source = "registry+https://github.com/rust-lang/crates.io-index" 1257checksum = "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d" 1258dependencies = [ 1259 "memchr", 1260 "serde", 1261] 1262 1263[[package]] 1264name = "quinn" 1265version = "0.11.9" 1266source = "registry+https://github.com/rust-lang/crates.io-index" 1267checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" 1268dependencies = [ 1269 "bytes", 1270 "cfg_aliases", 1271 "pin-project-lite", 1272 "quinn-proto", 1273 "quinn-udp", 1274 "rustc-hash 2.1.2", 1275 "rustls", 1276 "socket2", 1277 "thiserror", 1278 "tokio", 1279 "tracing", 1280 "web-time", 1281] 1282 1283[[package]] 1284name = "quinn-proto" 1285version = "0.11.14" 1286source = "registry+https://github.com/rust-lang/crates.io-index" 1287checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098" 1288dependencies = [ 1289 "bytes", 1290 "getrandom 0.3.4", 1291 "lru-slab", 1292 "rand 0.9.2", 1293 "ring", 1294 "rustc-hash 2.1.2", 1295 "rustls", 1296 "rustls-pki-types", 1297 "slab", 1298 "thiserror", 1299 "tinyvec", 1300 "tracing", 1301 "web-time", 1302] 1303 1304[[package]] 1305name = "quinn-udp" 1306version = "0.5.14" 1307source = "registry+https://github.com/rust-lang/crates.io-index" 1308checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" 1309dependencies = [ 1310 "cfg_aliases", 1311 "libc", 1312 "once_cell", 1313 "socket2", 1314 "tracing", 1315 "windows-sys 0.60.2", 1316] 1317 1318[[package]] 1319name = "quote" 1320version = "1.0.45" 1321source = "registry+https://github.com/rust-lang/crates.io-index" 1322checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" 1323dependencies = [ 1324 "proc-macro2", 1325] 1326 1327[[package]] 1328name = "r-efi" 1329version = "5.3.0" 1330source = "registry+https://github.com/rust-lang/crates.io-index" 1331checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 1332 1333[[package]] 1334name = "r-efi" 1335version = "6.0.0" 1336source = "registry+https://github.com/rust-lang/crates.io-index" 1337checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" 1338 1339[[package]] 1340name = "rand" 1341version = "0.9.2" 1342source = "registry+https://github.com/rust-lang/crates.io-index" 1343checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" 1344dependencies = [ 1345 "rand_chacha", 1346 "rand_core 0.9.5", 1347] 1348 1349[[package]] 1350name = "rand" 1351version = "0.10.0" 1352source = "registry+https://github.com/rust-lang/crates.io-index" 1353checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8" 1354dependencies = [ 1355 "chacha20", 1356 "getrandom 0.4.2", 1357 "rand_core 0.10.0", 1358] 1359 1360[[package]] 1361name = "rand_chacha" 1362version = "0.9.0" 1363source = "registry+https://github.com/rust-lang/crates.io-index" 1364checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" 1365dependencies = [ 1366 "ppv-lite86", 1367 "rand_core 0.9.5", 1368] 1369 1370[[package]] 1371name = "rand_core" 1372version = "0.9.5" 1373source = "registry+https://github.com/rust-lang/crates.io-index" 1374checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" 1375dependencies = [ 1376 "getrandom 0.3.4", 1377] 1378 1379[[package]] 1380name = "rand_core" 1381version = "0.10.0" 1382source = "registry+https://github.com/rust-lang/crates.io-index" 1383checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" 1384 1385[[package]] 1386name = "redox_syscall" 1387version = "0.5.18" 1388source = "registry+https://github.com/rust-lang/crates.io-index" 1389checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 1390dependencies = [ 1391 "bitflags", 1392] 1393 1394[[package]] 1395name = "regex" 1396version = "1.12.3" 1397source = "registry+https://github.com/rust-lang/crates.io-index" 1398checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" 1399dependencies = [ 1400 "aho-corasick", 1401 "memchr", 1402 "regex-automata", 1403 "regex-syntax", 1404] 1405 1406[[package]] 1407name = "regex-automata" 1408version = "0.4.14" 1409source = "registry+https://github.com/rust-lang/crates.io-index" 1410checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" 1411dependencies = [ 1412 "aho-corasick", 1413 "memchr", 1414 "regex-syntax", 1415] 1416 1417[[package]] 1418name = "regex-syntax" 1419version = "0.8.10" 1420source = "registry+https://github.com/rust-lang/crates.io-index" 1421checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" 1422 1423[[package]] 1424name = "reqwest" 1425version = "0.12.28" 1426source = "registry+https://github.com/rust-lang/crates.io-index" 1427checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" 1428dependencies = [ 1429 "base64", 1430 "bytes", 1431 "futures-core", 1432 "futures-util", 1433 "h2", 1434 "http", 1435 "http-body", 1436 "http-body-util", 1437 "hyper", 1438 "hyper-rustls", 1439 "hyper-util", 1440 "js-sys", 1441 "log", 1442 "percent-encoding", 1443 "pin-project-lite", 1444 "quinn", 1445 "rustls", 1446 "rustls-native-certs", 1447 "rustls-pki-types", 1448 "serde", 1449 "serde_json", 1450 "serde_urlencoded", 1451 "sync_wrapper", 1452 "tokio", 1453 "tokio-rustls", 1454 "tokio-util", 1455 "tower", 1456 "tower-http", 1457 "tower-service", 1458 "url", 1459 "wasm-bindgen", 1460 "wasm-bindgen-futures", 1461 "wasm-streams", 1462 "web-sys", 1463] 1464 1465[[package]] 1466name = "ring" 1467version = "0.17.14" 1468source = "registry+https://github.com/rust-lang/crates.io-index" 1469checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 1470dependencies = [ 1471 "cc", 1472 "cfg-if", 1473 "getrandom 0.2.17", 1474 "libc", 1475 "untrusted", 1476 "windows-sys 0.52.0", 1477] 1478 1479[[package]] 1480name = "rocksdb" 1481version = "0.22.0" 1482source = "registry+https://github.com/rust-lang/crates.io-index" 1483checksum = "6bd13e55d6d7b8cd0ea569161127567cd587676c99f4472f779a0279aa60a7a7" 1484dependencies = [ 1485 "libc", 1486 "librocksdb-sys", 1487] 1488 1489[[package]] 1490name = "rustc-hash" 1491version = "1.1.0" 1492source = "registry+https://github.com/rust-lang/crates.io-index" 1493checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 1494 1495[[package]] 1496name = "rustc-hash" 1497version = "2.1.2" 1498source = "registry+https://github.com/rust-lang/crates.io-index" 1499checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" 1500 1501[[package]] 1502name = "rustc_version" 1503version = "0.4.1" 1504source = "registry+https://github.com/rust-lang/crates.io-index" 1505checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 1506dependencies = [ 1507 "semver", 1508] 1509 1510[[package]] 1511name = "rustix" 1512version = "1.1.4" 1513source = "registry+https://github.com/rust-lang/crates.io-index" 1514checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" 1515dependencies = [ 1516 "bitflags", 1517 "errno", 1518 "libc", 1519 "linux-raw-sys", 1520 "windows-sys 0.61.2", 1521] 1522 1523[[package]] 1524name = "rustls" 1525version = "0.23.37" 1526source = "registry+https://github.com/rust-lang/crates.io-index" 1527checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4" 1528dependencies = [ 1529 "once_cell", 1530 "ring", 1531 "rustls-pki-types", 1532 "rustls-webpki", 1533 "subtle", 1534 "zeroize", 1535] 1536 1537[[package]] 1538name = "rustls-native-certs" 1539version = "0.8.3" 1540source = "registry+https://github.com/rust-lang/crates.io-index" 1541checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" 1542dependencies = [ 1543 "openssl-probe", 1544 "rustls-pki-types", 1545 "schannel", 1546 "security-framework", 1547] 1548 1549[[package]] 1550name = "rustls-pki-types" 1551version = "1.14.0" 1552source = "registry+https://github.com/rust-lang/crates.io-index" 1553checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" 1554dependencies = [ 1555 "web-time", 1556 "zeroize", 1557] 1558 1559[[package]] 1560name = "rustls-webpki" 1561version = "0.103.10" 1562source = "registry+https://github.com/rust-lang/crates.io-index" 1563checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef" 1564dependencies = [ 1565 "ring", 1566 "rustls-pki-types", 1567 "untrusted", 1568] 1569 1570[[package]] 1571name = "rustversion" 1572version = "1.0.22" 1573source = "registry+https://github.com/rust-lang/crates.io-index" 1574checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" 1575 1576[[package]] 1577name = "ryu" 1578version = "1.0.23" 1579source = "registry+https://github.com/rust-lang/crates.io-index" 1580checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" 1581 1582[[package]] 1583name = "same-file" 1584version = "1.0.6" 1585source = "registry+https://github.com/rust-lang/crates.io-index" 1586checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 1587dependencies = [ 1588 "winapi-util", 1589] 1590 1591[[package]] 1592name = "schannel" 1593version = "0.1.29" 1594source = "registry+https://github.com/rust-lang/crates.io-index" 1595checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" 1596dependencies = [ 1597 "windows-sys 0.61.2", 1598] 1599 1600[[package]] 1601name = "scopeguard" 1602version = "1.2.0" 1603source = "registry+https://github.com/rust-lang/crates.io-index" 1604checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1605 1606[[package]] 1607name = "security-framework" 1608version = "3.7.0" 1609source = "registry+https://github.com/rust-lang/crates.io-index" 1610checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" 1611dependencies = [ 1612 "bitflags", 1613 "core-foundation", 1614 "core-foundation-sys", 1615 "libc", 1616 "security-framework-sys", 1617] 1618 1619[[package]] 1620name = "security-framework-sys" 1621version = "2.17.0" 1622source = "registry+https://github.com/rust-lang/crates.io-index" 1623checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" 1624dependencies = [ 1625 "core-foundation-sys", 1626 "libc", 1627] 1628 1629[[package]] 1630name = "semver" 1631version = "1.0.28" 1632source = "registry+https://github.com/rust-lang/crates.io-index" 1633checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" 1634 1635[[package]] 1636name = "serde" 1637version = "1.0.228" 1638source = "registry+https://github.com/rust-lang/crates.io-index" 1639checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 1640dependencies = [ 1641 "serde_core", 1642 "serde_derive", 1643] 1644 1645[[package]] 1646name = "serde_core" 1647version = "1.0.228" 1648source = "registry+https://github.com/rust-lang/crates.io-index" 1649checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 1650dependencies = [ 1651 "serde_derive", 1652] 1653 1654[[package]] 1655name = "serde_derive" 1656version = "1.0.228" 1657source = "registry+https://github.com/rust-lang/crates.io-index" 1658checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 1659dependencies = [ 1660 "proc-macro2", 1661 "quote", 1662 "syn", 1663] 1664 1665[[package]] 1666name = "serde_json" 1667version = "1.0.149" 1668source = "registry+https://github.com/rust-lang/crates.io-index" 1669checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" 1670dependencies = [ 1671 "itoa", 1672 "memchr", 1673 "serde", 1674 "serde_core", 1675 "zmij", 1676] 1677 1678[[package]] 1679name = "serde_urlencoded" 1680version = "0.7.1" 1681source = "registry+https://github.com/rust-lang/crates.io-index" 1682checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1683dependencies = [ 1684 "form_urlencoded", 1685 "itoa", 1686 "ryu", 1687 "serde", 1688] 1689 1690[[package]] 1691name = "sharded-slab" 1692version = "0.1.7" 1693source = "registry+https://github.com/rust-lang/crates.io-index" 1694checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 1695dependencies = [ 1696 "lazy_static", 1697] 1698 1699[[package]] 1700name = "shlex" 1701version = "1.3.0" 1702source = "registry+https://github.com/rust-lang/crates.io-index" 1703checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1704 1705[[package]] 1706name = "signal-hook-registry" 1707version = "1.4.8" 1708source = "registry+https://github.com/rust-lang/crates.io-index" 1709checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 1710dependencies = [ 1711 "errno", 1712 "libc", 1713] 1714 1715[[package]] 1716name = "slab" 1717version = "0.4.12" 1718source = "registry+https://github.com/rust-lang/crates.io-index" 1719checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" 1720 1721[[package]] 1722name = "smallvec" 1723version = "1.15.1" 1724source = "registry+https://github.com/rust-lang/crates.io-index" 1725checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 1726 1727[[package]] 1728name = "socket2" 1729version = "0.6.3" 1730source = "registry+https://github.com/rust-lang/crates.io-index" 1731checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" 1732dependencies = [ 1733 "libc", 1734 "windows-sys 0.61.2", 1735] 1736 1737[[package]] 1738name = "stable_deref_trait" 1739version = "1.2.1" 1740source = "registry+https://github.com/rust-lang/crates.io-index" 1741checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 1742 1743[[package]] 1744name = "strsim" 1745version = "0.11.1" 1746source = "registry+https://github.com/rust-lang/crates.io-index" 1747checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1748 1749[[package]] 1750name = "subtle" 1751version = "2.6.1" 1752source = "registry+https://github.com/rust-lang/crates.io-index" 1753checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 1754 1755[[package]] 1756name = "syn" 1757version = "2.0.117" 1758source = "registry+https://github.com/rust-lang/crates.io-index" 1759checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" 1760dependencies = [ 1761 "proc-macro2", 1762 "quote", 1763 "unicode-ident", 1764] 1765 1766[[package]] 1767name = "sync_wrapper" 1768version = "1.0.2" 1769source = "registry+https://github.com/rust-lang/crates.io-index" 1770checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 1771dependencies = [ 1772 "futures-core", 1773] 1774 1775[[package]] 1776name = "synstructure" 1777version = "0.13.2" 1778source = "registry+https://github.com/rust-lang/crates.io-index" 1779checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 1780dependencies = [ 1781 "proc-macro2", 1782 "quote", 1783 "syn", 1784] 1785 1786[[package]] 1787name = "tempfile" 1788version = "3.27.0" 1789source = "registry+https://github.com/rust-lang/crates.io-index" 1790checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" 1791dependencies = [ 1792 "fastrand", 1793 "getrandom 0.4.2", 1794 "once_cell", 1795 "rustix", 1796 "windows-sys 0.61.2", 1797] 1798 1799[[package]] 1800name = "thiserror" 1801version = "2.0.18" 1802source = "registry+https://github.com/rust-lang/crates.io-index" 1803checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" 1804dependencies = [ 1805 "thiserror-impl", 1806] 1807 1808[[package]] 1809name = "thiserror-impl" 1810version = "2.0.18" 1811source = "registry+https://github.com/rust-lang/crates.io-index" 1812checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" 1813dependencies = [ 1814 "proc-macro2", 1815 "quote", 1816 "syn", 1817] 1818 1819[[package]] 1820name = "thread_local" 1821version = "1.1.9" 1822source = "registry+https://github.com/rust-lang/crates.io-index" 1823checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" 1824dependencies = [ 1825 "cfg-if", 1826] 1827 1828[[package]] 1829name = "tinystr" 1830version = "0.8.3" 1831source = "registry+https://github.com/rust-lang/crates.io-index" 1832checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" 1833dependencies = [ 1834 "displaydoc", 1835 "zerovec", 1836] 1837 1838[[package]] 1839name = "tinyvec" 1840version = "1.11.0" 1841source = "registry+https://github.com/rust-lang/crates.io-index" 1842checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" 1843dependencies = [ 1844 "tinyvec_macros", 1845] 1846 1847[[package]] 1848name = "tinyvec_macros" 1849version = "0.1.1" 1850source = "registry+https://github.com/rust-lang/crates.io-index" 1851checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1852 1853[[package]] 1854name = "tokio" 1855version = "1.51.1" 1856source = "registry+https://github.com/rust-lang/crates.io-index" 1857checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c" 1858dependencies = [ 1859 "bytes", 1860 "libc", 1861 "mio", 1862 "parking_lot", 1863 "pin-project-lite", 1864 "signal-hook-registry", 1865 "socket2", 1866 "tokio-macros", 1867 "windows-sys 0.61.2", 1868] 1869 1870[[package]] 1871name = "tokio-macros" 1872version = "2.7.0" 1873source = "registry+https://github.com/rust-lang/crates.io-index" 1874checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" 1875dependencies = [ 1876 "proc-macro2", 1877 "quote", 1878 "syn", 1879] 1880 1881[[package]] 1882name = "tokio-rustls" 1883version = "0.26.4" 1884source = "registry+https://github.com/rust-lang/crates.io-index" 1885checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 1886dependencies = [ 1887 "rustls", 1888 "tokio", 1889] 1890 1891[[package]] 1892name = "tokio-util" 1893version = "0.7.18" 1894source = "registry+https://github.com/rust-lang/crates.io-index" 1895checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" 1896dependencies = [ 1897 "bytes", 1898 "futures-core", 1899 "futures-sink", 1900 "pin-project-lite", 1901 "tokio", 1902] 1903 1904[[package]] 1905name = "tower" 1906version = "0.5.3" 1907source = "registry+https://github.com/rust-lang/crates.io-index" 1908checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" 1909dependencies = [ 1910 "futures-core", 1911 "futures-util", 1912 "pin-project-lite", 1913 "sync_wrapper", 1914 "tokio", 1915 "tower-layer", 1916 "tower-service", 1917] 1918 1919[[package]] 1920name = "tower-http" 1921version = "0.6.8" 1922source = "registry+https://github.com/rust-lang/crates.io-index" 1923checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" 1924dependencies = [ 1925 "bitflags", 1926 "bytes", 1927 "futures-util", 1928 "http", 1929 "http-body", 1930 "iri-string", 1931 "pin-project-lite", 1932 "tower", 1933 "tower-layer", 1934 "tower-service", 1935] 1936 1937[[package]] 1938name = "tower-layer" 1939version = "0.3.3" 1940source = "registry+https://github.com/rust-lang/crates.io-index" 1941checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 1942 1943[[package]] 1944name = "tower-service" 1945version = "0.3.3" 1946source = "registry+https://github.com/rust-lang/crates.io-index" 1947checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 1948 1949[[package]] 1950name = "tracing" 1951version = "0.1.44" 1952source = "registry+https://github.com/rust-lang/crates.io-index" 1953checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 1954dependencies = [ 1955 "pin-project-lite", 1956 "tracing-attributes", 1957 "tracing-core", 1958] 1959 1960[[package]] 1961name = "tracing-attributes" 1962version = "0.1.31" 1963source = "registry+https://github.com/rust-lang/crates.io-index" 1964checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 1965dependencies = [ 1966 "proc-macro2", 1967 "quote", 1968 "syn", 1969] 1970 1971[[package]] 1972name = "tracing-core" 1973version = "0.1.36" 1974source = "registry+https://github.com/rust-lang/crates.io-index" 1975checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 1976dependencies = [ 1977 "once_cell", 1978 "valuable", 1979] 1980 1981[[package]] 1982name = "tracing-log" 1983version = "0.2.0" 1984source = "registry+https://github.com/rust-lang/crates.io-index" 1985checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 1986dependencies = [ 1987 "log", 1988 "once_cell", 1989 "tracing-core", 1990] 1991 1992[[package]] 1993name = "tracing-subscriber" 1994version = "0.3.23" 1995source = "registry+https://github.com/rust-lang/crates.io-index" 1996checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" 1997dependencies = [ 1998 "matchers", 1999 "nu-ansi-term", 2000 "once_cell", 2001 "regex-automata", 2002 "sharded-slab", 2003 "smallvec", 2004 "thread_local", 2005 "tracing", 2006 "tracing-core", 2007 "tracing-log", 2008] 2009 2010[[package]] 2011name = "try-lock" 2012version = "0.2.5" 2013source = "registry+https://github.com/rust-lang/crates.io-index" 2014checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 2015 2016[[package]] 2017name = "typenum" 2018version = "1.19.0" 2019source = "registry+https://github.com/rust-lang/crates.io-index" 2020checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 2021 2022[[package]] 2023name = "unicode-ident" 2024version = "1.0.24" 2025source = "registry+https://github.com/rust-lang/crates.io-index" 2026checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 2027 2028[[package]] 2029name = "unicode-xid" 2030version = "0.2.6" 2031source = "registry+https://github.com/rust-lang/crates.io-index" 2032checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 2033 2034[[package]] 2035name = "untrusted" 2036version = "0.9.0" 2037source = "registry+https://github.com/rust-lang/crates.io-index" 2038checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 2039 2040[[package]] 2041name = "url" 2042version = "2.5.8" 2043source = "registry+https://github.com/rust-lang/crates.io-index" 2044checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" 2045dependencies = [ 2046 "form_urlencoded", 2047 "idna", 2048 "percent-encoding", 2049 "serde", 2050] 2051 2052[[package]] 2053name = "utf8_iter" 2054version = "1.0.4" 2055source = "registry+https://github.com/rust-lang/crates.io-index" 2056checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 2057 2058[[package]] 2059name = "utf8parse" 2060version = "0.2.2" 2061source = "registry+https://github.com/rust-lang/crates.io-index" 2062checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 2063 2064[[package]] 2065name = "valuable" 2066version = "0.1.1" 2067source = "registry+https://github.com/rust-lang/crates.io-index" 2068checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 2069 2070[[package]] 2071name = "vcpkg" 2072version = "0.2.15" 2073source = "registry+https://github.com/rust-lang/crates.io-index" 2074checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2075 2076[[package]] 2077name = "version_check" 2078version = "0.9.5" 2079source = "registry+https://github.com/rust-lang/crates.io-index" 2080checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 2081 2082[[package]] 2083name = "walkdir" 2084version = "2.5.0" 2085source = "registry+https://github.com/rust-lang/crates.io-index" 2086checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 2087dependencies = [ 2088 "same-file", 2089 "winapi-util", 2090] 2091 2092[[package]] 2093name = "want" 2094version = "0.3.1" 2095source = "registry+https://github.com/rust-lang/crates.io-index" 2096checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2097dependencies = [ 2098 "try-lock", 2099] 2100 2101[[package]] 2102name = "wasi" 2103version = "0.11.1+wasi-snapshot-preview1" 2104source = "registry+https://github.com/rust-lang/crates.io-index" 2105checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 2106 2107[[package]] 2108name = "wasip2" 2109version = "1.0.2+wasi-0.2.9" 2110source = "registry+https://github.com/rust-lang/crates.io-index" 2111checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" 2112dependencies = [ 2113 "wit-bindgen", 2114] 2115 2116[[package]] 2117name = "wasip3" 2118version = "0.4.0+wasi-0.3.0-rc-2026-01-06" 2119source = "registry+https://github.com/rust-lang/crates.io-index" 2120checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" 2121dependencies = [ 2122 "wit-bindgen", 2123] 2124 2125[[package]] 2126name = "wasm-bindgen" 2127version = "0.2.117" 2128source = "registry+https://github.com/rust-lang/crates.io-index" 2129checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0" 2130dependencies = [ 2131 "cfg-if", 2132 "once_cell", 2133 "rustversion", 2134 "wasm-bindgen-macro", 2135 "wasm-bindgen-shared", 2136] 2137 2138[[package]] 2139name = "wasm-bindgen-futures" 2140version = "0.4.67" 2141source = "registry+https://github.com/rust-lang/crates.io-index" 2142checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e" 2143dependencies = [ 2144 "js-sys", 2145 "wasm-bindgen", 2146] 2147 2148[[package]] 2149name = "wasm-bindgen-macro" 2150version = "0.2.117" 2151source = "registry+https://github.com/rust-lang/crates.io-index" 2152checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be" 2153dependencies = [ 2154 "quote", 2155 "wasm-bindgen-macro-support", 2156] 2157 2158[[package]] 2159name = "wasm-bindgen-macro-support" 2160version = "0.2.117" 2161source = "registry+https://github.com/rust-lang/crates.io-index" 2162checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2" 2163dependencies = [ 2164 "bumpalo", 2165 "proc-macro2", 2166 "quote", 2167 "syn", 2168 "wasm-bindgen-shared", 2169] 2170 2171[[package]] 2172name = "wasm-bindgen-shared" 2173version = "0.2.117" 2174source = "registry+https://github.com/rust-lang/crates.io-index" 2175checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b" 2176dependencies = [ 2177 "unicode-ident", 2178] 2179 2180[[package]] 2181name = "wasm-encoder" 2182version = "0.244.0" 2183source = "registry+https://github.com/rust-lang/crates.io-index" 2184checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" 2185dependencies = [ 2186 "leb128fmt", 2187 "wasmparser", 2188] 2189 2190[[package]] 2191name = "wasm-metadata" 2192version = "0.244.0" 2193source = "registry+https://github.com/rust-lang/crates.io-index" 2194checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" 2195dependencies = [ 2196 "anyhow", 2197 "indexmap", 2198 "wasm-encoder", 2199 "wasmparser", 2200] 2201 2202[[package]] 2203name = "wasm-streams" 2204version = "0.4.2" 2205source = "registry+https://github.com/rust-lang/crates.io-index" 2206checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" 2207dependencies = [ 2208 "futures-util", 2209 "js-sys", 2210 "wasm-bindgen", 2211 "wasm-bindgen-futures", 2212 "web-sys", 2213] 2214 2215[[package]] 2216name = "wasmparser" 2217version = "0.244.0" 2218source = "registry+https://github.com/rust-lang/crates.io-index" 2219checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" 2220dependencies = [ 2221 "bitflags", 2222 "hashbrown 0.15.5", 2223 "indexmap", 2224 "semver", 2225] 2226 2227[[package]] 2228name = "web-sys" 2229version = "0.3.94" 2230source = "registry+https://github.com/rust-lang/crates.io-index" 2231checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a" 2232dependencies = [ 2233 "js-sys", 2234 "wasm-bindgen", 2235] 2236 2237[[package]] 2238name = "web-time" 2239version = "1.1.0" 2240source = "registry+https://github.com/rust-lang/crates.io-index" 2241checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 2242dependencies = [ 2243 "js-sys", 2244 "wasm-bindgen", 2245] 2246 2247[[package]] 2248name = "winapi-util" 2249version = "0.1.11" 2250source = "registry+https://github.com/rust-lang/crates.io-index" 2251checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 2252dependencies = [ 2253 "windows-sys 0.61.2", 2254] 2255 2256[[package]] 2257name = "windows-core" 2258version = "0.62.2" 2259source = "registry+https://github.com/rust-lang/crates.io-index" 2260checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 2261dependencies = [ 2262 "windows-implement", 2263 "windows-interface", 2264 "windows-link", 2265 "windows-result", 2266 "windows-strings", 2267] 2268 2269[[package]] 2270name = "windows-implement" 2271version = "0.60.2" 2272source = "registry+https://github.com/rust-lang/crates.io-index" 2273checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 2274dependencies = [ 2275 "proc-macro2", 2276 "quote", 2277 "syn", 2278] 2279 2280[[package]] 2281name = "windows-interface" 2282version = "0.59.3" 2283source = "registry+https://github.com/rust-lang/crates.io-index" 2284checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 2285dependencies = [ 2286 "proc-macro2", 2287 "quote", 2288 "syn", 2289] 2290 2291[[package]] 2292name = "windows-link" 2293version = "0.2.1" 2294source = "registry+https://github.com/rust-lang/crates.io-index" 2295checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 2296 2297[[package]] 2298name = "windows-result" 2299version = "0.4.1" 2300source = "registry+https://github.com/rust-lang/crates.io-index" 2301checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 2302dependencies = [ 2303 "windows-link", 2304] 2305 2306[[package]] 2307name = "windows-strings" 2308version = "0.5.1" 2309source = "registry+https://github.com/rust-lang/crates.io-index" 2310checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 2311dependencies = [ 2312 "windows-link", 2313] 2314 2315[[package]] 2316name = "windows-sys" 2317version = "0.52.0" 2318source = "registry+https://github.com/rust-lang/crates.io-index" 2319checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 2320dependencies = [ 2321 "windows-targets 0.52.6", 2322] 2323 2324[[package]] 2325name = "windows-sys" 2326version = "0.60.2" 2327source = "registry+https://github.com/rust-lang/crates.io-index" 2328checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 2329dependencies = [ 2330 "windows-targets 0.53.5", 2331] 2332 2333[[package]] 2334name = "windows-sys" 2335version = "0.61.2" 2336source = "registry+https://github.com/rust-lang/crates.io-index" 2337checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 2338dependencies = [ 2339 "windows-link", 2340] 2341 2342[[package]] 2343name = "windows-targets" 2344version = "0.52.6" 2345source = "registry+https://github.com/rust-lang/crates.io-index" 2346checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 2347dependencies = [ 2348 "windows_aarch64_gnullvm 0.52.6", 2349 "windows_aarch64_msvc 0.52.6", 2350 "windows_i686_gnu 0.52.6", 2351 "windows_i686_gnullvm 0.52.6", 2352 "windows_i686_msvc 0.52.6", 2353 "windows_x86_64_gnu 0.52.6", 2354 "windows_x86_64_gnullvm 0.52.6", 2355 "windows_x86_64_msvc 0.52.6", 2356] 2357 2358[[package]] 2359name = "windows-targets" 2360version = "0.53.5" 2361source = "registry+https://github.com/rust-lang/crates.io-index" 2362checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 2363dependencies = [ 2364 "windows-link", 2365 "windows_aarch64_gnullvm 0.53.1", 2366 "windows_aarch64_msvc 0.53.1", 2367 "windows_i686_gnu 0.53.1", 2368 "windows_i686_gnullvm 0.53.1", 2369 "windows_i686_msvc 0.53.1", 2370 "windows_x86_64_gnu 0.53.1", 2371 "windows_x86_64_gnullvm 0.53.1", 2372 "windows_x86_64_msvc 0.53.1", 2373] 2374 2375[[package]] 2376name = "windows_aarch64_gnullvm" 2377version = "0.52.6" 2378source = "registry+https://github.com/rust-lang/crates.io-index" 2379checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 2380 2381[[package]] 2382name = "windows_aarch64_gnullvm" 2383version = "0.53.1" 2384source = "registry+https://github.com/rust-lang/crates.io-index" 2385checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 2386 2387[[package]] 2388name = "windows_aarch64_msvc" 2389version = "0.52.6" 2390source = "registry+https://github.com/rust-lang/crates.io-index" 2391checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 2392 2393[[package]] 2394name = "windows_aarch64_msvc" 2395version = "0.53.1" 2396source = "registry+https://github.com/rust-lang/crates.io-index" 2397checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 2398 2399[[package]] 2400name = "windows_i686_gnu" 2401version = "0.52.6" 2402source = "registry+https://github.com/rust-lang/crates.io-index" 2403checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 2404 2405[[package]] 2406name = "windows_i686_gnu" 2407version = "0.53.1" 2408source = "registry+https://github.com/rust-lang/crates.io-index" 2409checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 2410 2411[[package]] 2412name = "windows_i686_gnullvm" 2413version = "0.52.6" 2414source = "registry+https://github.com/rust-lang/crates.io-index" 2415checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 2416 2417[[package]] 2418name = "windows_i686_gnullvm" 2419version = "0.53.1" 2420source = "registry+https://github.com/rust-lang/crates.io-index" 2421checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 2422 2423[[package]] 2424name = "windows_i686_msvc" 2425version = "0.52.6" 2426source = "registry+https://github.com/rust-lang/crates.io-index" 2427checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 2428 2429[[package]] 2430name = "windows_i686_msvc" 2431version = "0.53.1" 2432source = "registry+https://github.com/rust-lang/crates.io-index" 2433checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 2434 2435[[package]] 2436name = "windows_x86_64_gnu" 2437version = "0.52.6" 2438source = "registry+https://github.com/rust-lang/crates.io-index" 2439checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 2440 2441[[package]] 2442name = "windows_x86_64_gnu" 2443version = "0.53.1" 2444source = "registry+https://github.com/rust-lang/crates.io-index" 2445checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 2446 2447[[package]] 2448name = "windows_x86_64_gnullvm" 2449version = "0.52.6" 2450source = "registry+https://github.com/rust-lang/crates.io-index" 2451checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 2452 2453[[package]] 2454name = "windows_x86_64_gnullvm" 2455version = "0.53.1" 2456source = "registry+https://github.com/rust-lang/crates.io-index" 2457checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 2458 2459[[package]] 2460name = "windows_x86_64_msvc" 2461version = "0.52.6" 2462source = "registry+https://github.com/rust-lang/crates.io-index" 2463checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 2464 2465[[package]] 2466name = "windows_x86_64_msvc" 2467version = "0.53.1" 2468source = "registry+https://github.com/rust-lang/crates.io-index" 2469checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" 2470 2471[[package]] 2472name = "wit-bindgen" 2473version = "0.51.0" 2474source = "registry+https://github.com/rust-lang/crates.io-index" 2475checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" 2476dependencies = [ 2477 "wit-bindgen-rust-macro", 2478] 2479 2480[[package]] 2481name = "wit-bindgen-core" 2482version = "0.51.0" 2483source = "registry+https://github.com/rust-lang/crates.io-index" 2484checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" 2485dependencies = [ 2486 "anyhow", 2487 "heck", 2488 "wit-parser", 2489] 2490 2491[[package]] 2492name = "wit-bindgen-rust" 2493version = "0.51.0" 2494source = "registry+https://github.com/rust-lang/crates.io-index" 2495checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" 2496dependencies = [ 2497 "anyhow", 2498 "heck", 2499 "indexmap", 2500 "prettyplease", 2501 "syn", 2502 "wasm-metadata", 2503 "wit-bindgen-core", 2504 "wit-component", 2505] 2506 2507[[package]] 2508name = "wit-bindgen-rust-macro" 2509version = "0.51.0" 2510source = "registry+https://github.com/rust-lang/crates.io-index" 2511checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" 2512dependencies = [ 2513 "anyhow", 2514 "prettyplease", 2515 "proc-macro2", 2516 "quote", 2517 "syn", 2518 "wit-bindgen-core", 2519 "wit-bindgen-rust", 2520] 2521 2522[[package]] 2523name = "wit-component" 2524version = "0.244.0" 2525source = "registry+https://github.com/rust-lang/crates.io-index" 2526checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" 2527dependencies = [ 2528 "anyhow", 2529 "bitflags", 2530 "indexmap", 2531 "log", 2532 "serde", 2533 "serde_derive", 2534 "serde_json", 2535 "wasm-encoder", 2536 "wasm-metadata", 2537 "wasmparser", 2538 "wit-parser", 2539] 2540 2541[[package]] 2542name = "wit-parser" 2543version = "0.244.0" 2544source = "registry+https://github.com/rust-lang/crates.io-index" 2545checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" 2546dependencies = [ 2547 "anyhow", 2548 "id-arena", 2549 "indexmap", 2550 "log", 2551 "semver", 2552 "serde", 2553 "serde_derive", 2554 "serde_json", 2555 "unicode-xid", 2556 "wasmparser", 2557] 2558 2559[[package]] 2560name = "writeable" 2561version = "0.6.3" 2562source = "registry+https://github.com/rust-lang/crates.io-index" 2563checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" 2564 2565[[package]] 2566name = "yoke" 2567version = "0.8.2" 2568source = "registry+https://github.com/rust-lang/crates.io-index" 2569checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca" 2570dependencies = [ 2571 "stable_deref_trait", 2572 "yoke-derive", 2573 "zerofrom", 2574] 2575 2576[[package]] 2577name = "yoke-derive" 2578version = "0.8.2" 2579source = "registry+https://github.com/rust-lang/crates.io-index" 2580checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" 2581dependencies = [ 2582 "proc-macro2", 2583 "quote", 2584 "syn", 2585 "synstructure", 2586] 2587 2588[[package]] 2589name = "zerocopy" 2590version = "0.8.48" 2591source = "registry+https://github.com/rust-lang/crates.io-index" 2592checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9" 2593dependencies = [ 2594 "zerocopy-derive", 2595] 2596 2597[[package]] 2598name = "zerocopy-derive" 2599version = "0.8.48" 2600source = "registry+https://github.com/rust-lang/crates.io-index" 2601checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4" 2602dependencies = [ 2603 "proc-macro2", 2604 "quote", 2605 "syn", 2606] 2607 2608[[package]] 2609name = "zerofrom" 2610version = "0.1.7" 2611source = "registry+https://github.com/rust-lang/crates.io-index" 2612checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df" 2613dependencies = [ 2614 "zerofrom-derive", 2615] 2616 2617[[package]] 2618name = "zerofrom-derive" 2619version = "0.1.7" 2620source = "registry+https://github.com/rust-lang/crates.io-index" 2621checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" 2622dependencies = [ 2623 "proc-macro2", 2624 "quote", 2625 "syn", 2626 "synstructure", 2627] 2628 2629[[package]] 2630name = "zeroize" 2631version = "1.8.2" 2632source = "registry+https://github.com/rust-lang/crates.io-index" 2633checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" 2634 2635[[package]] 2636name = "zerotrie" 2637version = "0.2.4" 2638source = "registry+https://github.com/rust-lang/crates.io-index" 2639checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" 2640dependencies = [ 2641 "displaydoc", 2642 "yoke", 2643 "zerofrom", 2644] 2645 2646[[package]] 2647name = "zerovec" 2648version = "0.11.6" 2649source = "registry+https://github.com/rust-lang/crates.io-index" 2650checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" 2651dependencies = [ 2652 "yoke", 2653 "zerofrom", 2654 "zerovec-derive", 2655] 2656 2657[[package]] 2658name = "zerovec-derive" 2659version = "0.11.3" 2660source = "registry+https://github.com/rust-lang/crates.io-index" 2661checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" 2662dependencies = [ 2663 "proc-macro2", 2664 "quote", 2665 "syn", 2666] 2667 2668[[package]] 2669name = "zmij" 2670version = "1.0.21" 2671source = "registry+https://github.com/rust-lang/crates.io-index" 2672checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" 2673 2674[[package]] 2675name = "zstd-sys" 2676version = "2.0.16+zstd.1.5.7" 2677source = "registry+https://github.com/rust-lang/crates.io-index" 2678checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" 2679dependencies = [ 2680 "bindgen 0.72.1", 2681 "cc", 2682 "pkg-config", 2683]