diff options
| author | diogo464 <[email protected]> | 2025-06-19 09:06:49 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-06-19 09:06:49 +0100 |
| commit | b7ff8b4b76236d7ceb1abe87d5c1c4ab2cad61bf (patch) | |
| tree | 79cadd7aafacc89e9a9e3ec56a210e463c37c488 /Cargo.lock | |
| parent | 4de1d0ddd589be3bfe2693c6102f9b5464acb8b0 (diff) | |
Add comprehensive CLI tests using assert_cmd
- Add assert_cmd, predicates, and tempfile dev dependencies
- Create 18 comprehensive integration tests covering all CLI commands
- Test success scenarios, error conditions, and edge cases
- Use temporary directories for isolated test environments
- Cover file creation, process management, and cleanup functionality
All tests pass and provide good coverage of the CLI interface.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 267 |
1 files changed, 266 insertions, 1 deletions
| @@ -3,6 +3,15 @@ | |||
| 3 | version = 4 | 3 | version = 4 |
| 4 | 4 | ||
| 5 | [[package]] | 5 | [[package]] |
| 6 | name = "aho-corasick" | ||
| 7 | version = "1.1.3" | ||
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 9 | checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" | ||
| 10 | dependencies = [ | ||
| 11 | "memchr", | ||
| 12 | ] | ||
| 13 | |||
| 14 | [[package]] | ||
| 6 | name = "anstream" | 15 | name = "anstream" |
| 7 | version = "0.6.19" | 16 | version = "0.6.19" |
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | 17 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -59,6 +68,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 59 | checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" | 68 | checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" |
| 60 | 69 | ||
| 61 | [[package]] | 70 | [[package]] |
| 71 | name = "assert_cmd" | ||
| 72 | version = "2.0.17" | ||
| 73 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 74 | checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66" | ||
| 75 | dependencies = [ | ||
| 76 | "anstyle", | ||
| 77 | "bstr", | ||
| 78 | "doc-comment", | ||
| 79 | "libc", | ||
| 80 | "predicates", | ||
| 81 | "predicates-core", | ||
| 82 | "predicates-tree", | ||
| 83 | "wait-timeout", | ||
| 84 | ] | ||
| 85 | |||
| 86 | [[package]] | ||
| 87 | name = "autocfg" | ||
| 88 | version = "1.5.0" | ||
| 89 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 90 | checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" | ||
| 91 | |||
| 92 | [[package]] | ||
| 62 | name = "bitflags" | 93 | name = "bitflags" |
| 63 | version = "1.3.2" | 94 | version = "1.3.2" |
| 64 | source = "registry+https://github.com/rust-lang/crates.io-index" | 95 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -71,6 +102,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 71 | checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" | 102 | checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" |
| 72 | 103 | ||
| 73 | [[package]] | 104 | [[package]] |
| 105 | name = "bstr" | ||
| 106 | version = "1.12.0" | ||
| 107 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 108 | checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4" | ||
| 109 | dependencies = [ | ||
| 110 | "memchr", | ||
| 111 | "regex-automata", | ||
| 112 | "serde", | ||
| 113 | ] | ||
| 114 | |||
| 115 | [[package]] | ||
| 74 | name = "cfg-if" | 116 | name = "cfg-if" |
| 75 | version = "1.0.1" | 117 | version = "1.0.1" |
| 76 | source = "registry+https://github.com/rust-lang/crates.io-index" | 118 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -143,15 +185,46 @@ name = "demon" | |||
| 143 | version = "0.1.0" | 185 | version = "0.1.0" |
| 144 | dependencies = [ | 186 | dependencies = [ |
| 145 | "anyhow", | 187 | "anyhow", |
| 188 | "assert_cmd", | ||
| 146 | "clap", | 189 | "clap", |
| 147 | "ctrlc", | 190 | "ctrlc", |
| 148 | "glob", | 191 | "glob", |
| 149 | "notify", | 192 | "notify", |
| 193 | "predicates", | ||
| 194 | "tempfile", | ||
| 150 | "tracing", | 195 | "tracing", |
| 151 | "tracing-subscriber", | 196 | "tracing-subscriber", |
| 152 | ] | 197 | ] |
| 153 | 198 | ||
| 154 | [[package]] | 199 | [[package]] |
| 200 | name = "difflib" | ||
| 201 | version = "0.4.0" | ||
| 202 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 203 | checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" | ||
| 204 | |||
| 205 | [[package]] | ||
| 206 | name = "doc-comment" | ||
| 207 | version = "0.3.3" | ||
| 208 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 209 | checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" | ||
| 210 | |||
| 211 | [[package]] | ||
| 212 | name = "errno" | ||
| 213 | version = "0.3.12" | ||
| 214 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 215 | checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18" | ||
| 216 | dependencies = [ | ||
| 217 | "libc", | ||
| 218 | "windows-sys", | ||
| 219 | ] | ||
| 220 | |||
| 221 | [[package]] | ||
| 222 | name = "fastrand" | ||
| 223 | version = "2.3.0" | ||
| 224 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 225 | checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" | ||
| 226 | |||
| 227 | [[package]] | ||
| 155 | name = "filetime" | 228 | name = "filetime" |
| 156 | version = "0.2.25" | 229 | version = "0.2.25" |
| 157 | source = "registry+https://github.com/rust-lang/crates.io-index" | 230 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -164,6 +237,15 @@ dependencies = [ | |||
| 164 | ] | 237 | ] |
| 165 | 238 | ||
| 166 | [[package]] | 239 | [[package]] |
| 240 | name = "float-cmp" | ||
| 241 | version = "0.10.0" | ||
| 242 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 243 | checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8" | ||
| 244 | dependencies = [ | ||
| 245 | "num-traits", | ||
| 246 | ] | ||
| 247 | |||
| 248 | [[package]] | ||
| 167 | name = "fsevent-sys" | 249 | name = "fsevent-sys" |
| 168 | version = "4.1.0" | 250 | version = "4.1.0" |
| 169 | source = "registry+https://github.com/rust-lang/crates.io-index" | 251 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -173,6 +255,18 @@ dependencies = [ | |||
| 173 | ] | 255 | ] |
| 174 | 256 | ||
| 175 | [[package]] | 257 | [[package]] |
| 258 | name = "getrandom" | ||
| 259 | version = "0.3.3" | ||
| 260 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 261 | checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" | ||
| 262 | dependencies = [ | ||
| 263 | "cfg-if", | ||
| 264 | "libc", | ||
| 265 | "r-efi", | ||
| 266 | "wasi 0.14.2+wasi-0.2.4", | ||
| 267 | ] | ||
| 268 | |||
| 269 | [[package]] | ||
| 176 | name = "glob" | 270 | name = "glob" |
| 177 | version = "0.3.2" | 271 | version = "0.3.2" |
| 178 | source = "registry+https://github.com/rust-lang/crates.io-index" | 272 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -254,12 +348,24 @@ dependencies = [ | |||
| 254 | ] | 348 | ] |
| 255 | 349 | ||
| 256 | [[package]] | 350 | [[package]] |
| 351 | name = "linux-raw-sys" | ||
| 352 | version = "0.9.4" | ||
| 353 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 354 | checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" | ||
| 355 | |||
| 356 | [[package]] | ||
| 257 | name = "log" | 357 | name = "log" |
| 258 | version = "0.4.27" | 358 | version = "0.4.27" |
| 259 | source = "registry+https://github.com/rust-lang/crates.io-index" | 359 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 260 | checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" | 360 | checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" |
| 261 | 361 | ||
| 262 | [[package]] | 362 | [[package]] |
| 363 | name = "memchr" | ||
| 364 | version = "2.7.5" | ||
| 365 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 366 | checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" | ||
| 367 | |||
| 368 | [[package]] | ||
| 263 | name = "mio" | 369 | name = "mio" |
| 264 | version = "1.0.4" | 370 | version = "1.0.4" |
| 265 | source = "registry+https://github.com/rust-lang/crates.io-index" | 371 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -267,7 +373,7 @@ checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" | |||
| 267 | dependencies = [ | 373 | dependencies = [ |
| 268 | "libc", | 374 | "libc", |
| 269 | "log", | 375 | "log", |
| 270 | "wasi", | 376 | "wasi 0.11.1+wasi-snapshot-preview1", |
| 271 | "windows-sys", | 377 | "windows-sys", |
| 272 | ] | 378 | ] |
| 273 | 379 | ||
| @@ -284,6 +390,12 @@ dependencies = [ | |||
| 284 | ] | 390 | ] |
| 285 | 391 | ||
| 286 | [[package]] | 392 | [[package]] |
| 393 | name = "normalize-line-endings" | ||
| 394 | version = "0.3.0" | ||
| 395 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 396 | checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" | ||
| 397 | |||
| 398 | [[package]] | ||
| 287 | name = "notify" | 399 | name = "notify" |
| 288 | version = "8.0.0" | 400 | version = "8.0.0" |
| 289 | source = "registry+https://github.com/rust-lang/crates.io-index" | 401 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -319,6 +431,15 @@ dependencies = [ | |||
| 319 | ] | 431 | ] |
| 320 | 432 | ||
| 321 | [[package]] | 433 | [[package]] |
| 434 | name = "num-traits" | ||
| 435 | version = "0.2.19" | ||
| 436 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 437 | checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" | ||
| 438 | dependencies = [ | ||
| 439 | "autocfg", | ||
| 440 | ] | ||
| 441 | |||
| 442 | [[package]] | ||
| 322 | name = "once_cell" | 443 | name = "once_cell" |
| 323 | version = "1.21.3" | 444 | version = "1.21.3" |
| 324 | source = "registry+https://github.com/rust-lang/crates.io-index" | 445 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -343,6 +464,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 343 | checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" | 464 | checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" |
| 344 | 465 | ||
| 345 | [[package]] | 466 | [[package]] |
| 467 | name = "predicates" | ||
| 468 | version = "3.1.3" | ||
| 469 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 470 | checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" | ||
| 471 | dependencies = [ | ||
| 472 | "anstyle", | ||
| 473 | "difflib", | ||
| 474 | "float-cmp", | ||
| 475 | "normalize-line-endings", | ||
| 476 | "predicates-core", | ||
| 477 | "regex", | ||
| 478 | ] | ||
| 479 | |||
| 480 | [[package]] | ||
| 481 | name = "predicates-core" | ||
| 482 | version = "1.0.9" | ||
| 483 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 484 | checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" | ||
| 485 | |||
| 486 | [[package]] | ||
| 487 | name = "predicates-tree" | ||
| 488 | version = "1.0.12" | ||
| 489 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 490 | checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" | ||
| 491 | dependencies = [ | ||
| 492 | "predicates-core", | ||
| 493 | "termtree", | ||
| 494 | ] | ||
| 495 | |||
| 496 | [[package]] | ||
| 346 | name = "proc-macro2" | 497 | name = "proc-macro2" |
| 347 | version = "1.0.95" | 498 | version = "1.0.95" |
| 348 | source = "registry+https://github.com/rust-lang/crates.io-index" | 499 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -361,6 +512,12 @@ dependencies = [ | |||
| 361 | ] | 512 | ] |
| 362 | 513 | ||
| 363 | [[package]] | 514 | [[package]] |
| 515 | name = "r-efi" | ||
| 516 | version = "5.3.0" | ||
| 517 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 518 | checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" | ||
| 519 | |||
| 520 | [[package]] | ||
| 364 | name = "redox_syscall" | 521 | name = "redox_syscall" |
| 365 | version = "0.5.13" | 522 | version = "0.5.13" |
| 366 | source = "registry+https://github.com/rust-lang/crates.io-index" | 523 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -370,6 +527,48 @@ dependencies = [ | |||
| 370 | ] | 527 | ] |
| 371 | 528 | ||
| 372 | [[package]] | 529 | [[package]] |
| 530 | name = "regex" | ||
| 531 | version = "1.11.1" | ||
| 532 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 533 | checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" | ||
| 534 | dependencies = [ | ||
| 535 | "aho-corasick", | ||
| 536 | "memchr", | ||
| 537 | "regex-automata", | ||
| 538 | "regex-syntax", | ||
| 539 | ] | ||
| 540 | |||
| 541 | [[package]] | ||
| 542 | name = "regex-automata" | ||
| 543 | version = "0.4.9" | ||
| 544 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 545 | checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" | ||
| 546 | dependencies = [ | ||
| 547 | "aho-corasick", | ||
| 548 | "memchr", | ||
| 549 | "regex-syntax", | ||
| 550 | ] | ||
| 551 | |||
| 552 | [[package]] | ||
| 553 | name = "regex-syntax" | ||
| 554 | version = "0.8.5" | ||
| 555 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 556 | checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" | ||
| 557 | |||
| 558 | [[package]] | ||
| 559 | name = "rustix" | ||
| 560 | version = "1.0.7" | ||
| 561 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 562 | checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266" | ||
| 563 | dependencies = [ | ||
| 564 | "bitflags 2.9.1", | ||
| 565 | "errno", | ||
| 566 | "libc", | ||
| 567 | "linux-raw-sys", | ||
| 568 | "windows-sys", | ||
| 569 | ] | ||
| 570 | |||
| 571 | [[package]] | ||
| 373 | name = "same-file" | 572 | name = "same-file" |
| 374 | version = "1.0.6" | 573 | version = "1.0.6" |
| 375 | source = "registry+https://github.com/rust-lang/crates.io-index" | 574 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -379,6 +578,26 @@ dependencies = [ | |||
| 379 | ] | 578 | ] |
| 380 | 579 | ||
| 381 | [[package]] | 580 | [[package]] |
| 581 | name = "serde" | ||
| 582 | version = "1.0.219" | ||
| 583 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 584 | checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" | ||
| 585 | dependencies = [ | ||
| 586 | "serde_derive", | ||
| 587 | ] | ||
| 588 | |||
| 589 | [[package]] | ||
| 590 | name = "serde_derive" | ||
| 591 | version = "1.0.219" | ||
| 592 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 593 | checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" | ||
| 594 | dependencies = [ | ||
| 595 | "proc-macro2", | ||
| 596 | "quote", | ||
| 597 | "syn", | ||
| 598 | ] | ||
| 599 | |||
| 600 | [[package]] | ||
| 382 | name = "sharded-slab" | 601 | name = "sharded-slab" |
| 383 | version = "0.1.7" | 602 | version = "0.1.7" |
| 384 | source = "registry+https://github.com/rust-lang/crates.io-index" | 603 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -411,6 +630,25 @@ dependencies = [ | |||
| 411 | ] | 630 | ] |
| 412 | 631 | ||
| 413 | [[package]] | 632 | [[package]] |
| 633 | name = "tempfile" | ||
| 634 | version = "3.20.0" | ||
| 635 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 636 | checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" | ||
| 637 | dependencies = [ | ||
| 638 | "fastrand", | ||
| 639 | "getrandom", | ||
| 640 | "once_cell", | ||
| 641 | "rustix", | ||
| 642 | "windows-sys", | ||
| 643 | ] | ||
| 644 | |||
| 645 | [[package]] | ||
| 646 | name = "termtree" | ||
| 647 | version = "0.5.1" | ||
| 648 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 649 | checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" | ||
| 650 | |||
| 651 | [[package]] | ||
| 414 | name = "thread_local" | 652 | name = "thread_local" |
| 415 | version = "1.1.9" | 653 | version = "1.1.9" |
| 416 | source = "registry+https://github.com/rust-lang/crates.io-index" | 654 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -495,6 +733,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 495 | checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" | 733 | checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" |
| 496 | 734 | ||
| 497 | [[package]] | 735 | [[package]] |
| 736 | name = "wait-timeout" | ||
| 737 | version = "0.2.1" | ||
| 738 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 739 | checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11" | ||
| 740 | dependencies = [ | ||
| 741 | "libc", | ||
| 742 | ] | ||
| 743 | |||
| 744 | [[package]] | ||
| 498 | name = "walkdir" | 745 | name = "walkdir" |
| 499 | version = "2.5.0" | 746 | version = "2.5.0" |
| 500 | source = "registry+https://github.com/rust-lang/crates.io-index" | 747 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -511,6 +758,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 511 | checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" | 758 | checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" |
| 512 | 759 | ||
| 513 | [[package]] | 760 | [[package]] |
| 761 | name = "wasi" | ||
| 762 | version = "0.14.2+wasi-0.2.4" | ||
| 763 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 764 | checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" | ||
| 765 | dependencies = [ | ||
| 766 | "wit-bindgen-rt", | ||
| 767 | ] | ||
| 768 | |||
| 769 | [[package]] | ||
| 514 | name = "winapi" | 770 | name = "winapi" |
| 515 | version = "0.3.9" | 771 | version = "0.3.9" |
| 516 | source = "registry+https://github.com/rust-lang/crates.io-index" | 772 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -613,3 +869,12 @@ name = "windows_x86_64_msvc" | |||
| 613 | version = "0.52.6" | 869 | version = "0.52.6" |
| 614 | source = "registry+https://github.com/rust-lang/crates.io-index" | 870 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 615 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" | 871 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" |
| 872 | |||
| 873 | [[package]] | ||
| 874 | name = "wit-bindgen-rt" | ||
| 875 | version = "0.39.0" | ||
| 876 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 877 | checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" | ||
| 878 | dependencies = [ | ||
| 879 | "bitflags 2.9.1", | ||
| 880 | ] | ||
