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