aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock125
1 files changed, 125 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 5bc99f3..d38b2c7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -165,6 +165,8 @@ dependencies = [
165 "serde", 165 "serde",
166 "serde-json-core", 166 "serde-json-core",
167 "static_cell", 167 "static_cell",
168 "tracing",
169 "tracing-subscriber",
168] 170]
169 171
170[[package]] 172[[package]]
@@ -381,6 +383,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
381checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 383checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
382 384
383[[package]] 385[[package]]
386name = "lazy_static"
387version = "1.5.0"
388source = "registry+https://github.com/rust-lang/crates.io-index"
389checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
390
391[[package]]
384name = "libc" 392name = "libc"
385version = "0.2.178" 393version = "0.2.178"
386source = "registry+https://github.com/rust-lang/crates.io-index" 394source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -393,6 +401,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
393checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" 401checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
394 402
395[[package]] 403[[package]]
404name = "log"
405version = "0.4.29"
406source = "registry+https://github.com/rust-lang/crates.io-index"
407checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
408
409[[package]]
396name = "managed" 410name = "managed"
397version = "0.8.0" 411version = "0.8.0"
398source = "registry+https://github.com/rust-lang/crates.io-index" 412source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -414,6 +428,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
414checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d" 428checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d"
415 429
416[[package]] 430[[package]]
431name = "nu-ansi-term"
432version = "0.50.3"
433source = "registry+https://github.com/rust-lang/crates.io-index"
434checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
435dependencies = [
436 "windows-sys",
437]
438
439[[package]]
440name = "once_cell"
441version = "1.21.3"
442source = "registry+https://github.com/rust-lang/crates.io-index"
443checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
444
445[[package]]
446name = "pin-project-lite"
447version = "0.2.16"
448source = "registry+https://github.com/rust-lang/crates.io-index"
449checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
450
451[[package]]
417name = "portable-atomic" 452name = "portable-atomic"
418version = "1.11.1" 453version = "1.11.1"
419source = "registry+https://github.com/rust-lang/crates.io-index" 454source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -551,6 +586,21 @@ dependencies = [
551] 586]
552 587
553[[package]] 588[[package]]
589name = "sharded-slab"
590version = "0.1.7"
591source = "registry+https://github.com/rust-lang/crates.io-index"
592checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
593dependencies = [
594 "lazy_static",
595]
596
597[[package]]
598name = "smallvec"
599version = "1.15.1"
600source = "registry+https://github.com/rust-lang/crates.io-index"
601checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
602
603[[package]]
554name = "smoltcp" 604name = "smoltcp"
555version = "0.12.0" 605version = "0.12.0"
556source = "registry+https://github.com/rust-lang/crates.io-index" 606source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -617,12 +667,72 @@ dependencies = [
617] 667]
618 668
619[[package]] 669[[package]]
670name = "thread_local"
671version = "1.1.9"
672source = "registry+https://github.com/rust-lang/crates.io-index"
673checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
674dependencies = [
675 "cfg-if",
676]
677
678[[package]]
679name = "tracing"
680version = "0.1.43"
681source = "registry+https://github.com/rust-lang/crates.io-index"
682checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
683dependencies = [
684 "pin-project-lite",
685 "tracing-core",
686]
687
688[[package]]
689name = "tracing-core"
690version = "0.1.35"
691source = "registry+https://github.com/rust-lang/crates.io-index"
692checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
693dependencies = [
694 "once_cell",
695 "valuable",
696]
697
698[[package]]
699name = "tracing-log"
700version = "0.2.0"
701source = "registry+https://github.com/rust-lang/crates.io-index"
702checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
703dependencies = [
704 "log",
705 "once_cell",
706 "tracing-core",
707]
708
709[[package]]
710name = "tracing-subscriber"
711version = "0.3.22"
712source = "registry+https://github.com/rust-lang/crates.io-index"
713checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
714dependencies = [
715 "nu-ansi-term",
716 "sharded-slab",
717 "smallvec",
718 "thread_local",
719 "tracing-core",
720 "tracing-log",
721]
722
723[[package]]
620name = "unicode-ident" 724name = "unicode-ident"
621version = "1.0.22" 725version = "1.0.22"
622source = "registry+https://github.com/rust-lang/crates.io-index" 726source = "registry+https://github.com/rust-lang/crates.io-index"
623checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 727checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
624 728
625[[package]] 729[[package]]
730name = "valuable"
731version = "0.1.1"
732source = "registry+https://github.com/rust-lang/crates.io-index"
733checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
734
735[[package]]
626name = "void" 736name = "void"
627version = "1.0.2" 737version = "1.0.2"
628source = "registry+https://github.com/rust-lang/crates.io-index" 738source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -638,6 +748,21 @@ dependencies = [
638] 748]
639 749
640[[package]] 750[[package]]
751name = "windows-link"
752version = "0.2.1"
753source = "registry+https://github.com/rust-lang/crates.io-index"
754checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
755
756[[package]]
757name = "windows-sys"
758version = "0.61.2"
759source = "registry+https://github.com/rust-lang/crates.io-index"
760checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
761dependencies = [
762 "windows-link",
763]
764
765[[package]]
641name = "wit-bindgen" 766name = "wit-bindgen"
642version = "0.46.0" 767version = "0.46.0"
643source = "registry+https://github.com/rust-lang/crates.io-index" 768source = "registry+https://github.com/rust-lang/crates.io-index"