typespec-rust-emitter 0.1.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.qwen/settings.json +11 -0
- package/CHANGELOG.md +86 -0
- package/DEV.md +81 -0
- package/QWEN.md +238 -0
- package/README.md +194 -4
- package/dist/src/emitter.d.ts +2 -0
- package/dist/src/emitter.js +662 -16
- package/dist/src/emitter.js.map +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/test/hello.test.js +78 -0
- package/dist/test/hello.test.js.map +1 -1
- package/example/lib/learning/models.tsp +2 -0
- package/example/output-rust/Cargo.lock +639 -1
- package/example/output-rust/Cargo.toml +9 -1
- package/example/output-rust/src/generated/mod.rs +2 -1
- package/example/output-rust/src/generated/server.rs +712 -0
- package/example/output-rust/src/generated/types.rs +20 -42
- package/example/package-lock.json +1 -2
- package/justfile +4 -1
- package/package.json +8 -3
- package/src/emitter.ts +868 -15
- package/src/index.ts +1 -1
- package/src/lib.tsp +4 -2
- package/test/hello.test.ts +100 -0
|
@@ -17,6 +17,32 @@ version = "0.2.21"
|
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
18
|
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
19
19
|
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "android_system_properties"
|
|
22
|
+
version = "0.1.5"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"libc",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "anyhow"
|
|
31
|
+
version = "1.0.102"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "async-trait"
|
|
37
|
+
version = "0.1.89"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"proc-macro2",
|
|
42
|
+
"quote",
|
|
43
|
+
"syn",
|
|
44
|
+
]
|
|
45
|
+
|
|
20
46
|
[[package]]
|
|
21
47
|
name = "atoi"
|
|
22
48
|
version = "2.0.0"
|
|
@@ -26,12 +52,70 @@ dependencies = [
|
|
|
26
52
|
"num-traits",
|
|
27
53
|
]
|
|
28
54
|
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "atomic-waker"
|
|
57
|
+
version = "1.1.2"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
60
|
+
|
|
29
61
|
[[package]]
|
|
30
62
|
name = "autocfg"
|
|
31
63
|
version = "1.5.0"
|
|
32
64
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
65
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
34
66
|
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "axum"
|
|
69
|
+
version = "0.8.8"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
|
|
72
|
+
dependencies = [
|
|
73
|
+
"axum-core",
|
|
74
|
+
"bytes",
|
|
75
|
+
"form_urlencoded",
|
|
76
|
+
"futures-util",
|
|
77
|
+
"http",
|
|
78
|
+
"http-body",
|
|
79
|
+
"http-body-util",
|
|
80
|
+
"hyper",
|
|
81
|
+
"hyper-util",
|
|
82
|
+
"itoa",
|
|
83
|
+
"matchit",
|
|
84
|
+
"memchr",
|
|
85
|
+
"mime",
|
|
86
|
+
"percent-encoding",
|
|
87
|
+
"pin-project-lite",
|
|
88
|
+
"serde_core",
|
|
89
|
+
"serde_json",
|
|
90
|
+
"serde_path_to_error",
|
|
91
|
+
"serde_urlencoded",
|
|
92
|
+
"sync_wrapper",
|
|
93
|
+
"tokio",
|
|
94
|
+
"tower",
|
|
95
|
+
"tower-layer",
|
|
96
|
+
"tower-service",
|
|
97
|
+
"tracing",
|
|
98
|
+
]
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "axum-core"
|
|
102
|
+
version = "0.5.6"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"bytes",
|
|
107
|
+
"futures-core",
|
|
108
|
+
"http",
|
|
109
|
+
"http-body",
|
|
110
|
+
"http-body-util",
|
|
111
|
+
"mime",
|
|
112
|
+
"pin-project-lite",
|
|
113
|
+
"sync_wrapper",
|
|
114
|
+
"tower-layer",
|
|
115
|
+
"tower-service",
|
|
116
|
+
"tracing",
|
|
117
|
+
]
|
|
118
|
+
|
|
35
119
|
[[package]]
|
|
36
120
|
name = "base64"
|
|
37
121
|
version = "0.22.1"
|
|
@@ -80,12 +164,36 @@ version = "1.11.1"
|
|
|
80
164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
165
|
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
82
166
|
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "cc"
|
|
169
|
+
version = "1.2.58"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "e1e928d4b69e3077709075a938a05ffbedfa53a84c8f766efbf8220bb1ff60e1"
|
|
172
|
+
dependencies = [
|
|
173
|
+
"find-msvc-tools",
|
|
174
|
+
"shlex",
|
|
175
|
+
]
|
|
176
|
+
|
|
83
177
|
[[package]]
|
|
84
178
|
name = "cfg-if"
|
|
85
179
|
version = "1.0.4"
|
|
86
180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
181
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
88
182
|
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "chrono"
|
|
185
|
+
version = "0.4.44"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"iana-time-zone",
|
|
190
|
+
"js-sys",
|
|
191
|
+
"num-traits",
|
|
192
|
+
"serde",
|
|
193
|
+
"wasm-bindgen",
|
|
194
|
+
"windows-link",
|
|
195
|
+
]
|
|
196
|
+
|
|
89
197
|
[[package]]
|
|
90
198
|
name = "concurrent-queue"
|
|
91
199
|
version = "2.5.0"
|
|
@@ -101,6 +209,12 @@ version = "0.9.6"
|
|
|
101
209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
210
|
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
103
211
|
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "core-foundation-sys"
|
|
214
|
+
version = "0.8.7"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
217
|
+
|
|
104
218
|
[[package]]
|
|
105
219
|
name = "cpufeatures"
|
|
106
220
|
version = "0.2.17"
|
|
@@ -205,6 +319,16 @@ version = "1.0.2"
|
|
|
205
319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
320
|
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
207
321
|
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "errno"
|
|
324
|
+
version = "0.3.14"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"libc",
|
|
329
|
+
"windows-sys 0.61.2",
|
|
330
|
+
]
|
|
331
|
+
|
|
208
332
|
[[package]]
|
|
209
333
|
name = "etcetera"
|
|
210
334
|
version = "0.8.0"
|
|
@@ -227,6 +351,22 @@ dependencies = [
|
|
|
227
351
|
"pin-project-lite",
|
|
228
352
|
]
|
|
229
353
|
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "eyre"
|
|
356
|
+
version = "0.6.12"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"indenter",
|
|
361
|
+
"once_cell",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "find-msvc-tools"
|
|
366
|
+
version = "0.1.9"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
369
|
+
|
|
230
370
|
[[package]]
|
|
231
371
|
name = "flume"
|
|
232
372
|
version = "0.11.1"
|
|
@@ -345,6 +485,19 @@ dependencies = [
|
|
|
345
485
|
"wasi",
|
|
346
486
|
]
|
|
347
487
|
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "getrandom"
|
|
490
|
+
version = "0.4.2"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"cfg-if",
|
|
495
|
+
"libc",
|
|
496
|
+
"r-efi",
|
|
497
|
+
"wasip2",
|
|
498
|
+
"wasip3",
|
|
499
|
+
]
|
|
500
|
+
|
|
348
501
|
[[package]]
|
|
349
502
|
name = "hashbrown"
|
|
350
503
|
version = "0.15.5"
|
|
@@ -410,6 +563,111 @@ dependencies = [
|
|
|
410
563
|
"windows-sys 0.61.2",
|
|
411
564
|
]
|
|
412
565
|
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "http"
|
|
568
|
+
version = "1.4.0"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"bytes",
|
|
573
|
+
"itoa",
|
|
574
|
+
]
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "http-body"
|
|
578
|
+
version = "1.0.1"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"bytes",
|
|
583
|
+
"http",
|
|
584
|
+
]
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "http-body-util"
|
|
588
|
+
version = "0.1.3"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"bytes",
|
|
593
|
+
"futures-core",
|
|
594
|
+
"http",
|
|
595
|
+
"http-body",
|
|
596
|
+
"pin-project-lite",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "httparse"
|
|
601
|
+
version = "1.10.1"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
604
|
+
|
|
605
|
+
[[package]]
|
|
606
|
+
name = "httpdate"
|
|
607
|
+
version = "1.0.3"
|
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "hyper"
|
|
613
|
+
version = "1.8.1"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
616
|
+
dependencies = [
|
|
617
|
+
"atomic-waker",
|
|
618
|
+
"bytes",
|
|
619
|
+
"futures-channel",
|
|
620
|
+
"futures-core",
|
|
621
|
+
"http",
|
|
622
|
+
"http-body",
|
|
623
|
+
"httparse",
|
|
624
|
+
"httpdate",
|
|
625
|
+
"itoa",
|
|
626
|
+
"pin-project-lite",
|
|
627
|
+
"pin-utils",
|
|
628
|
+
"smallvec",
|
|
629
|
+
"tokio",
|
|
630
|
+
]
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "hyper-util"
|
|
634
|
+
version = "0.1.20"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
637
|
+
dependencies = [
|
|
638
|
+
"bytes",
|
|
639
|
+
"http",
|
|
640
|
+
"http-body",
|
|
641
|
+
"hyper",
|
|
642
|
+
"pin-project-lite",
|
|
643
|
+
"tokio",
|
|
644
|
+
"tower-service",
|
|
645
|
+
]
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "iana-time-zone"
|
|
649
|
+
version = "0.1.65"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"android_system_properties",
|
|
654
|
+
"core-foundation-sys",
|
|
655
|
+
"iana-time-zone-haiku",
|
|
656
|
+
"js-sys",
|
|
657
|
+
"log",
|
|
658
|
+
"wasm-bindgen",
|
|
659
|
+
"windows-core",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "iana-time-zone-haiku"
|
|
664
|
+
version = "0.1.2"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"cc",
|
|
669
|
+
]
|
|
670
|
+
|
|
413
671
|
[[package]]
|
|
414
672
|
name = "icu_collections"
|
|
415
673
|
version = "2.1.1"
|
|
@@ -491,6 +749,12 @@ dependencies = [
|
|
|
491
749
|
"zerovec",
|
|
492
750
|
]
|
|
493
751
|
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "id-arena"
|
|
754
|
+
version = "2.3.0"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
757
|
+
|
|
494
758
|
[[package]]
|
|
495
759
|
name = "idna"
|
|
496
760
|
version = "1.1.0"
|
|
@@ -512,6 +776,12 @@ dependencies = [
|
|
|
512
776
|
"icu_properties",
|
|
513
777
|
]
|
|
514
778
|
|
|
779
|
+
[[package]]
|
|
780
|
+
name = "indenter"
|
|
781
|
+
version = "0.3.4"
|
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
+
checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5"
|
|
784
|
+
|
|
515
785
|
[[package]]
|
|
516
786
|
name = "indexmap"
|
|
517
787
|
version = "2.13.0"
|
|
@@ -520,6 +790,8 @@ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
|
520
790
|
dependencies = [
|
|
521
791
|
"equivalent",
|
|
522
792
|
"hashbrown 0.16.1",
|
|
793
|
+
"serde",
|
|
794
|
+
"serde_core",
|
|
523
795
|
]
|
|
524
796
|
|
|
525
797
|
[[package]]
|
|
@@ -547,6 +819,12 @@ dependencies = [
|
|
|
547
819
|
"spin",
|
|
548
820
|
]
|
|
549
821
|
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "leb128fmt"
|
|
824
|
+
version = "0.1.0"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
827
|
+
|
|
550
828
|
[[package]]
|
|
551
829
|
name = "libc"
|
|
552
830
|
version = "0.2.183"
|
|
@@ -602,6 +880,12 @@ version = "0.4.29"
|
|
|
602
880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
881
|
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
604
882
|
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "matchit"
|
|
885
|
+
version = "0.8.4"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
|
|
888
|
+
|
|
605
889
|
[[package]]
|
|
606
890
|
name = "md-5"
|
|
607
891
|
version = "0.10.6"
|
|
@@ -618,6 +902,12 @@ version = "2.8.0"
|
|
|
618
902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
903
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
620
904
|
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "mime"
|
|
907
|
+
version = "0.3.17"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
910
|
+
|
|
621
911
|
[[package]]
|
|
622
912
|
name = "mio"
|
|
623
913
|
version = "1.1.1"
|
|
@@ -685,11 +975,19 @@ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
|
685
975
|
name = "output-rust"
|
|
686
976
|
version = "0.1.0"
|
|
687
977
|
dependencies = [
|
|
978
|
+
"async-trait",
|
|
979
|
+
"axum",
|
|
980
|
+
"chrono",
|
|
981
|
+
"eyre",
|
|
688
982
|
"regex",
|
|
689
983
|
"serde",
|
|
690
984
|
"serde_json",
|
|
691
985
|
"sqlx",
|
|
986
|
+
"strum",
|
|
692
987
|
"thiserror",
|
|
988
|
+
"tokio",
|
|
989
|
+
"tower",
|
|
990
|
+
"tower-http",
|
|
693
991
|
"uuid",
|
|
694
992
|
]
|
|
695
993
|
|
|
@@ -743,6 +1041,12 @@ version = "0.2.17"
|
|
|
743
1041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
1042
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
745
1043
|
|
|
1044
|
+
[[package]]
|
|
1045
|
+
name = "pin-utils"
|
|
1046
|
+
version = "0.1.0"
|
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1048
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1049
|
+
|
|
746
1050
|
[[package]]
|
|
747
1051
|
name = "pkcs1"
|
|
748
1052
|
version = "0.7.5"
|
|
@@ -794,6 +1098,16 @@ dependencies = [
|
|
|
794
1098
|
"zerocopy",
|
|
795
1099
|
]
|
|
796
1100
|
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "prettyplease"
|
|
1103
|
+
version = "0.2.37"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"proc-macro2",
|
|
1108
|
+
"syn",
|
|
1109
|
+
]
|
|
1110
|
+
|
|
797
1111
|
[[package]]
|
|
798
1112
|
name = "proc-macro2"
|
|
799
1113
|
version = "1.0.106"
|
|
@@ -812,6 +1126,12 @@ dependencies = [
|
|
|
812
1126
|
"proc-macro2",
|
|
813
1127
|
]
|
|
814
1128
|
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "r-efi"
|
|
1131
|
+
version = "6.0.0"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1134
|
+
|
|
815
1135
|
[[package]]
|
|
816
1136
|
name = "rand"
|
|
817
1137
|
version = "0.8.5"
|
|
@@ -839,7 +1159,7 @@ version = "0.6.4"
|
|
|
839
1159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
1160
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
841
1161
|
dependencies = [
|
|
842
|
-
"getrandom",
|
|
1162
|
+
"getrandom 0.2.17",
|
|
843
1163
|
]
|
|
844
1164
|
|
|
845
1165
|
[[package]]
|
|
@@ -927,6 +1247,12 @@ version = "1.2.0"
|
|
|
927
1247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
1248
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
929
1249
|
|
|
1250
|
+
[[package]]
|
|
1251
|
+
name = "semver"
|
|
1252
|
+
version = "1.0.27"
|
|
1253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
1255
|
+
|
|
930
1256
|
[[package]]
|
|
931
1257
|
name = "serde"
|
|
932
1258
|
version = "1.0.228"
|
|
@@ -970,6 +1296,17 @@ dependencies = [
|
|
|
970
1296
|
"zmij",
|
|
971
1297
|
]
|
|
972
1298
|
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "serde_path_to_error"
|
|
1301
|
+
version = "0.1.20"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
1304
|
+
dependencies = [
|
|
1305
|
+
"itoa",
|
|
1306
|
+
"serde",
|
|
1307
|
+
"serde_core",
|
|
1308
|
+
]
|
|
1309
|
+
|
|
973
1310
|
[[package]]
|
|
974
1311
|
name = "serde_urlencoded"
|
|
975
1312
|
version = "0.7.1"
|
|
@@ -1004,6 +1341,22 @@ dependencies = [
|
|
|
1004
1341
|
"digest",
|
|
1005
1342
|
]
|
|
1006
1343
|
|
|
1344
|
+
[[package]]
|
|
1345
|
+
name = "shlex"
|
|
1346
|
+
version = "1.3.0"
|
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1348
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1349
|
+
|
|
1350
|
+
[[package]]
|
|
1351
|
+
name = "signal-hook-registry"
|
|
1352
|
+
version = "1.4.8"
|
|
1353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1354
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1355
|
+
dependencies = [
|
|
1356
|
+
"errno",
|
|
1357
|
+
"libc",
|
|
1358
|
+
]
|
|
1359
|
+
|
|
1007
1360
|
[[package]]
|
|
1008
1361
|
name = "signature"
|
|
1009
1362
|
version = "2.2.0"
|
|
@@ -1263,6 +1616,27 @@ dependencies = [
|
|
|
1263
1616
|
"unicode-properties",
|
|
1264
1617
|
]
|
|
1265
1618
|
|
|
1619
|
+
[[package]]
|
|
1620
|
+
name = "strum"
|
|
1621
|
+
version = "0.27.2"
|
|
1622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
1624
|
+
dependencies = [
|
|
1625
|
+
"strum_macros",
|
|
1626
|
+
]
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "strum_macros"
|
|
1630
|
+
version = "0.27.2"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
1633
|
+
dependencies = [
|
|
1634
|
+
"heck",
|
|
1635
|
+
"proc-macro2",
|
|
1636
|
+
"quote",
|
|
1637
|
+
"syn",
|
|
1638
|
+
]
|
|
1639
|
+
|
|
1266
1640
|
[[package]]
|
|
1267
1641
|
name = "subtle"
|
|
1268
1642
|
version = "2.6.1"
|
|
@@ -1280,6 +1654,12 @@ dependencies = [
|
|
|
1280
1654
|
"unicode-ident",
|
|
1281
1655
|
]
|
|
1282
1656
|
|
|
1657
|
+
[[package]]
|
|
1658
|
+
name = "sync_wrapper"
|
|
1659
|
+
version = "1.0.2"
|
|
1660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1661
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1662
|
+
|
|
1283
1663
|
[[package]]
|
|
1284
1664
|
name = "synstructure"
|
|
1285
1665
|
version = "0.13.2"
|
|
@@ -1345,11 +1725,25 @@ dependencies = [
|
|
|
1345
1725
|
"bytes",
|
|
1346
1726
|
"libc",
|
|
1347
1727
|
"mio",
|
|
1728
|
+
"parking_lot",
|
|
1348
1729
|
"pin-project-lite",
|
|
1730
|
+
"signal-hook-registry",
|
|
1349
1731
|
"socket2",
|
|
1732
|
+
"tokio-macros",
|
|
1350
1733
|
"windows-sys 0.61.2",
|
|
1351
1734
|
]
|
|
1352
1735
|
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "tokio-macros"
|
|
1738
|
+
version = "2.6.1"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
|
|
1741
|
+
dependencies = [
|
|
1742
|
+
"proc-macro2",
|
|
1743
|
+
"quote",
|
|
1744
|
+
"syn",
|
|
1745
|
+
]
|
|
1746
|
+
|
|
1353
1747
|
[[package]]
|
|
1354
1748
|
name = "tokio-stream"
|
|
1355
1749
|
version = "0.1.18"
|
|
@@ -1361,6 +1755,50 @@ dependencies = [
|
|
|
1361
1755
|
"tokio",
|
|
1362
1756
|
]
|
|
1363
1757
|
|
|
1758
|
+
[[package]]
|
|
1759
|
+
name = "tower"
|
|
1760
|
+
version = "0.5.3"
|
|
1761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1762
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1763
|
+
dependencies = [
|
|
1764
|
+
"futures-core",
|
|
1765
|
+
"futures-util",
|
|
1766
|
+
"pin-project-lite",
|
|
1767
|
+
"sync_wrapper",
|
|
1768
|
+
"tokio",
|
|
1769
|
+
"tower-layer",
|
|
1770
|
+
"tower-service",
|
|
1771
|
+
"tracing",
|
|
1772
|
+
]
|
|
1773
|
+
|
|
1774
|
+
[[package]]
|
|
1775
|
+
name = "tower-http"
|
|
1776
|
+
version = "0.6.8"
|
|
1777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1778
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
1779
|
+
dependencies = [
|
|
1780
|
+
"base64",
|
|
1781
|
+
"bitflags",
|
|
1782
|
+
"bytes",
|
|
1783
|
+
"http",
|
|
1784
|
+
"mime",
|
|
1785
|
+
"pin-project-lite",
|
|
1786
|
+
"tower-layer",
|
|
1787
|
+
"tower-service",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "tower-layer"
|
|
1792
|
+
version = "0.3.3"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1795
|
+
|
|
1796
|
+
[[package]]
|
|
1797
|
+
name = "tower-service"
|
|
1798
|
+
version = "0.3.3"
|
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1801
|
+
|
|
1364
1802
|
[[package]]
|
|
1365
1803
|
name = "tracing"
|
|
1366
1804
|
version = "0.1.44"
|
|
@@ -1426,6 +1864,12 @@ version = "0.1.4"
|
|
|
1426
1864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1427
1865
|
checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
|
|
1428
1866
|
|
|
1867
|
+
[[package]]
|
|
1868
|
+
name = "unicode-xid"
|
|
1869
|
+
version = "0.2.6"
|
|
1870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1872
|
+
|
|
1429
1873
|
[[package]]
|
|
1430
1874
|
name = "url"
|
|
1431
1875
|
version = "2.5.8"
|
|
@@ -1450,6 +1894,7 @@ version = "1.23.0"
|
|
|
1450
1894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
1895
|
checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
|
|
1452
1896
|
dependencies = [
|
|
1897
|
+
"getrandom 0.4.2",
|
|
1453
1898
|
"js-sys",
|
|
1454
1899
|
"serde_core",
|
|
1455
1900
|
"wasm-bindgen",
|
|
@@ -1473,6 +1918,24 @@ version = "0.11.1+wasi-snapshot-preview1"
|
|
|
1473
1918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
1919
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1475
1920
|
|
|
1921
|
+
[[package]]
|
|
1922
|
+
name = "wasip2"
|
|
1923
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1925
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1926
|
+
dependencies = [
|
|
1927
|
+
"wit-bindgen",
|
|
1928
|
+
]
|
|
1929
|
+
|
|
1930
|
+
[[package]]
|
|
1931
|
+
name = "wasip3"
|
|
1932
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1935
|
+
dependencies = [
|
|
1936
|
+
"wit-bindgen",
|
|
1937
|
+
]
|
|
1938
|
+
|
|
1476
1939
|
[[package]]
|
|
1477
1940
|
name = "wasite"
|
|
1478
1941
|
version = "0.1.0"
|
|
@@ -1524,6 +1987,40 @@ dependencies = [
|
|
|
1524
1987
|
"unicode-ident",
|
|
1525
1988
|
]
|
|
1526
1989
|
|
|
1990
|
+
[[package]]
|
|
1991
|
+
name = "wasm-encoder"
|
|
1992
|
+
version = "0.244.0"
|
|
1993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1994
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1995
|
+
dependencies = [
|
|
1996
|
+
"leb128fmt",
|
|
1997
|
+
"wasmparser",
|
|
1998
|
+
]
|
|
1999
|
+
|
|
2000
|
+
[[package]]
|
|
2001
|
+
name = "wasm-metadata"
|
|
2002
|
+
version = "0.244.0"
|
|
2003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2004
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
2005
|
+
dependencies = [
|
|
2006
|
+
"anyhow",
|
|
2007
|
+
"indexmap",
|
|
2008
|
+
"wasm-encoder",
|
|
2009
|
+
"wasmparser",
|
|
2010
|
+
]
|
|
2011
|
+
|
|
2012
|
+
[[package]]
|
|
2013
|
+
name = "wasmparser"
|
|
2014
|
+
version = "0.244.0"
|
|
2015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
2017
|
+
dependencies = [
|
|
2018
|
+
"bitflags",
|
|
2019
|
+
"hashbrown 0.15.5",
|
|
2020
|
+
"indexmap",
|
|
2021
|
+
"semver",
|
|
2022
|
+
]
|
|
2023
|
+
|
|
1527
2024
|
[[package]]
|
|
1528
2025
|
name = "whoami"
|
|
1529
2026
|
version = "1.6.1"
|
|
@@ -1534,12 +2031,65 @@ dependencies = [
|
|
|
1534
2031
|
"wasite",
|
|
1535
2032
|
]
|
|
1536
2033
|
|
|
2034
|
+
[[package]]
|
|
2035
|
+
name = "windows-core"
|
|
2036
|
+
version = "0.62.2"
|
|
2037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2039
|
+
dependencies = [
|
|
2040
|
+
"windows-implement",
|
|
2041
|
+
"windows-interface",
|
|
2042
|
+
"windows-link",
|
|
2043
|
+
"windows-result",
|
|
2044
|
+
"windows-strings",
|
|
2045
|
+
]
|
|
2046
|
+
|
|
2047
|
+
[[package]]
|
|
2048
|
+
name = "windows-implement"
|
|
2049
|
+
version = "0.60.2"
|
|
2050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2052
|
+
dependencies = [
|
|
2053
|
+
"proc-macro2",
|
|
2054
|
+
"quote",
|
|
2055
|
+
"syn",
|
|
2056
|
+
]
|
|
2057
|
+
|
|
2058
|
+
[[package]]
|
|
2059
|
+
name = "windows-interface"
|
|
2060
|
+
version = "0.59.3"
|
|
2061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2062
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2063
|
+
dependencies = [
|
|
2064
|
+
"proc-macro2",
|
|
2065
|
+
"quote",
|
|
2066
|
+
"syn",
|
|
2067
|
+
]
|
|
2068
|
+
|
|
1537
2069
|
[[package]]
|
|
1538
2070
|
name = "windows-link"
|
|
1539
2071
|
version = "0.2.1"
|
|
1540
2072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
2073
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1542
2074
|
|
|
2075
|
+
[[package]]
|
|
2076
|
+
name = "windows-result"
|
|
2077
|
+
version = "0.4.1"
|
|
2078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2079
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2080
|
+
dependencies = [
|
|
2081
|
+
"windows-link",
|
|
2082
|
+
]
|
|
2083
|
+
|
|
2084
|
+
[[package]]
|
|
2085
|
+
name = "windows-strings"
|
|
2086
|
+
version = "0.5.1"
|
|
2087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2089
|
+
dependencies = [
|
|
2090
|
+
"windows-link",
|
|
2091
|
+
]
|
|
2092
|
+
|
|
1543
2093
|
[[package]]
|
|
1544
2094
|
name = "windows-sys"
|
|
1545
2095
|
version = "0.48.0"
|
|
@@ -1615,6 +2165,94 @@ version = "0.48.5"
|
|
|
1615
2165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
2166
|
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
1617
2167
|
|
|
2168
|
+
[[package]]
|
|
2169
|
+
name = "wit-bindgen"
|
|
2170
|
+
version = "0.51.0"
|
|
2171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2172
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
2173
|
+
dependencies = [
|
|
2174
|
+
"wit-bindgen-rust-macro",
|
|
2175
|
+
]
|
|
2176
|
+
|
|
2177
|
+
[[package]]
|
|
2178
|
+
name = "wit-bindgen-core"
|
|
2179
|
+
version = "0.51.0"
|
|
2180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2181
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
2182
|
+
dependencies = [
|
|
2183
|
+
"anyhow",
|
|
2184
|
+
"heck",
|
|
2185
|
+
"wit-parser",
|
|
2186
|
+
]
|
|
2187
|
+
|
|
2188
|
+
[[package]]
|
|
2189
|
+
name = "wit-bindgen-rust"
|
|
2190
|
+
version = "0.51.0"
|
|
2191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
2193
|
+
dependencies = [
|
|
2194
|
+
"anyhow",
|
|
2195
|
+
"heck",
|
|
2196
|
+
"indexmap",
|
|
2197
|
+
"prettyplease",
|
|
2198
|
+
"syn",
|
|
2199
|
+
"wasm-metadata",
|
|
2200
|
+
"wit-bindgen-core",
|
|
2201
|
+
"wit-component",
|
|
2202
|
+
]
|
|
2203
|
+
|
|
2204
|
+
[[package]]
|
|
2205
|
+
name = "wit-bindgen-rust-macro"
|
|
2206
|
+
version = "0.51.0"
|
|
2207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2208
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
2209
|
+
dependencies = [
|
|
2210
|
+
"anyhow",
|
|
2211
|
+
"prettyplease",
|
|
2212
|
+
"proc-macro2",
|
|
2213
|
+
"quote",
|
|
2214
|
+
"syn",
|
|
2215
|
+
"wit-bindgen-core",
|
|
2216
|
+
"wit-bindgen-rust",
|
|
2217
|
+
]
|
|
2218
|
+
|
|
2219
|
+
[[package]]
|
|
2220
|
+
name = "wit-component"
|
|
2221
|
+
version = "0.244.0"
|
|
2222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2223
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
2224
|
+
dependencies = [
|
|
2225
|
+
"anyhow",
|
|
2226
|
+
"bitflags",
|
|
2227
|
+
"indexmap",
|
|
2228
|
+
"log",
|
|
2229
|
+
"serde",
|
|
2230
|
+
"serde_derive",
|
|
2231
|
+
"serde_json",
|
|
2232
|
+
"wasm-encoder",
|
|
2233
|
+
"wasm-metadata",
|
|
2234
|
+
"wasmparser",
|
|
2235
|
+
"wit-parser",
|
|
2236
|
+
]
|
|
2237
|
+
|
|
2238
|
+
[[package]]
|
|
2239
|
+
name = "wit-parser"
|
|
2240
|
+
version = "0.244.0"
|
|
2241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2242
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
2243
|
+
dependencies = [
|
|
2244
|
+
"anyhow",
|
|
2245
|
+
"id-arena",
|
|
2246
|
+
"indexmap",
|
|
2247
|
+
"log",
|
|
2248
|
+
"semver",
|
|
2249
|
+
"serde",
|
|
2250
|
+
"serde_derive",
|
|
2251
|
+
"serde_json",
|
|
2252
|
+
"unicode-xid",
|
|
2253
|
+
"wasmparser",
|
|
2254
|
+
]
|
|
2255
|
+
|
|
1618
2256
|
[[package]]
|
|
1619
2257
|
name = "writeable"
|
|
1620
2258
|
version = "0.6.2"
|