A file-based task manager
at v0.4.0 925 lines 24 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "anstream" 7version = "0.6.20" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192" 10dependencies = [ 11 "anstyle", 12 "anstyle-parse", 13 "anstyle-query", 14 "anstyle-wincon", 15 "colorchoice", 16 "is_terminal_polyfill", 17 "utf8parse", 18] 19 20[[package]] 21name = "anstyle" 22version = "1.0.11" 23source = "registry+https://github.com/rust-lang/crates.io-index" 24checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" 25 26[[package]] 27name = "anstyle-parse" 28version = "0.2.7" 29source = "registry+https://github.com/rust-lang/crates.io-index" 30checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 31dependencies = [ 32 "utf8parse", 33] 34 35[[package]] 36name = "anstyle-query" 37version = "1.1.4" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" 40dependencies = [ 41 "windows-sys 0.60.2", 42] 43 44[[package]] 45name = "anstyle-wincon" 46version = "3.0.10" 47source = "registry+https://github.com/rust-lang/crates.io-index" 48checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" 49dependencies = [ 50 "anstyle", 51 "once_cell_polyfill", 52 "windows-sys 0.60.2", 53] 54 55[[package]] 56name = "bitflags" 57version = "2.9.4" 58source = "registry+https://github.com/rust-lang/crates.io-index" 59checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" 60 61[[package]] 62name = "cfg-if" 63version = "1.0.3" 64source = "registry+https://github.com/rust-lang/crates.io-index" 65checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" 66 67[[package]] 68name = "cfg_aliases" 69version = "0.2.1" 70source = "registry+https://github.com/rust-lang/crates.io-index" 71checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 72 73[[package]] 74name = "clap" 75version = "4.5.47" 76source = "registry+https://github.com/rust-lang/crates.io-index" 77checksum = "7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931" 78dependencies = [ 79 "clap_builder", 80 "clap_derive", 81] 82 83[[package]] 84name = "clap_builder" 85version = "4.5.47" 86source = "registry+https://github.com/rust-lang/crates.io-index" 87checksum = "2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6" 88dependencies = [ 89 "anstream", 90 "anstyle", 91 "clap_lex", 92 "strsim", 93] 94 95[[package]] 96name = "clap_complete" 97version = "4.5.57" 98source = "registry+https://github.com/rust-lang/crates.io-index" 99checksum = "4d9501bd3f5f09f7bbee01da9a511073ed30a80cd7a509f1214bb74eadea71ad" 100dependencies = [ 101 "clap", 102] 103 104[[package]] 105name = "clap_derive" 106version = "4.5.47" 107source = "registry+https://github.com/rust-lang/crates.io-index" 108checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" 109dependencies = [ 110 "heck", 111 "proc-macro2", 112 "quote", 113 "syn", 114] 115 116[[package]] 117name = "clap_lex" 118version = "0.7.5" 119source = "registry+https://github.com/rust-lang/crates.io-index" 120checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" 121 122[[package]] 123name = "clap_mangen" 124version = "0.2.29" 125source = "registry+https://github.com/rust-lang/crates.io-index" 126checksum = "27b4c3c54b30f0d9adcb47f25f61fcce35c4dd8916638c6b82fbd5f4fb4179e2" 127dependencies = [ 128 "clap", 129 "roff", 130] 131 132[[package]] 133name = "colorchoice" 134version = "1.0.4" 135source = "registry+https://github.com/rust-lang/crates.io-index" 136checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 137 138[[package]] 139name = "colored" 140version = "3.0.0" 141source = "registry+https://github.com/rust-lang/crates.io-index" 142checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e" 143dependencies = [ 144 "windows-sys 0.59.0", 145] 146 147[[package]] 148name = "displaydoc" 149version = "0.2.5" 150source = "registry+https://github.com/rust-lang/crates.io-index" 151checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" 152dependencies = [ 153 "proc-macro2", 154 "quote", 155 "syn", 156] 157 158[[package]] 159name = "edit" 160version = "0.1.5" 161source = "registry+https://github.com/rust-lang/crates.io-index" 162checksum = "f364860e764787163c8c8f58231003839be31276e821e2ad2092ddf496b1aa09" 163dependencies = [ 164 "tempfile", 165 "which", 166] 167 168[[package]] 169name = "either" 170version = "1.15.0" 171source = "registry+https://github.com/rust-lang/crates.io-index" 172checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 173 174[[package]] 175name = "errno" 176version = "0.3.13" 177source = "registry+https://github.com/rust-lang/crates.io-index" 178checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" 179dependencies = [ 180 "libc", 181 "windows-sys 0.60.2", 182] 183 184[[package]] 185name = "fastrand" 186version = "2.3.0" 187source = "registry+https://github.com/rust-lang/crates.io-index" 188checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" 189 190[[package]] 191name = "form_urlencoded" 192version = "1.2.2" 193source = "registry+https://github.com/rust-lang/crates.io-index" 194checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 195dependencies = [ 196 "percent-encoding", 197] 198 199[[package]] 200name = "getrandom" 201version = "0.3.3" 202source = "registry+https://github.com/rust-lang/crates.io-index" 203checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" 204dependencies = [ 205 "cfg-if", 206 "libc", 207 "r-efi", 208 "wasi", 209] 210 211[[package]] 212name = "heck" 213version = "0.5.0" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 216 217[[package]] 218name = "home" 219version = "0.5.11" 220source = "registry+https://github.com/rust-lang/crates.io-index" 221checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" 222dependencies = [ 223 "windows-sys 0.59.0", 224] 225 226[[package]] 227name = "icu_collections" 228version = "2.0.0" 229source = "registry+https://github.com/rust-lang/crates.io-index" 230checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" 231dependencies = [ 232 "displaydoc", 233 "potential_utf", 234 "yoke", 235 "zerofrom", 236 "zerovec", 237] 238 239[[package]] 240name = "icu_locale_core" 241version = "2.0.0" 242source = "registry+https://github.com/rust-lang/crates.io-index" 243checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" 244dependencies = [ 245 "displaydoc", 246 "litemap", 247 "tinystr", 248 "writeable", 249 "zerovec", 250] 251 252[[package]] 253name = "icu_normalizer" 254version = "2.0.0" 255source = "registry+https://github.com/rust-lang/crates.io-index" 256checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" 257dependencies = [ 258 "displaydoc", 259 "icu_collections", 260 "icu_normalizer_data", 261 "icu_properties", 262 "icu_provider", 263 "smallvec", 264 "zerovec", 265] 266 267[[package]] 268name = "icu_normalizer_data" 269version = "2.0.0" 270source = "registry+https://github.com/rust-lang/crates.io-index" 271checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" 272 273[[package]] 274name = "icu_properties" 275version = "2.0.1" 276source = "registry+https://github.com/rust-lang/crates.io-index" 277checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" 278dependencies = [ 279 "displaydoc", 280 "icu_collections", 281 "icu_locale_core", 282 "icu_properties_data", 283 "icu_provider", 284 "potential_utf", 285 "zerotrie", 286 "zerovec", 287] 288 289[[package]] 290name = "icu_properties_data" 291version = "2.0.1" 292source = "registry+https://github.com/rust-lang/crates.io-index" 293checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" 294 295[[package]] 296name = "icu_provider" 297version = "2.0.0" 298source = "registry+https://github.com/rust-lang/crates.io-index" 299checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" 300dependencies = [ 301 "displaydoc", 302 "icu_locale_core", 303 "stable_deref_trait", 304 "tinystr", 305 "writeable", 306 "yoke", 307 "zerofrom", 308 "zerotrie", 309 "zerovec", 310] 311 312[[package]] 313name = "idna" 314version = "1.1.0" 315source = "registry+https://github.com/rust-lang/crates.io-index" 316checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" 317dependencies = [ 318 "idna_adapter", 319 "smallvec", 320 "utf8_iter", 321] 322 323[[package]] 324name = "idna_adapter" 325version = "1.2.1" 326source = "registry+https://github.com/rust-lang/crates.io-index" 327checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" 328dependencies = [ 329 "icu_normalizer", 330 "icu_properties", 331] 332 333[[package]] 334name = "is-docker" 335version = "0.2.0" 336source = "registry+https://github.com/rust-lang/crates.io-index" 337checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" 338dependencies = [ 339 "once_cell", 340] 341 342[[package]] 343name = "is-wsl" 344version = "0.4.0" 345source = "registry+https://github.com/rust-lang/crates.io-index" 346checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" 347dependencies = [ 348 "is-docker", 349 "once_cell", 350] 351 352[[package]] 353name = "is_terminal_polyfill" 354version = "1.70.1" 355source = "registry+https://github.com/rust-lang/crates.io-index" 356checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 357 358[[package]] 359name = "itertools" 360version = "0.14.0" 361source = "registry+https://github.com/rust-lang/crates.io-index" 362checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 363dependencies = [ 364 "either", 365] 366 367[[package]] 368name = "libc" 369version = "0.2.175" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" 372 373[[package]] 374name = "linux-raw-sys" 375version = "0.4.15" 376source = "registry+https://github.com/rust-lang/crates.io-index" 377checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" 378 379[[package]] 380name = "linux-raw-sys" 381version = "0.9.4" 382source = "registry+https://github.com/rust-lang/crates.io-index" 383checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" 384 385[[package]] 386name = "litemap" 387version = "0.8.0" 388source = "registry+https://github.com/rust-lang/crates.io-index" 389checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" 390 391[[package]] 392name = "nix" 393version = "0.30.1" 394source = "registry+https://github.com/rust-lang/crates.io-index" 395checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" 396dependencies = [ 397 "bitflags", 398 "cfg-if", 399 "cfg_aliases", 400 "libc", 401] 402 403[[package]] 404name = "once_cell" 405version = "1.21.3" 406source = "registry+https://github.com/rust-lang/crates.io-index" 407checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 408 409[[package]] 410name = "once_cell_polyfill" 411version = "1.70.1" 412source = "registry+https://github.com/rust-lang/crates.io-index" 413checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" 414 415[[package]] 416name = "open" 417version = "5.3.2" 418source = "registry+https://github.com/rust-lang/crates.io-index" 419checksum = "e2483562e62ea94312f3576a7aca397306df7990b8d89033e18766744377ef95" 420dependencies = [ 421 "is-wsl", 422 "libc", 423 "pathdiff", 424] 425 426[[package]] 427name = "pathdiff" 428version = "0.2.3" 429source = "registry+https://github.com/rust-lang/crates.io-index" 430checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" 431 432[[package]] 433name = "percent-encoding" 434version = "2.3.2" 435source = "registry+https://github.com/rust-lang/crates.io-index" 436checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 437 438[[package]] 439name = "potential_utf" 440version = "0.1.3" 441source = "registry+https://github.com/rust-lang/crates.io-index" 442checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" 443dependencies = [ 444 "zerovec", 445] 446 447[[package]] 448name = "proc-macro2" 449version = "1.0.101" 450source = "registry+https://github.com/rust-lang/crates.io-index" 451checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 452dependencies = [ 453 "unicode-ident", 454] 455 456[[package]] 457name = "quote" 458version = "1.0.40" 459source = "registry+https://github.com/rust-lang/crates.io-index" 460checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" 461dependencies = [ 462 "proc-macro2", 463] 464 465[[package]] 466name = "r-efi" 467version = "5.3.0" 468source = "registry+https://github.com/rust-lang/crates.io-index" 469checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 470 471[[package]] 472name = "roff" 473version = "0.2.2" 474source = "registry+https://github.com/rust-lang/crates.io-index" 475checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3" 476 477[[package]] 478name = "rustix" 479version = "0.38.44" 480source = "registry+https://github.com/rust-lang/crates.io-index" 481checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" 482dependencies = [ 483 "bitflags", 484 "errno", 485 "libc", 486 "linux-raw-sys 0.4.15", 487 "windows-sys 0.59.0", 488] 489 490[[package]] 491name = "rustix" 492version = "1.0.8" 493source = "registry+https://github.com/rust-lang/crates.io-index" 494checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8" 495dependencies = [ 496 "bitflags", 497 "errno", 498 "libc", 499 "linux-raw-sys 0.9.4", 500 "windows-sys 0.60.2", 501] 502 503[[package]] 504name = "serde" 505version = "1.0.219" 506source = "registry+https://github.com/rust-lang/crates.io-index" 507checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" 508dependencies = [ 509 "serde_derive", 510] 511 512[[package]] 513name = "serde_derive" 514version = "1.0.219" 515source = "registry+https://github.com/rust-lang/crates.io-index" 516checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" 517dependencies = [ 518 "proc-macro2", 519 "quote", 520 "syn", 521] 522 523[[package]] 524name = "smallvec" 525version = "1.15.1" 526source = "registry+https://github.com/rust-lang/crates.io-index" 527checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 528 529[[package]] 530name = "stable_deref_trait" 531version = "1.2.0" 532source = "registry+https://github.com/rust-lang/crates.io-index" 533checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 534 535[[package]] 536name = "strsim" 537version = "0.11.1" 538source = "registry+https://github.com/rust-lang/crates.io-index" 539checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 540 541[[package]] 542name = "syn" 543version = "2.0.106" 544source = "registry+https://github.com/rust-lang/crates.io-index" 545checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 546dependencies = [ 547 "proc-macro2", 548 "quote", 549 "unicode-ident", 550] 551 552[[package]] 553name = "synstructure" 554version = "0.13.2" 555source = "registry+https://github.com/rust-lang/crates.io-index" 556checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" 557dependencies = [ 558 "proc-macro2", 559 "quote", 560 "syn", 561] 562 563[[package]] 564name = "tempfile" 565version = "3.21.0" 566source = "registry+https://github.com/rust-lang/crates.io-index" 567checksum = "15b61f8f20e3a6f7e0649d825294eaf317edce30f82cf6026e7e4cb9222a7d1e" 568dependencies = [ 569 "fastrand", 570 "getrandom", 571 "once_cell", 572 "rustix 1.0.8", 573 "windows-sys 0.60.2", 574] 575 576[[package]] 577name = "thiserror" 578version = "2.0.16" 579source = "registry+https://github.com/rust-lang/crates.io-index" 580checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0" 581dependencies = [ 582 "thiserror-impl", 583] 584 585[[package]] 586name = "thiserror-impl" 587version = "2.0.16" 588source = "registry+https://github.com/rust-lang/crates.io-index" 589checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960" 590dependencies = [ 591 "proc-macro2", 592 "quote", 593 "syn", 594] 595 596[[package]] 597name = "tinystr" 598version = "0.8.1" 599source = "registry+https://github.com/rust-lang/crates.io-index" 600checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" 601dependencies = [ 602 "displaydoc", 603 "zerovec", 604] 605 606[[package]] 607name = "tsk-cli" 608version = "0.3.6" 609dependencies = [ 610 "clap", 611 "clap_complete", 612 "clap_mangen", 613 "colored", 614 "edit", 615 "itertools", 616 "nix", 617 "open", 618 "thiserror", 619 "url", 620 "xattr", 621] 622 623[[package]] 624name = "unicode-ident" 625version = "1.0.18" 626source = "registry+https://github.com/rust-lang/crates.io-index" 627checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" 628 629[[package]] 630name = "url" 631version = "2.5.7" 632source = "registry+https://github.com/rust-lang/crates.io-index" 633checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" 634dependencies = [ 635 "form_urlencoded", 636 "idna", 637 "percent-encoding", 638 "serde", 639] 640 641[[package]] 642name = "utf8_iter" 643version = "1.0.4" 644source = "registry+https://github.com/rust-lang/crates.io-index" 645checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" 646 647[[package]] 648name = "utf8parse" 649version = "0.2.2" 650source = "registry+https://github.com/rust-lang/crates.io-index" 651checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 652 653[[package]] 654name = "wasi" 655version = "0.14.4+wasi-0.2.4" 656source = "registry+https://github.com/rust-lang/crates.io-index" 657checksum = "88a5f4a424faf49c3c2c344f166f0662341d470ea185e939657aaff130f0ec4a" 658dependencies = [ 659 "wit-bindgen", 660] 661 662[[package]] 663name = "which" 664version = "4.4.2" 665source = "registry+https://github.com/rust-lang/crates.io-index" 666checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" 667dependencies = [ 668 "either", 669 "home", 670 "once_cell", 671 "rustix 0.38.44", 672] 673 674[[package]] 675name = "windows-link" 676version = "0.1.3" 677source = "registry+https://github.com/rust-lang/crates.io-index" 678checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 679 680[[package]] 681name = "windows-sys" 682version = "0.59.0" 683source = "registry+https://github.com/rust-lang/crates.io-index" 684checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 685dependencies = [ 686 "windows-targets 0.52.6", 687] 688 689[[package]] 690name = "windows-sys" 691version = "0.60.2" 692source = "registry+https://github.com/rust-lang/crates.io-index" 693checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" 694dependencies = [ 695 "windows-targets 0.53.3", 696] 697 698[[package]] 699name = "windows-targets" 700version = "0.52.6" 701source = "registry+https://github.com/rust-lang/crates.io-index" 702checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 703dependencies = [ 704 "windows_aarch64_gnullvm 0.52.6", 705 "windows_aarch64_msvc 0.52.6", 706 "windows_i686_gnu 0.52.6", 707 "windows_i686_gnullvm 0.52.6", 708 "windows_i686_msvc 0.52.6", 709 "windows_x86_64_gnu 0.52.6", 710 "windows_x86_64_gnullvm 0.52.6", 711 "windows_x86_64_msvc 0.52.6", 712] 713 714[[package]] 715name = "windows-targets" 716version = "0.53.3" 717source = "registry+https://github.com/rust-lang/crates.io-index" 718checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" 719dependencies = [ 720 "windows-link", 721 "windows_aarch64_gnullvm 0.53.0", 722 "windows_aarch64_msvc 0.53.0", 723 "windows_i686_gnu 0.53.0", 724 "windows_i686_gnullvm 0.53.0", 725 "windows_i686_msvc 0.53.0", 726 "windows_x86_64_gnu 0.53.0", 727 "windows_x86_64_gnullvm 0.53.0", 728 "windows_x86_64_msvc 0.53.0", 729] 730 731[[package]] 732name = "windows_aarch64_gnullvm" 733version = "0.52.6" 734source = "registry+https://github.com/rust-lang/crates.io-index" 735checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 736 737[[package]] 738name = "windows_aarch64_gnullvm" 739version = "0.53.0" 740source = "registry+https://github.com/rust-lang/crates.io-index" 741checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" 742 743[[package]] 744name = "windows_aarch64_msvc" 745version = "0.52.6" 746source = "registry+https://github.com/rust-lang/crates.io-index" 747checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 748 749[[package]] 750name = "windows_aarch64_msvc" 751version = "0.53.0" 752source = "registry+https://github.com/rust-lang/crates.io-index" 753checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" 754 755[[package]] 756name = "windows_i686_gnu" 757version = "0.52.6" 758source = "registry+https://github.com/rust-lang/crates.io-index" 759checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 760 761[[package]] 762name = "windows_i686_gnu" 763version = "0.53.0" 764source = "registry+https://github.com/rust-lang/crates.io-index" 765checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" 766 767[[package]] 768name = "windows_i686_gnullvm" 769version = "0.52.6" 770source = "registry+https://github.com/rust-lang/crates.io-index" 771checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 772 773[[package]] 774name = "windows_i686_gnullvm" 775version = "0.53.0" 776source = "registry+https://github.com/rust-lang/crates.io-index" 777checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" 778 779[[package]] 780name = "windows_i686_msvc" 781version = "0.52.6" 782source = "registry+https://github.com/rust-lang/crates.io-index" 783checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 784 785[[package]] 786name = "windows_i686_msvc" 787version = "0.53.0" 788source = "registry+https://github.com/rust-lang/crates.io-index" 789checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" 790 791[[package]] 792name = "windows_x86_64_gnu" 793version = "0.52.6" 794source = "registry+https://github.com/rust-lang/crates.io-index" 795checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 796 797[[package]] 798name = "windows_x86_64_gnu" 799version = "0.53.0" 800source = "registry+https://github.com/rust-lang/crates.io-index" 801checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" 802 803[[package]] 804name = "windows_x86_64_gnullvm" 805version = "0.52.6" 806source = "registry+https://github.com/rust-lang/crates.io-index" 807checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 808 809[[package]] 810name = "windows_x86_64_gnullvm" 811version = "0.53.0" 812source = "registry+https://github.com/rust-lang/crates.io-index" 813checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" 814 815[[package]] 816name = "windows_x86_64_msvc" 817version = "0.52.6" 818source = "registry+https://github.com/rust-lang/crates.io-index" 819checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 820 821[[package]] 822name = "windows_x86_64_msvc" 823version = "0.53.0" 824source = "registry+https://github.com/rust-lang/crates.io-index" 825checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" 826 827[[package]] 828name = "wit-bindgen" 829version = "0.45.1" 830source = "registry+https://github.com/rust-lang/crates.io-index" 831checksum = "5c573471f125075647d03df72e026074b7203790d41351cd6edc96f46bcccd36" 832 833[[package]] 834name = "writeable" 835version = "0.6.1" 836source = "registry+https://github.com/rust-lang/crates.io-index" 837checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" 838 839[[package]] 840name = "xattr" 841version = "1.5.1" 842source = "registry+https://github.com/rust-lang/crates.io-index" 843checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909" 844dependencies = [ 845 "libc", 846 "rustix 1.0.8", 847] 848 849[[package]] 850name = "yoke" 851version = "0.8.0" 852source = "registry+https://github.com/rust-lang/crates.io-index" 853checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" 854dependencies = [ 855 "serde", 856 "stable_deref_trait", 857 "yoke-derive", 858 "zerofrom", 859] 860 861[[package]] 862name = "yoke-derive" 863version = "0.8.0" 864source = "registry+https://github.com/rust-lang/crates.io-index" 865checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" 866dependencies = [ 867 "proc-macro2", 868 "quote", 869 "syn", 870 "synstructure", 871] 872 873[[package]] 874name = "zerofrom" 875version = "0.1.6" 876source = "registry+https://github.com/rust-lang/crates.io-index" 877checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" 878dependencies = [ 879 "zerofrom-derive", 880] 881 882[[package]] 883name = "zerofrom-derive" 884version = "0.1.6" 885source = "registry+https://github.com/rust-lang/crates.io-index" 886checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" 887dependencies = [ 888 "proc-macro2", 889 "quote", 890 "syn", 891 "synstructure", 892] 893 894[[package]] 895name = "zerotrie" 896version = "0.2.2" 897source = "registry+https://github.com/rust-lang/crates.io-index" 898checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" 899dependencies = [ 900 "displaydoc", 901 "yoke", 902 "zerofrom", 903] 904 905[[package]] 906name = "zerovec" 907version = "0.11.4" 908source = "registry+https://github.com/rust-lang/crates.io-index" 909checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" 910dependencies = [ 911 "yoke", 912 "zerofrom", 913 "zerovec-derive", 914] 915 916[[package]] 917name = "zerovec-derive" 918version = "0.11.1" 919source = "registry+https://github.com/rust-lang/crates.io-index" 920checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" 921dependencies = [ 922 "proc-macro2", 923 "quote", 924 "syn", 925]