Satellite tracking TUI using ratatui
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "addr2line" 7version = "0.24.2" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" 10dependencies = [ 11 "gimli", 12] 13 14[[package]] 15name = "adler2" 16version = "2.0.0" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" 19 20[[package]] 21name = "allocator-api2" 22version = "0.2.21" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" 25 26[[package]] 27name = "android-tzdata" 28version = "0.1.1" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 31 32[[package]] 33name = "android_system_properties" 34version = "0.1.5" 35source = "registry+https://github.com/rust-lang/crates.io-index" 36checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 37dependencies = [ 38 "libc", 39] 40 41[[package]] 42name = "atomic-waker" 43version = "1.1.2" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 46 47[[package]] 48name = "autocfg" 49version = "1.4.0" 50source = "registry+https://github.com/rust-lang/crates.io-index" 51checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" 52 53[[package]] 54name = "backtrace" 55version = "0.3.74" 56source = "registry+https://github.com/rust-lang/crates.io-index" 57checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" 58dependencies = [ 59 "addr2line", 60 "cfg-if", 61 "libc", 62 "miniz_oxide", 63 "object", 64 "rustc-demangle", 65 "windows-targets 0.52.6", 66] 67 68[[package]] 69name = "base64" 70version = "0.22.1" 71source = "registry+https://github.com/rust-lang/crates.io-index" 72checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 73 74[[package]] 75name = "bitflags" 76version = "2.9.0" 77source = "registry+https://github.com/rust-lang/crates.io-index" 78checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" 79 80[[package]] 81name = "bumpalo" 82version = "3.17.0" 83source = "registry+https://github.com/rust-lang/crates.io-index" 84checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" 85 86[[package]] 87name = "bytes" 88version = "1.10.1" 89source = "registry+https://github.com/rust-lang/crates.io-index" 90checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 91 92[[package]] 93name = "cassowary" 94version = "0.3.0" 95source = "registry+https://github.com/rust-lang/crates.io-index" 96checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" 97 98[[package]] 99name = "castaway" 100version = "0.2.3" 101source = "registry+https://github.com/rust-lang/crates.io-index" 102checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5" 103dependencies = [ 104 "rustversion", 105] 106 107[[package]] 108name = "cc" 109version = "1.2.20" 110source = "registry+https://github.com/rust-lang/crates.io-index" 111checksum = "04da6a0d40b948dfc4fa8f5bbf402b0fc1a64a28dbf7d12ffd683550f2c1b63a" 112dependencies = [ 113 "shlex", 114] 115 116[[package]] 117name = "cfg-if" 118version = "1.0.0" 119source = "registry+https://github.com/rust-lang/crates.io-index" 120checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 121 122[[package]] 123name = "chrono" 124version = "0.4.40" 125source = "registry+https://github.com/rust-lang/crates.io-index" 126checksum = "1a7964611d71df112cb1730f2ee67324fcf4d0fc6606acbbe9bfe06df124637c" 127dependencies = [ 128 "android-tzdata", 129 "iana-time-zone", 130 "js-sys", 131 "num-traits", 132 "serde", 133 "wasm-bindgen", 134 "windows-link", 135] 136 137[[package]] 138name = "compact_str" 139version = "0.8.1" 140source = "registry+https://github.com/rust-lang/crates.io-index" 141checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32" 142dependencies = [ 143 "castaway", 144 "cfg-if", 145 "itoa", 146 "rustversion", 147 "ryu", 148 "static_assertions", 149] 150 151[[package]] 152name = "core-foundation" 153version = "0.9.4" 154source = "registry+https://github.com/rust-lang/crates.io-index" 155checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 156dependencies = [ 157 "core-foundation-sys", 158 "libc", 159] 160 161[[package]] 162name = "core-foundation-sys" 163version = "0.8.7" 164source = "registry+https://github.com/rust-lang/crates.io-index" 165checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 166 167[[package]] 168name = "crossterm" 169version = "0.28.1" 170source = "registry+https://github.com/rust-lang/crates.io-index" 171checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6" 172dependencies = [ 173 "bitflags", 174 "crossterm_winapi", 175 "mio", 176 "parking_lot", 177 "rustix 0.38.44", 178 "signal-hook", 179 "signal-hook-mio", 180 "winapi", 181] 182 183[[package]] 184name = "crossterm_winapi" 185version = "0.9.1" 186source = "registry+https://github.com/rust-lang/crates.io-index" 187checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" 188dependencies = [ 189 "winapi", 190] 191 192[[package]] 193name = "darling" 194version = "0.20.11" 195source = "registry+https://github.com/rust-lang/crates.io-index" 196checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" 197dependencies = [ 198 "darling_core", 199 "darling_macro", 200] 201 202[[package]] 203name = "darling_core" 204version = "0.20.11" 205source = "registry+https://github.com/rust-lang/crates.io-index" 206checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" 207dependencies = [ 208 "fnv", 209 "ident_case", 210 "proc-macro2", 211 "quote", 212 "strsim", 213 "syn", 214] 215 216[[package]] 217name = "darling_macro" 218version = "0.20.11" 219source = "registry+https://github.com/rust-lang/crates.io-index" 220checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" 221dependencies = [ 222 "darling_core", 223 "quote", 224 "syn", 225] 226 227[[package]] 228name = "displaydoc" 229version = "0.2.5" 230source = "registry+https://github.com/rust-lang/crates.io-index" 231checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 232dependencies = [ 233 "proc-macro2", 234 "quote", 235 "syn", 236] 237 238[[package]] 239name = "either" 240version = "1.15.0" 241source = "registry+https://github.com/rust-lang/crates.io-index" 242checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 243 244[[package]] 245name = "encoding_rs" 246version = "0.8.35" 247source = "registry+https://github.com/rust-lang/crates.io-index" 248checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 249dependencies = [ 250 "cfg-if", 251] 252 253[[package]] 254name = "equivalent" 255version = "1.0.2" 256source = "registry+https://github.com/rust-lang/crates.io-index" 257checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 258 259[[package]] 260name = "errno" 261version = "0.3.11" 262source = "registry+https://github.com/rust-lang/crates.io-index" 263checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e" 264dependencies = [ 265 "libc", 266 "windows-sys 0.59.0", 267] 268 269[[package]] 270name = "fastrand" 271version = "2.3.0" 272source = "registry+https://github.com/rust-lang/crates.io-index" 273checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 274 275[[package]] 276name = "fnv" 277version = "1.0.7" 278source = "registry+https://github.com/rust-lang/crates.io-index" 279checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 280 281[[package]] 282name = "foldhash" 283version = "0.1.5" 284source = "registry+https://github.com/rust-lang/crates.io-index" 285checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" 286 287[[package]] 288name = "foreign-types" 289version = "0.3.2" 290source = "registry+https://github.com/rust-lang/crates.io-index" 291checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 292dependencies = [ 293 "foreign-types-shared", 294] 295 296[[package]] 297name = "foreign-types-shared" 298version = "0.1.1" 299source = "registry+https://github.com/rust-lang/crates.io-index" 300checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 301 302[[package]] 303name = "form_urlencoded" 304version = "1.2.1" 305source = "registry+https://github.com/rust-lang/crates.io-index" 306checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 307dependencies = [ 308 "percent-encoding", 309] 310 311[[package]] 312name = "futures-channel" 313version = "0.3.31" 314source = "registry+https://github.com/rust-lang/crates.io-index" 315checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" 316dependencies = [ 317 "futures-core", 318] 319 320[[package]] 321name = "futures-core" 322version = "0.3.31" 323source = "registry+https://github.com/rust-lang/crates.io-index" 324checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 325 326[[package]] 327name = "futures-sink" 328version = "0.3.31" 329source = "registry+https://github.com/rust-lang/crates.io-index" 330checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 331 332[[package]] 333name = "futures-task" 334version = "0.3.31" 335source = "registry+https://github.com/rust-lang/crates.io-index" 336checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 337 338[[package]] 339name = "futures-util" 340version = "0.3.31" 341source = "registry+https://github.com/rust-lang/crates.io-index" 342checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 343dependencies = [ 344 "futures-core", 345 "futures-task", 346 "pin-project-lite", 347 "pin-utils", 348] 349 350[[package]] 351name = "getrandom" 352version = "0.2.16" 353source = "registry+https://github.com/rust-lang/crates.io-index" 354checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" 355dependencies = [ 356 "cfg-if", 357 "libc", 358 "wasi 0.11.0+wasi-snapshot-preview1", 359] 360 361[[package]] 362name = "getrandom" 363version = "0.3.2" 364source = "registry+https://github.com/rust-lang/crates.io-index" 365checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0" 366dependencies = [ 367 "cfg-if", 368 "libc", 369 "r-efi", 370 "wasi 0.14.2+wasi-0.2.4", 371] 372 373[[package]] 374name = "gimli" 375version = "0.31.1" 376source = "registry+https://github.com/rust-lang/crates.io-index" 377checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" 378 379[[package]] 380name = "h2" 381version = "0.4.9" 382source = "registry+https://github.com/rust-lang/crates.io-index" 383checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633" 384dependencies = [ 385 "atomic-waker", 386 "bytes", 387 "fnv", 388 "futures-core", 389 "futures-sink", 390 "http", 391 "indexmap", 392 "slab", 393 "tokio", 394 "tokio-util", 395 "tracing", 396] 397 398[[package]] 399name = "hashbrown" 400version = "0.15.2" 401source = "registry+https://github.com/rust-lang/crates.io-index" 402checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" 403dependencies = [ 404 "allocator-api2", 405 "equivalent", 406 "foldhash", 407] 408 409[[package]] 410name = "heck" 411version = "0.5.0" 412source = "registry+https://github.com/rust-lang/crates.io-index" 413checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 414 415[[package]] 416name = "http" 417version = "1.3.1" 418source = "registry+https://github.com/rust-lang/crates.io-index" 419checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 420dependencies = [ 421 "bytes", 422 "fnv", 423 "itoa", 424] 425 426[[package]] 427name = "http-body" 428version = "1.0.1" 429source = "registry+https://github.com/rust-lang/crates.io-index" 430checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 431dependencies = [ 432 "bytes", 433 "http", 434] 435 436[[package]] 437name = "http-body-util" 438version = "0.1.3" 439source = "registry+https://github.com/rust-lang/crates.io-index" 440checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" 441dependencies = [ 442 "bytes", 443 "futures-core", 444 "http", 445 "http-body", 446 "pin-project-lite", 447] 448 449[[package]] 450name = "httparse" 451version = "1.10.1" 452source = "registry+https://github.com/rust-lang/crates.io-index" 453checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 454 455[[package]] 456name = "hyper" 457version = "1.6.0" 458source = "registry+https://github.com/rust-lang/crates.io-index" 459checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" 460dependencies = [ 461 "bytes", 462 "futures-channel", 463 "futures-util", 464 "h2", 465 "http", 466 "http-body", 467 "httparse", 468 "itoa", 469 "pin-project-lite", 470 "smallvec", 471 "tokio", 472 "want", 473] 474 475[[package]] 476name = "hyper-rustls" 477version = "0.27.5" 478source = "registry+https://github.com/rust-lang/crates.io-index" 479checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" 480dependencies = [ 481 "futures-util", 482 "http", 483 "hyper", 484 "hyper-util", 485 "rustls", 486 "rustls-pki-types", 487 "tokio", 488 "tokio-rustls", 489 "tower-service", 490] 491 492[[package]] 493name = "hyper-tls" 494version = "0.6.0" 495source = "registry+https://github.com/rust-lang/crates.io-index" 496checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" 497dependencies = [ 498 "bytes", 499 "http-body-util", 500 "hyper", 501 "hyper-util", 502 "native-tls", 503 "tokio", 504 "tokio-native-tls", 505 "tower-service", 506] 507 508[[package]] 509name = "hyper-util" 510version = "0.1.11" 511source = "registry+https://github.com/rust-lang/crates.io-index" 512checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2" 513dependencies = [ 514 "bytes", 515 "futures-channel", 516 "futures-util", 517 "http", 518 "http-body", 519 "hyper", 520 "libc", 521 "pin-project-lite", 522 "socket2", 523 "tokio", 524 "tower-service", 525 "tracing", 526] 527 528[[package]] 529name = "iana-time-zone" 530version = "0.1.63" 531source = "registry+https://github.com/rust-lang/crates.io-index" 532checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" 533dependencies = [ 534 "android_system_properties", 535 "core-foundation-sys", 536 "iana-time-zone-haiku", 537 "js-sys", 538 "log", 539 "wasm-bindgen", 540 "windows-core", 541] 542 543[[package]] 544name = "iana-time-zone-haiku" 545version = "0.1.2" 546source = "registry+https://github.com/rust-lang/crates.io-index" 547checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 548dependencies = [ 549 "cc", 550] 551 552[[package]] 553name = "icu_collections" 554version = "1.5.0" 555source = "registry+https://github.com/rust-lang/crates.io-index" 556checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" 557dependencies = [ 558 "displaydoc", 559 "yoke", 560 "zerofrom", 561 "zerovec", 562] 563 564[[package]] 565name = "icu_locid" 566version = "1.5.0" 567source = "registry+https://github.com/rust-lang/crates.io-index" 568checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" 569dependencies = [ 570 "displaydoc", 571 "litemap", 572 "tinystr", 573 "writeable", 574 "zerovec", 575] 576 577[[package]] 578name = "icu_locid_transform" 579version = "1.5.0" 580source = "registry+https://github.com/rust-lang/crates.io-index" 581checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" 582dependencies = [ 583 "displaydoc", 584 "icu_locid", 585 "icu_locid_transform_data", 586 "icu_provider", 587 "tinystr", 588 "zerovec", 589] 590 591[[package]] 592name = "icu_locid_transform_data" 593version = "1.5.1" 594source = "registry+https://github.com/rust-lang/crates.io-index" 595checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d" 596 597[[package]] 598name = "icu_normalizer" 599version = "1.5.0" 600source = "registry+https://github.com/rust-lang/crates.io-index" 601checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" 602dependencies = [ 603 "displaydoc", 604 "icu_collections", 605 "icu_normalizer_data", 606 "icu_properties", 607 "icu_provider", 608 "smallvec", 609 "utf16_iter", 610 "utf8_iter", 611 "write16", 612 "zerovec", 613] 614 615[[package]] 616name = "icu_normalizer_data" 617version = "1.5.1" 618source = "registry+https://github.com/rust-lang/crates.io-index" 619checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7" 620 621[[package]] 622name = "icu_properties" 623version = "1.5.1" 624source = "registry+https://github.com/rust-lang/crates.io-index" 625checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" 626dependencies = [ 627 "displaydoc", 628 "icu_collections", 629 "icu_locid_transform", 630 "icu_properties_data", 631 "icu_provider", 632 "tinystr", 633 "zerovec", 634] 635 636[[package]] 637name = "icu_properties_data" 638version = "1.5.1" 639source = "registry+https://github.com/rust-lang/crates.io-index" 640checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2" 641 642[[package]] 643name = "icu_provider" 644version = "1.5.0" 645source = "registry+https://github.com/rust-lang/crates.io-index" 646checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" 647dependencies = [ 648 "displaydoc", 649 "icu_locid", 650 "icu_provider_macros", 651 "stable_deref_trait", 652 "tinystr", 653 "writeable", 654 "yoke", 655 "zerofrom", 656 "zerovec", 657] 658 659[[package]] 660name = "icu_provider_macros" 661version = "1.5.0" 662source = "registry+https://github.com/rust-lang/crates.io-index" 663checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" 664dependencies = [ 665 "proc-macro2", 666 "quote", 667 "syn", 668] 669 670[[package]] 671name = "ident_case" 672version = "1.0.1" 673source = "registry+https://github.com/rust-lang/crates.io-index" 674checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 675 676[[package]] 677name = "idna" 678version = "1.0.3" 679source = "registry+https://github.com/rust-lang/crates.io-index" 680checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" 681dependencies = [ 682 "idna_adapter", 683 "smallvec", 684 "utf8_iter", 685] 686 687[[package]] 688name = "idna_adapter" 689version = "1.2.0" 690source = "registry+https://github.com/rust-lang/crates.io-index" 691checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" 692dependencies = [ 693 "icu_normalizer", 694 "icu_properties", 695] 696 697[[package]] 698name = "indexmap" 699version = "2.9.0" 700source = "registry+https://github.com/rust-lang/crates.io-index" 701checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" 702dependencies = [ 703 "equivalent", 704 "hashbrown", 705] 706 707[[package]] 708name = "indoc" 709version = "2.0.6" 710source = "registry+https://github.com/rust-lang/crates.io-index" 711checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd" 712 713[[package]] 714name = "instability" 715version = "0.3.7" 716source = "registry+https://github.com/rust-lang/crates.io-index" 717checksum = "0bf9fed6d91cfb734e7476a06bde8300a1b94e217e1b523b6f0cd1a01998c71d" 718dependencies = [ 719 "darling", 720 "indoc", 721 "proc-macro2", 722 "quote", 723 "syn", 724] 725 726[[package]] 727name = "ipnet" 728version = "2.11.0" 729source = "registry+https://github.com/rust-lang/crates.io-index" 730checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" 731 732[[package]] 733name = "itertools" 734version = "0.13.0" 735source = "registry+https://github.com/rust-lang/crates.io-index" 736checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" 737dependencies = [ 738 "either", 739] 740 741[[package]] 742name = "itoa" 743version = "1.0.15" 744source = "registry+https://github.com/rust-lang/crates.io-index" 745checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 746 747[[package]] 748name = "js-sys" 749version = "0.3.77" 750source = "registry+https://github.com/rust-lang/crates.io-index" 751checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 752dependencies = [ 753 "once_cell", 754 "wasm-bindgen", 755] 756 757[[package]] 758name = "lazy_static" 759version = "1.5.0" 760source = "registry+https://github.com/rust-lang/crates.io-index" 761checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" 762 763[[package]] 764name = "libc" 765version = "0.2.172" 766source = "registry+https://github.com/rust-lang/crates.io-index" 767checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" 768 769[[package]] 770name = "linux-raw-sys" 771version = "0.4.15" 772source = "registry+https://github.com/rust-lang/crates.io-index" 773checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" 774 775[[package]] 776name = "linux-raw-sys" 777version = "0.9.4" 778source = "registry+https://github.com/rust-lang/crates.io-index" 779checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" 780 781[[package]] 782name = "litemap" 783version = "0.7.5" 784source = "registry+https://github.com/rust-lang/crates.io-index" 785checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856" 786 787[[package]] 788name = "lock_api" 789version = "0.4.12" 790source = "registry+https://github.com/rust-lang/crates.io-index" 791checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 792dependencies = [ 793 "autocfg", 794 "scopeguard", 795] 796 797[[package]] 798name = "log" 799version = "0.4.27" 800source = "registry+https://github.com/rust-lang/crates.io-index" 801checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" 802 803[[package]] 804name = "lru" 805version = "0.12.5" 806source = "registry+https://github.com/rust-lang/crates.io-index" 807checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" 808dependencies = [ 809 "hashbrown", 810] 811 812[[package]] 813name = "memchr" 814version = "2.7.4" 815source = "registry+https://github.com/rust-lang/crates.io-index" 816checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 817 818[[package]] 819name = "mime" 820version = "0.3.17" 821source = "registry+https://github.com/rust-lang/crates.io-index" 822checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 823 824[[package]] 825name = "miniz_oxide" 826version = "0.8.8" 827source = "registry+https://github.com/rust-lang/crates.io-index" 828checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a" 829dependencies = [ 830 "adler2", 831] 832 833[[package]] 834name = "mio" 835version = "1.0.3" 836source = "registry+https://github.com/rust-lang/crates.io-index" 837checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" 838dependencies = [ 839 "libc", 840 "log", 841 "wasi 0.11.0+wasi-snapshot-preview1", 842 "windows-sys 0.52.0", 843] 844 845[[package]] 846name = "native-tls" 847version = "0.2.14" 848source = "registry+https://github.com/rust-lang/crates.io-index" 849checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" 850dependencies = [ 851 "libc", 852 "log", 853 "openssl", 854 "openssl-probe", 855 "openssl-sys", 856 "schannel", 857 "security-framework", 858 "security-framework-sys", 859 "tempfile", 860] 861 862[[package]] 863name = "nu-ansi-term" 864version = "0.46.0" 865source = "registry+https://github.com/rust-lang/crates.io-index" 866checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 867dependencies = [ 868 "overload", 869 "winapi", 870] 871 872[[package]] 873name = "num-traits" 874version = "0.2.19" 875source = "registry+https://github.com/rust-lang/crates.io-index" 876checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 877dependencies = [ 878 "autocfg", 879] 880 881[[package]] 882name = "object" 883version = "0.36.7" 884source = "registry+https://github.com/rust-lang/crates.io-index" 885checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" 886dependencies = [ 887 "memchr", 888] 889 890[[package]] 891name = "once_cell" 892version = "1.21.3" 893source = "registry+https://github.com/rust-lang/crates.io-index" 894checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 895 896[[package]] 897name = "openssl" 898version = "0.10.72" 899source = "registry+https://github.com/rust-lang/crates.io-index" 900checksum = "fedfea7d58a1f73118430a55da6a286e7b044961736ce96a16a17068ea25e5da" 901dependencies = [ 902 "bitflags", 903 "cfg-if", 904 "foreign-types", 905 "libc", 906 "once_cell", 907 "openssl-macros", 908 "openssl-sys", 909] 910 911[[package]] 912name = "openssl-macros" 913version = "0.1.1" 914source = "registry+https://github.com/rust-lang/crates.io-index" 915checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 916dependencies = [ 917 "proc-macro2", 918 "quote", 919 "syn", 920] 921 922[[package]] 923name = "openssl-probe" 924version = "0.1.6" 925source = "registry+https://github.com/rust-lang/crates.io-index" 926checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" 927 928[[package]] 929name = "openssl-sys" 930version = "0.9.107" 931source = "registry+https://github.com/rust-lang/crates.io-index" 932checksum = "8288979acd84749c744a9014b4382d42b8f7b2592847b5afb2ed29e5d16ede07" 933dependencies = [ 934 "cc", 935 "libc", 936 "pkg-config", 937 "vcpkg", 938] 939 940[[package]] 941name = "overload" 942version = "0.1.1" 943source = "registry+https://github.com/rust-lang/crates.io-index" 944checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 945 946[[package]] 947name = "parking_lot" 948version = "0.12.3" 949source = "registry+https://github.com/rust-lang/crates.io-index" 950checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" 951dependencies = [ 952 "lock_api", 953 "parking_lot_core", 954] 955 956[[package]] 957name = "parking_lot_core" 958version = "0.9.10" 959source = "registry+https://github.com/rust-lang/crates.io-index" 960checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 961dependencies = [ 962 "cfg-if", 963 "libc", 964 "redox_syscall", 965 "smallvec", 966 "windows-targets 0.52.6", 967] 968 969[[package]] 970name = "paste" 971version = "1.0.15" 972source = "registry+https://github.com/rust-lang/crates.io-index" 973checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 974 975[[package]] 976name = "percent-encoding" 977version = "2.3.1" 978source = "registry+https://github.com/rust-lang/crates.io-index" 979checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 980 981[[package]] 982name = "pin-project-lite" 983version = "0.2.16" 984source = "registry+https://github.com/rust-lang/crates.io-index" 985checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 986 987[[package]] 988name = "pin-utils" 989version = "0.1.0" 990source = "registry+https://github.com/rust-lang/crates.io-index" 991checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 992 993[[package]] 994name = "pkg-config" 995version = "0.3.32" 996source = "registry+https://github.com/rust-lang/crates.io-index" 997checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 998 999[[package]] 1000name = "proc-macro2" 1001version = "1.0.95" 1002source = "registry+https://github.com/rust-lang/crates.io-index" 1003checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" 1004dependencies = [ 1005 "unicode-ident", 1006] 1007 1008[[package]] 1009name = "quote" 1010version = "1.0.40" 1011source = "registry+https://github.com/rust-lang/crates.io-index" 1012checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 1013dependencies = [ 1014 "proc-macro2", 1015] 1016 1017[[package]] 1018name = "r-efi" 1019version = "5.2.0" 1020source = "registry+https://github.com/rust-lang/crates.io-index" 1021checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" 1022 1023[[package]] 1024name = "ratatui" 1025version = "0.29.0" 1026source = "registry+https://github.com/rust-lang/crates.io-index" 1027checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b" 1028dependencies = [ 1029 "bitflags", 1030 "cassowary", 1031 "compact_str", 1032 "crossterm", 1033 "indoc", 1034 "instability", 1035 "itertools", 1036 "lru", 1037 "paste", 1038 "strum", 1039 "unicode-segmentation", 1040 "unicode-truncate", 1041 "unicode-width 0.2.0", 1042] 1043 1044[[package]] 1045name = "redox_syscall" 1046version = "0.5.11" 1047source = "registry+https://github.com/rust-lang/crates.io-index" 1048checksum = "d2f103c6d277498fbceb16e84d317e2a400f160f46904d5f5410848c829511a3" 1049dependencies = [ 1050 "bitflags", 1051] 1052 1053[[package]] 1054name = "reqwest" 1055version = "0.12.15" 1056source = "registry+https://github.com/rust-lang/crates.io-index" 1057checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb" 1058dependencies = [ 1059 "base64", 1060 "bytes", 1061 "encoding_rs", 1062 "futures-core", 1063 "futures-util", 1064 "h2", 1065 "http", 1066 "http-body", 1067 "http-body-util", 1068 "hyper", 1069 "hyper-rustls", 1070 "hyper-tls", 1071 "hyper-util", 1072 "ipnet", 1073 "js-sys", 1074 "log", 1075 "mime", 1076 "native-tls", 1077 "once_cell", 1078 "percent-encoding", 1079 "pin-project-lite", 1080 "rustls-pemfile", 1081 "serde", 1082 "serde_json", 1083 "serde_urlencoded", 1084 "sync_wrapper", 1085 "system-configuration", 1086 "tokio", 1087 "tokio-native-tls", 1088 "tower", 1089 "tower-service", 1090 "url", 1091 "wasm-bindgen", 1092 "wasm-bindgen-futures", 1093 "web-sys", 1094 "windows-registry", 1095] 1096 1097[[package]] 1098name = "ring" 1099version = "0.17.14" 1100source = "registry+https://github.com/rust-lang/crates.io-index" 1101checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" 1102dependencies = [ 1103 "cc", 1104 "cfg-if", 1105 "getrandom 0.2.16", 1106 "libc", 1107 "untrusted", 1108 "windows-sys 0.52.0", 1109] 1110 1111[[package]] 1112name = "rustc-demangle" 1113version = "0.1.24" 1114source = "registry+https://github.com/rust-lang/crates.io-index" 1115checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 1116 1117[[package]] 1118name = "rustix" 1119version = "0.38.44" 1120source = "registry+https://github.com/rust-lang/crates.io-index" 1121checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 1122dependencies = [ 1123 "bitflags", 1124 "errno", 1125 "libc", 1126 "linux-raw-sys 0.4.15", 1127 "windows-sys 0.59.0", 1128] 1129 1130[[package]] 1131name = "rustix" 1132version = "1.0.5" 1133source = "registry+https://github.com/rust-lang/crates.io-index" 1134checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf" 1135dependencies = [ 1136 "bitflags", 1137 "errno", 1138 "libc", 1139 "linux-raw-sys 0.9.4", 1140 "windows-sys 0.59.0", 1141] 1142 1143[[package]] 1144name = "rustls" 1145version = "0.23.26" 1146source = "registry+https://github.com/rust-lang/crates.io-index" 1147checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0" 1148dependencies = [ 1149 "once_cell", 1150 "rustls-pki-types", 1151 "rustls-webpki", 1152 "subtle", 1153 "zeroize", 1154] 1155 1156[[package]] 1157name = "rustls-pemfile" 1158version = "2.2.0" 1159source = "registry+https://github.com/rust-lang/crates.io-index" 1160checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" 1161dependencies = [ 1162 "rustls-pki-types", 1163] 1164 1165[[package]] 1166name = "rustls-pki-types" 1167version = "1.11.0" 1168source = "registry+https://github.com/rust-lang/crates.io-index" 1169checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c" 1170 1171[[package]] 1172name = "rustls-webpki" 1173version = "0.103.1" 1174source = "registry+https://github.com/rust-lang/crates.io-index" 1175checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03" 1176dependencies = [ 1177 "ring", 1178 "rustls-pki-types", 1179 "untrusted", 1180] 1181 1182[[package]] 1183name = "rustversion" 1184version = "1.0.20" 1185source = "registry+https://github.com/rust-lang/crates.io-index" 1186checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" 1187 1188[[package]] 1189name = "ryu" 1190version = "1.0.20" 1191source = "registry+https://github.com/rust-lang/crates.io-index" 1192checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 1193 1194[[package]] 1195name = "sattelite_observers" 1196version = "0.1.0" 1197dependencies = [ 1198 "chrono", 1199 "ratatui", 1200 "reqwest", 1201 "serde", 1202 "sgp4", 1203 "tokio", 1204 "tracing", 1205 "tracing-error", 1206 "tracing-subscriber", 1207] 1208 1209[[package]] 1210name = "schannel" 1211version = "0.1.27" 1212source = "registry+https://github.com/rust-lang/crates.io-index" 1213checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" 1214dependencies = [ 1215 "windows-sys 0.59.0", 1216] 1217 1218[[package]] 1219name = "scopeguard" 1220version = "1.2.0" 1221source = "registry+https://github.com/rust-lang/crates.io-index" 1222checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1223 1224[[package]] 1225name = "security-framework" 1226version = "2.11.1" 1227source = "registry+https://github.com/rust-lang/crates.io-index" 1228checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 1229dependencies = [ 1230 "bitflags", 1231 "core-foundation", 1232 "core-foundation-sys", 1233 "libc", 1234 "security-framework-sys", 1235] 1236 1237[[package]] 1238name = "security-framework-sys" 1239version = "2.14.0" 1240source = "registry+https://github.com/rust-lang/crates.io-index" 1241checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" 1242dependencies = [ 1243 "core-foundation-sys", 1244 "libc", 1245] 1246 1247[[package]] 1248name = "serde" 1249version = "1.0.219" 1250source = "registry+https://github.com/rust-lang/crates.io-index" 1251checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 1252dependencies = [ 1253 "serde_derive", 1254] 1255 1256[[package]] 1257name = "serde_derive" 1258version = "1.0.219" 1259source = "registry+https://github.com/rust-lang/crates.io-index" 1260checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 1261dependencies = [ 1262 "proc-macro2", 1263 "quote", 1264 "syn", 1265] 1266 1267[[package]] 1268name = "serde_json" 1269version = "1.0.140" 1270source = "registry+https://github.com/rust-lang/crates.io-index" 1271checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" 1272dependencies = [ 1273 "itoa", 1274 "memchr", 1275 "ryu", 1276 "serde", 1277] 1278 1279[[package]] 1280name = "serde_urlencoded" 1281version = "0.7.1" 1282source = "registry+https://github.com/rust-lang/crates.io-index" 1283checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1284dependencies = [ 1285 "form_urlencoded", 1286 "itoa", 1287 "ryu", 1288 "serde", 1289] 1290 1291[[package]] 1292name = "sgp4" 1293version = "2.2.0" 1294source = "registry+https://github.com/rust-lang/crates.io-index" 1295checksum = "1e4b1f4474b6f9c1edcf6c74288127f3d5528d19160b817382e5b7db70637cf1" 1296dependencies = [ 1297 "chrono", 1298 "serde", 1299 "serde_json", 1300] 1301 1302[[package]] 1303name = "sharded-slab" 1304version = "0.1.7" 1305source = "registry+https://github.com/rust-lang/crates.io-index" 1306checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 1307dependencies = [ 1308 "lazy_static", 1309] 1310 1311[[package]] 1312name = "shlex" 1313version = "1.3.0" 1314source = "registry+https://github.com/rust-lang/crates.io-index" 1315checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1316 1317[[package]] 1318name = "signal-hook" 1319version = "0.3.17" 1320source = "registry+https://github.com/rust-lang/crates.io-index" 1321checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" 1322dependencies = [ 1323 "libc", 1324 "signal-hook-registry", 1325] 1326 1327[[package]] 1328name = "signal-hook-mio" 1329version = "0.2.4" 1330source = "registry+https://github.com/rust-lang/crates.io-index" 1331checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" 1332dependencies = [ 1333 "libc", 1334 "mio", 1335 "signal-hook", 1336] 1337 1338[[package]] 1339name = "signal-hook-registry" 1340version = "1.4.5" 1341source = "registry+https://github.com/rust-lang/crates.io-index" 1342checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" 1343dependencies = [ 1344 "libc", 1345] 1346 1347[[package]] 1348name = "slab" 1349version = "0.4.9" 1350source = "registry+https://github.com/rust-lang/crates.io-index" 1351checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1352dependencies = [ 1353 "autocfg", 1354] 1355 1356[[package]] 1357name = "smallvec" 1358version = "1.15.0" 1359source = "registry+https://github.com/rust-lang/crates.io-index" 1360checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" 1361 1362[[package]] 1363name = "socket2" 1364version = "0.5.9" 1365source = "registry+https://github.com/rust-lang/crates.io-index" 1366checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef" 1367dependencies = [ 1368 "libc", 1369 "windows-sys 0.52.0", 1370] 1371 1372[[package]] 1373name = "stable_deref_trait" 1374version = "1.2.0" 1375source = "registry+https://github.com/rust-lang/crates.io-index" 1376checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 1377 1378[[package]] 1379name = "static_assertions" 1380version = "1.1.0" 1381source = "registry+https://github.com/rust-lang/crates.io-index" 1382checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 1383 1384[[package]] 1385name = "strsim" 1386version = "0.11.1" 1387source = "registry+https://github.com/rust-lang/crates.io-index" 1388checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1389 1390[[package]] 1391name = "strum" 1392version = "0.26.3" 1393source = "registry+https://github.com/rust-lang/crates.io-index" 1394checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06" 1395dependencies = [ 1396 "strum_macros", 1397] 1398 1399[[package]] 1400name = "strum_macros" 1401version = "0.26.4" 1402source = "registry+https://github.com/rust-lang/crates.io-index" 1403checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be" 1404dependencies = [ 1405 "heck", 1406 "proc-macro2", 1407 "quote", 1408 "rustversion", 1409 "syn", 1410] 1411 1412[[package]] 1413name = "subtle" 1414version = "2.6.1" 1415source = "registry+https://github.com/rust-lang/crates.io-index" 1416checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 1417 1418[[package]] 1419name = "syn" 1420version = "2.0.101" 1421source = "registry+https://github.com/rust-lang/crates.io-index" 1422checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf" 1423dependencies = [ 1424 "proc-macro2", 1425 "quote", 1426 "unicode-ident", 1427] 1428 1429[[package]] 1430name = "sync_wrapper" 1431version = "1.0.2" 1432source = "registry+https://github.com/rust-lang/crates.io-index" 1433checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" 1434dependencies = [ 1435 "futures-core", 1436] 1437 1438[[package]] 1439name = "synstructure" 1440version = "0.13.1" 1441source = "registry+https://github.com/rust-lang/crates.io-index" 1442checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" 1443dependencies = [ 1444 "proc-macro2", 1445 "quote", 1446 "syn", 1447] 1448 1449[[package]] 1450name = "system-configuration" 1451version = "0.6.1" 1452source = "registry+https://github.com/rust-lang/crates.io-index" 1453checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" 1454dependencies = [ 1455 "bitflags", 1456 "core-foundation", 1457 "system-configuration-sys", 1458] 1459 1460[[package]] 1461name = "system-configuration-sys" 1462version = "0.6.0" 1463source = "registry+https://github.com/rust-lang/crates.io-index" 1464checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" 1465dependencies = [ 1466 "core-foundation-sys", 1467 "libc", 1468] 1469 1470[[package]] 1471name = "tempfile" 1472version = "3.19.1" 1473source = "registry+https://github.com/rust-lang/crates.io-index" 1474checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf" 1475dependencies = [ 1476 "fastrand", 1477 "getrandom 0.3.2", 1478 "once_cell", 1479 "rustix 1.0.5", 1480 "windows-sys 0.59.0", 1481] 1482 1483[[package]] 1484name = "thread_local" 1485version = "1.1.8" 1486source = "registry+https://github.com/rust-lang/crates.io-index" 1487checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" 1488dependencies = [ 1489 "cfg-if", 1490 "once_cell", 1491] 1492 1493[[package]] 1494name = "tinystr" 1495version = "0.7.6" 1496source = "registry+https://github.com/rust-lang/crates.io-index" 1497checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" 1498dependencies = [ 1499 "displaydoc", 1500 "zerovec", 1501] 1502 1503[[package]] 1504name = "tokio" 1505version = "1.44.2" 1506source = "registry+https://github.com/rust-lang/crates.io-index" 1507checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" 1508dependencies = [ 1509 "backtrace", 1510 "bytes", 1511 "libc", 1512 "mio", 1513 "parking_lot", 1514 "pin-project-lite", 1515 "signal-hook-registry", 1516 "socket2", 1517 "tokio-macros", 1518 "windows-sys 0.52.0", 1519] 1520 1521[[package]] 1522name = "tokio-macros" 1523version = "2.5.0" 1524source = "registry+https://github.com/rust-lang/crates.io-index" 1525checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 1526dependencies = [ 1527 "proc-macro2", 1528 "quote", 1529 "syn", 1530] 1531 1532[[package]] 1533name = "tokio-native-tls" 1534version = "0.3.1" 1535source = "registry+https://github.com/rust-lang/crates.io-index" 1536checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 1537dependencies = [ 1538 "native-tls", 1539 "tokio", 1540] 1541 1542[[package]] 1543name = "tokio-rustls" 1544version = "0.26.2" 1545source = "registry+https://github.com/rust-lang/crates.io-index" 1546checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" 1547dependencies = [ 1548 "rustls", 1549 "tokio", 1550] 1551 1552[[package]] 1553name = "tokio-util" 1554version = "0.7.15" 1555source = "registry+https://github.com/rust-lang/crates.io-index" 1556checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" 1557dependencies = [ 1558 "bytes", 1559 "futures-core", 1560 "futures-sink", 1561 "pin-project-lite", 1562 "tokio", 1563] 1564 1565[[package]] 1566name = "tower" 1567version = "0.5.2" 1568source = "registry+https://github.com/rust-lang/crates.io-index" 1569checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 1570dependencies = [ 1571 "futures-core", 1572 "futures-util", 1573 "pin-project-lite", 1574 "sync_wrapper", 1575 "tokio", 1576 "tower-layer", 1577 "tower-service", 1578] 1579 1580[[package]] 1581name = "tower-layer" 1582version = "0.3.3" 1583source = "registry+https://github.com/rust-lang/crates.io-index" 1584checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 1585 1586[[package]] 1587name = "tower-service" 1588version = "0.3.3" 1589source = "registry+https://github.com/rust-lang/crates.io-index" 1590checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 1591 1592[[package]] 1593name = "tracing" 1594version = "0.1.41" 1595source = "registry+https://github.com/rust-lang/crates.io-index" 1596checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 1597dependencies = [ 1598 "pin-project-lite", 1599 "tracing-attributes", 1600 "tracing-core", 1601] 1602 1603[[package]] 1604name = "tracing-attributes" 1605version = "0.1.28" 1606source = "registry+https://github.com/rust-lang/crates.io-index" 1607checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" 1608dependencies = [ 1609 "proc-macro2", 1610 "quote", 1611 "syn", 1612] 1613 1614[[package]] 1615name = "tracing-core" 1616version = "0.1.33" 1617source = "registry+https://github.com/rust-lang/crates.io-index" 1618checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" 1619dependencies = [ 1620 "once_cell", 1621 "valuable", 1622] 1623 1624[[package]] 1625name = "tracing-error" 1626version = "0.2.1" 1627source = "registry+https://github.com/rust-lang/crates.io-index" 1628checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db" 1629dependencies = [ 1630 "tracing", 1631 "tracing-subscriber", 1632] 1633 1634[[package]] 1635name = "tracing-log" 1636version = "0.2.0" 1637source = "registry+https://github.com/rust-lang/crates.io-index" 1638checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" 1639dependencies = [ 1640 "log", 1641 "once_cell", 1642 "tracing-core", 1643] 1644 1645[[package]] 1646name = "tracing-subscriber" 1647version = "0.3.19" 1648source = "registry+https://github.com/rust-lang/crates.io-index" 1649checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" 1650dependencies = [ 1651 "nu-ansi-term", 1652 "sharded-slab", 1653 "smallvec", 1654 "thread_local", 1655 "tracing-core", 1656 "tracing-log", 1657] 1658 1659[[package]] 1660name = "try-lock" 1661version = "0.2.5" 1662source = "registry+https://github.com/rust-lang/crates.io-index" 1663checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1664 1665[[package]] 1666name = "unicode-ident" 1667version = "1.0.18" 1668source = "registry+https://github.com/rust-lang/crates.io-index" 1669checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 1670 1671[[package]] 1672name = "unicode-segmentation" 1673version = "1.12.0" 1674source = "registry+https://github.com/rust-lang/crates.io-index" 1675checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" 1676 1677[[package]] 1678name = "unicode-truncate" 1679version = "1.1.0" 1680source = "registry+https://github.com/rust-lang/crates.io-index" 1681checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf" 1682dependencies = [ 1683 "itertools", 1684 "unicode-segmentation", 1685 "unicode-width 0.1.14", 1686] 1687 1688[[package]] 1689name = "unicode-width" 1690version = "0.1.14" 1691source = "registry+https://github.com/rust-lang/crates.io-index" 1692checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" 1693 1694[[package]] 1695name = "unicode-width" 1696version = "0.2.0" 1697source = "registry+https://github.com/rust-lang/crates.io-index" 1698checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd" 1699 1700[[package]] 1701name = "untrusted" 1702version = "0.9.0" 1703source = "registry+https://github.com/rust-lang/crates.io-index" 1704checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 1705 1706[[package]] 1707name = "url" 1708version = "2.5.4" 1709source = "registry+https://github.com/rust-lang/crates.io-index" 1710checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" 1711dependencies = [ 1712 "form_urlencoded", 1713 "idna", 1714 "percent-encoding", 1715] 1716 1717[[package]] 1718name = "utf16_iter" 1719version = "1.0.5" 1720source = "registry+https://github.com/rust-lang/crates.io-index" 1721checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" 1722 1723[[package]] 1724name = "utf8_iter" 1725version = "1.0.4" 1726source = "registry+https://github.com/rust-lang/crates.io-index" 1727checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 1728 1729[[package]] 1730name = "valuable" 1731version = "0.1.1" 1732source = "registry+https://github.com/rust-lang/crates.io-index" 1733checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" 1734 1735[[package]] 1736name = "vcpkg" 1737version = "0.2.15" 1738source = "registry+https://github.com/rust-lang/crates.io-index" 1739checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 1740 1741[[package]] 1742name = "want" 1743version = "0.3.1" 1744source = "registry+https://github.com/rust-lang/crates.io-index" 1745checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 1746dependencies = [ 1747 "try-lock", 1748] 1749 1750[[package]] 1751name = "wasi" 1752version = "0.11.0+wasi-snapshot-preview1" 1753source = "registry+https://github.com/rust-lang/crates.io-index" 1754checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1755 1756[[package]] 1757name = "wasi" 1758version = "0.14.2+wasi-0.2.4" 1759source = "registry+https://github.com/rust-lang/crates.io-index" 1760checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" 1761dependencies = [ 1762 "wit-bindgen-rt", 1763] 1764 1765[[package]] 1766name = "wasm-bindgen" 1767version = "0.2.100" 1768source = "registry+https://github.com/rust-lang/crates.io-index" 1769checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 1770dependencies = [ 1771 "cfg-if", 1772 "once_cell", 1773 "rustversion", 1774 "wasm-bindgen-macro", 1775] 1776 1777[[package]] 1778name = "wasm-bindgen-backend" 1779version = "0.2.100" 1780source = "registry+https://github.com/rust-lang/crates.io-index" 1781checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 1782dependencies = [ 1783 "bumpalo", 1784 "log", 1785 "proc-macro2", 1786 "quote", 1787 "syn", 1788 "wasm-bindgen-shared", 1789] 1790 1791[[package]] 1792name = "wasm-bindgen-futures" 1793version = "0.4.50" 1794source = "registry+https://github.com/rust-lang/crates.io-index" 1795checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" 1796dependencies = [ 1797 "cfg-if", 1798 "js-sys", 1799 "once_cell", 1800 "wasm-bindgen", 1801 "web-sys", 1802] 1803 1804[[package]] 1805name = "wasm-bindgen-macro" 1806version = "0.2.100" 1807source = "registry+https://github.com/rust-lang/crates.io-index" 1808checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 1809dependencies = [ 1810 "quote", 1811 "wasm-bindgen-macro-support", 1812] 1813 1814[[package]] 1815name = "wasm-bindgen-macro-support" 1816version = "0.2.100" 1817source = "registry+https://github.com/rust-lang/crates.io-index" 1818checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 1819dependencies = [ 1820 "proc-macro2", 1821 "quote", 1822 "syn", 1823 "wasm-bindgen-backend", 1824 "wasm-bindgen-shared", 1825] 1826 1827[[package]] 1828name = "wasm-bindgen-shared" 1829version = "0.2.100" 1830source = "registry+https://github.com/rust-lang/crates.io-index" 1831checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 1832dependencies = [ 1833 "unicode-ident", 1834] 1835 1836[[package]] 1837name = "web-sys" 1838version = "0.3.77" 1839source = "registry+https://github.com/rust-lang/crates.io-index" 1840checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" 1841dependencies = [ 1842 "js-sys", 1843 "wasm-bindgen", 1844] 1845 1846[[package]] 1847name = "winapi" 1848version = "0.3.9" 1849source = "registry+https://github.com/rust-lang/crates.io-index" 1850checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1851dependencies = [ 1852 "winapi-i686-pc-windows-gnu", 1853 "winapi-x86_64-pc-windows-gnu", 1854] 1855 1856[[package]] 1857name = "winapi-i686-pc-windows-gnu" 1858version = "0.4.0" 1859source = "registry+https://github.com/rust-lang/crates.io-index" 1860checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1861 1862[[package]] 1863name = "winapi-x86_64-pc-windows-gnu" 1864version = "0.4.0" 1865source = "registry+https://github.com/rust-lang/crates.io-index" 1866checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1867 1868[[package]] 1869name = "windows-core" 1870version = "0.61.0" 1871source = "registry+https://github.com/rust-lang/crates.io-index" 1872checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980" 1873dependencies = [ 1874 "windows-implement", 1875 "windows-interface", 1876 "windows-link", 1877 "windows-result", 1878 "windows-strings 0.4.0", 1879] 1880 1881[[package]] 1882name = "windows-implement" 1883version = "0.60.0" 1884source = "registry+https://github.com/rust-lang/crates.io-index" 1885checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" 1886dependencies = [ 1887 "proc-macro2", 1888 "quote", 1889 "syn", 1890] 1891 1892[[package]] 1893name = "windows-interface" 1894version = "0.59.1" 1895source = "registry+https://github.com/rust-lang/crates.io-index" 1896checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" 1897dependencies = [ 1898 "proc-macro2", 1899 "quote", 1900 "syn", 1901] 1902 1903[[package]] 1904name = "windows-link" 1905version = "0.1.1" 1906source = "registry+https://github.com/rust-lang/crates.io-index" 1907checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38" 1908 1909[[package]] 1910name = "windows-registry" 1911version = "0.4.0" 1912source = "registry+https://github.com/rust-lang/crates.io-index" 1913checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3" 1914dependencies = [ 1915 "windows-result", 1916 "windows-strings 0.3.1", 1917 "windows-targets 0.53.0", 1918] 1919 1920[[package]] 1921name = "windows-result" 1922version = "0.3.2" 1923source = "registry+https://github.com/rust-lang/crates.io-index" 1924checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252" 1925dependencies = [ 1926 "windows-link", 1927] 1928 1929[[package]] 1930name = "windows-strings" 1931version = "0.3.1" 1932source = "registry+https://github.com/rust-lang/crates.io-index" 1933checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319" 1934dependencies = [ 1935 "windows-link", 1936] 1937 1938[[package]] 1939name = "windows-strings" 1940version = "0.4.0" 1941source = "registry+https://github.com/rust-lang/crates.io-index" 1942checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97" 1943dependencies = [ 1944 "windows-link", 1945] 1946 1947[[package]] 1948name = "windows-sys" 1949version = "0.52.0" 1950source = "registry+https://github.com/rust-lang/crates.io-index" 1951checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1952dependencies = [ 1953 "windows-targets 0.52.6", 1954] 1955 1956[[package]] 1957name = "windows-sys" 1958version = "0.59.0" 1959source = "registry+https://github.com/rust-lang/crates.io-index" 1960checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1961dependencies = [ 1962 "windows-targets 0.52.6", 1963] 1964 1965[[package]] 1966name = "windows-targets" 1967version = "0.52.6" 1968source = "registry+https://github.com/rust-lang/crates.io-index" 1969checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1970dependencies = [ 1971 "windows_aarch64_gnullvm 0.52.6", 1972 "windows_aarch64_msvc 0.52.6", 1973 "windows_i686_gnu 0.52.6", 1974 "windows_i686_gnullvm 0.52.6", 1975 "windows_i686_msvc 0.52.6", 1976 "windows_x86_64_gnu 0.52.6", 1977 "windows_x86_64_gnullvm 0.52.6", 1978 "windows_x86_64_msvc 0.52.6", 1979] 1980 1981[[package]] 1982name = "windows-targets" 1983version = "0.53.0" 1984source = "registry+https://github.com/rust-lang/crates.io-index" 1985checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b" 1986dependencies = [ 1987 "windows_aarch64_gnullvm 0.53.0", 1988 "windows_aarch64_msvc 0.53.0", 1989 "windows_i686_gnu 0.53.0", 1990 "windows_i686_gnullvm 0.53.0", 1991 "windows_i686_msvc 0.53.0", 1992 "windows_x86_64_gnu 0.53.0", 1993 "windows_x86_64_gnullvm 0.53.0", 1994 "windows_x86_64_msvc 0.53.0", 1995] 1996 1997[[package]] 1998name = "windows_aarch64_gnullvm" 1999version = "0.52.6" 2000source = "registry+https://github.com/rust-lang/crates.io-index" 2001checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 2002 2003[[package]] 2004name = "windows_aarch64_gnullvm" 2005version = "0.53.0" 2006source = "registry+https://github.com/rust-lang/crates.io-index" 2007checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 2008 2009[[package]] 2010name = "windows_aarch64_msvc" 2011version = "0.52.6" 2012source = "registry+https://github.com/rust-lang/crates.io-index" 2013checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 2014 2015[[package]] 2016name = "windows_aarch64_msvc" 2017version = "0.53.0" 2018source = "registry+https://github.com/rust-lang/crates.io-index" 2019checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 2020 2021[[package]] 2022name = "windows_i686_gnu" 2023version = "0.52.6" 2024source = "registry+https://github.com/rust-lang/crates.io-index" 2025checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 2026 2027[[package]] 2028name = "windows_i686_gnu" 2029version = "0.53.0" 2030source = "registry+https://github.com/rust-lang/crates.io-index" 2031checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 2032 2033[[package]] 2034name = "windows_i686_gnullvm" 2035version = "0.52.6" 2036source = "registry+https://github.com/rust-lang/crates.io-index" 2037checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 2038 2039[[package]] 2040name = "windows_i686_gnullvm" 2041version = "0.53.0" 2042source = "registry+https://github.com/rust-lang/crates.io-index" 2043checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 2044 2045[[package]] 2046name = "windows_i686_msvc" 2047version = "0.52.6" 2048source = "registry+https://github.com/rust-lang/crates.io-index" 2049checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 2050 2051[[package]] 2052name = "windows_i686_msvc" 2053version = "0.53.0" 2054source = "registry+https://github.com/rust-lang/crates.io-index" 2055checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 2056 2057[[package]] 2058name = "windows_x86_64_gnu" 2059version = "0.52.6" 2060source = "registry+https://github.com/rust-lang/crates.io-index" 2061checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 2062 2063[[package]] 2064name = "windows_x86_64_gnu" 2065version = "0.53.0" 2066source = "registry+https://github.com/rust-lang/crates.io-index" 2067checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 2068 2069[[package]] 2070name = "windows_x86_64_gnullvm" 2071version = "0.52.6" 2072source = "registry+https://github.com/rust-lang/crates.io-index" 2073checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 2074 2075[[package]] 2076name = "windows_x86_64_gnullvm" 2077version = "0.53.0" 2078source = "registry+https://github.com/rust-lang/crates.io-index" 2079checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 2080 2081[[package]] 2082name = "windows_x86_64_msvc" 2083version = "0.52.6" 2084source = "registry+https://github.com/rust-lang/crates.io-index" 2085checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 2086 2087[[package]] 2088name = "windows_x86_64_msvc" 2089version = "0.53.0" 2090source = "registry+https://github.com/rust-lang/crates.io-index" 2091checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 2092 2093[[package]] 2094name = "wit-bindgen-rt" 2095version = "0.39.0" 2096source = "registry+https://github.com/rust-lang/crates.io-index" 2097checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" 2098dependencies = [ 2099 "bitflags", 2100] 2101 2102[[package]] 2103name = "write16" 2104version = "1.0.0" 2105source = "registry+https://github.com/rust-lang/crates.io-index" 2106checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" 2107 2108[[package]] 2109name = "writeable" 2110version = "0.5.5" 2111source = "registry+https://github.com/rust-lang/crates.io-index" 2112checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" 2113 2114[[package]] 2115name = "yoke" 2116version = "0.7.5" 2117source = "registry+https://github.com/rust-lang/crates.io-index" 2118checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" 2119dependencies = [ 2120 "serde", 2121 "stable_deref_trait", 2122 "yoke-derive", 2123 "zerofrom", 2124] 2125 2126[[package]] 2127name = "yoke-derive" 2128version = "0.7.5" 2129source = "registry+https://github.com/rust-lang/crates.io-index" 2130checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" 2131dependencies = [ 2132 "proc-macro2", 2133 "quote", 2134 "syn", 2135 "synstructure", 2136] 2137 2138[[package]] 2139name = "zerofrom" 2140version = "0.1.6" 2141source = "registry+https://github.com/rust-lang/crates.io-index" 2142checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 2143dependencies = [ 2144 "zerofrom-derive", 2145] 2146 2147[[package]] 2148name = "zerofrom-derive" 2149version = "0.1.6" 2150source = "registry+https://github.com/rust-lang/crates.io-index" 2151checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 2152dependencies = [ 2153 "proc-macro2", 2154 "quote", 2155 "syn", 2156 "synstructure", 2157] 2158 2159[[package]] 2160name = "zeroize" 2161version = "1.8.1" 2162source = "registry+https://github.com/rust-lang/crates.io-index" 2163checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 2164 2165[[package]] 2166name = "zerovec" 2167version = "0.10.4" 2168source = "registry+https://github.com/rust-lang/crates.io-index" 2169checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" 2170dependencies = [ 2171 "yoke", 2172 "zerofrom", 2173 "zerovec-derive", 2174] 2175 2176[[package]] 2177name = "zerovec-derive" 2178version = "0.10.3" 2179source = "registry+https://github.com/rust-lang/crates.io-index" 2180checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" 2181dependencies = [ 2182 "proc-macro2", 2183 "quote", 2184 "syn", 2185]