diff options
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 426 |
1 files changed, 426 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index a023fa268..747a69c08 100644 --- a/Cargo.lock +++ b/Cargo.lock | |||
| @@ -3,6 +3,15 @@ | |||
| 3 | version = 4 | 3 | version = 4 |
| 4 | 4 | ||
| 5 | [[package]] | 5 | [[package]] |
| 6 | name = "aho-corasick" | ||
| 7 | version = "1.1.4" | ||
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 9 | checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" | ||
| 10 | dependencies = [ | ||
| 11 | "memchr", | ||
| 12 | ] | ||
| 13 | |||
| 14 | [[package]] | ||
| 6 | name = "autocfg" | 15 | name = "autocfg" |
| 7 | version = "1.5.0" | 16 | version = "1.5.0" |
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | 17 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -36,12 +45,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 36 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" | 45 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" |
| 37 | 46 | ||
| 38 | [[package]] | 47 | [[package]] |
| 48 | name = "cc" | ||
| 49 | version = "1.2.47" | ||
| 50 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 51 | checksum = "cd405d82c84ff7f35739f175f67d8b9fb7687a0e84ccdc78bd3568839827cf07" | ||
| 52 | dependencies = [ | ||
| 53 | "find-msvc-tools", | ||
| 54 | "shlex", | ||
| 55 | ] | ||
| 56 | |||
| 57 | [[package]] | ||
| 39 | name = "cfg-if" | 58 | name = "cfg-if" |
| 40 | version = "1.0.4" | 59 | version = "1.0.4" |
| 41 | source = "registry+https://github.com/rust-lang/crates.io-index" | 60 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 42 | checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" | 61 | checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" |
| 43 | 62 | ||
| 44 | [[package]] | 63 | [[package]] |
| 64 | name = "cordyceps" | ||
| 65 | version = "0.3.4" | ||
| 66 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 67 | checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a" | ||
| 68 | dependencies = [ | ||
| 69 | "loom", | ||
| 70 | "tracing", | ||
| 71 | ] | ||
| 72 | |||
| 73 | [[package]] | ||
| 45 | name = "cortex-m" | 74 | name = "cortex-m" |
| 46 | version = "0.7.7" | 75 | version = "0.7.7" |
| 47 | source = "registry+https://github.com/rust-lang/crates.io-index" | 76 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -175,6 +204,7 @@ dependencies = [ | |||
| 175 | "embedded-io", | 204 | "embedded-io", |
| 176 | "embedded-io-async", | 205 | "embedded-io-async", |
| 177 | "heapless", | 206 | "heapless", |
| 207 | "maitake-sync", | ||
| 178 | "mcxa-pac", | 208 | "mcxa-pac", |
| 179 | "nb 1.1.0", | 209 | "nb 1.1.0", |
| 180 | "paste", | 210 | "paste", |
| @@ -285,6 +315,12 @@ dependencies = [ | |||
| 285 | ] | 315 | ] |
| 286 | 316 | ||
| 287 | [[package]] | 317 | [[package]] |
| 318 | name = "find-msvc-tools" | ||
| 319 | version = "0.1.5" | ||
| 320 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 321 | checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" | ||
| 322 | |||
| 323 | [[package]] | ||
| 288 | name = "futures-core" | 324 | name = "futures-core" |
| 289 | version = "0.3.31" | 325 | version = "0.3.31" |
| 290 | source = "registry+https://github.com/rust-lang/crates.io-index" | 326 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -297,6 +333,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 297 | checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" | 333 | checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" |
| 298 | 334 | ||
| 299 | [[package]] | 335 | [[package]] |
| 336 | name = "generator" | ||
| 337 | version = "0.8.7" | ||
| 338 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 339 | checksum = "605183a538e3e2a9c1038635cc5c2d194e2ee8fd0d1b66b8349fad7dbacce5a2" | ||
| 340 | dependencies = [ | ||
| 341 | "cc", | ||
| 342 | "cfg-if", | ||
| 343 | "libc", | ||
| 344 | "log", | ||
| 345 | "rustversion", | ||
| 346 | "windows", | ||
| 347 | ] | ||
| 348 | |||
| 349 | [[package]] | ||
| 300 | name = "hash32" | 350 | name = "hash32" |
| 301 | version = "0.3.1" | 351 | version = "0.3.1" |
| 302 | source = "registry+https://github.com/rust-lang/crates.io-index" | 352 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -316,12 +366,68 @@ dependencies = [ | |||
| 316 | ] | 366 | ] |
| 317 | 367 | ||
| 318 | [[package]] | 368 | [[package]] |
| 369 | name = "lazy_static" | ||
| 370 | version = "1.5.0" | ||
| 371 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 372 | checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" | ||
| 373 | |||
| 374 | [[package]] | ||
| 375 | name = "libc" | ||
| 376 | version = "0.2.177" | ||
| 377 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 378 | checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" | ||
| 379 | |||
| 380 | [[package]] | ||
| 319 | name = "litrs" | 381 | name = "litrs" |
| 320 | version = "1.0.0" | 382 | version = "1.0.0" |
| 321 | source = "registry+https://github.com/rust-lang/crates.io-index" | 383 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 322 | checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" | 384 | checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" |
| 323 | 385 | ||
| 324 | [[package]] | 386 | [[package]] |
| 387 | name = "log" | ||
| 388 | version = "0.4.28" | ||
| 389 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 390 | checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" | ||
| 391 | |||
| 392 | [[package]] | ||
| 393 | name = "loom" | ||
| 394 | version = "0.7.2" | ||
| 395 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 396 | checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" | ||
| 397 | dependencies = [ | ||
| 398 | "cfg-if", | ||
| 399 | "generator", | ||
| 400 | "scoped-tls", | ||
| 401 | "tracing", | ||
| 402 | "tracing-subscriber", | ||
| 403 | ] | ||
| 404 | |||
| 405 | [[package]] | ||
| 406 | name = "maitake-sync" | ||
| 407 | version = "0.2.2" | ||
| 408 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 409 | checksum = "748f86d9befd480b602c3bebc9ef30dbf2f3dfc8acc4a73d07b90f0117e6de3f" | ||
| 410 | dependencies = [ | ||
| 411 | "cordyceps", | ||
| 412 | "critical-section", | ||
| 413 | "loom", | ||
| 414 | "mutex-traits", | ||
| 415 | "mycelium-bitfield", | ||
| 416 | "pin-project", | ||
| 417 | "portable-atomic", | ||
| 418 | "tracing", | ||
| 419 | ] | ||
| 420 | |||
| 421 | [[package]] | ||
| 422 | name = "matchers" | ||
| 423 | version = "0.2.0" | ||
| 424 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 425 | checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" | ||
| 426 | dependencies = [ | ||
| 427 | "regex-automata", | ||
| 428 | ] | ||
| 429 | |||
| 430 | [[package]] | ||
| 325 | name = "mcxa-pac" | 431 | name = "mcxa-pac" |
| 326 | version = "0.1.0" | 432 | version = "0.1.0" |
| 327 | source = "git+https://github.com/OpenDevicePartnership/mcxa-pac#e18dfb52500ca77b8d8326662b966a80251182ca" | 433 | source = "git+https://github.com/OpenDevicePartnership/mcxa-pac#e18dfb52500ca77b8d8326662b966a80251182ca" |
| @@ -334,6 +440,24 @@ dependencies = [ | |||
| 334 | ] | 440 | ] |
| 335 | 441 | ||
| 336 | [[package]] | 442 | [[package]] |
| 443 | name = "memchr" | ||
| 444 | version = "2.7.6" | ||
| 445 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 446 | checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" | ||
| 447 | |||
| 448 | [[package]] | ||
| 449 | name = "mutex-traits" | ||
| 450 | version = "1.0.1" | ||
| 451 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 452 | checksum = "3929f2b5633d29cf7b6624992e5f3c1e9334f1193423e12d17be4faf678cde3f" | ||
| 453 | |||
| 454 | [[package]] | ||
| 455 | name = "mycelium-bitfield" | ||
| 456 | version = "0.1.5" | ||
| 457 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 458 | checksum = "24e0cc5e2c585acbd15c5ce911dff71e1f4d5313f43345873311c4f5efd741cc" | ||
| 459 | |||
| 460 | [[package]] | ||
| 337 | name = "nb" | 461 | name = "nb" |
| 338 | version = "0.1.3" | 462 | version = "0.1.3" |
| 339 | source = "registry+https://github.com/rust-lang/crates.io-index" | 463 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -349,6 +473,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 349 | checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d" | 473 | checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d" |
| 350 | 474 | ||
| 351 | [[package]] | 475 | [[package]] |
| 476 | name = "nu-ansi-term" | ||
| 477 | version = "0.50.3" | ||
| 478 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 479 | checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" | ||
| 480 | dependencies = [ | ||
| 481 | "windows-sys", | ||
| 482 | ] | ||
| 483 | |||
| 484 | [[package]] | ||
| 352 | name = "num-traits" | 485 | name = "num-traits" |
| 353 | version = "0.2.19" | 486 | version = "0.2.19" |
| 354 | source = "registry+https://github.com/rust-lang/crates.io-index" | 487 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -358,12 +491,53 @@ dependencies = [ | |||
| 358 | ] | 491 | ] |
| 359 | 492 | ||
| 360 | [[package]] | 493 | [[package]] |
| 494 | name = "once_cell" | ||
| 495 | version = "1.21.3" | ||
| 496 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 497 | checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" | ||
| 498 | |||
| 499 | [[package]] | ||
| 361 | name = "paste" | 500 | name = "paste" |
| 362 | version = "1.0.15" | 501 | version = "1.0.15" |
| 363 | source = "registry+https://github.com/rust-lang/crates.io-index" | 502 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 364 | checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" | 503 | checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" |
| 365 | 504 | ||
| 366 | [[package]] | 505 | [[package]] |
| 506 | name = "pin-project" | ||
| 507 | version = "1.1.10" | ||
| 508 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 509 | checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" | ||
| 510 | dependencies = [ | ||
| 511 | "pin-project-internal", | ||
| 512 | ] | ||
| 513 | |||
| 514 | [[package]] | ||
| 515 | name = "pin-project-internal" | ||
| 516 | version = "1.1.10" | ||
| 517 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 518 | checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" | ||
| 519 | dependencies = [ | ||
| 520 | "proc-macro2", | ||
| 521 | "quote", | ||
| 522 | "syn", | ||
| 523 | ] | ||
| 524 | |||
| 525 | [[package]] | ||
| 526 | name = "pin-project-lite" | ||
| 527 | version = "0.2.16" | ||
| 528 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 529 | checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" | ||
| 530 | |||
| 531 | [[package]] | ||
| 532 | name = "portable-atomic" | ||
| 533 | version = "1.11.1" | ||
| 534 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 535 | checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" | ||
| 536 | dependencies = [ | ||
| 537 | "critical-section", | ||
| 538 | ] | ||
| 539 | |||
| 540 | [[package]] | ||
| 367 | name = "proc-macro-error-attr2" | 541 | name = "proc-macro-error-attr2" |
| 368 | version = "2.0.0" | 542 | version = "2.0.0" |
| 369 | source = "registry+https://github.com/rust-lang/crates.io-index" | 543 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -404,6 +578,23 @@ dependencies = [ | |||
| 404 | ] | 578 | ] |
| 405 | 579 | ||
| 406 | [[package]] | 580 | [[package]] |
| 581 | name = "regex-automata" | ||
| 582 | version = "0.4.13" | ||
| 583 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 584 | checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" | ||
| 585 | dependencies = [ | ||
| 586 | "aho-corasick", | ||
| 587 | "memchr", | ||
| 588 | "regex-syntax", | ||
| 589 | ] | ||
| 590 | |||
| 591 | [[package]] | ||
| 592 | name = "regex-syntax" | ||
| 593 | version = "0.8.8" | ||
| 594 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 595 | checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" | ||
| 596 | |||
| 597 | [[package]] | ||
| 407 | name = "rustc_version" | 598 | name = "rustc_version" |
| 408 | version = "0.2.3" | 599 | version = "0.2.3" |
| 409 | source = "registry+https://github.com/rust-lang/crates.io-index" | 600 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -413,6 +604,18 @@ dependencies = [ | |||
| 413 | ] | 604 | ] |
| 414 | 605 | ||
| 415 | [[package]] | 606 | [[package]] |
| 607 | name = "rustversion" | ||
| 608 | version = "1.0.22" | ||
| 609 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 610 | checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" | ||
| 611 | |||
| 612 | [[package]] | ||
| 613 | name = "scoped-tls" | ||
| 614 | version = "1.0.1" | ||
| 615 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 616 | checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" | ||
| 617 | |||
| 618 | [[package]] | ||
| 416 | name = "semver" | 619 | name = "semver" |
| 417 | version = "0.9.0" | 620 | version = "0.9.0" |
| 418 | source = "registry+https://github.com/rust-lang/crates.io-index" | 621 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -428,6 +631,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 428 | checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" | 631 | checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" |
| 429 | 632 | ||
| 430 | [[package]] | 633 | [[package]] |
| 634 | name = "sharded-slab" | ||
| 635 | version = "0.1.7" | ||
| 636 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 637 | checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" | ||
| 638 | dependencies = [ | ||
| 639 | "lazy_static", | ||
| 640 | ] | ||
| 641 | |||
| 642 | [[package]] | ||
| 643 | name = "shlex" | ||
| 644 | version = "1.3.0" | ||
| 645 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 646 | checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" | ||
| 647 | |||
| 648 | [[package]] | ||
| 649 | name = "smallvec" | ||
| 650 | version = "1.15.1" | ||
| 651 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 652 | checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" | ||
| 653 | |||
| 654 | [[package]] | ||
| 431 | name = "stable_deref_trait" | 655 | name = "stable_deref_trait" |
| 432 | version = "1.2.1" | 656 | version = "1.2.1" |
| 433 | source = "registry+https://github.com/rust-lang/crates.io-index" | 657 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -465,12 +689,88 @@ dependencies = [ | |||
| 465 | ] | 689 | ] |
| 466 | 690 | ||
| 467 | [[package]] | 691 | [[package]] |
| 692 | name = "thread_local" | ||
| 693 | version = "1.1.9" | ||
| 694 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 695 | checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" | ||
| 696 | dependencies = [ | ||
| 697 | "cfg-if", | ||
| 698 | ] | ||
| 699 | |||
| 700 | [[package]] | ||
| 701 | name = "tracing" | ||
| 702 | version = "0.1.41" | ||
| 703 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 704 | checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" | ||
| 705 | dependencies = [ | ||
| 706 | "pin-project-lite", | ||
| 707 | "tracing-attributes", | ||
| 708 | "tracing-core", | ||
| 709 | ] | ||
| 710 | |||
| 711 | [[package]] | ||
| 712 | name = "tracing-attributes" | ||
| 713 | version = "0.1.30" | ||
| 714 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 715 | checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" | ||
| 716 | dependencies = [ | ||
| 717 | "proc-macro2", | ||
| 718 | "quote", | ||
| 719 | "syn", | ||
| 720 | ] | ||
| 721 | |||
| 722 | [[package]] | ||
| 723 | name = "tracing-core" | ||
| 724 | version = "0.1.34" | ||
| 725 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 726 | checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" | ||
| 727 | dependencies = [ | ||
| 728 | "once_cell", | ||
| 729 | "valuable", | ||
| 730 | ] | ||
| 731 | |||
| 732 | [[package]] | ||
| 733 | name = "tracing-log" | ||
| 734 | version = "0.2.0" | ||
| 735 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 736 | checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" | ||
| 737 | dependencies = [ | ||
| 738 | "log", | ||
| 739 | "once_cell", | ||
| 740 | "tracing-core", | ||
| 741 | ] | ||
| 742 | |||
| 743 | [[package]] | ||
| 744 | name = "tracing-subscriber" | ||
| 745 | version = "0.3.20" | ||
| 746 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 747 | checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" | ||
| 748 | dependencies = [ | ||
| 749 | "matchers", | ||
| 750 | "nu-ansi-term", | ||
| 751 | "once_cell", | ||
| 752 | "regex-automata", | ||
| 753 | "sharded-slab", | ||
| 754 | "smallvec", | ||
| 755 | "thread_local", | ||
| 756 | "tracing", | ||
| 757 | "tracing-core", | ||
| 758 | "tracing-log", | ||
| 759 | ] | ||
| 760 | |||
| 761 | [[package]] | ||
| 468 | name = "unicode-ident" | 762 | name = "unicode-ident" |
| 469 | version = "1.0.22" | 763 | version = "1.0.22" |
| 470 | source = "registry+https://github.com/rust-lang/crates.io-index" | 764 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 471 | checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" | 765 | checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" |
| 472 | 766 | ||
| 473 | [[package]] | 767 | [[package]] |
| 768 | name = "valuable" | ||
| 769 | version = "0.1.1" | ||
| 770 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 771 | checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" | ||
| 772 | |||
| 773 | [[package]] | ||
| 474 | name = "vcell" | 774 | name = "vcell" |
| 475 | version = "0.1.3" | 775 | version = "0.1.3" |
| 476 | source = "registry+https://github.com/rust-lang/crates.io-index" | 776 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -490,3 +790,129 @@ checksum = "de437e2a6208b014ab52972a27e59b33fa2920d3e00fe05026167a1c509d19cc" | |||
| 490 | dependencies = [ | 790 | dependencies = [ |
| 491 | "vcell", | 791 | "vcell", |
| 492 | ] | 792 | ] |
| 793 | |||
| 794 | [[package]] | ||
| 795 | name = "windows" | ||
| 796 | version = "0.61.3" | ||
| 797 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 798 | checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" | ||
| 799 | dependencies = [ | ||
| 800 | "windows-collections", | ||
| 801 | "windows-core", | ||
| 802 | "windows-future", | ||
| 803 | "windows-link 0.1.3", | ||
| 804 | "windows-numerics", | ||
| 805 | ] | ||
| 806 | |||
| 807 | [[package]] | ||
| 808 | name = "windows-collections" | ||
| 809 | version = "0.2.0" | ||
| 810 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 811 | checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" | ||
| 812 | dependencies = [ | ||
| 813 | "windows-core", | ||
| 814 | ] | ||
| 815 | |||
| 816 | [[package]] | ||
| 817 | name = "windows-core" | ||
| 818 | version = "0.61.2" | ||
| 819 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 820 | checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" | ||
| 821 | dependencies = [ | ||
| 822 | "windows-implement", | ||
| 823 | "windows-interface", | ||
| 824 | "windows-link 0.1.3", | ||
| 825 | "windows-result", | ||
| 826 | "windows-strings", | ||
| 827 | ] | ||
| 828 | |||
| 829 | [[package]] | ||
| 830 | name = "windows-future" | ||
| 831 | version = "0.2.1" | ||
| 832 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 833 | checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" | ||
| 834 | dependencies = [ | ||
| 835 | "windows-core", | ||
| 836 | "windows-link 0.1.3", | ||
| 837 | "windows-threading", | ||
| 838 | ] | ||
| 839 | |||
| 840 | [[package]] | ||
| 841 | name = "windows-implement" | ||
| 842 | version = "0.60.2" | ||
| 843 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 844 | checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" | ||
| 845 | dependencies = [ | ||
| 846 | "proc-macro2", | ||
| 847 | "quote", | ||
| 848 | "syn", | ||
| 849 | ] | ||
| 850 | |||
| 851 | [[package]] | ||
| 852 | name = "windows-interface" | ||
| 853 | version = "0.59.3" | ||
| 854 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 855 | checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" | ||
| 856 | dependencies = [ | ||
| 857 | "proc-macro2", | ||
| 858 | "quote", | ||
| 859 | "syn", | ||
| 860 | ] | ||
| 861 | |||
| 862 | [[package]] | ||
| 863 | name = "windows-link" | ||
| 864 | version = "0.1.3" | ||
| 865 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 866 | checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" | ||
| 867 | |||
| 868 | [[package]] | ||
| 869 | name = "windows-link" | ||
| 870 | version = "0.2.1" | ||
| 871 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 872 | checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" | ||
| 873 | |||
| 874 | [[package]] | ||
| 875 | name = "windows-numerics" | ||
| 876 | version = "0.2.0" | ||
| 877 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 878 | checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" | ||
| 879 | dependencies = [ | ||
| 880 | "windows-core", | ||
| 881 | "windows-link 0.1.3", | ||
| 882 | ] | ||
| 883 | |||
| 884 | [[package]] | ||
| 885 | name = "windows-result" | ||
| 886 | version = "0.3.4" | ||
| 887 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 888 | checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" | ||
| 889 | dependencies = [ | ||
| 890 | "windows-link 0.1.3", | ||
| 891 | ] | ||
| 892 | |||
| 893 | [[package]] | ||
| 894 | name = "windows-strings" | ||
| 895 | version = "0.4.2" | ||
| 896 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 897 | checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" | ||
| 898 | dependencies = [ | ||
| 899 | "windows-link 0.1.3", | ||
| 900 | ] | ||
| 901 | |||
| 902 | [[package]] | ||
| 903 | name = "windows-sys" | ||
| 904 | version = "0.61.2" | ||
| 905 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 906 | checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" | ||
| 907 | dependencies = [ | ||
| 908 | "windows-link 0.2.1", | ||
| 909 | ] | ||
| 910 | |||
| 911 | [[package]] | ||
| 912 | name = "windows-threading" | ||
| 913 | version = "0.1.0" | ||
| 914 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 915 | checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" | ||
| 916 | dependencies = [ | ||
| 917 | "windows-link 0.1.3", | ||
| 918 | ] | ||
