Streaming Tree ARchive format
at rust-impl 906 lines 24 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 = "addr2line" 7version = "0.25.1" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler2" 16version = "2.0.1" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" 19 20[[package]] 21name = "anyhow" 22version = "1.0.100" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" 25dependencies = [ 26 "backtrace", 27] 28 29[[package]] 30name = "async-channel" 31version = "2.5.0" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 34dependencies = [ 35 "concurrent-queue", 36 "event-listener-strategy", 37 "futures-core", 38 "pin-project-lite", 39] 40 41[[package]] 42name = "backtrace" 43version = "0.3.76" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" 46dependencies = [ 47 "addr2line", 48 "cfg-if", 49 "libc", 50 "miniz_oxide", 51 "object", 52 "rustc-demangle", 53 "windows-link", 54] 55 56[[package]] 57name = "base-x" 58version = "0.2.11" 59source = "registry+https://github.com/rust-lang/crates.io-index" 60checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 61 62[[package]] 63name = "base256emoji" 64version = "1.0.2" 65source = "registry+https://github.com/rust-lang/crates.io-index" 66checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" 67dependencies = [ 68 "const-str", 69 "match-lookup", 70] 71 72[[package]] 73name = "bitflags" 74version = "2.10.0" 75source = "registry+https://github.com/rust-lang/crates.io-index" 76checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 77 78[[package]] 79name = "block-buffer" 80version = "0.10.4" 81source = "registry+https://github.com/rust-lang/crates.io-index" 82checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 83dependencies = [ 84 "generic-array", 85] 86 87[[package]] 88name = "bytes" 89version = "1.11.0" 90source = "registry+https://github.com/rust-lang/crates.io-index" 91checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" 92 93[[package]] 94name = "cbor4ii" 95version = "0.2.14" 96source = "registry+https://github.com/rust-lang/crates.io-index" 97checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4" 98dependencies = [ 99 "serde", 100] 101 102[[package]] 103name = "cc" 104version = "1.2.53" 105source = "registry+https://github.com/rust-lang/crates.io-index" 106checksum = "755d2fce177175ffca841e9a06afdb2c4ab0f593d53b4dee48147dfaade85932" 107dependencies = [ 108 "find-msvc-tools", 109 "shlex", 110] 111 112[[package]] 113name = "cfg-if" 114version = "1.0.4" 115source = "registry+https://github.com/rust-lang/crates.io-index" 116checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 117 118[[package]] 119name = "cid" 120version = "0.11.1" 121source = "registry+https://github.com/rust-lang/crates.io-index" 122checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" 123dependencies = [ 124 "core2", 125 "multibase", 126 "multihash", 127 "serde", 128 "serde_bytes", 129 "unsigned-varint 0.8.0", 130] 131 132[[package]] 133name = "concurrent-queue" 134version = "2.5.0" 135source = "registry+https://github.com/rust-lang/crates.io-index" 136checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 137dependencies = [ 138 "crossbeam-utils", 139] 140 141[[package]] 142name = "const-str" 143version = "0.4.3" 144source = "registry+https://github.com/rust-lang/crates.io-index" 145checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" 146 147[[package]] 148name = "core2" 149version = "0.4.0" 150source = "registry+https://github.com/rust-lang/crates.io-index" 151checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" 152dependencies = [ 153 "memchr", 154] 155 156[[package]] 157name = "cpufeatures" 158version = "0.2.17" 159source = "registry+https://github.com/rust-lang/crates.io-index" 160checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 161dependencies = [ 162 "libc", 163] 164 165[[package]] 166name = "crossbeam-utils" 167version = "0.8.21" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 170 171[[package]] 172name = "crypto-common" 173version = "0.1.7" 174source = "registry+https://github.com/rust-lang/crates.io-index" 175checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 176dependencies = [ 177 "generic-array", 178 "typenum", 179] 180 181[[package]] 182name = "data-encoding" 183version = "2.10.0" 184source = "registry+https://github.com/rust-lang/crates.io-index" 185checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea" 186 187[[package]] 188name = "data-encoding-macro" 189version = "0.1.19" 190source = "registry+https://github.com/rust-lang/crates.io-index" 191checksum = "8142a83c17aa9461d637e649271eae18bf2edd00e91f2e105df36c3c16355bdb" 192dependencies = [ 193 "data-encoding", 194 "data-encoding-macro-internal", 195] 196 197[[package]] 198name = "data-encoding-macro-internal" 199version = "0.1.17" 200source = "registry+https://github.com/rust-lang/crates.io-index" 201checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de" 202dependencies = [ 203 "data-encoding", 204 "syn", 205] 206 207[[package]] 208name = "digest" 209version = "0.10.7" 210source = "registry+https://github.com/rust-lang/crates.io-index" 211checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 212dependencies = [ 213 "block-buffer", 214 "crypto-common", 215] 216 217[[package]] 218name = "errno" 219version = "0.3.14" 220source = "registry+https://github.com/rust-lang/crates.io-index" 221checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 222dependencies = [ 223 "libc", 224 "windows-sys 0.61.2", 225] 226 227[[package]] 228name = "event-listener" 229version = "5.4.1" 230source = "registry+https://github.com/rust-lang/crates.io-index" 231checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 232dependencies = [ 233 "concurrent-queue", 234 "parking", 235 "pin-project-lite", 236] 237 238[[package]] 239name = "event-listener-strategy" 240version = "0.5.4" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 243dependencies = [ 244 "event-listener", 245 "pin-project-lite", 246] 247 248[[package]] 249name = "find-msvc-tools" 250version = "0.1.8" 251source = "registry+https://github.com/rust-lang/crates.io-index" 252checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db" 253 254[[package]] 255name = "futures" 256version = "0.3.31" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" 259dependencies = [ 260 "futures-channel", 261 "futures-core", 262 "futures-executor", 263 "futures-io", 264 "futures-sink", 265 "futures-task", 266 "futures-util", 267] 268 269[[package]] 270name = "futures-channel" 271version = "0.3.31" 272source = "registry+https://github.com/rust-lang/crates.io-index" 273checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 274dependencies = [ 275 "futures-core", 276 "futures-sink", 277] 278 279[[package]] 280name = "futures-core" 281version = "0.3.31" 282source = "registry+https://github.com/rust-lang/crates.io-index" 283checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 284 285[[package]] 286name = "futures-executor" 287version = "0.3.31" 288source = "registry+https://github.com/rust-lang/crates.io-index" 289checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" 290dependencies = [ 291 "futures-core", 292 "futures-task", 293 "futures-util", 294] 295 296[[package]] 297name = "futures-io" 298version = "0.3.31" 299source = "registry+https://github.com/rust-lang/crates.io-index" 300checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" 301 302[[package]] 303name = "futures-macro" 304version = "0.3.31" 305source = "registry+https://github.com/rust-lang/crates.io-index" 306checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 307dependencies = [ 308 "proc-macro2", 309 "quote", 310 "syn", 311] 312 313[[package]] 314name = "futures-sink" 315version = "0.3.31" 316source = "registry+https://github.com/rust-lang/crates.io-index" 317checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 318 319[[package]] 320name = "futures-task" 321version = "0.3.31" 322source = "registry+https://github.com/rust-lang/crates.io-index" 323checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 324 325[[package]] 326name = "futures-util" 327version = "0.3.31" 328source = "registry+https://github.com/rust-lang/crates.io-index" 329checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 330dependencies = [ 331 "futures-channel", 332 "futures-core", 333 "futures-io", 334 "futures-macro", 335 "futures-sink", 336 "futures-task", 337 "memchr", 338 "pin-project-lite", 339 "pin-utils", 340 "slab", 341] 342 343[[package]] 344name = "generic-array" 345version = "0.14.7" 346source = "registry+https://github.com/rust-lang/crates.io-index" 347checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 348dependencies = [ 349 "typenum", 350 "version_check", 351] 352 353[[package]] 354name = "gimli" 355version = "0.32.3" 356source = "registry+https://github.com/rust-lang/crates.io-index" 357checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" 358 359[[package]] 360name = "ipld-core" 361version = "0.4.2" 362source = "registry+https://github.com/rust-lang/crates.io-index" 363checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db" 364dependencies = [ 365 "cid", 366 "serde", 367 "serde_bytes", 368] 369 370[[package]] 371name = "iroh-car" 372version = "0.5.1" 373source = "registry+https://github.com/rust-lang/crates.io-index" 374checksum = "cb7f8cd4cb9aa083fba8b52e921764252d0b4dcb1cd6d120b809dbfe1106e81a" 375dependencies = [ 376 "anyhow", 377 "cid", 378 "futures", 379 "serde", 380 "serde_ipld_dagcbor", 381 "thiserror 1.0.69", 382 "tokio", 383 "unsigned-varint 0.7.2", 384] 385 386[[package]] 387name = "libc" 388version = "0.2.180" 389source = "registry+https://github.com/rust-lang/crates.io-index" 390checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc" 391 392[[package]] 393name = "libmimalloc-sys" 394version = "0.1.44" 395source = "registry+https://github.com/rust-lang/crates.io-index" 396checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870" 397dependencies = [ 398 "cc", 399 "libc", 400] 401 402[[package]] 403name = "lock_api" 404version = "0.4.14" 405source = "registry+https://github.com/rust-lang/crates.io-index" 406checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 407dependencies = [ 408 "scopeguard", 409] 410 411[[package]] 412name = "match-lookup" 413version = "0.1.2" 414source = "registry+https://github.com/rust-lang/crates.io-index" 415checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771" 416dependencies = [ 417 "proc-macro2", 418 "quote", 419 "syn", 420] 421 422[[package]] 423name = "memchr" 424version = "2.7.6" 425source = "registry+https://github.com/rust-lang/crates.io-index" 426checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 427 428[[package]] 429name = "mimalloc" 430version = "0.1.48" 431source = "registry+https://github.com/rust-lang/crates.io-index" 432checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8" 433dependencies = [ 434 "libmimalloc-sys", 435] 436 437[[package]] 438name = "miniz_oxide" 439version = "0.8.9" 440source = "registry+https://github.com/rust-lang/crates.io-index" 441checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" 442dependencies = [ 443 "adler2", 444] 445 446[[package]] 447name = "mio" 448version = "1.1.1" 449source = "registry+https://github.com/rust-lang/crates.io-index" 450checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" 451dependencies = [ 452 "libc", 453 "wasi", 454 "windows-sys 0.61.2", 455] 456 457[[package]] 458name = "multibase" 459version = "0.9.2" 460source = "registry+https://github.com/rust-lang/crates.io-index" 461checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" 462dependencies = [ 463 "base-x", 464 "base256emoji", 465 "data-encoding", 466 "data-encoding-macro", 467] 468 469[[package]] 470name = "multihash" 471version = "0.19.3" 472source = "registry+https://github.com/rust-lang/crates.io-index" 473checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" 474dependencies = [ 475 "core2", 476 "serde", 477 "unsigned-varint 0.8.0", 478] 479 480[[package]] 481name = "object" 482version = "0.37.3" 483source = "registry+https://github.com/rust-lang/crates.io-index" 484checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" 485dependencies = [ 486 "memchr", 487] 488 489[[package]] 490name = "parking" 491version = "2.2.1" 492source = "registry+https://github.com/rust-lang/crates.io-index" 493checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 494 495[[package]] 496name = "parking_lot" 497version = "0.12.5" 498source = "registry+https://github.com/rust-lang/crates.io-index" 499checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 500dependencies = [ 501 "lock_api", 502 "parking_lot_core", 503] 504 505[[package]] 506name = "parking_lot_core" 507version = "0.9.12" 508source = "registry+https://github.com/rust-lang/crates.io-index" 509checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 510dependencies = [ 511 "cfg-if", 512 "libc", 513 "redox_syscall", 514 "smallvec", 515 "windows-link", 516] 517 518[[package]] 519name = "pin-project-lite" 520version = "0.2.16" 521source = "registry+https://github.com/rust-lang/crates.io-index" 522checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 523 524[[package]] 525name = "pin-utils" 526version = "0.1.0" 527source = "registry+https://github.com/rust-lang/crates.io-index" 528checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 529 530[[package]] 531name = "proc-macro2" 532version = "1.0.106" 533source = "registry+https://github.com/rust-lang/crates.io-index" 534checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" 535dependencies = [ 536 "unicode-ident", 537] 538 539[[package]] 540name = "quote" 541version = "1.0.43" 542source = "registry+https://github.com/rust-lang/crates.io-index" 543checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a" 544dependencies = [ 545 "proc-macro2", 546] 547 548[[package]] 549name = "redox_syscall" 550version = "0.5.18" 551source = "registry+https://github.com/rust-lang/crates.io-index" 552checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 553dependencies = [ 554 "bitflags", 555] 556 557[[package]] 558name = "rustc-demangle" 559version = "0.1.27" 560source = "registry+https://github.com/rust-lang/crates.io-index" 561checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d" 562 563[[package]] 564name = "scopeguard" 565version = "1.2.0" 566source = "registry+https://github.com/rust-lang/crates.io-index" 567checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 568 569[[package]] 570name = "serde" 571version = "1.0.228" 572source = "registry+https://github.com/rust-lang/crates.io-index" 573checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 574dependencies = [ 575 "serde_core", 576 "serde_derive", 577] 578 579[[package]] 580name = "serde_bytes" 581version = "0.11.19" 582source = "registry+https://github.com/rust-lang/crates.io-index" 583checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 584dependencies = [ 585 "serde", 586 "serde_core", 587] 588 589[[package]] 590name = "serde_core" 591version = "1.0.228" 592source = "registry+https://github.com/rust-lang/crates.io-index" 593checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 594dependencies = [ 595 "serde_derive", 596] 597 598[[package]] 599name = "serde_derive" 600version = "1.0.228" 601source = "registry+https://github.com/rust-lang/crates.io-index" 602checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 603dependencies = [ 604 "proc-macro2", 605 "quote", 606 "syn", 607] 608 609[[package]] 610name = "serde_ipld_dagcbor" 611version = "0.6.4" 612source = "registry+https://github.com/rust-lang/crates.io-index" 613checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778" 614dependencies = [ 615 "cbor4ii", 616 "ipld-core", 617 "scopeguard", 618 "serde", 619] 620 621[[package]] 622name = "sha2" 623version = "0.10.9" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" 626dependencies = [ 627 "cfg-if", 628 "cpufeatures", 629 "digest", 630] 631 632[[package]] 633name = "shlex" 634version = "1.3.0" 635source = "registry+https://github.com/rust-lang/crates.io-index" 636checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 637 638[[package]] 639name = "signal-hook-registry" 640version = "1.4.8" 641source = "registry+https://github.com/rust-lang/crates.io-index" 642checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 643dependencies = [ 644 "errno", 645 "libc", 646] 647 648[[package]] 649name = "slab" 650version = "0.4.11" 651source = "registry+https://github.com/rust-lang/crates.io-index" 652checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 653 654[[package]] 655name = "smallvec" 656version = "1.15.1" 657source = "registry+https://github.com/rust-lang/crates.io-index" 658checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 659 660[[package]] 661name = "socket2" 662version = "0.6.1" 663source = "registry+https://github.com/rust-lang/crates.io-index" 664checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" 665dependencies = [ 666 "libc", 667 "windows-sys 0.60.2", 668] 669 670[[package]] 671name = "star" 672version = "0.1.0" 673dependencies = [ 674 "anyhow", 675 "async-channel", 676 "bytes", 677 "cid", 678 "futures", 679 "iroh-car", 680 "mimalloc", 681 "serde", 682 "serde_bytes", 683 "serde_ipld_dagcbor", 684 "sha2", 685 "thiserror 2.0.18", 686 "tokio", 687 "tokio-util", 688 "unsigned-varint 0.8.0", 689] 690 691[[package]] 692name = "syn" 693version = "2.0.114" 694source = "registry+https://github.com/rust-lang/crates.io-index" 695checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" 696dependencies = [ 697 "proc-macro2", 698 "quote", 699 "unicode-ident", 700] 701 702[[package]] 703name = "thiserror" 704version = "1.0.69" 705source = "registry+https://github.com/rust-lang/crates.io-index" 706checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 707dependencies = [ 708 "thiserror-impl 1.0.69", 709] 710 711[[package]] 712name = "thiserror" 713version = "2.0.18" 714source = "registry+https://github.com/rust-lang/crates.io-index" 715checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" 716dependencies = [ 717 "thiserror-impl 2.0.18", 718] 719 720[[package]] 721name = "thiserror-impl" 722version = "1.0.69" 723source = "registry+https://github.com/rust-lang/crates.io-index" 724checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 725dependencies = [ 726 "proc-macro2", 727 "quote", 728 "syn", 729] 730 731[[package]] 732name = "thiserror-impl" 733version = "2.0.18" 734source = "registry+https://github.com/rust-lang/crates.io-index" 735checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" 736dependencies = [ 737 "proc-macro2", 738 "quote", 739 "syn", 740] 741 742[[package]] 743name = "tokio" 744version = "1.49.0" 745source = "registry+https://github.com/rust-lang/crates.io-index" 746checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" 747dependencies = [ 748 "bytes", 749 "libc", 750 "mio", 751 "parking_lot", 752 "pin-project-lite", 753 "signal-hook-registry", 754 "socket2", 755 "tokio-macros", 756 "windows-sys 0.61.2", 757] 758 759[[package]] 760name = "tokio-macros" 761version = "2.6.0" 762source = "registry+https://github.com/rust-lang/crates.io-index" 763checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" 764dependencies = [ 765 "proc-macro2", 766 "quote", 767 "syn", 768] 769 770[[package]] 771name = "tokio-util" 772version = "0.7.18" 773source = "registry+https://github.com/rust-lang/crates.io-index" 774checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" 775dependencies = [ 776 "bytes", 777 "futures-core", 778 "futures-sink", 779 "pin-project-lite", 780 "tokio", 781] 782 783[[package]] 784name = "typenum" 785version = "1.19.0" 786source = "registry+https://github.com/rust-lang/crates.io-index" 787checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 788 789[[package]] 790name = "unicode-ident" 791version = "1.0.22" 792source = "registry+https://github.com/rust-lang/crates.io-index" 793checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 794 795[[package]] 796name = "unsigned-varint" 797version = "0.7.2" 798source = "registry+https://github.com/rust-lang/crates.io-index" 799checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" 800 801[[package]] 802name = "unsigned-varint" 803version = "0.8.0" 804source = "registry+https://github.com/rust-lang/crates.io-index" 805checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06" 806 807[[package]] 808name = "version_check" 809version = "0.9.5" 810source = "registry+https://github.com/rust-lang/crates.io-index" 811checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 812 813[[package]] 814name = "wasi" 815version = "0.11.1+wasi-snapshot-preview1" 816source = "registry+https://github.com/rust-lang/crates.io-index" 817checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 818 819[[package]] 820name = "windows-link" 821version = "0.2.1" 822source = "registry+https://github.com/rust-lang/crates.io-index" 823checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 824 825[[package]] 826name = "windows-sys" 827version = "0.60.2" 828source = "registry+https://github.com/rust-lang/crates.io-index" 829checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 830dependencies = [ 831 "windows-targets", 832] 833 834[[package]] 835name = "windows-sys" 836version = "0.61.2" 837source = "registry+https://github.com/rust-lang/crates.io-index" 838checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 839dependencies = [ 840 "windows-link", 841] 842 843[[package]] 844name = "windows-targets" 845version = "0.53.5" 846source = "registry+https://github.com/rust-lang/crates.io-index" 847checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" 848dependencies = [ 849 "windows-link", 850 "windows_aarch64_gnullvm", 851 "windows_aarch64_msvc", 852 "windows_i686_gnu", 853 "windows_i686_gnullvm", 854 "windows_i686_msvc", 855 "windows_x86_64_gnu", 856 "windows_x86_64_gnullvm", 857 "windows_x86_64_msvc", 858] 859 860[[package]] 861name = "windows_aarch64_gnullvm" 862version = "0.53.1" 863source = "registry+https://github.com/rust-lang/crates.io-index" 864checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" 865 866[[package]] 867name = "windows_aarch64_msvc" 868version = "0.53.1" 869source = "registry+https://github.com/rust-lang/crates.io-index" 870checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" 871 872[[package]] 873name = "windows_i686_gnu" 874version = "0.53.1" 875source = "registry+https://github.com/rust-lang/crates.io-index" 876checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" 877 878[[package]] 879name = "windows_i686_gnullvm" 880version = "0.53.1" 881source = "registry+https://github.com/rust-lang/crates.io-index" 882checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" 883 884[[package]] 885name = "windows_i686_msvc" 886version = "0.53.1" 887source = "registry+https://github.com/rust-lang/crates.io-index" 888checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" 889 890[[package]] 891name = "windows_x86_64_gnu" 892version = "0.53.1" 893source = "registry+https://github.com/rust-lang/crates.io-index" 894checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" 895 896[[package]] 897name = "windows_x86_64_gnullvm" 898version = "0.53.1" 899source = "registry+https://github.com/rust-lang/crates.io-index" 900checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" 901 902[[package]] 903name = "windows_x86_64_msvc" 904version = "0.53.1" 905source = "registry+https://github.com/rust-lang/crates.io-index" 906checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"