Distributed Erlang over iroh P2P + TLS, with a bot powers SDK
0

Configure Feed

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

erl-iroh / Cargo.lock
109 kB 4436 lines
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "adler32" 7version = "1.2.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" 10 11[[package]] 12name = "aead" 13version = "0.5.2" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" 16dependencies = [ 17 "crypto-common 0.1.7", 18 "generic-array", 19] 20 21[[package]] 22name = "aes" 23version = "0.8.4" 24source = "registry+https://github.com/rust-lang/crates.io-index" 25checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" 26dependencies = [ 27 "cfg-if", 28 "cipher", 29 "cpufeatures 0.2.17", 30] 31 32[[package]] 33name = "aes-gcm" 34version = "0.10.3" 35source = "registry+https://github.com/rust-lang/crates.io-index" 36checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1" 37dependencies = [ 38 "aead", 39 "aes", 40 "cipher", 41 "ctr", 42 "ghash", 43 "subtle", 44] 45 46[[package]] 47name = "aho-corasick" 48version = "1.1.4" 49source = "registry+https://github.com/rust-lang/crates.io-index" 50checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" 51dependencies = [ 52 "memchr", 53] 54 55[[package]] 56name = "allocator-api2" 57version = "0.2.21" 58source = "registry+https://github.com/rust-lang/crates.io-index" 59checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 60 61[[package]] 62name = "android_system_properties" 63version = "0.1.5" 64source = "registry+https://github.com/rust-lang/crates.io-index" 65checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 66dependencies = [ 67 "libc", 68] 69 70[[package]] 71name = "anstream" 72version = "1.0.0" 73source = "registry+https://github.com/rust-lang/crates.io-index" 74checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" 75dependencies = [ 76 "anstyle", 77 "anstyle-parse", 78 "anstyle-query", 79 "anstyle-wincon", 80 "colorchoice", 81 "is_terminal_polyfill", 82 "utf8parse", 83] 84 85[[package]] 86name = "anstyle" 87version = "1.0.14" 88source = "registry+https://github.com/rust-lang/crates.io-index" 89checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" 90 91[[package]] 92name = "anstyle-parse" 93version = "1.0.0" 94source = "registry+https://github.com/rust-lang/crates.io-index" 95checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" 96dependencies = [ 97 "utf8parse", 98] 99 100[[package]] 101name = "anstyle-query" 102version = "1.1.5" 103source = "registry+https://github.com/rust-lang/crates.io-index" 104checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" 105dependencies = [ 106 "windows-sys 0.61.2", 107] 108 109[[package]] 110name = "anstyle-wincon" 111version = "3.0.11" 112source = "registry+https://github.com/rust-lang/crates.io-index" 113checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" 114dependencies = [ 115 "anstyle", 116 "once_cell_polyfill", 117 "windows-sys 0.61.2", 118] 119 120[[package]] 121name = "anyhow" 122version = "1.0.104" 123source = "registry+https://github.com/rust-lang/crates.io-index" 124checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470" 125 126[[package]] 127name = "arc-swap" 128version = "1.9.2" 129source = "registry+https://github.com/rust-lang/crates.io-index" 130checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b" 131dependencies = [ 132 "rustversion", 133] 134 135[[package]] 136name = "arrayref" 137version = "0.3.9" 138source = "registry+https://github.com/rust-lang/crates.io-index" 139checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" 140 141[[package]] 142name = "arrayvec" 143version = "0.7.8" 144source = "registry+https://github.com/rust-lang/crates.io-index" 145checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56" 146 147[[package]] 148name = "async-dup" 149version = "1.2.4" 150source = "registry+https://github.com/rust-lang/crates.io-index" 151checksum = "7c2886ab563af5038f79ec016dd7b87947ed138b794e8dd64992962c9cca0411" 152dependencies = [ 153 "async-lock", 154 "futures-io", 155] 156 157[[package]] 158name = "async-lock" 159version = "3.4.2" 160source = "registry+https://github.com/rust-lang/crates.io-index" 161checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" 162dependencies = [ 163 "event-listener", 164 "event-listener-strategy", 165 "pin-project-lite", 166] 167 168[[package]] 169name = "async-trait" 170version = "0.1.91" 171source = "registry+https://github.com/rust-lang/crates.io-index" 172checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec" 173dependencies = [ 174 "proc-macro2", 175 "quote", 176 "syn 3.0.3", 177] 178 179[[package]] 180name = "async_io_stream" 181version = "0.3.3" 182source = "registry+https://github.com/rust-lang/crates.io-index" 183checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c" 184dependencies = [ 185 "futures", 186 "pharos", 187 "rustc_version", 188] 189 190[[package]] 191name = "atomic-waker" 192version = "1.1.2" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 195 196[[package]] 197name = "attohttpc" 198version = "0.30.1" 199source = "registry+https://github.com/rust-lang/crates.io-index" 200checksum = "16e2cdb6d5ed835199484bb92bb8b3edd526effe995c61732580439c1a67e2e9" 201dependencies = [ 202 "base64", 203 "http", 204 "log", 205 "url", 206] 207 208[[package]] 209name = "autocfg" 210version = "1.5.1" 211source = "registry+https://github.com/rust-lang/crates.io-index" 212checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" 213 214[[package]] 215name = "aws-lc-rs" 216version = "1.17.3" 217source = "registry+https://github.com/rust-lang/crates.io-index" 218checksum = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1" 219dependencies = [ 220 "aws-lc-sys", 221 "zeroize", 222] 223 224[[package]] 225name = "aws-lc-sys" 226version = "0.43.0" 227source = "registry+https://github.com/rust-lang/crates.io-index" 228checksum = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c" 229dependencies = [ 230 "cc", 231 "cmake", 232 "dunce", 233 "fs_extra", 234 "pkg-config", 235] 236 237[[package]] 238name = "backon" 239version = "1.6.0" 240source = "registry+https://github.com/rust-lang/crates.io-index" 241checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef" 242dependencies = [ 243 "fastrand", 244 "gloo-timers", 245 "tokio", 246] 247 248[[package]] 249name = "base16ct" 250version = "1.0.0" 251source = "registry+https://github.com/rust-lang/crates.io-index" 252checksum = "fd307490d624467aa6f74b0eabb77633d1f758a7b25f12bceb0b22e08d9726f6" 253 254[[package]] 255name = "base64" 256version = "0.22.1" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 259 260[[package]] 261name = "base64ct" 262version = "1.8.3" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" 265 266[[package]] 267name = "bitflags" 268version = "2.13.1" 269source = "registry+https://github.com/rust-lang/crates.io-index" 270checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da" 271 272[[package]] 273name = "blake3" 274version = "1.8.5" 275source = "registry+https://github.com/rust-lang/crates.io-index" 276checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce" 277dependencies = [ 278 "arrayref", 279 "arrayvec", 280 "cc", 281 "cfg-if", 282 "constant_time_eq", 283 "cpufeatures 0.3.0", 284] 285 286[[package]] 287name = "block-buffer" 288version = "0.12.1" 289source = "registry+https://github.com/rust-lang/crates.io-index" 290checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa" 291dependencies = [ 292 "hybrid-array", 293] 294 295[[package]] 296name = "block2" 297version = "0.6.2" 298source = "registry+https://github.com/rust-lang/crates.io-index" 299checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" 300dependencies = [ 301 "objc2", 302] 303 304[[package]] 305name = "bumpalo" 306version = "3.20.3" 307source = "registry+https://github.com/rust-lang/crates.io-index" 308checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" 309 310[[package]] 311name = "bytes" 312version = "1.12.1" 313source = "registry+https://github.com/rust-lang/crates.io-index" 314checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04" 315 316[[package]] 317name = "cc" 318version = "1.4.0" 319source = "registry+https://github.com/rust-lang/crates.io-index" 320checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9" 321dependencies = [ 322 "find-msvc-tools", 323 "jobserver", 324 "libc", 325 "shlex", 326] 327 328[[package]] 329name = "cesu8" 330version = "1.1.0" 331source = "registry+https://github.com/rust-lang/crates.io-index" 332checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" 333 334[[package]] 335name = "cfg-if" 336version = "1.0.4" 337source = "registry+https://github.com/rust-lang/crates.io-index" 338checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 339 340[[package]] 341name = "cfg_aliases" 342version = "0.2.2" 343source = "registry+https://github.com/rust-lang/crates.io-index" 344checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527" 345 346[[package]] 347name = "chacha20" 348version = "0.10.1" 349source = "registry+https://github.com/rust-lang/crates.io-index" 350checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81" 351dependencies = [ 352 "cfg-if", 353 "cpufeatures 0.3.0", 354 "rand_core 0.10.1", 355] 356 357[[package]] 358name = "chrono" 359version = "0.4.45" 360source = "registry+https://github.com/rust-lang/crates.io-index" 361checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327" 362dependencies = [ 363 "iana-time-zone", 364 "num-traits", 365 "serde", 366 "windows-link", 367] 368 369[[package]] 370name = "cipher" 371version = "0.4.4" 372source = "registry+https://github.com/rust-lang/crates.io-index" 373checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" 374dependencies = [ 375 "crypto-common 0.1.7", 376 "inout", 377] 378 379[[package]] 380name = "clap" 381version = "4.6.4" 382source = "registry+https://github.com/rust-lang/crates.io-index" 383checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7" 384dependencies = [ 385 "clap_builder", 386 "clap_derive", 387] 388 389[[package]] 390name = "clap_builder" 391version = "4.6.2" 392source = "registry+https://github.com/rust-lang/crates.io-index" 393checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b" 394dependencies = [ 395 "anstream", 396 "anstyle", 397 "clap_lex", 398 "strsim", 399] 400 401[[package]] 402name = "clap_derive" 403version = "4.6.4" 404source = "registry+https://github.com/rust-lang/crates.io-index" 405checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061" 406dependencies = [ 407 "heck", 408 "proc-macro2", 409 "quote", 410 "syn 3.0.3", 411] 412 413[[package]] 414name = "clap_lex" 415version = "1.1.0" 416source = "registry+https://github.com/rust-lang/crates.io-index" 417checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" 418 419[[package]] 420name = "cmake" 421version = "0.1.58" 422source = "registry+https://github.com/rust-lang/crates.io-index" 423checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678" 424dependencies = [ 425 "cc", 426] 427 428[[package]] 429name = "cmov" 430version = "0.5.4" 431source = "registry+https://github.com/rust-lang/crates.io-index" 432checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a" 433 434[[package]] 435name = "cobs" 436version = "0.3.0" 437source = "registry+https://github.com/rust-lang/crates.io-index" 438checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" 439dependencies = [ 440 "thiserror 2.0.19", 441] 442 443[[package]] 444name = "colorchoice" 445version = "1.0.5" 446source = "registry+https://github.com/rust-lang/crates.io-index" 447checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" 448 449[[package]] 450name = "combine" 451version = "4.6.7" 452source = "registry+https://github.com/rust-lang/crates.io-index" 453checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" 454dependencies = [ 455 "bytes", 456 "memchr", 457] 458 459[[package]] 460name = "concurrent-queue" 461version = "2.5.0" 462source = "registry+https://github.com/rust-lang/crates.io-index" 463checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 464dependencies = [ 465 "crossbeam-utils", 466] 467 468[[package]] 469name = "const-oid" 470version = "0.10.2" 471source = "registry+https://github.com/rust-lang/crates.io-index" 472checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" 473 474[[package]] 475name = "constant_time_eq" 476version = "0.4.2" 477source = "registry+https://github.com/rust-lang/crates.io-index" 478checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b" 479 480[[package]] 481name = "convert_case" 482version = "0.10.0" 483source = "registry+https://github.com/rust-lang/crates.io-index" 484checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" 485dependencies = [ 486 "unicode-segmentation", 487] 488 489[[package]] 490name = "cordyceps" 491version = "0.3.4" 492source = "registry+https://github.com/rust-lang/crates.io-index" 493checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a" 494dependencies = [ 495 "loom", 496 "tracing", 497] 498 499[[package]] 500name = "core-foundation" 501version = "0.9.4" 502source = "registry+https://github.com/rust-lang/crates.io-index" 503checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 504dependencies = [ 505 "core-foundation-sys", 506 "libc", 507] 508 509[[package]] 510name = "core-foundation" 511version = "0.10.1" 512source = "registry+https://github.com/rust-lang/crates.io-index" 513checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" 514dependencies = [ 515 "core-foundation-sys", 516 "libc", 517] 518 519[[package]] 520name = "core-foundation-sys" 521version = "0.8.7" 522source = "registry+https://github.com/rust-lang/crates.io-index" 523checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 524 525[[package]] 526name = "cpufeatures" 527version = "0.2.17" 528source = "registry+https://github.com/rust-lang/crates.io-index" 529checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 530dependencies = [ 531 "libc", 532] 533 534[[package]] 535name = "cpufeatures" 536version = "0.3.0" 537source = "registry+https://github.com/rust-lang/crates.io-index" 538checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" 539dependencies = [ 540 "libc", 541] 542 543[[package]] 544name = "crc32fast" 545version = "1.5.0" 546source = "registry+https://github.com/rust-lang/crates.io-index" 547checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" 548dependencies = [ 549 "cfg-if", 550] 551 552[[package]] 553name = "critical-section" 554version = "1.2.0" 555source = "registry+https://github.com/rust-lang/crates.io-index" 556checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" 557 558[[package]] 559name = "crossbeam-channel" 560version = "0.5.16" 561source = "registry+https://github.com/rust-lang/crates.io-index" 562checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e" 563dependencies = [ 564 "crossbeam-utils", 565] 566 567[[package]] 568name = "crossbeam-epoch" 569version = "0.9.20" 570source = "registry+https://github.com/rust-lang/crates.io-index" 571checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f" 572dependencies = [ 573 "crossbeam-utils", 574] 575 576[[package]] 577name = "crossbeam-utils" 578version = "0.8.22" 579source = "registry+https://github.com/rust-lang/crates.io-index" 580checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17" 581 582[[package]] 583name = "crypto-common" 584version = "0.1.7" 585source = "registry+https://github.com/rust-lang/crates.io-index" 586checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" 587dependencies = [ 588 "generic-array", 589 "typenum", 590] 591 592[[package]] 593name = "crypto-common" 594version = "0.2.2" 595source = "registry+https://github.com/rust-lang/crates.io-index" 596checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453" 597dependencies = [ 598 "hybrid-array", 599 "rand_core 0.10.1", 600] 601 602[[package]] 603name = "ctr" 604version = "0.9.2" 605source = "registry+https://github.com/rust-lang/crates.io-index" 606checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" 607dependencies = [ 608 "cipher", 609] 610 611[[package]] 612name = "ctutils" 613version = "0.4.2" 614source = "registry+https://github.com/rust-lang/crates.io-index" 615checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e" 616dependencies = [ 617 "cmov", 618] 619 620[[package]] 621name = "curve25519-dalek" 622version = "5.0.0" 623source = "registry+https://github.com/rust-lang/crates.io-index" 624checksum = "b5eed333089e2e1c1ac8c6c0398e5e2497b4c9926ca6d0365ed1e099afa5bc23" 625dependencies = [ 626 "cfg-if", 627 "cpufeatures 0.3.0", 628 "curve25519-dalek-derive", 629 "digest", 630 "fiat-crypto", 631 "rand_core 0.10.1", 632 "rustc_version", 633 "serde", 634 "subtle", 635 "zeroize", 636] 637 638[[package]] 639name = "curve25519-dalek-derive" 640version = "0.1.1" 641source = "registry+https://github.com/rust-lang/crates.io-index" 642checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" 643dependencies = [ 644 "proc-macro2", 645 "quote", 646 "syn 2.0.119", 647] 648 649[[package]] 650name = "dary_heap" 651version = "0.3.9" 652source = "registry+https://github.com/rust-lang/crates.io-index" 653checksum = "8b1e3a325bc115f096c8b77bbf027a7c2592230e70be2d985be950d3d5e60ebe" 654 655[[package]] 656name = "data-encoding" 657version = "2.11.0" 658source = "registry+https://github.com/rust-lang/crates.io-index" 659checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8" 660 661[[package]] 662name = "data-encoding-macro" 663version = "0.1.20" 664source = "registry+https://github.com/rust-lang/crates.io-index" 665checksum = "3259c913752a86488b501ed8680446a5ed2d5aeac6e596cb23ba3800768ea32c" 666dependencies = [ 667 "data-encoding", 668 "data-encoding-macro-internal", 669] 670 671[[package]] 672name = "data-encoding-macro-internal" 673version = "0.1.18" 674source = "registry+https://github.com/rust-lang/crates.io-index" 675checksum = "ccc2776f0c61eca1ca32528f85548abd1a4be8fb53d1b21c013e4f18da1e7090" 676dependencies = [ 677 "data-encoding", 678 "syn 2.0.119", 679] 680 681[[package]] 682name = "der" 683version = "0.8.1" 684source = "registry+https://github.com/rust-lang/crates.io-index" 685checksum = "a69dedd701da44b0536442edf09c81a64b0ab97a7a4a5e3d1971f00027cbc63d" 686dependencies = [ 687 "const-oid", 688 "pem-rfc7468", 689 "zeroize", 690] 691 692[[package]] 693name = "deranged" 694version = "0.5.8" 695source = "registry+https://github.com/rust-lang/crates.io-index" 696checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" 697 698[[package]] 699name = "derive_more" 700version = "2.1.1" 701source = "registry+https://github.com/rust-lang/crates.io-index" 702checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" 703dependencies = [ 704 "derive_more-impl", 705] 706 707[[package]] 708name = "derive_more-impl" 709version = "2.1.1" 710source = "registry+https://github.com/rust-lang/crates.io-index" 711checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" 712dependencies = [ 713 "convert_case", 714 "proc-macro2", 715 "quote", 716 "rustc_version", 717 "syn 2.0.119", 718 "unicode-xid", 719] 720 721[[package]] 722name = "diatomic-waker" 723version = "0.2.3" 724source = "registry+https://github.com/rust-lang/crates.io-index" 725checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c" 726 727[[package]] 728name = "digest" 729version = "0.11.3" 730source = "registry+https://github.com/rust-lang/crates.io-index" 731checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" 732dependencies = [ 733 "block-buffer", 734 "crypto-common 0.2.2", 735] 736 737[[package]] 738name = "dispatch2" 739version = "0.3.1" 740source = "registry+https://github.com/rust-lang/crates.io-index" 741checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38" 742dependencies = [ 743 "bitflags", 744 "block2", 745 "libc", 746 "objc2", 747] 748 749[[package]] 750name = "displaydoc" 751version = "0.2.6" 752source = "registry+https://github.com/rust-lang/crates.io-index" 753checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f" 754dependencies = [ 755 "proc-macro2", 756 "quote", 757 "syn 2.0.119", 758] 759 760[[package]] 761name = "dlopen2" 762version = "0.8.2" 763source = "registry+https://github.com/rust-lang/crates.io-index" 764checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4" 765dependencies = [ 766 "libc", 767 "once_cell", 768 "winapi", 769] 770 771[[package]] 772name = "dunce" 773version = "1.0.5" 774source = "registry+https://github.com/rust-lang/crates.io-index" 775checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" 776 777[[package]] 778name = "ed25519" 779version = "3.0.0" 780source = "registry+https://github.com/rust-lang/crates.io-index" 781checksum = "29fcf32e6c73d1079f83ab4d782de2d81620346a5f38c6237a86a22f8368980a" 782dependencies = [ 783 "pkcs8", 784 "serdect", 785 "signature", 786] 787 788[[package]] 789name = "ed25519-dalek" 790version = "3.0.0" 791source = "registry+https://github.com/rust-lang/crates.io-index" 792checksum = "6ebaa1a2bf1290ab3bfe5a7b771d050ebffab2711c19a81691c683a5144a25de" 793dependencies = [ 794 "curve25519-dalek", 795 "ed25519", 796 "rand_core 0.10.1", 797 "serde", 798 "sha2", 799 "signature", 800 "subtle", 801 "zeroize", 802] 803 804[[package]] 805name = "eetf" 806version = "0.11.0" 807source = "registry+https://github.com/rust-lang/crates.io-index" 808checksum = "b59d5a438de6099b4fd27f69d61a67c3b7758e3950fa6b1cef7d679d1e74a7d0" 809dependencies = [ 810 "libflate", 811 "num-bigint", 812 "num-traits", 813] 814 815[[package]] 816name = "either" 817version = "1.17.0" 818source = "registry+https://github.com/rust-lang/crates.io-index" 819checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d" 820 821[[package]] 822name = "embedded-io" 823version = "0.4.0" 824source = "registry+https://github.com/rust-lang/crates.io-index" 825checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" 826 827[[package]] 828name = "embedded-io" 829version = "0.6.1" 830source = "registry+https://github.com/rust-lang/crates.io-index" 831checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" 832 833[[package]] 834name = "enum-assoc" 835version = "1.3.0" 836source = "registry+https://github.com/rust-lang/crates.io-index" 837checksum = "3ed8956bd5c1f0415200516e78ff07ec9e16415ade83c056c230d7b7ea0d55b7" 838dependencies = [ 839 "proc-macro2", 840 "quote", 841 "syn 2.0.119", 842] 843 844[[package]] 845name = "equivalent" 846version = "1.0.2" 847source = "registry+https://github.com/rust-lang/crates.io-index" 848checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 849 850[[package]] 851name = "erl_dist" 852version = "0.8.0" 853source = "registry+https://github.com/rust-lang/crates.io-index" 854checksum = "61525240382fc8a099fe85ff7ed1aa1a806addf265fe1254867ab3a689d14015" 855dependencies = [ 856 "eetf", 857 "futures", 858 "md5", 859 "rand 0.10.2", 860] 861 862[[package]] 863name = "erl_iroh" 864version = "0.1.0" 865dependencies = [ 866 "anyhow", 867 "async-dup", 868 "bitflags", 869 "bytes", 870 "clap", 871 "eetf", 872 "erl_dist", 873 "futures", 874 "iroh", 875 "rand 0.8.7", 876 "rcgen", 877 "rustls", 878 "rustls-pemfile", 879 "rustls-pki-types", 880 "tempfile", 881 "thiserror 2.0.19", 882 "tokio", 883 "tokio-rustls", 884 "tokio-util", 885 "tracing", 886 "tracing-subscriber", 887 "webpki-roots 0.26.11", 888] 889 890[[package]] 891name = "errno" 892version = "0.3.14" 893source = "registry+https://github.com/rust-lang/crates.io-index" 894checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 895dependencies = [ 896 "libc", 897 "windows-sys 0.61.2", 898] 899 900[[package]] 901name = "event-listener" 902version = "5.4.1" 903source = "registry+https://github.com/rust-lang/crates.io-index" 904checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 905dependencies = [ 906 "concurrent-queue", 907 "parking", 908 "pin-project-lite", 909] 910 911[[package]] 912name = "event-listener-strategy" 913version = "0.5.4" 914source = "registry+https://github.com/rust-lang/crates.io-index" 915checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 916dependencies = [ 917 "event-listener", 918 "pin-project-lite", 919] 920 921[[package]] 922name = "fastrand" 923version = "2.5.0" 924source = "registry+https://github.com/rust-lang/crates.io-index" 925checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223" 926 927[[package]] 928name = "fiat-crypto" 929version = "0.3.0" 930source = "registry+https://github.com/rust-lang/crates.io-index" 931checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24" 932 933[[package]] 934name = "find-msvc-tools" 935version = "0.1.9" 936source = "registry+https://github.com/rust-lang/crates.io-index" 937checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" 938 939[[package]] 940name = "fnv" 941version = "1.0.7" 942source = "registry+https://github.com/rust-lang/crates.io-index" 943checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 944 945[[package]] 946name = "foldhash" 947version = "0.2.0" 948source = "registry+https://github.com/rust-lang/crates.io-index" 949checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" 950 951[[package]] 952name = "form_urlencoded" 953version = "1.2.2" 954source = "registry+https://github.com/rust-lang/crates.io-index" 955checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 956dependencies = [ 957 "percent-encoding", 958] 959 960[[package]] 961name = "fs_extra" 962version = "1.3.0" 963source = "registry+https://github.com/rust-lang/crates.io-index" 964checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" 965 966[[package]] 967name = "futures" 968version = "0.3.33" 969source = "registry+https://github.com/rust-lang/crates.io-index" 970checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218" 971dependencies = [ 972 "futures-channel", 973 "futures-core", 974 "futures-executor", 975 "futures-io", 976 "futures-sink", 977 "futures-task", 978 "futures-util", 979] 980 981[[package]] 982name = "futures-buffered" 983version = "0.2.13" 984source = "registry+https://github.com/rust-lang/crates.io-index" 985checksum = "4421cb78ee172b6b06080093479d3c50f058e7c81b7d577bbb8d118d551d4cd5" 986dependencies = [ 987 "cordyceps", 988 "diatomic-waker", 989 "futures-core", 990 "pin-project-lite", 991 "spin", 992] 993 994[[package]] 995name = "futures-channel" 996version = "0.3.33" 997source = "registry+https://github.com/rust-lang/crates.io-index" 998checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae" 999dependencies = [ 1000 "futures-core", 1001 "futures-sink", 1002] 1003 1004[[package]] 1005name = "futures-core" 1006version = "0.3.33" 1007source = "registry+https://github.com/rust-lang/crates.io-index" 1008checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7" 1009 1010[[package]] 1011name = "futures-executor" 1012version = "0.3.33" 1013source = "registry+https://github.com/rust-lang/crates.io-index" 1014checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458" 1015dependencies = [ 1016 "futures-core", 1017 "futures-task", 1018 "futures-util", 1019] 1020 1021[[package]] 1022name = "futures-io" 1023version = "0.3.33" 1024source = "registry+https://github.com/rust-lang/crates.io-index" 1025checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a" 1026 1027[[package]] 1028name = "futures-lite" 1029version = "2.6.1" 1030source = "registry+https://github.com/rust-lang/crates.io-index" 1031checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" 1032dependencies = [ 1033 "fastrand", 1034 "futures-core", 1035 "futures-io", 1036 "parking", 1037 "pin-project-lite", 1038] 1039 1040[[package]] 1041name = "futures-macro" 1042version = "0.3.33" 1043source = "registry+https://github.com/rust-lang/crates.io-index" 1044checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b" 1045dependencies = [ 1046 "proc-macro2", 1047 "quote", 1048 "syn 2.0.119", 1049] 1050 1051[[package]] 1052name = "futures-sink" 1053version = "0.3.33" 1054source = "registry+https://github.com/rust-lang/crates.io-index" 1055checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307" 1056 1057[[package]] 1058name = "futures-task" 1059version = "0.3.33" 1060source = "registry+https://github.com/rust-lang/crates.io-index" 1061checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109" 1062 1063[[package]] 1064name = "futures-util" 1065version = "0.3.33" 1066source = "registry+https://github.com/rust-lang/crates.io-index" 1067checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa" 1068dependencies = [ 1069 "futures-channel", 1070 "futures-core", 1071 "futures-io", 1072 "futures-macro", 1073 "futures-sink", 1074 "futures-task", 1075 "memchr", 1076 "pin-project-lite", 1077 "slab", 1078] 1079 1080[[package]] 1081name = "generator" 1082version = "0.8.9" 1083source = "registry+https://github.com/rust-lang/crates.io-index" 1084checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae" 1085dependencies = [ 1086 "cc", 1087 "cfg-if", 1088 "libc", 1089 "log", 1090 "rustversion", 1091 "windows-link", 1092 "windows-result", 1093] 1094 1095[[package]] 1096name = "generic-array" 1097version = "0.14.7" 1098source = "registry+https://github.com/rust-lang/crates.io-index" 1099checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1100dependencies = [ 1101 "typenum", 1102 "version_check", 1103] 1104 1105[[package]] 1106name = "getrandom" 1107version = "0.2.17" 1108source = "registry+https://github.com/rust-lang/crates.io-index" 1109checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" 1110dependencies = [ 1111 "cfg-if", 1112 "js-sys", 1113 "libc", 1114 "wasi", 1115 "wasm-bindgen", 1116] 1117 1118[[package]] 1119name = "getrandom" 1120version = "0.4.3" 1121source = "registry+https://github.com/rust-lang/crates.io-index" 1122checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099" 1123dependencies = [ 1124 "cfg-if", 1125 "js-sys", 1126 "libc", 1127 "r-efi", 1128 "rand_core 0.10.1", 1129 "wasm-bindgen", 1130] 1131 1132[[package]] 1133name = "ghash" 1134version = "0.5.1" 1135source = "registry+https://github.com/rust-lang/crates.io-index" 1136checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" 1137dependencies = [ 1138 "opaque-debug", 1139 "polyval", 1140] 1141 1142[[package]] 1143name = "gloo-timers" 1144version = "0.3.0" 1145source = "registry+https://github.com/rust-lang/crates.io-index" 1146checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" 1147dependencies = [ 1148 "futures-channel", 1149 "futures-core", 1150 "js-sys", 1151 "wasm-bindgen", 1152] 1153 1154[[package]] 1155name = "h2" 1156version = "0.4.15" 1157source = "registry+https://github.com/rust-lang/crates.io-index" 1158checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155" 1159dependencies = [ 1160 "atomic-waker", 1161 "bytes", 1162 "fnv", 1163 "futures-core", 1164 "futures-sink", 1165 "http", 1166 "indexmap", 1167 "slab", 1168 "tokio", 1169 "tokio-util", 1170 "tracing", 1171] 1172 1173[[package]] 1174name = "hashbrown" 1175version = "0.16.1" 1176source = "registry+https://github.com/rust-lang/crates.io-index" 1177checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" 1178dependencies = [ 1179 "allocator-api2", 1180 "equivalent", 1181 "foldhash", 1182] 1183 1184[[package]] 1185name = "hashbrown" 1186version = "0.17.1" 1187source = "registry+https://github.com/rust-lang/crates.io-index" 1188checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" 1189dependencies = [ 1190 "allocator-api2", 1191 "equivalent", 1192 "foldhash", 1193] 1194 1195[[package]] 1196name = "heck" 1197version = "0.5.0" 1198source = "registry+https://github.com/rust-lang/crates.io-index" 1199checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 1200 1201[[package]] 1202name = "hickory-net" 1203version = "0.26.1" 1204source = "registry+https://github.com/rust-lang/crates.io-index" 1205checksum = "e2295ed2f9c31e471e1428a8f88a3f0e1f4b27c15049592138d1eebe9c35b183" 1206dependencies = [ 1207 "async-trait", 1208 "bytes", 1209 "cfg-if", 1210 "data-encoding", 1211 "futures-channel", 1212 "futures-io", 1213 "futures-util", 1214 "h2", 1215 "hickory-proto", 1216 "http", 1217 "idna", 1218 "ipnet", 1219 "jni 0.22.4", 1220 "rand 0.10.2", 1221 "rustls", 1222 "thiserror 2.0.19", 1223 "tinyvec", 1224 "tokio", 1225 "tokio-rustls", 1226 "tracing", 1227 "url", 1228] 1229 1230[[package]] 1231name = "hickory-proto" 1232version = "0.26.1" 1233source = "registry+https://github.com/rust-lang/crates.io-index" 1234checksum = "0bab31817bfb44672a252e97fe81cd0c18d1b2cf892108922f6818820df8c643" 1235dependencies = [ 1236 "data-encoding", 1237 "idna", 1238 "ipnet", 1239 "jni 0.22.4", 1240 "once_cell", 1241 "prefix-trie", 1242 "rand 0.10.2", 1243 "ring", 1244 "thiserror 2.0.19", 1245 "tinyvec", 1246 "tracing", 1247 "url", 1248] 1249 1250[[package]] 1251name = "hickory-resolver" 1252version = "0.26.1" 1253source = "registry+https://github.com/rust-lang/crates.io-index" 1254checksum = "f0d58d28879ceecde6607729660c2667a081ccdc082e082675042793960f178c" 1255dependencies = [ 1256 "cfg-if", 1257 "futures-util", 1258 "hickory-net", 1259 "hickory-proto", 1260 "ipconfig", 1261 "ipnet", 1262 "jni 0.22.4", 1263 "moka", 1264 "ndk-context", 1265 "once_cell", 1266 "parking_lot", 1267 "rand 0.10.2", 1268 "resolv-conf", 1269 "rustls", 1270 "smallvec", 1271 "system-configuration", 1272 "thiserror 2.0.19", 1273 "tokio", 1274 "tokio-rustls", 1275 "tracing", 1276] 1277 1278[[package]] 1279name = "http" 1280version = "1.4.2" 1281source = "registry+https://github.com/rust-lang/crates.io-index" 1282checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425" 1283dependencies = [ 1284 "bytes", 1285 "itoa", 1286] 1287 1288[[package]] 1289name = "http-body" 1290version = "1.1.0" 1291source = "registry+https://github.com/rust-lang/crates.io-index" 1292checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c" 1293dependencies = [ 1294 "bytes", 1295 "http", 1296] 1297 1298[[package]] 1299name = "http-body-util" 1300version = "0.1.4" 1301source = "registry+https://github.com/rust-lang/crates.io-index" 1302checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2" 1303dependencies = [ 1304 "bytes", 1305 "futures-core", 1306 "http", 1307 "http-body", 1308 "pin-project-lite", 1309] 1310 1311[[package]] 1312name = "httparse" 1313version = "1.10.1" 1314source = "registry+https://github.com/rust-lang/crates.io-index" 1315checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 1316 1317[[package]] 1318name = "httpdate" 1319version = "1.0.3" 1320source = "registry+https://github.com/rust-lang/crates.io-index" 1321checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 1322 1323[[package]] 1324name = "hybrid-array" 1325version = "0.4.13" 1326source = "registry+https://github.com/rust-lang/crates.io-index" 1327checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c" 1328dependencies = [ 1329 "typenum", 1330] 1331 1332[[package]] 1333name = "hyper" 1334version = "1.11.0" 1335source = "registry+https://github.com/rust-lang/crates.io-index" 1336checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72" 1337dependencies = [ 1338 "atomic-waker", 1339 "bytes", 1340 "futures-channel", 1341 "futures-core", 1342 "h2", 1343 "http", 1344 "http-body", 1345 "httparse", 1346 "httpdate", 1347 "itoa", 1348 "pin-project-lite", 1349 "smallvec", 1350 "tokio", 1351 "want", 1352] 1353 1354[[package]] 1355name = "hyper-rustls" 1356version = "0.27.9" 1357source = "registry+https://github.com/rust-lang/crates.io-index" 1358checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" 1359dependencies = [ 1360 "http", 1361 "hyper", 1362 "hyper-util", 1363 "rustls", 1364 "tokio", 1365 "tokio-rustls", 1366 "tower-service", 1367] 1368 1369[[package]] 1370name = "hyper-util" 1371version = "0.1.20" 1372source = "registry+https://github.com/rust-lang/crates.io-index" 1373checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" 1374dependencies = [ 1375 "base64", 1376 "bytes", 1377 "futures-channel", 1378 "futures-util", 1379 "http", 1380 "http-body", 1381 "hyper", 1382 "ipnet", 1383 "libc", 1384 "percent-encoding", 1385 "pin-project-lite", 1386 "socket2", 1387 "tokio", 1388 "tower-service", 1389 "tracing", 1390] 1391 1392[[package]] 1393name = "iana-time-zone" 1394version = "0.1.65" 1395source = "registry+https://github.com/rust-lang/crates.io-index" 1396checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" 1397dependencies = [ 1398 "android_system_properties", 1399 "core-foundation-sys", 1400 "iana-time-zone-haiku", 1401 "js-sys", 1402 "log", 1403 "wasm-bindgen", 1404 "windows-core", 1405] 1406 1407[[package]] 1408name = "iana-time-zone-haiku" 1409version = "0.1.2" 1410source = "registry+https://github.com/rust-lang/crates.io-index" 1411checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1412dependencies = [ 1413 "cc", 1414] 1415 1416[[package]] 1417name = "icu_collections" 1418version = "2.2.0" 1419source = "registry+https://github.com/rust-lang/crates.io-index" 1420checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" 1421dependencies = [ 1422 "displaydoc", 1423 "potential_utf", 1424 "utf8_iter", 1425 "yoke", 1426 "zerofrom", 1427 "zerovec", 1428] 1429 1430[[package]] 1431name = "icu_locale_core" 1432version = "2.2.0" 1433source = "registry+https://github.com/rust-lang/crates.io-index" 1434checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" 1435dependencies = [ 1436 "displaydoc", 1437 "litemap", 1438 "tinystr", 1439 "writeable", 1440 "zerovec", 1441] 1442 1443[[package]] 1444name = "icu_normalizer" 1445version = "2.2.0" 1446source = "registry+https://github.com/rust-lang/crates.io-index" 1447checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" 1448dependencies = [ 1449 "icu_collections", 1450 "icu_normalizer_data", 1451 "icu_properties", 1452 "icu_provider", 1453 "smallvec", 1454 "zerovec", 1455] 1456 1457[[package]] 1458name = "icu_normalizer_data" 1459version = "2.2.0" 1460source = "registry+https://github.com/rust-lang/crates.io-index" 1461checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" 1462 1463[[package]] 1464name = "icu_properties" 1465version = "2.2.0" 1466source = "registry+https://github.com/rust-lang/crates.io-index" 1467checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" 1468dependencies = [ 1469 "icu_collections", 1470 "icu_locale_core", 1471 "icu_properties_data", 1472 "icu_provider", 1473 "zerotrie", 1474 "zerovec", 1475] 1476 1477[[package]] 1478name = "icu_properties_data" 1479version = "2.2.0" 1480source = "registry+https://github.com/rust-lang/crates.io-index" 1481checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" 1482 1483[[package]] 1484name = "icu_provider" 1485version = "2.2.0" 1486source = "registry+https://github.com/rust-lang/crates.io-index" 1487checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" 1488dependencies = [ 1489 "displaydoc", 1490 "icu_locale_core", 1491 "writeable", 1492 "yoke", 1493 "zerofrom", 1494 "zerotrie", 1495 "zerovec", 1496] 1497 1498[[package]] 1499name = "identity-hash" 1500version = "0.1.0" 1501source = "registry+https://github.com/rust-lang/crates.io-index" 1502checksum = "dfdd7caa900436d8f13b2346fe10257e0c05c1f1f9e351f4f5d57c03bd5f45da" 1503 1504[[package]] 1505name = "idna" 1506version = "1.1.0" 1507source = "registry+https://github.com/rust-lang/crates.io-index" 1508checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 1509dependencies = [ 1510 "idna_adapter", 1511 "smallvec", 1512 "utf8_iter", 1513] 1514 1515[[package]] 1516name = "idna_adapter" 1517version = "1.2.2" 1518source = "registry+https://github.com/rust-lang/crates.io-index" 1519checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" 1520dependencies = [ 1521 "icu_normalizer", 1522 "icu_properties", 1523] 1524 1525[[package]] 1526name = "igd-next" 1527version = "0.17.1" 1528source = "registry+https://github.com/rust-lang/crates.io-index" 1529checksum = "de7238d487a9aff61f81b5ab41c0a841532a115a398b5fa92a2fadd0885e2581" 1530dependencies = [ 1531 "attohttpc", 1532 "bytes", 1533 "futures", 1534 "http", 1535 "http-body-util", 1536 "hyper", 1537 "hyper-util", 1538 "log", 1539 "rand 0.10.2", 1540 "tokio", 1541 "url", 1542 "xmltree", 1543] 1544 1545[[package]] 1546name = "indexmap" 1547version = "2.14.0" 1548source = "registry+https://github.com/rust-lang/crates.io-index" 1549checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" 1550dependencies = [ 1551 "equivalent", 1552 "hashbrown 0.17.1", 1553] 1554 1555[[package]] 1556name = "inout" 1557version = "0.1.4" 1558source = "registry+https://github.com/rust-lang/crates.io-index" 1559checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" 1560dependencies = [ 1561 "generic-array", 1562] 1563 1564[[package]] 1565name = "ipconfig" 1566version = "0.3.4" 1567source = "registry+https://github.com/rust-lang/crates.io-index" 1568checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222" 1569dependencies = [ 1570 "socket2", 1571 "widestring", 1572 "windows-registry", 1573 "windows-result", 1574 "windows-sys 0.61.2", 1575] 1576 1577[[package]] 1578name = "ipnet" 1579version = "2.12.0" 1580source = "registry+https://github.com/rust-lang/crates.io-index" 1581checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" 1582dependencies = [ 1583 "serde", 1584] 1585 1586[[package]] 1587name = "iroh" 1588version = "1.0.3" 1589source = "registry+https://github.com/rust-lang/crates.io-index" 1590checksum = "460de6bc52163b41b1646931f2897e5ab986f0966ade444467fec25024751a72" 1591dependencies = [ 1592 "backon", 1593 "blake3", 1594 "bytes", 1595 "cfg_aliases", 1596 "ctutils", 1597 "data-encoding", 1598 "derive_more", 1599 "ed25519-dalek", 1600 "futures-util", 1601 "getrandom 0.4.3", 1602 "hickory-resolver", 1603 "http", 1604 "ipnet", 1605 "iroh-base", 1606 "iroh-dns", 1607 "iroh-metrics", 1608 "iroh-relay", 1609 "n0-error", 1610 "n0-future", 1611 "n0-watcher", 1612 "netwatch", 1613 "noq", 1614 "noq-proto", 1615 "noq-udp", 1616 "papaya", 1617 "pin-project", 1618 "portable-atomic", 1619 "portmapper", 1620 "rand 0.10.2", 1621 "reqwest", 1622 "rustc-hash", 1623 "rustls", 1624 "rustls-pki-types", 1625 "serde", 1626 "smallvec", 1627 "strum", 1628 "time", 1629 "tokio", 1630 "tokio-stream", 1631 "tokio-util", 1632 "tracing", 1633 "url", 1634 "wasm-bindgen-futures", 1635] 1636 1637[[package]] 1638name = "iroh-base" 1639version = "1.0.3" 1640source = "registry+https://github.com/rust-lang/crates.io-index" 1641checksum = "6be73e16ee21c923aca9b3121aaa0db936f7c7ecc156ff47b8dac944c68d59a8" 1642dependencies = [ 1643 "curve25519-dalek", 1644 "data-encoding", 1645 "data-encoding-macro", 1646 "derive_more", 1647 "ed25519-dalek", 1648 "getrandom 0.4.3", 1649 "n0-error", 1650 "rand 0.10.2", 1651 "serde", 1652 "url", 1653 "zeroize", 1654] 1655 1656[[package]] 1657name = "iroh-dns" 1658version = "1.0.3" 1659source = "registry+https://github.com/rust-lang/crates.io-index" 1660checksum = "46f6a9b39d18e6345f5c151afd299f2488e2cb5c520fe41b107b6bd3dc4c3349" 1661dependencies = [ 1662 "arc-swap", 1663 "cfg_aliases", 1664 "derive_more", 1665 "hickory-resolver", 1666 "iroh-base", 1667 "n0-error", 1668 "n0-future", 1669 "ndk-context", 1670 "portable-atomic", 1671 "rand 0.10.2", 1672 "rustls", 1673 "simple-dns", 1674 "strum", 1675 "tokio", 1676 "tracing", 1677 "url", 1678] 1679 1680[[package]] 1681name = "iroh-metrics" 1682version = "1.0.1" 1683source = "registry+https://github.com/rust-lang/crates.io-index" 1684checksum = "291065721ad7c477b972e581bbc528df031dc8eb5e39fe1ff3300ae5dfb157ef" 1685dependencies = [ 1686 "iroh-metrics-derive", 1687 "itoa", 1688 "n0-error", 1689 "portable-atomic", 1690 "ryu", 1691 "serde", 1692 "tracing", 1693] 1694 1695[[package]] 1696name = "iroh-metrics-derive" 1697version = "1.0.1" 1698source = "registry+https://github.com/rust-lang/crates.io-index" 1699checksum = "1ae5f0c4405d1fbc9fb16ff422ca40620e93dc36c30ecaba0c2aee3992b7bd48" 1700dependencies = [ 1701 "heck", 1702 "proc-macro2", 1703 "quote", 1704 "syn 2.0.119", 1705] 1706 1707[[package]] 1708name = "iroh-relay" 1709version = "1.0.3" 1710source = "registry+https://github.com/rust-lang/crates.io-index" 1711checksum = "24bd586cf927f7b700f56ec3639b53cb5fa901ce284784051ff71092bfbf8193" 1712dependencies = [ 1713 "blake3", 1714 "bytes", 1715 "cfg_aliases", 1716 "data-encoding", 1717 "derive_more", 1718 "getrandom 0.4.3", 1719 "hickory-resolver", 1720 "http", 1721 "http-body-util", 1722 "hyper", 1723 "hyper-util", 1724 "iroh-base", 1725 "iroh-dns", 1726 "iroh-metrics", 1727 "lru", 1728 "n0-error", 1729 "n0-future", 1730 "noq", 1731 "noq-proto", 1732 "num_enum", 1733 "pin-project", 1734 "postcard", 1735 "rand 0.10.2", 1736 "reqwest", 1737 "rustls", 1738 "rustls-pki-types", 1739 "serde", 1740 "serde_bytes", 1741 "strum", 1742 "tokio", 1743 "tokio-rustls", 1744 "tokio-util", 1745 "tokio-websockets", 1746 "tracing", 1747 "url", 1748 "webpki-roots 1.0.9", 1749 "ws_stream_wasm", 1750] 1751 1752[[package]] 1753name = "is_terminal_polyfill" 1754version = "1.70.2" 1755source = "registry+https://github.com/rust-lang/crates.io-index" 1756checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" 1757 1758[[package]] 1759name = "itoa" 1760version = "1.0.18" 1761source = "registry+https://github.com/rust-lang/crates.io-index" 1762checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" 1763 1764[[package]] 1765name = "jni" 1766version = "0.21.1" 1767source = "registry+https://github.com/rust-lang/crates.io-index" 1768checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" 1769dependencies = [ 1770 "cesu8", 1771 "cfg-if", 1772 "combine", 1773 "jni-sys 0.3.1", 1774 "log", 1775 "thiserror 1.0.69", 1776 "walkdir", 1777 "windows-sys 0.45.0", 1778] 1779 1780[[package]] 1781name = "jni" 1782version = "0.22.4" 1783source = "registry+https://github.com/rust-lang/crates.io-index" 1784checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498" 1785dependencies = [ 1786 "cfg-if", 1787 "combine", 1788 "jni-macros", 1789 "jni-sys 0.4.1", 1790 "log", 1791 "simd_cesu8", 1792 "thiserror 2.0.19", 1793 "walkdir", 1794 "windows-link", 1795] 1796 1797[[package]] 1798name = "jni-macros" 1799version = "0.22.4" 1800source = "registry+https://github.com/rust-lang/crates.io-index" 1801checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3" 1802dependencies = [ 1803 "proc-macro2", 1804 "quote", 1805 "rustc_version", 1806 "simd_cesu8", 1807 "syn 2.0.119", 1808] 1809 1810[[package]] 1811name = "jni-sys" 1812version = "0.3.1" 1813source = "registry+https://github.com/rust-lang/crates.io-index" 1814checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258" 1815dependencies = [ 1816 "jni-sys 0.4.1", 1817] 1818 1819[[package]] 1820name = "jni-sys" 1821version = "0.4.1" 1822source = "registry+https://github.com/rust-lang/crates.io-index" 1823checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" 1824dependencies = [ 1825 "jni-sys-macros", 1826] 1827 1828[[package]] 1829name = "jni-sys-macros" 1830version = "0.4.1" 1831source = "registry+https://github.com/rust-lang/crates.io-index" 1832checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" 1833dependencies = [ 1834 "quote", 1835 "syn 2.0.119", 1836] 1837 1838[[package]] 1839name = "jobserver" 1840version = "0.1.35" 1841source = "registry+https://github.com/rust-lang/crates.io-index" 1842checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3" 1843dependencies = [ 1844 "getrandom 0.4.3", 1845 "libc", 1846] 1847 1848[[package]] 1849name = "js-sys" 1850version = "0.3.103" 1851source = "registry+https://github.com/rust-lang/crates.io-index" 1852checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102" 1853dependencies = [ 1854 "cfg-if", 1855 "futures-util", 1856 "wasm-bindgen", 1857] 1858 1859[[package]] 1860name = "lazy_static" 1861version = "1.5.0" 1862source = "registry+https://github.com/rust-lang/crates.io-index" 1863checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 1864 1865[[package]] 1866name = "libc" 1867version = "0.2.189" 1868source = "registry+https://github.com/rust-lang/crates.io-index" 1869checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2" 1870 1871[[package]] 1872name = "libflate" 1873version = "2.3.1" 1874source = "registry+https://github.com/rust-lang/crates.io-index" 1875checksum = "a4da9b700e758e57152a1fd1c52cbdc5727c1aa6d8743dc1acda917398f1d76c" 1876dependencies = [ 1877 "adler32", 1878 "crc32fast", 1879 "dary_heap", 1880 "libflate_lz77", 1881 "no_std_io2", 1882] 1883 1884[[package]] 1885name = "libflate_lz77" 1886version = "2.3.0" 1887source = "registry+https://github.com/rust-lang/crates.io-index" 1888checksum = "ff7a10e427698aef6eef269482776debfef63384d30f13aad39a1a95e0e098fd" 1889dependencies = [ 1890 "hashbrown 0.16.1", 1891 "no_std_io2", 1892 "rle-decode-fast", 1893] 1894 1895[[package]] 1896name = "linux-raw-sys" 1897version = "0.12.1" 1898source = "registry+https://github.com/rust-lang/crates.io-index" 1899checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" 1900 1901[[package]] 1902name = "litemap" 1903version = "0.8.2" 1904source = "registry+https://github.com/rust-lang/crates.io-index" 1905checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" 1906 1907[[package]] 1908name = "lock_api" 1909version = "0.4.14" 1910source = "registry+https://github.com/rust-lang/crates.io-index" 1911checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" 1912dependencies = [ 1913 "scopeguard", 1914] 1915 1916[[package]] 1917name = "log" 1918version = "0.4.33" 1919source = "registry+https://github.com/rust-lang/crates.io-index" 1920checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" 1921 1922[[package]] 1923name = "loom" 1924version = "0.7.2" 1925source = "registry+https://github.com/rust-lang/crates.io-index" 1926checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" 1927dependencies = [ 1928 "cfg-if", 1929 "generator", 1930 "scoped-tls", 1931 "tracing", 1932 "tracing-subscriber", 1933] 1934 1935[[package]] 1936name = "lru" 1937version = "0.18.1" 1938source = "registry+https://github.com/rust-lang/crates.io-index" 1939checksum = "0b6180140927ee907000b0aa540091f6ea512ead4447c92b8fc35bc72788a5a6" 1940dependencies = [ 1941 "hashbrown 0.17.1", 1942] 1943 1944[[package]] 1945name = "lru-slab" 1946version = "0.1.2" 1947source = "registry+https://github.com/rust-lang/crates.io-index" 1948checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" 1949 1950[[package]] 1951name = "mac-addr" 1952version = "0.3.0" 1953source = "registry+https://github.com/rust-lang/crates.io-index" 1954checksum = "d3d25b0e0b648a86960ac23b7ad4abb9717601dec6f66c165f5b037f3f03065f" 1955 1956[[package]] 1957name = "matchers" 1958version = "0.2.0" 1959source = "registry+https://github.com/rust-lang/crates.io-index" 1960checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" 1961dependencies = [ 1962 "regex-automata", 1963] 1964 1965[[package]] 1966name = "md5" 1967version = "0.8.1" 1968source = "registry+https://github.com/rust-lang/crates.io-index" 1969checksum = "7ebb8d8732c6a6df3d8f032a82911cfc747e00efb95cc46e8d0acd5b5b88570c" 1970 1971[[package]] 1972name = "memchr" 1973version = "2.8.3" 1974source = "registry+https://github.com/rust-lang/crates.io-index" 1975checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" 1976 1977[[package]] 1978name = "mio" 1979version = "1.2.2" 1980source = "registry+https://github.com/rust-lang/crates.io-index" 1981checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427" 1982dependencies = [ 1983 "libc", 1984 "wasi", 1985 "windows-sys 0.61.2", 1986] 1987 1988[[package]] 1989name = "moka" 1990version = "0.12.15" 1991source = "registry+https://github.com/rust-lang/crates.io-index" 1992checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046" 1993dependencies = [ 1994 "crossbeam-channel", 1995 "crossbeam-epoch", 1996 "crossbeam-utils", 1997 "equivalent", 1998 "parking_lot", 1999 "portable-atomic", 2000 "smallvec", 2001 "tagptr", 2002 "uuid", 2003] 2004 2005[[package]] 2006name = "n0-error" 2007version = "1.0.0" 2008source = "registry+https://github.com/rust-lang/crates.io-index" 2009checksum = "c37e81176a83a77d2514528b91bdafc70ef88aab428f0e1b91aebb8d99888895" 2010dependencies = [ 2011 "n0-error-macros", 2012 "spez", 2013] 2014 2015[[package]] 2016name = "n0-error-macros" 2017version = "1.0.0" 2018source = "registry+https://github.com/rust-lang/crates.io-index" 2019checksum = "e2acd8b070213b0299282f884b4beba4e7b52d624fdcd504a3ad3665390c11e1" 2020dependencies = [ 2021 "proc-macro2", 2022 "quote", 2023 "syn 2.0.119", 2024] 2025 2026[[package]] 2027name = "n0-future" 2028version = "0.3.2" 2029source = "registry+https://github.com/rust-lang/crates.io-index" 2030checksum = "e2ab99dfb861450e68853d34ae665243a88b8c493d01ba957321a1e9b2312bbe" 2031dependencies = [ 2032 "cfg_aliases", 2033 "derive_more", 2034 "futures-buffered", 2035 "futures-lite", 2036 "futures-util", 2037 "js-sys", 2038 "pin-project", 2039 "send_wrapper", 2040 "tokio", 2041 "tokio-util", 2042 "wasm-bindgen", 2043 "wasm-bindgen-futures", 2044 "web-time", 2045] 2046 2047[[package]] 2048name = "n0-watcher" 2049version = "1.0.0" 2050source = "registry+https://github.com/rust-lang/crates.io-index" 2051checksum = "bbc618745ad0b7414b149d0517ad8b5573b2fb4d4e2717add3d2446ce1fdd826" 2052dependencies = [ 2053 "derive_more", 2054 "n0-error", 2055 "n0-future", 2056] 2057 2058[[package]] 2059name = "ndk-context" 2060version = "0.1.1" 2061source = "registry+https://github.com/rust-lang/crates.io-index" 2062checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" 2063 2064[[package]] 2065name = "netdev" 2066version = "0.45.0" 2067source = "registry+https://github.com/rust-lang/crates.io-index" 2068checksum = "569dfbdd2efd771b24ec9bb57f956e04d4fbfc72f62b2f11961723f9b3f4b020" 2069dependencies = [ 2070 "block2", 2071 "dispatch2", 2072 "dlopen2", 2073 "ipnet", 2074 "jni 0.21.1", 2075 "libc", 2076 "mac-addr", 2077 "ndk-context", 2078 "netlink-packet-core", 2079 "netlink-packet-route", 2080 "netlink-sys", 2081 "objc2", 2082 "objc2-core-foundation", 2083 "objc2-core-wlan", 2084 "objc2-foundation", 2085 "objc2-system-configuration", 2086 "once_cell", 2087 "plist", 2088 "windows-sys 0.61.2", 2089] 2090 2091[[package]] 2092name = "netlink-packet-core" 2093version = "0.8.1" 2094source = "registry+https://github.com/rust-lang/crates.io-index" 2095checksum = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4" 2096dependencies = [ 2097 "paste", 2098] 2099 2100[[package]] 2101name = "netlink-packet-route" 2102version = "0.31.0" 2103source = "registry+https://github.com/rust-lang/crates.io-index" 2104checksum = "e2288fcb784eb3defd5fb16f4c4160d5f477de192eac730f43e1d11c24d9a007" 2105dependencies = [ 2106 "bitflags", 2107 "libc", 2108 "log", 2109 "netlink-packet-core", 2110] 2111 2112[[package]] 2113name = "netlink-proto" 2114version = "0.12.1" 2115source = "registry+https://github.com/rust-lang/crates.io-index" 2116checksum = "e6f7398dddf5f152d2a91a2921a134c6097056e292c0d4b9906007855e7cece6" 2117dependencies = [ 2118 "bytes", 2119 "futures-channel", 2120 "futures-util", 2121 "log", 2122 "netlink-packet-core", 2123 "netlink-sys", 2124 "thiserror 2.0.19", 2125] 2126 2127[[package]] 2128name = "netlink-sys" 2129version = "0.8.8" 2130source = "registry+https://github.com/rust-lang/crates.io-index" 2131checksum = "cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae" 2132dependencies = [ 2133 "bytes", 2134 "futures-util", 2135 "libc", 2136 "log", 2137 "tokio", 2138] 2139 2140[[package]] 2141name = "netwatch" 2142version = "0.19.1" 2143source = "registry+https://github.com/rust-lang/crates.io-index" 2144checksum = "4d9cbe01741347ef750d743d6690603f5eed8341e679fb51c8e629337aa11976" 2145dependencies = [ 2146 "atomic-waker", 2147 "bytes", 2148 "cfg_aliases", 2149 "derive_more", 2150 "ipnet", 2151 "js-sys", 2152 "libc", 2153 "n0-error", 2154 "n0-future", 2155 "n0-watcher", 2156 "netdev", 2157 "netlink-packet-core", 2158 "netlink-packet-route", 2159 "netlink-proto", 2160 "netlink-sys", 2161 "noq-udp", 2162 "objc2-core-foundation", 2163 "objc2-system-configuration", 2164 "pin-project-lite", 2165 "serde", 2166 "socket2", 2167 "time", 2168 "tokio", 2169 "tokio-util", 2170 "tracing", 2171 "web-sys", 2172 "windows", 2173 "windows-result", 2174 "wmi", 2175] 2176 2177[[package]] 2178name = "no_std_io2" 2179version = "0.9.4" 2180source = "registry+https://github.com/rust-lang/crates.io-index" 2181checksum = "418abd1b6d34fbf6cae440dc874771b0525a604428704c76e48b29a5e67b8003" 2182dependencies = [ 2183 "memchr", 2184] 2185 2186[[package]] 2187name = "noq" 2188version = "1.1.0" 2189source = "registry+https://github.com/rust-lang/crates.io-index" 2190checksum = "e11803df44ac03a30988d61585ea50885d5428e42da944fe1e498799da7886a2" 2191dependencies = [ 2192 "bytes", 2193 "cfg_aliases", 2194 "derive_more", 2195 "noq-proto", 2196 "noq-udp", 2197 "pin-project-lite", 2198 "rustc-hash", 2199 "rustls", 2200 "socket2", 2201 "thiserror 2.0.19", 2202 "tokio", 2203 "tokio-stream", 2204 "tracing", 2205 "web-time", 2206] 2207 2208[[package]] 2209name = "noq-proto" 2210version = "1.1.0" 2211source = "registry+https://github.com/rust-lang/crates.io-index" 2212checksum = "334c3c9833f7b2c573cceb9896ddc7aaeb58c8807cbb63211b24d1fe88bf866e" 2213dependencies = [ 2214 "aes-gcm", 2215 "bytes", 2216 "derive_more", 2217 "enum-assoc", 2218 "getrandom 0.4.3", 2219 "identity-hash", 2220 "lru-slab", 2221 "rand 0.10.2", 2222 "rand_pcg", 2223 "ring", 2224 "rustc-hash", 2225 "rustls", 2226 "rustls-pki-types", 2227 "slab", 2228 "sorted-index-buffer", 2229 "thiserror 2.0.19", 2230 "tinyvec", 2231 "tracing", 2232 "web-time", 2233] 2234 2235[[package]] 2236name = "noq-udp" 2237version = "1.1.0" 2238source = "registry+https://github.com/rust-lang/crates.io-index" 2239checksum = "bde7a5d5102f1cff03d482240f0ed20551661f63663620f4b26112ed751165e9" 2240dependencies = [ 2241 "cfg_aliases", 2242 "libc", 2243 "socket2", 2244 "tracing", 2245 "windows-sys 0.61.2", 2246] 2247 2248[[package]] 2249name = "nu-ansi-term" 2250version = "0.50.3" 2251source = "registry+https://github.com/rust-lang/crates.io-index" 2252checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" 2253dependencies = [ 2254 "windows-sys 0.61.2", 2255] 2256 2257[[package]] 2258name = "num-bigint" 2259version = "0.4.8" 2260source = "registry+https://github.com/rust-lang/crates.io-index" 2261checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367" 2262dependencies = [ 2263 "num-integer", 2264 "num-traits", 2265] 2266 2267[[package]] 2268name = "num-conv" 2269version = "0.2.2" 2270source = "registry+https://github.com/rust-lang/crates.io-index" 2271checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" 2272 2273[[package]] 2274name = "num-integer" 2275version = "0.1.46" 2276source = "registry+https://github.com/rust-lang/crates.io-index" 2277checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 2278dependencies = [ 2279 "num-traits", 2280] 2281 2282[[package]] 2283name = "num-traits" 2284version = "0.2.19" 2285source = "registry+https://github.com/rust-lang/crates.io-index" 2286checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2287dependencies = [ 2288 "autocfg", 2289] 2290 2291[[package]] 2292name = "num_enum" 2293version = "0.7.6" 2294source = "registry+https://github.com/rust-lang/crates.io-index" 2295checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" 2296dependencies = [ 2297 "num_enum_derive", 2298 "rustversion", 2299] 2300 2301[[package]] 2302name = "num_enum_derive" 2303version = "0.7.6" 2304source = "registry+https://github.com/rust-lang/crates.io-index" 2305checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" 2306dependencies = [ 2307 "proc-macro-crate", 2308 "proc-macro2", 2309 "quote", 2310 "syn 2.0.119", 2311] 2312 2313[[package]] 2314name = "objc2" 2315version = "0.6.4" 2316source = "registry+https://github.com/rust-lang/crates.io-index" 2317checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f" 2318dependencies = [ 2319 "objc2-encode", 2320] 2321 2322[[package]] 2323name = "objc2-core-foundation" 2324version = "0.3.2" 2325source = "registry+https://github.com/rust-lang/crates.io-index" 2326checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" 2327dependencies = [ 2328 "bitflags", 2329 "block2", 2330 "dispatch2", 2331 "libc", 2332 "objc2", 2333] 2334 2335[[package]] 2336name = "objc2-core-wlan" 2337version = "0.3.2" 2338source = "registry+https://github.com/rust-lang/crates.io-index" 2339checksum = "c71e34919aba0d701380d911702455038a8a3587467fe0141d6a71501e7ffe48" 2340dependencies = [ 2341 "bitflags", 2342 "objc2", 2343 "objc2-core-foundation", 2344 "objc2-foundation", 2345 "objc2-security", 2346 "objc2-security-foundation", 2347] 2348 2349[[package]] 2350name = "objc2-encode" 2351version = "4.1.0" 2352source = "registry+https://github.com/rust-lang/crates.io-index" 2353checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" 2354 2355[[package]] 2356name = "objc2-foundation" 2357version = "0.3.2" 2358source = "registry+https://github.com/rust-lang/crates.io-index" 2359checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" 2360dependencies = [ 2361 "bitflags", 2362 "block2", 2363 "libc", 2364 "objc2", 2365 "objc2-core-foundation", 2366] 2367 2368[[package]] 2369name = "objc2-security" 2370version = "0.3.2" 2371source = "registry+https://github.com/rust-lang/crates.io-index" 2372checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a" 2373dependencies = [ 2374 "bitflags", 2375 "objc2", 2376 "objc2-core-foundation", 2377] 2378 2379[[package]] 2380name = "objc2-security-foundation" 2381version = "0.3.2" 2382source = "registry+https://github.com/rust-lang/crates.io-index" 2383checksum = "ef76382e9cedd18123099f17638715cc3d81dba3637d4c0d39ab69df2ef345a5" 2384dependencies = [ 2385 "objc2", 2386 "objc2-foundation", 2387] 2388 2389[[package]] 2390name = "objc2-system-configuration" 2391version = "0.3.2" 2392source = "registry+https://github.com/rust-lang/crates.io-index" 2393checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396" 2394dependencies = [ 2395 "bitflags", 2396 "dispatch2", 2397 "libc", 2398 "objc2", 2399 "objc2-core-foundation", 2400 "objc2-security", 2401] 2402 2403[[package]] 2404name = "once_cell" 2405version = "1.21.4" 2406source = "registry+https://github.com/rust-lang/crates.io-index" 2407checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" 2408dependencies = [ 2409 "critical-section", 2410 "portable-atomic", 2411] 2412 2413[[package]] 2414name = "once_cell_polyfill" 2415version = "1.70.2" 2416source = "registry+https://github.com/rust-lang/crates.io-index" 2417checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" 2418 2419[[package]] 2420name = "opaque-debug" 2421version = "0.3.1" 2422source = "registry+https://github.com/rust-lang/crates.io-index" 2423checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" 2424 2425[[package]] 2426name = "openssl-probe" 2427version = "0.2.1" 2428source = "registry+https://github.com/rust-lang/crates.io-index" 2429checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" 2430 2431[[package]] 2432name = "papaya" 2433version = "0.2.4" 2434source = "registry+https://github.com/rust-lang/crates.io-index" 2435checksum = "997ee03cd38c01469a7046643714f0ad28880bcb9e6679ff0666e24817ca19b7" 2436dependencies = [ 2437 "equivalent", 2438 "seize", 2439] 2440 2441[[package]] 2442name = "parking" 2443version = "2.2.1" 2444source = "registry+https://github.com/rust-lang/crates.io-index" 2445checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 2446 2447[[package]] 2448name = "parking_lot" 2449version = "0.12.5" 2450source = "registry+https://github.com/rust-lang/crates.io-index" 2451checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" 2452dependencies = [ 2453 "lock_api", 2454 "parking_lot_core", 2455] 2456 2457[[package]] 2458name = "parking_lot_core" 2459version = "0.9.12" 2460source = "registry+https://github.com/rust-lang/crates.io-index" 2461checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" 2462dependencies = [ 2463 "cfg-if", 2464 "libc", 2465 "redox_syscall", 2466 "smallvec", 2467 "windows-link", 2468] 2469 2470[[package]] 2471name = "paste" 2472version = "1.0.15" 2473source = "registry+https://github.com/rust-lang/crates.io-index" 2474checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 2475 2476[[package]] 2477name = "pem" 2478version = "3.0.6" 2479source = "registry+https://github.com/rust-lang/crates.io-index" 2480checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" 2481dependencies = [ 2482 "base64", 2483 "serde_core", 2484] 2485 2486[[package]] 2487name = "pem-rfc7468" 2488version = "1.0.0" 2489source = "registry+https://github.com/rust-lang/crates.io-index" 2490checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9" 2491dependencies = [ 2492 "base64ct", 2493] 2494 2495[[package]] 2496name = "percent-encoding" 2497version = "2.3.2" 2498source = "registry+https://github.com/rust-lang/crates.io-index" 2499checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 2500 2501[[package]] 2502name = "pharos" 2503version = "0.5.3" 2504source = "registry+https://github.com/rust-lang/crates.io-index" 2505checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414" 2506dependencies = [ 2507 "futures", 2508 "rustc_version", 2509] 2510 2511[[package]] 2512name = "pin-project" 2513version = "1.1.13" 2514source = "registry+https://github.com/rust-lang/crates.io-index" 2515checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924" 2516dependencies = [ 2517 "pin-project-internal", 2518] 2519 2520[[package]] 2521name = "pin-project-internal" 2522version = "1.1.13" 2523source = "registry+https://github.com/rust-lang/crates.io-index" 2524checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b" 2525dependencies = [ 2526 "proc-macro2", 2527 "quote", 2528 "syn 2.0.119", 2529] 2530 2531[[package]] 2532name = "pin-project-lite" 2533version = "0.2.17" 2534source = "registry+https://github.com/rust-lang/crates.io-index" 2535checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" 2536 2537[[package]] 2538name = "pkcs8" 2539version = "0.11.0" 2540source = "registry+https://github.com/rust-lang/crates.io-index" 2541checksum = "451913da69c775a56034ea8d9003d27ee8948e12443eae7c038ba100a4f21cb7" 2542dependencies = [ 2543 "der", 2544 "spki", 2545] 2546 2547[[package]] 2548name = "pkg-config" 2549version = "0.3.33" 2550source = "registry+https://github.com/rust-lang/crates.io-index" 2551checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" 2552 2553[[package]] 2554name = "plist" 2555version = "1.10.0" 2556source = "registry+https://github.com/rust-lang/crates.io-index" 2557checksum = "7da1d65da6dd5d1e44199ac0f58712d241c0f439f80adea8924d832384087f85" 2558dependencies = [ 2559 "base64", 2560 "indexmap", 2561 "quick-xml", 2562 "serde", 2563 "time", 2564] 2565 2566[[package]] 2567name = "polyval" 2568version = "0.6.2" 2569source = "registry+https://github.com/rust-lang/crates.io-index" 2570checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" 2571dependencies = [ 2572 "cfg-if", 2573 "cpufeatures 0.2.17", 2574 "opaque-debug", 2575 "universal-hash", 2576] 2577 2578[[package]] 2579name = "portable-atomic" 2580version = "1.14.0" 2581source = "registry+https://github.com/rust-lang/crates.io-index" 2582checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3" 2583dependencies = [ 2584 "serde", 2585] 2586 2587[[package]] 2588name = "portmapper" 2589version = "0.19.1" 2590source = "registry+https://github.com/rust-lang/crates.io-index" 2591checksum = "eb3713e4977408279158444a18c1a01ac9bf2e7eaf1fbfd1a19ac9cd18d90721" 2592dependencies = [ 2593 "base64", 2594 "bytes", 2595 "derive_more", 2596 "hyper-util", 2597 "igd-next", 2598 "iroh-metrics", 2599 "libc", 2600 "n0-error", 2601 "n0-future", 2602 "netwatch", 2603 "num_enum", 2604 "rand 0.10.2", 2605 "serde", 2606 "smallvec", 2607 "socket2", 2608 "time", 2609 "tokio", 2610 "tokio-util", 2611 "tower-layer", 2612 "tracing", 2613 "url", 2614] 2615 2616[[package]] 2617name = "postcard" 2618version = "1.1.3" 2619source = "registry+https://github.com/rust-lang/crates.io-index" 2620checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" 2621dependencies = [ 2622 "cobs", 2623 "embedded-io 0.4.0", 2624 "embedded-io 0.6.1", 2625 "postcard-derive", 2626 "serde", 2627] 2628 2629[[package]] 2630name = "postcard-derive" 2631version = "0.2.2" 2632source = "registry+https://github.com/rust-lang/crates.io-index" 2633checksum = "e0232bd009a197ceec9cc881ba46f727fcd8060a2d8d6a9dde7a69030a6fe2bb" 2634dependencies = [ 2635 "proc-macro2", 2636 "quote", 2637 "syn 2.0.119", 2638] 2639 2640[[package]] 2641name = "potential_utf" 2642version = "0.1.5" 2643source = "registry+https://github.com/rust-lang/crates.io-index" 2644checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" 2645dependencies = [ 2646 "zerovec", 2647] 2648 2649[[package]] 2650name = "powerfmt" 2651version = "0.2.0" 2652source = "registry+https://github.com/rust-lang/crates.io-index" 2653checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 2654 2655[[package]] 2656name = "ppv-lite86" 2657version = "0.2.21" 2658source = "registry+https://github.com/rust-lang/crates.io-index" 2659checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" 2660dependencies = [ 2661 "zerocopy", 2662] 2663 2664[[package]] 2665name = "prefix-trie" 2666version = "0.8.4" 2667source = "registry+https://github.com/rust-lang/crates.io-index" 2668checksum = "4cf6e3177f0684016a5c209b00882e15f8bdd3f3bb48f0491df10cd102d0c6e7" 2669dependencies = [ 2670 "either", 2671 "ipnet", 2672 "num-traits", 2673] 2674 2675[[package]] 2676name = "proc-macro-crate" 2677version = "3.5.0" 2678source = "registry+https://github.com/rust-lang/crates.io-index" 2679checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" 2680dependencies = [ 2681 "toml_edit", 2682] 2683 2684[[package]] 2685name = "proc-macro2" 2686version = "1.0.107" 2687source = "registry+https://github.com/rust-lang/crates.io-index" 2688checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9" 2689dependencies = [ 2690 "unicode-ident", 2691] 2692 2693[[package]] 2694name = "quick-xml" 2695version = "0.41.0" 2696source = "registry+https://github.com/rust-lang/crates.io-index" 2697checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1" 2698dependencies = [ 2699 "memchr", 2700] 2701 2702[[package]] 2703name = "quote" 2704version = "1.0.47" 2705source = "registry+https://github.com/rust-lang/crates.io-index" 2706checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001" 2707dependencies = [ 2708 "proc-macro2", 2709] 2710 2711[[package]] 2712name = "r-efi" 2713version = "6.0.0" 2714source = "registry+https://github.com/rust-lang/crates.io-index" 2715checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" 2716 2717[[package]] 2718name = "rand" 2719version = "0.8.7" 2720source = "registry+https://github.com/rust-lang/crates.io-index" 2721checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a" 2722dependencies = [ 2723 "libc", 2724 "rand_chacha", 2725 "rand_core 0.6.4", 2726] 2727 2728[[package]] 2729name = "rand" 2730version = "0.10.2" 2731source = "registry+https://github.com/rust-lang/crates.io-index" 2732checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" 2733dependencies = [ 2734 "chacha20", 2735 "getrandom 0.4.3", 2736 "rand_core 0.10.1", 2737] 2738 2739[[package]] 2740name = "rand_chacha" 2741version = "0.3.1" 2742source = "registry+https://github.com/rust-lang/crates.io-index" 2743checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2744dependencies = [ 2745 "ppv-lite86", 2746 "rand_core 0.6.4", 2747] 2748 2749[[package]] 2750name = "rand_core" 2751version = "0.6.4" 2752source = "registry+https://github.com/rust-lang/crates.io-index" 2753checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2754dependencies = [ 2755 "getrandom 0.2.17", 2756] 2757 2758[[package]] 2759name = "rand_core" 2760version = "0.10.1" 2761source = "registry+https://github.com/rust-lang/crates.io-index" 2762checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" 2763 2764[[package]] 2765name = "rand_pcg" 2766version = "0.10.2" 2767source = "registry+https://github.com/rust-lang/crates.io-index" 2768checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a" 2769dependencies = [ 2770 "rand_core 0.10.1", 2771] 2772 2773[[package]] 2774name = "rcgen" 2775version = "0.13.2" 2776source = "registry+https://github.com/rust-lang/crates.io-index" 2777checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" 2778dependencies = [ 2779 "pem", 2780 "ring", 2781 "rustls-pki-types", 2782 "time", 2783 "yasna", 2784] 2785 2786[[package]] 2787name = "redox_syscall" 2788version = "0.5.18" 2789source = "registry+https://github.com/rust-lang/crates.io-index" 2790checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 2791dependencies = [ 2792 "bitflags", 2793] 2794 2795[[package]] 2796name = "regex-automata" 2797version = "0.4.16" 2798source = "registry+https://github.com/rust-lang/crates.io-index" 2799checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad" 2800dependencies = [ 2801 "aho-corasick", 2802 "memchr", 2803 "regex-syntax", 2804] 2805 2806[[package]] 2807name = "regex-syntax" 2808version = "0.8.11" 2809source = "registry+https://github.com/rust-lang/crates.io-index" 2810checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" 2811 2812[[package]] 2813name = "reqwest" 2814version = "0.13.4" 2815source = "registry+https://github.com/rust-lang/crates.io-index" 2816checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3" 2817dependencies = [ 2818 "base64", 2819 "bytes", 2820 "futures-core", 2821 "futures-util", 2822 "http", 2823 "http-body", 2824 "http-body-util", 2825 "hyper", 2826 "hyper-rustls", 2827 "hyper-util", 2828 "js-sys", 2829 "log", 2830 "percent-encoding", 2831 "pin-project-lite", 2832 "rustls", 2833 "rustls-pki-types", 2834 "rustls-platform-verifier", 2835 "sync_wrapper", 2836 "tokio", 2837 "tokio-rustls", 2838 "tokio-util", 2839 "tower", 2840 "tower-http", 2841 "tower-service", 2842 "url", 2843 "wasm-bindgen", 2844 "wasm-bindgen-futures", 2845 "wasm-streams", 2846 "web-sys", 2847] 2848 2849[[package]] 2850name = "resolv-conf" 2851version = "0.7.6" 2852source = "registry+https://github.com/rust-lang/crates.io-index" 2853checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" 2854 2855[[package]] 2856name = "ring" 2857version = "0.17.14" 2858source = "registry+https://github.com/rust-lang/crates.io-index" 2859checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 2860dependencies = [ 2861 "cc", 2862 "cfg-if", 2863 "getrandom 0.2.17", 2864 "libc", 2865 "untrusted", 2866 "windows-sys 0.52.0", 2867] 2868 2869[[package]] 2870name = "rle-decode-fast" 2871version = "1.0.3" 2872source = "registry+https://github.com/rust-lang/crates.io-index" 2873checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422" 2874 2875[[package]] 2876name = "rustc-hash" 2877version = "2.1.3" 2878source = "registry+https://github.com/rust-lang/crates.io-index" 2879checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d" 2880 2881[[package]] 2882name = "rustc_version" 2883version = "0.4.1" 2884source = "registry+https://github.com/rust-lang/crates.io-index" 2885checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" 2886dependencies = [ 2887 "semver", 2888] 2889 2890[[package]] 2891name = "rustix" 2892version = "1.1.4" 2893source = "registry+https://github.com/rust-lang/crates.io-index" 2894checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" 2895dependencies = [ 2896 "bitflags", 2897 "errno", 2898 "libc", 2899 "linux-raw-sys", 2900 "windows-sys 0.61.2", 2901] 2902 2903[[package]] 2904name = "rustls" 2905version = "0.23.42" 2906source = "registry+https://github.com/rust-lang/crates.io-index" 2907checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138" 2908dependencies = [ 2909 "aws-lc-rs", 2910 "log", 2911 "once_cell", 2912 "ring", 2913 "rustls-pki-types", 2914 "rustls-webpki", 2915 "subtle", 2916 "zeroize", 2917] 2918 2919[[package]] 2920name = "rustls-native-certs" 2921version = "0.8.4" 2922source = "registry+https://github.com/rust-lang/crates.io-index" 2923checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d" 2924dependencies = [ 2925 "openssl-probe", 2926 "rustls-pki-types", 2927 "schannel", 2928 "security-framework", 2929] 2930 2931[[package]] 2932name = "rustls-pemfile" 2933version = "2.2.0" 2934source = "registry+https://github.com/rust-lang/crates.io-index" 2935checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" 2936dependencies = [ 2937 "rustls-pki-types", 2938] 2939 2940[[package]] 2941name = "rustls-pki-types" 2942version = "1.15.1" 2943source = "registry+https://github.com/rust-lang/crates.io-index" 2944checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96" 2945dependencies = [ 2946 "web-time", 2947 "zeroize", 2948] 2949 2950[[package]] 2951name = "rustls-platform-verifier" 2952version = "0.7.0" 2953source = "registry+https://github.com/rust-lang/crates.io-index" 2954checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0" 2955dependencies = [ 2956 "core-foundation 0.10.1", 2957 "core-foundation-sys", 2958 "jni 0.22.4", 2959 "log", 2960 "once_cell", 2961 "rustls", 2962 "rustls-native-certs", 2963 "rustls-platform-verifier-android", 2964 "rustls-webpki", 2965 "security-framework", 2966 "security-framework-sys", 2967 "webpki-root-certs", 2968 "windows-sys 0.61.2", 2969] 2970 2971[[package]] 2972name = "rustls-platform-verifier-android" 2973version = "0.1.1" 2974source = "registry+https://github.com/rust-lang/crates.io-index" 2975checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" 2976 2977[[package]] 2978name = "rustls-webpki" 2979version = "0.103.13" 2980source = "registry+https://github.com/rust-lang/crates.io-index" 2981checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" 2982dependencies = [ 2983 "aws-lc-rs", 2984 "ring", 2985 "rustls-pki-types", 2986 "untrusted", 2987] 2988 2989[[package]] 2990name = "rustversion" 2991version = "1.0.23" 2992source = "registry+https://github.com/rust-lang/crates.io-index" 2993checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f" 2994 2995[[package]] 2996name = "ryu" 2997version = "1.0.23" 2998source = "registry+https://github.com/rust-lang/crates.io-index" 2999checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" 3000 3001[[package]] 3002name = "same-file" 3003version = "1.0.6" 3004source = "registry+https://github.com/rust-lang/crates.io-index" 3005checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3006dependencies = [ 3007 "winapi-util", 3008] 3009 3010[[package]] 3011name = "schannel" 3012version = "0.1.29" 3013source = "registry+https://github.com/rust-lang/crates.io-index" 3014checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" 3015dependencies = [ 3016 "windows-sys 0.61.2", 3017] 3018 3019[[package]] 3020name = "scoped-tls" 3021version = "1.0.1" 3022source = "registry+https://github.com/rust-lang/crates.io-index" 3023checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 3024 3025[[package]] 3026name = "scopeguard" 3027version = "1.2.0" 3028source = "registry+https://github.com/rust-lang/crates.io-index" 3029checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 3030 3031[[package]] 3032name = "security-framework" 3033version = "3.7.0" 3034source = "registry+https://github.com/rust-lang/crates.io-index" 3035checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" 3036dependencies = [ 3037 "bitflags", 3038 "core-foundation 0.10.1", 3039 "core-foundation-sys", 3040 "libc", 3041 "security-framework-sys", 3042] 3043 3044[[package]] 3045name = "security-framework-sys" 3046version = "2.17.0" 3047source = "registry+https://github.com/rust-lang/crates.io-index" 3048checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" 3049dependencies = [ 3050 "core-foundation-sys", 3051 "libc", 3052] 3053 3054[[package]] 3055name = "seize" 3056version = "0.5.1" 3057source = "registry+https://github.com/rust-lang/crates.io-index" 3058checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521" 3059dependencies = [ 3060 "libc", 3061 "windows-sys 0.61.2", 3062] 3063 3064[[package]] 3065name = "semver" 3066version = "1.0.28" 3067source = "registry+https://github.com/rust-lang/crates.io-index" 3068checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" 3069 3070[[package]] 3071name = "send_wrapper" 3072version = "0.6.0" 3073source = "registry+https://github.com/rust-lang/crates.io-index" 3074checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" 3075 3076[[package]] 3077name = "serde" 3078version = "1.0.229" 3079source = "registry+https://github.com/rust-lang/crates.io-index" 3080checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba" 3081dependencies = [ 3082 "serde_core", 3083 "serde_derive", 3084] 3085 3086[[package]] 3087name = "serde_bytes" 3088version = "0.11.19" 3089source = "registry+https://github.com/rust-lang/crates.io-index" 3090checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" 3091dependencies = [ 3092 "serde", 3093 "serde_core", 3094] 3095 3096[[package]] 3097name = "serde_core" 3098version = "1.0.229" 3099source = "registry+https://github.com/rust-lang/crates.io-index" 3100checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48" 3101dependencies = [ 3102 "serde_derive", 3103] 3104 3105[[package]] 3106name = "serde_derive" 3107version = "1.0.229" 3108source = "registry+https://github.com/rust-lang/crates.io-index" 3109checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348" 3110dependencies = [ 3111 "proc-macro2", 3112 "quote", 3113 "syn 3.0.3", 3114] 3115 3116[[package]] 3117name = "serdect" 3118version = "0.4.3" 3119source = "registry+https://github.com/rust-lang/crates.io-index" 3120checksum = "66cf8fedced2fcf12406bcb34223dffb92eaf34908ede12fed414c82b7f00b3e" 3121dependencies = [ 3122 "base16ct", 3123 "serde", 3124] 3125 3126[[package]] 3127name = "sha1_smol" 3128version = "1.0.1" 3129source = "registry+https://github.com/rust-lang/crates.io-index" 3130checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" 3131 3132[[package]] 3133name = "sha2" 3134version = "0.11.0" 3135source = "registry+https://github.com/rust-lang/crates.io-index" 3136checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" 3137dependencies = [ 3138 "cfg-if", 3139 "cpufeatures 0.3.0", 3140 "digest", 3141] 3142 3143[[package]] 3144name = "sharded-slab" 3145version = "0.1.7" 3146source = "registry+https://github.com/rust-lang/crates.io-index" 3147checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 3148dependencies = [ 3149 "lazy_static", 3150] 3151 3152[[package]] 3153name = "shlex" 3154version = "2.0.1" 3155source = "registry+https://github.com/rust-lang/crates.io-index" 3156checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" 3157 3158[[package]] 3159name = "signal-hook-registry" 3160version = "1.4.8" 3161source = "registry+https://github.com/rust-lang/crates.io-index" 3162checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 3163dependencies = [ 3164 "errno", 3165 "libc", 3166] 3167 3168[[package]] 3169name = "signature" 3170version = "3.0.0" 3171source = "registry+https://github.com/rust-lang/crates.io-index" 3172checksum = "28d567dcbaf0049cb8ac2608a76cd95ff9e4412e1899d389ee400918ca7537f5" 3173dependencies = [ 3174 "rand_core 0.10.1", 3175] 3176 3177[[package]] 3178name = "simd_cesu8" 3179version = "1.2.0" 3180source = "registry+https://github.com/rust-lang/crates.io-index" 3181checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520" 3182dependencies = [ 3183 "rustc_version", 3184 "simdutf8", 3185] 3186 3187[[package]] 3188name = "simdutf8" 3189version = "0.1.5" 3190source = "registry+https://github.com/rust-lang/crates.io-index" 3191checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" 3192 3193[[package]] 3194name = "simple-dns" 3195version = "0.11.3" 3196source = "registry+https://github.com/rust-lang/crates.io-index" 3197checksum = "7a75cbde1bf934313596a004973e462f9a82caa814dcf1a5f507bdf51597eeb4" 3198dependencies = [ 3199 "bitflags", 3200] 3201 3202[[package]] 3203name = "slab" 3204version = "0.4.12" 3205source = "registry+https://github.com/rust-lang/crates.io-index" 3206checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" 3207 3208[[package]] 3209name = "smallvec" 3210version = "1.15.2" 3211source = "registry+https://github.com/rust-lang/crates.io-index" 3212checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" 3213 3214[[package]] 3215name = "socket2" 3216version = "0.6.5" 3217source = "registry+https://github.com/rust-lang/crates.io-index" 3218checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4" 3219dependencies = [ 3220 "libc", 3221 "windows-sys 0.61.2", 3222] 3223 3224[[package]] 3225name = "sorted-index-buffer" 3226version = "0.2.1" 3227source = "registry+https://github.com/rust-lang/crates.io-index" 3228checksum = "ea06cc588e43c632923a55450401b8f25e628131571d4e1baea1bdfdb2b5ed06" 3229 3230[[package]] 3231name = "spez" 3232version = "0.1.2" 3233source = "registry+https://github.com/rust-lang/crates.io-index" 3234checksum = "c87e960f4dca2788eeb86bbdde8dd246be8948790b7618d656e68f9b720a86e8" 3235dependencies = [ 3236 "proc-macro2", 3237 "quote", 3238 "syn 2.0.119", 3239] 3240 3241[[package]] 3242name = "spin" 3243version = "0.10.1" 3244source = "registry+https://github.com/rust-lang/crates.io-index" 3245checksum = "023a211cb3138dbc438680b32560ad89f699977624c9f8dbb95a47d5b4c07dd3" 3246 3247[[package]] 3248name = "spki" 3249version = "0.8.0" 3250source = "registry+https://github.com/rust-lang/crates.io-index" 3251checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f" 3252dependencies = [ 3253 "base64ct", 3254 "der", 3255] 3256 3257[[package]] 3258name = "stable_deref_trait" 3259version = "1.2.1" 3260source = "registry+https://github.com/rust-lang/crates.io-index" 3261checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" 3262 3263[[package]] 3264name = "strsim" 3265version = "0.11.1" 3266source = "registry+https://github.com/rust-lang/crates.io-index" 3267checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 3268 3269[[package]] 3270name = "strum" 3271version = "0.28.0" 3272source = "registry+https://github.com/rust-lang/crates.io-index" 3273checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd" 3274dependencies = [ 3275 "strum_macros", 3276] 3277 3278[[package]] 3279name = "strum_macros" 3280version = "0.28.0" 3281source = "registry+https://github.com/rust-lang/crates.io-index" 3282checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664" 3283dependencies = [ 3284 "heck", 3285 "proc-macro2", 3286 "quote", 3287 "syn 2.0.119", 3288] 3289 3290[[package]] 3291name = "subtle" 3292version = "2.6.1" 3293source = "registry+https://github.com/rust-lang/crates.io-index" 3294checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 3295 3296[[package]] 3297name = "syn" 3298version = "2.0.119" 3299source = "registry+https://github.com/rust-lang/crates.io-index" 3300checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297" 3301dependencies = [ 3302 "proc-macro2", 3303 "quote", 3304 "unicode-ident", 3305] 3306 3307[[package]] 3308name = "syn" 3309version = "3.0.3" 3310source = "registry+https://github.com/rust-lang/crates.io-index" 3311checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3" 3312dependencies = [ 3313 "proc-macro2", 3314 "quote", 3315 "unicode-ident", 3316] 3317 3318[[package]] 3319name = "sync_wrapper" 3320version = "1.0.2" 3321source = "registry+https://github.com/rust-lang/crates.io-index" 3322checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 3323dependencies = [ 3324 "futures-core", 3325] 3326 3327[[package]] 3328name = "synstructure" 3329version = "0.13.2" 3330source = "registry+https://github.com/rust-lang/crates.io-index" 3331checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 3332dependencies = [ 3333 "proc-macro2", 3334 "quote", 3335 "syn 2.0.119", 3336] 3337 3338[[package]] 3339name = "system-configuration" 3340version = "0.7.0" 3341source = "registry+https://github.com/rust-lang/crates.io-index" 3342checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" 3343dependencies = [ 3344 "bitflags", 3345 "core-foundation 0.9.4", 3346 "system-configuration-sys", 3347] 3348 3349[[package]] 3350name = "system-configuration-sys" 3351version = "0.6.0" 3352source = "registry+https://github.com/rust-lang/crates.io-index" 3353checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 3354dependencies = [ 3355 "core-foundation-sys", 3356 "libc", 3357] 3358 3359[[package]] 3360name = "tagptr" 3361version = "0.2.0" 3362source = "registry+https://github.com/rust-lang/crates.io-index" 3363checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" 3364 3365[[package]] 3366name = "tempfile" 3367version = "3.27.0" 3368source = "registry+https://github.com/rust-lang/crates.io-index" 3369checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" 3370dependencies = [ 3371 "fastrand", 3372 "getrandom 0.4.3", 3373 "once_cell", 3374 "rustix", 3375 "windows-sys 0.61.2", 3376] 3377 3378[[package]] 3379name = "thiserror" 3380version = "1.0.69" 3381source = "registry+https://github.com/rust-lang/crates.io-index" 3382checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" 3383dependencies = [ 3384 "thiserror-impl 1.0.69", 3385] 3386 3387[[package]] 3388name = "thiserror" 3389version = "2.0.19" 3390source = "registry+https://github.com/rust-lang/crates.io-index" 3391checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9" 3392dependencies = [ 3393 "thiserror-impl 2.0.19", 3394] 3395 3396[[package]] 3397name = "thiserror-impl" 3398version = "1.0.69" 3399source = "registry+https://github.com/rust-lang/crates.io-index" 3400checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" 3401dependencies = [ 3402 "proc-macro2", 3403 "quote", 3404 "syn 2.0.119", 3405] 3406 3407[[package]] 3408name = "thiserror-impl" 3409version = "2.0.19" 3410source = "registry+https://github.com/rust-lang/crates.io-index" 3411checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd" 3412dependencies = [ 3413 "proc-macro2", 3414 "quote", 3415 "syn 3.0.3", 3416] 3417 3418[[package]] 3419name = "thread_local" 3420version = "1.1.10" 3421source = "registry+https://github.com/rust-lang/crates.io-index" 3422checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070" 3423dependencies = [ 3424 "cfg-if", 3425] 3426 3427[[package]] 3428name = "time" 3429version = "0.3.54" 3430source = "registry+https://github.com/rust-lang/crates.io-index" 3431checksum = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244" 3432dependencies = [ 3433 "deranged", 3434 "js-sys", 3435 "num-conv", 3436 "powerfmt", 3437 "serde_core", 3438 "time-core", 3439 "time-macros", 3440] 3441 3442[[package]] 3443name = "time-core" 3444version = "0.1.9" 3445source = "registry+https://github.com/rust-lang/crates.io-index" 3446checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109" 3447 3448[[package]] 3449name = "time-macros" 3450version = "0.2.32" 3451source = "registry+https://github.com/rust-lang/crates.io-index" 3452checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85" 3453dependencies = [ 3454 "num-conv", 3455 "time-core", 3456] 3457 3458[[package]] 3459name = "tinystr" 3460version = "0.8.3" 3461source = "registry+https://github.com/rust-lang/crates.io-index" 3462checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" 3463dependencies = [ 3464 "displaydoc", 3465 "zerovec", 3466] 3467 3468[[package]] 3469name = "tinyvec" 3470version = "1.12.0" 3471source = "registry+https://github.com/rust-lang/crates.io-index" 3472checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f" 3473dependencies = [ 3474 "tinyvec_macros", 3475] 3476 3477[[package]] 3478name = "tinyvec_macros" 3479version = "0.1.1" 3480source = "registry+https://github.com/rust-lang/crates.io-index" 3481checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 3482 3483[[package]] 3484name = "tokio" 3485version = "1.53.1" 3486source = "registry+https://github.com/rust-lang/crates.io-index" 3487checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed" 3488dependencies = [ 3489 "bytes", 3490 "libc", 3491 "mio", 3492 "pin-project-lite", 3493 "signal-hook-registry", 3494 "socket2", 3495 "tokio-macros", 3496 "windows-sys 0.61.2", 3497] 3498 3499[[package]] 3500name = "tokio-macros" 3501version = "2.7.1" 3502source = "registry+https://github.com/rust-lang/crates.io-index" 3503checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba" 3504dependencies = [ 3505 "proc-macro2", 3506 "quote", 3507 "syn 2.0.119", 3508] 3509 3510[[package]] 3511name = "tokio-rustls" 3512version = "0.26.4" 3513source = "registry+https://github.com/rust-lang/crates.io-index" 3514checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" 3515dependencies = [ 3516 "rustls", 3517 "tokio", 3518] 3519 3520[[package]] 3521name = "tokio-stream" 3522version = "0.1.19" 3523source = "registry+https://github.com/rust-lang/crates.io-index" 3524checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b" 3525dependencies = [ 3526 "futures-core", 3527 "pin-project-lite", 3528 "tokio", 3529 "tokio-util", 3530] 3531 3532[[package]] 3533name = "tokio-util" 3534version = "0.7.19" 3535source = "registry+https://github.com/rust-lang/crates.io-index" 3536checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52" 3537dependencies = [ 3538 "bytes", 3539 "futures-core", 3540 "futures-io", 3541 "futures-sink", 3542 "futures-util", 3543 "libc", 3544 "pin-project-lite", 3545 "tokio", 3546] 3547 3548[[package]] 3549name = "tokio-websockets" 3550version = "0.13.3" 3551source = "registry+https://github.com/rust-lang/crates.io-index" 3552checksum = "d52efb639344a7c6adb8e62c6f3d2c19c001ff1b79a5041ba1c6ed42e19c6aa5" 3553dependencies = [ 3554 "base64", 3555 "bytes", 3556 "futures-core", 3557 "futures-sink", 3558 "getrandom 0.4.3", 3559 "http", 3560 "httparse", 3561 "rand 0.10.2", 3562 "ring", 3563 "rustls-pki-types", 3564 "sha1_smol", 3565 "simdutf8", 3566 "tokio", 3567 "tokio-rustls", 3568 "tokio-util", 3569] 3570 3571[[package]] 3572name = "toml_datetime" 3573version = "1.1.1+spec-1.1.0" 3574source = "registry+https://github.com/rust-lang/crates.io-index" 3575checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" 3576dependencies = [ 3577 "serde_core", 3578] 3579 3580[[package]] 3581name = "toml_edit" 3582version = "0.25.13+spec-1.1.0" 3583source = "registry+https://github.com/rust-lang/crates.io-index" 3584checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b" 3585dependencies = [ 3586 "indexmap", 3587 "toml_datetime", 3588 "toml_parser", 3589 "winnow", 3590] 3591 3592[[package]] 3593name = "toml_parser" 3594version = "1.1.2+spec-1.1.0" 3595source = "registry+https://github.com/rust-lang/crates.io-index" 3596checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" 3597dependencies = [ 3598 "winnow", 3599] 3600 3601[[package]] 3602name = "tower" 3603version = "0.5.3" 3604source = "registry+https://github.com/rust-lang/crates.io-index" 3605checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" 3606dependencies = [ 3607 "futures-core", 3608 "futures-util", 3609 "pin-project-lite", 3610 "sync_wrapper", 3611 "tokio", 3612 "tower-layer", 3613 "tower-service", 3614] 3615 3616[[package]] 3617name = "tower-http" 3618version = "0.6.11" 3619source = "registry+https://github.com/rust-lang/crates.io-index" 3620checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" 3621dependencies = [ 3622 "bitflags", 3623 "bytes", 3624 "futures-util", 3625 "http", 3626 "http-body", 3627 "pin-project-lite", 3628 "tower", 3629 "tower-layer", 3630 "tower-service", 3631 "url", 3632] 3633 3634[[package]] 3635name = "tower-layer" 3636version = "0.3.3" 3637source = "registry+https://github.com/rust-lang/crates.io-index" 3638checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 3639 3640[[package]] 3641name = "tower-service" 3642version = "0.3.3" 3643source = "registry+https://github.com/rust-lang/crates.io-index" 3644checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 3645 3646[[package]] 3647name = "tracing" 3648version = "0.1.44" 3649source = "registry+https://github.com/rust-lang/crates.io-index" 3650checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" 3651dependencies = [ 3652 "log", 3653 "pin-project-lite", 3654 "tracing-attributes", 3655 "tracing-core", 3656] 3657 3658[[package]] 3659name = "tracing-attributes" 3660version = "0.1.31" 3661source = "registry+https://github.com/rust-lang/crates.io-index" 3662checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" 3663dependencies = [ 3664 "proc-macro2", 3665 "quote", 3666 "syn 2.0.119", 3667] 3668 3669[[package]] 3670name = "tracing-core" 3671version = "0.1.36" 3672source = "registry+https://github.com/rust-lang/crates.io-index" 3673checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" 3674dependencies = [ 3675 "once_cell", 3676 "valuable", 3677] 3678 3679[[package]] 3680name = "tracing-log" 3681version = "0.2.0" 3682source = "registry+https://github.com/rust-lang/crates.io-index" 3683checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 3684dependencies = [ 3685 "log", 3686 "once_cell", 3687 "tracing-core", 3688] 3689 3690[[package]] 3691name = "tracing-subscriber" 3692version = "0.3.23" 3693source = "registry+https://github.com/rust-lang/crates.io-index" 3694checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" 3695dependencies = [ 3696 "matchers", 3697 "nu-ansi-term", 3698 "once_cell", 3699 "regex-automata", 3700 "sharded-slab", 3701 "smallvec", 3702 "thread_local", 3703 "tracing", 3704 "tracing-core", 3705 "tracing-log", 3706] 3707 3708[[package]] 3709name = "try-lock" 3710version = "0.2.5" 3711source = "registry+https://github.com/rust-lang/crates.io-index" 3712checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 3713 3714[[package]] 3715name = "typenum" 3716version = "1.20.1" 3717source = "registry+https://github.com/rust-lang/crates.io-index" 3718checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" 3719 3720[[package]] 3721name = "unicode-ident" 3722version = "1.0.24" 3723source = "registry+https://github.com/rust-lang/crates.io-index" 3724checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" 3725 3726[[package]] 3727name = "unicode-segmentation" 3728version = "1.13.3" 3729source = "registry+https://github.com/rust-lang/crates.io-index" 3730checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8" 3731 3732[[package]] 3733name = "unicode-xid" 3734version = "0.2.6" 3735source = "registry+https://github.com/rust-lang/crates.io-index" 3736checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" 3737 3738[[package]] 3739name = "universal-hash" 3740version = "0.5.1" 3741source = "registry+https://github.com/rust-lang/crates.io-index" 3742checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" 3743dependencies = [ 3744 "crypto-common 0.1.7", 3745 "subtle", 3746] 3747 3748[[package]] 3749name = "untrusted" 3750version = "0.9.0" 3751source = "registry+https://github.com/rust-lang/crates.io-index" 3752checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 3753 3754[[package]] 3755name = "url" 3756version = "2.5.8" 3757source = "registry+https://github.com/rust-lang/crates.io-index" 3758checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" 3759dependencies = [ 3760 "form_urlencoded", 3761 "idna", 3762 "percent-encoding", 3763 "serde", 3764 "serde_derive", 3765] 3766 3767[[package]] 3768name = "utf8_iter" 3769version = "1.0.4" 3770source = "registry+https://github.com/rust-lang/crates.io-index" 3771checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 3772 3773[[package]] 3774name = "utf8parse" 3775version = "0.2.2" 3776source = "registry+https://github.com/rust-lang/crates.io-index" 3777checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 3778 3779[[package]] 3780name = "uuid" 3781version = "1.24.0" 3782source = "registry+https://github.com/rust-lang/crates.io-index" 3783checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239" 3784dependencies = [ 3785 "getrandom 0.4.3", 3786 "js-sys", 3787 "wasm-bindgen", 3788] 3789 3790[[package]] 3791name = "valuable" 3792version = "0.1.1" 3793source = "registry+https://github.com/rust-lang/crates.io-index" 3794checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 3795 3796[[package]] 3797name = "version_check" 3798version = "0.9.5" 3799source = "registry+https://github.com/rust-lang/crates.io-index" 3800checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 3801 3802[[package]] 3803name = "walkdir" 3804version = "2.5.0" 3805source = "registry+https://github.com/rust-lang/crates.io-index" 3806checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" 3807dependencies = [ 3808 "same-file", 3809 "winapi-util", 3810] 3811 3812[[package]] 3813name = "want" 3814version = "0.3.1" 3815source = "registry+https://github.com/rust-lang/crates.io-index" 3816checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 3817dependencies = [ 3818 "try-lock", 3819] 3820 3821[[package]] 3822name = "wasi" 3823version = "0.11.1+wasi-snapshot-preview1" 3824source = "registry+https://github.com/rust-lang/crates.io-index" 3825checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" 3826 3827[[package]] 3828name = "wasm-bindgen" 3829version = "0.2.126" 3830source = "registry+https://github.com/rust-lang/crates.io-index" 3831checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4" 3832dependencies = [ 3833 "cfg-if", 3834 "once_cell", 3835 "rustversion", 3836 "wasm-bindgen-macro", 3837 "wasm-bindgen-shared", 3838] 3839 3840[[package]] 3841name = "wasm-bindgen-futures" 3842version = "0.4.76" 3843source = "registry+https://github.com/rust-lang/crates.io-index" 3844checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d" 3845dependencies = [ 3846 "js-sys", 3847 "wasm-bindgen", 3848] 3849 3850[[package]] 3851name = "wasm-bindgen-macro" 3852version = "0.2.126" 3853source = "registry+https://github.com/rust-lang/crates.io-index" 3854checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1" 3855dependencies = [ 3856 "quote", 3857 "wasm-bindgen-macro-support", 3858] 3859 3860[[package]] 3861name = "wasm-bindgen-macro-support" 3862version = "0.2.126" 3863source = "registry+https://github.com/rust-lang/crates.io-index" 3864checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e" 3865dependencies = [ 3866 "bumpalo", 3867 "proc-macro2", 3868 "quote", 3869 "syn 2.0.119", 3870 "wasm-bindgen-shared", 3871] 3872 3873[[package]] 3874name = "wasm-bindgen-shared" 3875version = "0.2.126" 3876source = "registry+https://github.com/rust-lang/crates.io-index" 3877checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24" 3878dependencies = [ 3879 "unicode-ident", 3880] 3881 3882[[package]] 3883name = "wasm-streams" 3884version = "0.5.0" 3885source = "registry+https://github.com/rust-lang/crates.io-index" 3886checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb" 3887dependencies = [ 3888 "futures-util", 3889 "js-sys", 3890 "wasm-bindgen", 3891 "wasm-bindgen-futures", 3892 "web-sys", 3893] 3894 3895[[package]] 3896name = "web-sys" 3897version = "0.3.103" 3898source = "registry+https://github.com/rust-lang/crates.io-index" 3899checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141" 3900dependencies = [ 3901 "js-sys", 3902 "wasm-bindgen", 3903] 3904 3905[[package]] 3906name = "web-time" 3907version = "1.1.0" 3908source = "registry+https://github.com/rust-lang/crates.io-index" 3909checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 3910dependencies = [ 3911 "js-sys", 3912 "wasm-bindgen", 3913] 3914 3915[[package]] 3916name = "webpki-root-certs" 3917version = "1.0.9" 3918source = "registry+https://github.com/rust-lang/crates.io-index" 3919checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b" 3920dependencies = [ 3921 "rustls-pki-types", 3922] 3923 3924[[package]] 3925name = "webpki-roots" 3926version = "0.26.11" 3927source = "registry+https://github.com/rust-lang/crates.io-index" 3928checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" 3929dependencies = [ 3930 "webpki-roots 1.0.9", 3931] 3932 3933[[package]] 3934name = "webpki-roots" 3935version = "1.0.9" 3936source = "registry+https://github.com/rust-lang/crates.io-index" 3937checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a" 3938dependencies = [ 3939 "rustls-pki-types", 3940] 3941 3942[[package]] 3943name = "widestring" 3944version = "1.2.1" 3945source = "registry+https://github.com/rust-lang/crates.io-index" 3946checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" 3947 3948[[package]] 3949name = "winapi" 3950version = "0.3.9" 3951source = "registry+https://github.com/rust-lang/crates.io-index" 3952checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 3953dependencies = [ 3954 "winapi-i686-pc-windows-gnu", 3955 "winapi-x86_64-pc-windows-gnu", 3956] 3957 3958[[package]] 3959name = "winapi-i686-pc-windows-gnu" 3960version = "0.4.0" 3961source = "registry+https://github.com/rust-lang/crates.io-index" 3962checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 3963 3964[[package]] 3965name = "winapi-util" 3966version = "0.1.11" 3967source = "registry+https://github.com/rust-lang/crates.io-index" 3968checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" 3969dependencies = [ 3970 "windows-sys 0.61.2", 3971] 3972 3973[[package]] 3974name = "winapi-x86_64-pc-windows-gnu" 3975version = "0.4.0" 3976source = "registry+https://github.com/rust-lang/crates.io-index" 3977checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 3978 3979[[package]] 3980name = "windows" 3981version = "0.62.2" 3982source = "registry+https://github.com/rust-lang/crates.io-index" 3983checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580" 3984dependencies = [ 3985 "windows-collections", 3986 "windows-core", 3987 "windows-future", 3988 "windows-numerics", 3989] 3990 3991[[package]] 3992name = "windows-collections" 3993version = "0.3.2" 3994source = "registry+https://github.com/rust-lang/crates.io-index" 3995checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610" 3996dependencies = [ 3997 "windows-core", 3998] 3999 4000[[package]] 4001name = "windows-core" 4002version = "0.62.2" 4003source = "registry+https://github.com/rust-lang/crates.io-index" 4004checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" 4005dependencies = [ 4006 "windows-implement", 4007 "windows-interface", 4008 "windows-link", 4009 "windows-result", 4010 "windows-strings", 4011] 4012 4013[[package]] 4014name = "windows-future" 4015version = "0.3.2" 4016source = "registry+https://github.com/rust-lang/crates.io-index" 4017checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb" 4018dependencies = [ 4019 "windows-core", 4020 "windows-link", 4021 "windows-threading", 4022] 4023 4024[[package]] 4025name = "windows-implement" 4026version = "0.60.2" 4027source = "registry+https://github.com/rust-lang/crates.io-index" 4028checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" 4029dependencies = [ 4030 "proc-macro2", 4031 "quote", 4032 "syn 2.0.119", 4033] 4034 4035[[package]] 4036name = "windows-interface" 4037version = "0.59.3" 4038source = "registry+https://github.com/rust-lang/crates.io-index" 4039checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" 4040dependencies = [ 4041 "proc-macro2", 4042 "quote", 4043 "syn 2.0.119", 4044] 4045 4046[[package]] 4047name = "windows-link" 4048version = "0.2.1" 4049source = "registry+https://github.com/rust-lang/crates.io-index" 4050checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 4051 4052[[package]] 4053name = "windows-numerics" 4054version = "0.3.1" 4055source = "registry+https://github.com/rust-lang/crates.io-index" 4056checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26" 4057dependencies = [ 4058 "windows-core", 4059 "windows-link", 4060] 4061 4062[[package]] 4063name = "windows-registry" 4064version = "0.6.1" 4065source = "registry+https://github.com/rust-lang/crates.io-index" 4066checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" 4067dependencies = [ 4068 "windows-link", 4069 "windows-result", 4070 "windows-strings", 4071] 4072 4073[[package]] 4074name = "windows-result" 4075version = "0.4.1" 4076source = "registry+https://github.com/rust-lang/crates.io-index" 4077checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" 4078dependencies = [ 4079 "windows-link", 4080] 4081 4082[[package]] 4083name = "windows-strings" 4084version = "0.5.1" 4085source = "registry+https://github.com/rust-lang/crates.io-index" 4086checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" 4087dependencies = [ 4088 "windows-link", 4089] 4090 4091[[package]] 4092name = "windows-sys" 4093version = "0.45.0" 4094source = "registry+https://github.com/rust-lang/crates.io-index" 4095checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 4096dependencies = [ 4097 "windows-targets 0.42.2", 4098] 4099 4100[[package]] 4101name = "windows-sys" 4102version = "0.52.0" 4103source = "registry+https://github.com/rust-lang/crates.io-index" 4104checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 4105dependencies = [ 4106 "windows-targets 0.52.6", 4107] 4108 4109[[package]] 4110name = "windows-sys" 4111version = "0.61.2" 4112source = "registry+https://github.com/rust-lang/crates.io-index" 4113checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 4114dependencies = [ 4115 "windows-link", 4116] 4117 4118[[package]] 4119name = "windows-targets" 4120version = "0.42.2" 4121source = "registry+https://github.com/rust-lang/crates.io-index" 4122checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 4123dependencies = [ 4124 "windows_aarch64_gnullvm 0.42.2", 4125 "windows_aarch64_msvc 0.42.2", 4126 "windows_i686_gnu 0.42.2", 4127 "windows_i686_msvc 0.42.2", 4128 "windows_x86_64_gnu 0.42.2", 4129 "windows_x86_64_gnullvm 0.42.2", 4130 "windows_x86_64_msvc 0.42.2", 4131] 4132 4133[[package]] 4134name = "windows-targets" 4135version = "0.52.6" 4136source = "registry+https://github.com/rust-lang/crates.io-index" 4137checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 4138dependencies = [ 4139 "windows_aarch64_gnullvm 0.52.6", 4140 "windows_aarch64_msvc 0.52.6", 4141 "windows_i686_gnu 0.52.6", 4142 "windows_i686_gnullvm", 4143 "windows_i686_msvc 0.52.6", 4144 "windows_x86_64_gnu 0.52.6", 4145 "windows_x86_64_gnullvm 0.52.6", 4146 "windows_x86_64_msvc 0.52.6", 4147] 4148 4149[[package]] 4150name = "windows-threading" 4151version = "0.2.1" 4152source = "registry+https://github.com/rust-lang/crates.io-index" 4153checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37" 4154dependencies = [ 4155 "windows-link", 4156] 4157 4158[[package]] 4159name = "windows_aarch64_gnullvm" 4160version = "0.42.2" 4161source = "registry+https://github.com/rust-lang/crates.io-index" 4162checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 4163 4164[[package]] 4165name = "windows_aarch64_gnullvm" 4166version = "0.52.6" 4167source = "registry+https://github.com/rust-lang/crates.io-index" 4168checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 4169 4170[[package]] 4171name = "windows_aarch64_msvc" 4172version = "0.42.2" 4173source = "registry+https://github.com/rust-lang/crates.io-index" 4174checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 4175 4176[[package]] 4177name = "windows_aarch64_msvc" 4178version = "0.52.6" 4179source = "registry+https://github.com/rust-lang/crates.io-index" 4180checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 4181 4182[[package]] 4183name = "windows_i686_gnu" 4184version = "0.42.2" 4185source = "registry+https://github.com/rust-lang/crates.io-index" 4186checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 4187 4188[[package]] 4189name = "windows_i686_gnu" 4190version = "0.52.6" 4191source = "registry+https://github.com/rust-lang/crates.io-index" 4192checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 4193 4194[[package]] 4195name = "windows_i686_gnullvm" 4196version = "0.52.6" 4197source = "registry+https://github.com/rust-lang/crates.io-index" 4198checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 4199 4200[[package]] 4201name = "windows_i686_msvc" 4202version = "0.42.2" 4203source = "registry+https://github.com/rust-lang/crates.io-index" 4204checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 4205 4206[[package]] 4207name = "windows_i686_msvc" 4208version = "0.52.6" 4209source = "registry+https://github.com/rust-lang/crates.io-index" 4210checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 4211 4212[[package]] 4213name = "windows_x86_64_gnu" 4214version = "0.42.2" 4215source = "registry+https://github.com/rust-lang/crates.io-index" 4216checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 4217 4218[[package]] 4219name = "windows_x86_64_gnu" 4220version = "0.52.6" 4221source = "registry+https://github.com/rust-lang/crates.io-index" 4222checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 4223 4224[[package]] 4225name = "windows_x86_64_gnullvm" 4226version = "0.42.2" 4227source = "registry+https://github.com/rust-lang/crates.io-index" 4228checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 4229 4230[[package]] 4231name = "windows_x86_64_gnullvm" 4232version = "0.52.6" 4233source = "registry+https://github.com/rust-lang/crates.io-index" 4234checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 4235 4236[[package]] 4237name = "windows_x86_64_msvc" 4238version = "0.42.2" 4239source = "registry+https://github.com/rust-lang/crates.io-index" 4240checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 4241 4242[[package]] 4243name = "windows_x86_64_msvc" 4244version = "0.52.6" 4245source = "registry+https://github.com/rust-lang/crates.io-index" 4246checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 4247 4248[[package]] 4249name = "winnow" 4250version = "1.0.4" 4251source = "registry+https://github.com/rust-lang/crates.io-index" 4252checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81" 4253dependencies = [ 4254 "memchr", 4255] 4256 4257[[package]] 4258name = "wmi" 4259version = "0.18.4" 4260source = "registry+https://github.com/rust-lang/crates.io-index" 4261checksum = "7c81b85c57a57500e56669586496bf2abd5cf082b9d32995251185d105208b64" 4262dependencies = [ 4263 "chrono", 4264 "futures", 4265 "log", 4266 "serde", 4267 "thiserror 2.0.19", 4268 "windows", 4269 "windows-core", 4270] 4271 4272[[package]] 4273name = "writeable" 4274version = "0.6.3" 4275source = "registry+https://github.com/rust-lang/crates.io-index" 4276checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" 4277 4278[[package]] 4279name = "ws_stream_wasm" 4280version = "0.7.5" 4281source = "registry+https://github.com/rust-lang/crates.io-index" 4282checksum = "6c173014acad22e83f16403ee360115b38846fe754e735c5d9d3803fe70c6abc" 4283dependencies = [ 4284 "async_io_stream", 4285 "futures", 4286 "js-sys", 4287 "log", 4288 "pharos", 4289 "rustc_version", 4290 "send_wrapper", 4291 "thiserror 2.0.19", 4292 "wasm-bindgen", 4293 "wasm-bindgen-futures", 4294 "web-sys", 4295] 4296 4297[[package]] 4298name = "xml-rs" 4299version = "0.8.28" 4300source = "registry+https://github.com/rust-lang/crates.io-index" 4301checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f" 4302 4303[[package]] 4304name = "xmltree" 4305version = "0.10.3" 4306source = "registry+https://github.com/rust-lang/crates.io-index" 4307checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb" 4308dependencies = [ 4309 "xml-rs", 4310] 4311 4312[[package]] 4313name = "yasna" 4314version = "0.5.2" 4315source = "registry+https://github.com/rust-lang/crates.io-index" 4316checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" 4317dependencies = [ 4318 "time", 4319] 4320 4321[[package]] 4322name = "yoke" 4323version = "0.8.3" 4324source = "registry+https://github.com/rust-lang/crates.io-index" 4325checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" 4326dependencies = [ 4327 "stable_deref_trait", 4328 "yoke-derive", 4329 "zerofrom", 4330] 4331 4332[[package]] 4333name = "yoke-derive" 4334version = "0.8.2" 4335source = "registry+https://github.com/rust-lang/crates.io-index" 4336checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" 4337dependencies = [ 4338 "proc-macro2", 4339 "quote", 4340 "syn 2.0.119", 4341 "synstructure", 4342] 4343 4344[[package]] 4345name = "zerocopy" 4346version = "0.8.55" 4347source = "registry+https://github.com/rust-lang/crates.io-index" 4348checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb" 4349dependencies = [ 4350 "zerocopy-derive", 4351] 4352 4353[[package]] 4354name = "zerocopy-derive" 4355version = "0.8.55" 4356source = "registry+https://github.com/rust-lang/crates.io-index" 4357checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb" 4358dependencies = [ 4359 "proc-macro2", 4360 "quote", 4361 "syn 2.0.119", 4362] 4363 4364[[package]] 4365name = "zerofrom" 4366version = "0.1.8" 4367source = "registry+https://github.com/rust-lang/crates.io-index" 4368checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" 4369dependencies = [ 4370 "zerofrom-derive", 4371] 4372 4373[[package]] 4374name = "zerofrom-derive" 4375version = "0.1.7" 4376source = "registry+https://github.com/rust-lang/crates.io-index" 4377checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" 4378dependencies = [ 4379 "proc-macro2", 4380 "quote", 4381 "syn 2.0.119", 4382 "synstructure", 4383] 4384 4385[[package]] 4386name = "zeroize" 4387version = "1.9.0" 4388source = "registry+https://github.com/rust-lang/crates.io-index" 4389checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" 4390dependencies = [ 4391 "zeroize_derive", 4392] 4393 4394[[package]] 4395name = "zeroize_derive" 4396version = "1.5.0" 4397source = "registry+https://github.com/rust-lang/crates.io-index" 4398checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328" 4399dependencies = [ 4400 "proc-macro2", 4401 "quote", 4402 "syn 2.0.119", 4403] 4404 4405[[package]] 4406name = "zerotrie" 4407version = "0.2.4" 4408source = "registry+https://github.com/rust-lang/crates.io-index" 4409checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" 4410dependencies = [ 4411 "displaydoc", 4412 "yoke", 4413 "zerofrom", 4414] 4415 4416[[package]] 4417name = "zerovec" 4418version = "0.11.6" 4419source = "registry+https://github.com/rust-lang/crates.io-index" 4420checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" 4421dependencies = [ 4422 "yoke", 4423 "zerofrom", 4424 "zerovec-derive", 4425] 4426 4427[[package]] 4428name = "zerovec-derive" 4429version = "0.11.3" 4430source = "registry+https://github.com/rust-lang/crates.io-index" 4431checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" 4432dependencies = [ 4433 "proc-macro2", 4434 "quote", 4435 "syn 2.0.119", 4436]