quilt-python 0.0.0__tar.gz → 0.2.0__tar.gz
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.
- quilt_python-0.2.0/Cargo.lock +2022 -0
- quilt_python-0.2.0/Cargo.toml +68 -0
- quilt_python-0.2.0/PKG-INFO +7 -0
- quilt_python-0.2.0/pyproject.toml +27 -0
- quilt_python-0.2.0/quilt/Cargo.toml +74 -0
- quilt_python-0.2.0/quilt/__init__.py +49 -0
- quilt_python-0.2.0/quilt/src/bin.rs +452 -0
- quilt_python-0.2.0/quilt/src/lang.rs +221 -0
- quilt_python-0.2.0/quilt/src/langs/bash/lang.rs +149 -0
- quilt_python-0.2.0/quilt/src/langs/bash/mod.rs +1 -0
- quilt_python-0.2.0/quilt/src/langs/bootstrap/lang.rs +4 -0
- quilt_python-0.2.0/quilt/src/langs/bootstrap/meta.rs +323 -0
- quilt_python-0.2.0/quilt/src/langs/bootstrap/mk_meta.rs.quilt +160 -0
- quilt_python-0.2.0/quilt/src/langs/bootstrap/mod.rs +7 -0
- quilt_python-0.2.0/quilt/src/langs/bootstrap/strlift.rs +200 -0
- quilt_python-0.2.0/quilt/src/langs/html/lang.rs +99 -0
- quilt_python-0.2.0/quilt/src/langs/html/mod.rs +1 -0
- quilt_python-0.2.0/quilt/src/langs/mod.rs +20 -0
- quilt_python-0.2.0/quilt/src/langs/omni.rs +503 -0
- quilt_python-0.2.0/quilt/src/langs/python/lang.rs +91 -0
- quilt_python-0.2.0/quilt/src/langs/python/meta.rs +85 -0
- quilt_python-0.2.0/quilt/src/langs/python/mod.rs +4 -0
- quilt_python-0.2.0/quilt/src/langs/python/ops.rs +178 -0
- quilt_python-0.2.0/quilt/src/langs/rust/lang.rs +152 -0
- quilt_python-0.2.0/quilt/src/langs/rust/meta.rs +187 -0
- quilt_python-0.2.0/quilt/src/langs/rust/mod.rs +4 -0
- quilt_python-0.2.0/quilt/src/langs/rust/ops.rs +505 -0
- quilt_python-0.2.0/quilt/src/langs/text/lang.rs +42 -0
- quilt_python-0.2.0/quilt/src/langs/text/meta.rs +47 -0
- quilt_python-0.2.0/quilt/src/langs/text/mod.rs +2 -0
- quilt_python-0.2.0/quilt/src/langs/typescript/lang.rs +103 -0
- quilt_python-0.2.0/quilt/src/langs/typescript/meta.rs +83 -0
- quilt_python-0.2.0/quilt/src/langs/typescript/mod.rs +4 -0
- quilt_python-0.2.0/quilt/src/langs/typescript/ops.rs +196 -0
- quilt_python-0.2.0/quilt/src/langs/wgsl/lang.rs +141 -0
- quilt_python-0.2.0/quilt/src/langs/wgsl/mod.rs +1 -0
- quilt_python-0.2.0/quilt/src/langs/zsh/lang.rs +140 -0
- quilt_python-0.2.0/quilt/src/langs/zsh/mod.rs +1 -0
- quilt_python-0.2.0/quilt/src/lib.rs +17 -0
- quilt_python-0.2.0/quilt/src/lift.rs +337 -0
- quilt_python-0.2.0/quilt/src/meta.rs +204 -0
- quilt_python-0.2.0/quilt/src/multi.rs +761 -0
- quilt_python-0.2.0/quilt/src/node.rs +281 -0
- quilt_python-0.2.0/quilt/src/prelude.rs +13 -0
- quilt_python-0.2.0/quilt/src/qmatch.rs +689 -0
- quilt_python-0.2.0/quilt/src/qterm.rs +684 -0
- quilt_python-0.2.0/quilt/src/strcmd.rs +75 -0
- quilt_python-0.2.0/quilt/src/term.rs +324 -0
- quilt_python-0.2.0/quilt/src/treesitter.rs +460 -0
- quilt_python-0.2.0/quilt/src/util.rs +21 -0
- quilt_python-0.2.0/quilt/src/validate.rs +8 -0
- quilt_python-0.2.0/quilt/src/zipper.rs +136 -0
- quilt_python-0.2.0/quilt/tests/bootstrap.rs +166 -0
- quilt_python-0.2.0/quilt/tests/expand.rs +71 -0
- quilt_python-0.2.0/quilt/tests/expand_html.rs +127 -0
- quilt_python-0.2.0/quilt/tests/expand_python.rs +108 -0
- quilt_python-0.2.0/quilt/tests/expand_rust.rs +208 -0
- quilt_python-0.2.0/quilt/tests/expand_typescript.rs +130 -0
- quilt_python-0.2.0/quilt/tests/expand_wgsl.rs +138 -0
- quilt_python-0.2.0/quilt/tests/inner_kinds.rs +163 -0
- quilt_python-0.2.0/quilt/tests/kinds.rs +212 -0
- quilt_python-0.2.0/quilt/tests/multiline.rs +100 -0
- quilt_python-0.2.0/quilt/tests/strlift.rs +166 -0
- quilt_python-0.2.0/quilt/tests/tests.rs +263 -0
- quilt_python-0.2.0/quilt-python/.gitignore +72 -0
- quilt_python-0.2.0/quilt-python/Cargo.toml +18 -0
- quilt_python-0.2.0/quilt-python/src/lib.rs +293 -0
- quilt_python-0.2.0/quilt-python/tests/demo.py +18 -0
- quilt_python-0.2.0/quilt-python/tests/test_main.py +71 -0
- quilt_python-0.2.0/tree-sitter-quilt/Cargo.toml +34 -0
- quilt_python-0.2.0/tree-sitter-quilt/LICENSE-APACHE +202 -0
- quilt_python-0.2.0/tree-sitter-quilt/LICENSE-MIT +21 -0
- quilt_python-0.2.0/tree-sitter-quilt/bindings/rust/build.rs +21 -0
- quilt_python-0.2.0/tree-sitter-quilt/bindings/rust/lib.rs +53 -0
- quilt_python-0.2.0/tree-sitter-quilt/grammar.js +66 -0
- quilt_python-0.2.0/tree-sitter-quilt/queries/highlights.scm +13 -0
- quilt_python-0.2.0/tree-sitter-quilt/src/grammar.json +315 -0
- quilt_python-0.2.0/tree-sitter-quilt/src/node-types.json +253 -0
- quilt_python-0.2.0/tree-sitter-quilt/src/parser.c +822 -0
- quilt_python-0.2.0/tree-sitter-quilt/src/tree_sitter/alloc.h +54 -0
- quilt_python-0.2.0/tree-sitter-quilt/src/tree_sitter/array.h +330 -0
- quilt_python-0.2.0/tree-sitter-quilt/src/tree_sitter/parser.h +286 -0
- quilt_python-0.2.0/tree-sitter-quilt/tree-sitter.json +40 -0
- quilt_python-0.0.0/PKG-INFO +0 -16
- quilt_python-0.0.0/README.md +0 -6
- quilt_python-0.0.0/pyproject.toml +0 -18
- quilt_python-0.0.0/src/quilt_python/__init__.py +0 -1
|
@@ -0,0 +1,2022 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.25.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "aho-corasick"
|
|
22
|
+
version = "1.1.4"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"memchr",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "anstream"
|
|
31
|
+
version = "1.0.0"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"anstyle",
|
|
36
|
+
"anstyle-parse",
|
|
37
|
+
"anstyle-query",
|
|
38
|
+
"anstyle-wincon",
|
|
39
|
+
"colorchoice",
|
|
40
|
+
"is_terminal_polyfill",
|
|
41
|
+
"utf8parse",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstyle"
|
|
46
|
+
version = "1.0.14"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-parse"
|
|
52
|
+
version = "1.0.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"utf8parse",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-query"
|
|
61
|
+
version = "1.1.5"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"windows-sys",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "anstyle-wincon"
|
|
70
|
+
version = "3.0.11"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"anstyle",
|
|
75
|
+
"once_cell_polyfill",
|
|
76
|
+
"windows-sys",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "anyhow"
|
|
81
|
+
version = "1.0.102"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "async-trait"
|
|
87
|
+
version = "0.1.89"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"proc-macro2",
|
|
92
|
+
"quote",
|
|
93
|
+
"syn",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "atomic-polyfill"
|
|
98
|
+
version = "1.0.3"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"critical-section",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "auto_impl"
|
|
107
|
+
version = "1.3.0"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"proc-macro2",
|
|
112
|
+
"quote",
|
|
113
|
+
"syn",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "backtrace"
|
|
118
|
+
version = "0.3.76"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"addr2line",
|
|
123
|
+
"cfg-if",
|
|
124
|
+
"libc",
|
|
125
|
+
"miniz_oxide",
|
|
126
|
+
"object",
|
|
127
|
+
"rustc-demangle",
|
|
128
|
+
"windows-link",
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "backtrace-ext"
|
|
133
|
+
version = "0.2.1"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"backtrace",
|
|
138
|
+
]
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "bitflags"
|
|
142
|
+
version = "1.3.2"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "bitflags"
|
|
148
|
+
version = "2.13.0"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "bumpalo"
|
|
154
|
+
version = "3.20.3"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "byteorder"
|
|
160
|
+
version = "1.5.0"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "bytes"
|
|
166
|
+
version = "1.11.1"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "cc"
|
|
172
|
+
version = "1.2.63"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"find-msvc-tools",
|
|
177
|
+
"shlex",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "cfg-if"
|
|
182
|
+
version = "1.0.4"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "clap"
|
|
188
|
+
version = "4.6.1"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
191
|
+
dependencies = [
|
|
192
|
+
"clap_builder",
|
|
193
|
+
"clap_derive",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "clap_builder"
|
|
198
|
+
version = "4.6.0"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"anstream",
|
|
203
|
+
"anstyle",
|
|
204
|
+
"clap_lex",
|
|
205
|
+
"strsim",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "clap_derive"
|
|
210
|
+
version = "4.6.1"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
213
|
+
dependencies = [
|
|
214
|
+
"heck",
|
|
215
|
+
"proc-macro2",
|
|
216
|
+
"quote",
|
|
217
|
+
"syn",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "clap_lex"
|
|
222
|
+
version = "1.1.0"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "cobs"
|
|
228
|
+
version = "0.3.0"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"thiserror",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "colorchoice"
|
|
237
|
+
version = "1.0.5"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "critical-section"
|
|
243
|
+
version = "1.2.0"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "crossbeam-utils"
|
|
249
|
+
version = "0.8.21"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "dashmap"
|
|
255
|
+
version = "5.5.3"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"cfg-if",
|
|
260
|
+
"hashbrown 0.14.5",
|
|
261
|
+
"lock_api",
|
|
262
|
+
"once_cell",
|
|
263
|
+
"parking_lot_core",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "dashmap"
|
|
268
|
+
version = "6.2.1"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"cfg-if",
|
|
273
|
+
"crossbeam-utils",
|
|
274
|
+
"hashbrown 0.14.5",
|
|
275
|
+
"lock_api",
|
|
276
|
+
"once_cell",
|
|
277
|
+
"parking_lot_core",
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "diff"
|
|
282
|
+
version = "0.1.13"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "displaydoc"
|
|
288
|
+
version = "0.2.6"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
291
|
+
dependencies = [
|
|
292
|
+
"proc-macro2",
|
|
293
|
+
"quote",
|
|
294
|
+
"syn",
|
|
295
|
+
]
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "embedded-io"
|
|
299
|
+
version = "0.4.0"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "embedded-io"
|
|
305
|
+
version = "0.6.1"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "equivalent"
|
|
311
|
+
version = "1.0.2"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "errno"
|
|
317
|
+
version = "0.3.14"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"libc",
|
|
322
|
+
"windows-sys",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "fastrand"
|
|
327
|
+
version = "2.4.1"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "find-msvc-tools"
|
|
333
|
+
version = "0.1.9"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "foldhash"
|
|
339
|
+
version = "0.1.5"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "form_urlencoded"
|
|
345
|
+
version = "1.2.2"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"percent-encoding",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "futures"
|
|
354
|
+
version = "0.3.32"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"futures-channel",
|
|
359
|
+
"futures-core",
|
|
360
|
+
"futures-io",
|
|
361
|
+
"futures-sink",
|
|
362
|
+
"futures-task",
|
|
363
|
+
"futures-util",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "futures-channel"
|
|
368
|
+
version = "0.3.32"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"futures-core",
|
|
373
|
+
"futures-sink",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "futures-core"
|
|
378
|
+
version = "0.3.32"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "futures-io"
|
|
384
|
+
version = "0.3.32"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "futures-macro"
|
|
390
|
+
version = "0.3.32"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"proc-macro2",
|
|
395
|
+
"quote",
|
|
396
|
+
"syn",
|
|
397
|
+
]
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "futures-sink"
|
|
401
|
+
version = "0.3.32"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "futures-task"
|
|
407
|
+
version = "0.3.32"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "futures-util"
|
|
413
|
+
version = "0.3.32"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"futures-channel",
|
|
418
|
+
"futures-core",
|
|
419
|
+
"futures-io",
|
|
420
|
+
"futures-macro",
|
|
421
|
+
"futures-sink",
|
|
422
|
+
"futures-task",
|
|
423
|
+
"memchr",
|
|
424
|
+
"pin-project-lite",
|
|
425
|
+
"slab",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "getrandom"
|
|
430
|
+
version = "0.4.2"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"cfg-if",
|
|
435
|
+
"libc",
|
|
436
|
+
"r-efi",
|
|
437
|
+
"wasip2",
|
|
438
|
+
"wasip3",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "gimli"
|
|
443
|
+
version = "0.32.3"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "hash32"
|
|
449
|
+
version = "0.2.1"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
|
|
452
|
+
dependencies = [
|
|
453
|
+
"byteorder",
|
|
454
|
+
]
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "hashbrown"
|
|
458
|
+
version = "0.14.5"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "hashbrown"
|
|
464
|
+
version = "0.15.5"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"foldhash",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "hashbrown"
|
|
473
|
+
version = "0.17.1"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "heapless"
|
|
479
|
+
version = "0.7.17"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"atomic-polyfill",
|
|
484
|
+
"hash32",
|
|
485
|
+
"rustc_version",
|
|
486
|
+
"serde",
|
|
487
|
+
"spin",
|
|
488
|
+
"stable_deref_trait",
|
|
489
|
+
]
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "heck"
|
|
493
|
+
version = "0.5.0"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "httparse"
|
|
499
|
+
version = "1.10.1"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "icu_collections"
|
|
505
|
+
version = "2.2.0"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"displaydoc",
|
|
510
|
+
"potential_utf",
|
|
511
|
+
"utf8_iter",
|
|
512
|
+
"yoke",
|
|
513
|
+
"zerofrom",
|
|
514
|
+
"zerovec",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "icu_locale_core"
|
|
519
|
+
version = "2.2.0"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"displaydoc",
|
|
524
|
+
"litemap",
|
|
525
|
+
"tinystr",
|
|
526
|
+
"writeable",
|
|
527
|
+
"zerovec",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "icu_normalizer"
|
|
532
|
+
version = "2.2.0"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"icu_collections",
|
|
537
|
+
"icu_normalizer_data",
|
|
538
|
+
"icu_properties",
|
|
539
|
+
"icu_provider",
|
|
540
|
+
"smallvec",
|
|
541
|
+
"zerovec",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "icu_normalizer_data"
|
|
546
|
+
version = "2.2.0"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "icu_properties"
|
|
552
|
+
version = "2.2.0"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"icu_collections",
|
|
557
|
+
"icu_locale_core",
|
|
558
|
+
"icu_properties_data",
|
|
559
|
+
"icu_provider",
|
|
560
|
+
"zerotrie",
|
|
561
|
+
"zerovec",
|
|
562
|
+
]
|
|
563
|
+
|
|
564
|
+
[[package]]
|
|
565
|
+
name = "icu_properties_data"
|
|
566
|
+
version = "2.2.0"
|
|
567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "icu_provider"
|
|
572
|
+
version = "2.2.0"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"displaydoc",
|
|
577
|
+
"icu_locale_core",
|
|
578
|
+
"writeable",
|
|
579
|
+
"yoke",
|
|
580
|
+
"zerofrom",
|
|
581
|
+
"zerotrie",
|
|
582
|
+
"zerovec",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "id-arena"
|
|
587
|
+
version = "2.3.0"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "idna"
|
|
593
|
+
version = "1.1.0"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"idna_adapter",
|
|
598
|
+
"smallvec",
|
|
599
|
+
"utf8_iter",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "idna_adapter"
|
|
604
|
+
version = "1.2.2"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"icu_normalizer",
|
|
609
|
+
"icu_properties",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "indexmap"
|
|
614
|
+
version = "2.14.0"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
617
|
+
dependencies = [
|
|
618
|
+
"equivalent",
|
|
619
|
+
"hashbrown 0.17.1",
|
|
620
|
+
"serde",
|
|
621
|
+
"serde_core",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "indoc"
|
|
626
|
+
version = "2.0.7"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"rustversion",
|
|
631
|
+
]
|
|
632
|
+
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "is_ci"
|
|
635
|
+
version = "1.2.0"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "is_terminal_polyfill"
|
|
641
|
+
version = "1.70.2"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "itoa"
|
|
647
|
+
version = "1.0.18"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "lazy_static"
|
|
653
|
+
version = "1.5.0"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "leb128fmt"
|
|
659
|
+
version = "0.1.0"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "libc"
|
|
665
|
+
version = "0.2.186"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "linux-raw-sys"
|
|
671
|
+
version = "0.12.1"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "litemap"
|
|
677
|
+
version = "0.8.2"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "lock_api"
|
|
683
|
+
version = "0.4.14"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"scopeguard",
|
|
688
|
+
]
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "log"
|
|
692
|
+
version = "0.4.32"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "lsp-types"
|
|
698
|
+
version = "0.94.1"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "c66bfd44a06ae10647fe3f8214762e9369fd4248df1350924b4ef9e770a85ea1"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"bitflags 1.3.2",
|
|
703
|
+
"serde",
|
|
704
|
+
"serde_json",
|
|
705
|
+
"serde_repr",
|
|
706
|
+
"url",
|
|
707
|
+
]
|
|
708
|
+
|
|
709
|
+
[[package]]
|
|
710
|
+
name = "matchers"
|
|
711
|
+
version = "0.2.0"
|
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
714
|
+
dependencies = [
|
|
715
|
+
"regex-automata",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "memchr"
|
|
720
|
+
version = "2.8.1"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "miette"
|
|
726
|
+
version = "7.6.0"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"backtrace",
|
|
731
|
+
"backtrace-ext",
|
|
732
|
+
"cfg-if",
|
|
733
|
+
"miette-derive",
|
|
734
|
+
"owo-colors",
|
|
735
|
+
"supports-color",
|
|
736
|
+
"supports-hyperlinks",
|
|
737
|
+
"supports-unicode",
|
|
738
|
+
"terminal_size",
|
|
739
|
+
"textwrap",
|
|
740
|
+
"unicode-width 0.1.14",
|
|
741
|
+
]
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "miette-derive"
|
|
745
|
+
version = "7.6.0"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
|
|
748
|
+
dependencies = [
|
|
749
|
+
"proc-macro2",
|
|
750
|
+
"quote",
|
|
751
|
+
"syn",
|
|
752
|
+
]
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "miniz_oxide"
|
|
756
|
+
version = "0.8.9"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
759
|
+
dependencies = [
|
|
760
|
+
"adler2",
|
|
761
|
+
]
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "mio"
|
|
765
|
+
version = "1.2.1"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
768
|
+
dependencies = [
|
|
769
|
+
"libc",
|
|
770
|
+
"wasi",
|
|
771
|
+
"windows-sys",
|
|
772
|
+
]
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "nu-ansi-term"
|
|
776
|
+
version = "0.50.3"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
779
|
+
dependencies = [
|
|
780
|
+
"windows-sys",
|
|
781
|
+
]
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "object"
|
|
785
|
+
version = "0.37.3"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
788
|
+
dependencies = [
|
|
789
|
+
"memchr",
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "once_cell"
|
|
794
|
+
version = "1.21.4"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "once_cell_polyfill"
|
|
800
|
+
version = "1.70.2"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "owo-colors"
|
|
806
|
+
version = "4.3.0"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "parking_lot"
|
|
812
|
+
version = "0.12.5"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
815
|
+
dependencies = [
|
|
816
|
+
"lock_api",
|
|
817
|
+
"parking_lot_core",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "parking_lot_core"
|
|
822
|
+
version = "0.9.12"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"cfg-if",
|
|
827
|
+
"libc",
|
|
828
|
+
"redox_syscall",
|
|
829
|
+
"smallvec",
|
|
830
|
+
"windows-link",
|
|
831
|
+
]
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "percent-encoding"
|
|
835
|
+
version = "2.3.2"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "pin-project"
|
|
841
|
+
version = "1.1.13"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"pin-project-internal",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "pin-project-internal"
|
|
850
|
+
version = "1.1.13"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"proc-macro2",
|
|
855
|
+
"quote",
|
|
856
|
+
"syn",
|
|
857
|
+
]
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "pin-project-lite"
|
|
861
|
+
version = "0.2.17"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "portable-atomic"
|
|
867
|
+
version = "1.13.1"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "postcard"
|
|
873
|
+
version = "1.1.3"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"cobs",
|
|
878
|
+
"embedded-io 0.4.0",
|
|
879
|
+
"embedded-io 0.6.1",
|
|
880
|
+
"heapless",
|
|
881
|
+
"serde",
|
|
882
|
+
]
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "potential_utf"
|
|
886
|
+
version = "0.1.5"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
889
|
+
dependencies = [
|
|
890
|
+
"zerovec",
|
|
891
|
+
]
|
|
892
|
+
|
|
893
|
+
[[package]]
|
|
894
|
+
name = "pretty_assertions"
|
|
895
|
+
version = "1.4.1"
|
|
896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
898
|
+
dependencies = [
|
|
899
|
+
"diff",
|
|
900
|
+
"yansi",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "prettyplease"
|
|
905
|
+
version = "0.2.37"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
908
|
+
dependencies = [
|
|
909
|
+
"proc-macro2",
|
|
910
|
+
"syn",
|
|
911
|
+
]
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "proc-macro2"
|
|
915
|
+
version = "1.0.106"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
918
|
+
dependencies = [
|
|
919
|
+
"unicode-ident",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "pyo3"
|
|
924
|
+
version = "0.28.3"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"libc",
|
|
929
|
+
"once_cell",
|
|
930
|
+
"portable-atomic",
|
|
931
|
+
"pyo3-build-config",
|
|
932
|
+
"pyo3-ffi",
|
|
933
|
+
"pyo3-macros",
|
|
934
|
+
]
|
|
935
|
+
|
|
936
|
+
[[package]]
|
|
937
|
+
name = "pyo3-build-config"
|
|
938
|
+
version = "0.28.3"
|
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
941
|
+
dependencies = [
|
|
942
|
+
"target-lexicon",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "pyo3-ffi"
|
|
947
|
+
version = "0.28.3"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
950
|
+
dependencies = [
|
|
951
|
+
"libc",
|
|
952
|
+
"pyo3-build-config",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "pyo3-macros"
|
|
957
|
+
version = "0.28.3"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
960
|
+
dependencies = [
|
|
961
|
+
"proc-macro2",
|
|
962
|
+
"pyo3-macros-backend",
|
|
963
|
+
"quote",
|
|
964
|
+
"syn",
|
|
965
|
+
]
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "pyo3-macros-backend"
|
|
969
|
+
version = "0.28.3"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
972
|
+
dependencies = [
|
|
973
|
+
"heck",
|
|
974
|
+
"proc-macro2",
|
|
975
|
+
"pyo3-build-config",
|
|
976
|
+
"quote",
|
|
977
|
+
"syn",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "quilt-expand-wasm"
|
|
982
|
+
version = "0.2.0"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"miette",
|
|
985
|
+
"quiltlang",
|
|
986
|
+
]
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "quilt-lsp"
|
|
990
|
+
version = "0.2.0"
|
|
991
|
+
dependencies = [
|
|
992
|
+
"anyhow",
|
|
993
|
+
"dashmap 6.2.1",
|
|
994
|
+
"serde",
|
|
995
|
+
"serde_json",
|
|
996
|
+
"streaming-iterator",
|
|
997
|
+
"tempfile",
|
|
998
|
+
"tokio",
|
|
999
|
+
"tower-lsp",
|
|
1000
|
+
"tracing",
|
|
1001
|
+
"tracing-subscriber",
|
|
1002
|
+
"tree-sitter",
|
|
1003
|
+
"tree-sitter-bash",
|
|
1004
|
+
"tree-sitter-html",
|
|
1005
|
+
"tree-sitter-python",
|
|
1006
|
+
"tree-sitter-quilt",
|
|
1007
|
+
"tree-sitter-wgsl",
|
|
1008
|
+
"tree-sitter-zsh",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "quilt-wasm"
|
|
1013
|
+
version = "0.2.0"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"quiltlang",
|
|
1016
|
+
"wasm-bindgen",
|
|
1017
|
+
]
|
|
1018
|
+
|
|
1019
|
+
[[package]]
|
|
1020
|
+
name = "quilt_python"
|
|
1021
|
+
version = "0.2.0"
|
|
1022
|
+
dependencies = [
|
|
1023
|
+
"postcard",
|
|
1024
|
+
"pyo3",
|
|
1025
|
+
"quiltlang",
|
|
1026
|
+
]
|
|
1027
|
+
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "quiltlang"
|
|
1030
|
+
version = "0.2.0"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"clap",
|
|
1033
|
+
"indoc",
|
|
1034
|
+
"miette",
|
|
1035
|
+
"postcard",
|
|
1036
|
+
"pretty_assertions",
|
|
1037
|
+
"regex",
|
|
1038
|
+
"serde",
|
|
1039
|
+
"tempfile",
|
|
1040
|
+
"tracing",
|
|
1041
|
+
"tracing-subscriber",
|
|
1042
|
+
"tree-sitter",
|
|
1043
|
+
"tree-sitter-bash",
|
|
1044
|
+
"tree-sitter-html",
|
|
1045
|
+
"tree-sitter-python",
|
|
1046
|
+
"tree-sitter-quilt",
|
|
1047
|
+
"tree-sitter-rust",
|
|
1048
|
+
"tree-sitter-typescript",
|
|
1049
|
+
"tree-sitter-wgsl",
|
|
1050
|
+
"tree-sitter-zsh",
|
|
1051
|
+
]
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "quote"
|
|
1055
|
+
version = "1.0.45"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1058
|
+
dependencies = [
|
|
1059
|
+
"proc-macro2",
|
|
1060
|
+
]
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "r-efi"
|
|
1064
|
+
version = "6.0.0"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "redox_syscall"
|
|
1070
|
+
version = "0.5.18"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1073
|
+
dependencies = [
|
|
1074
|
+
"bitflags 2.13.0",
|
|
1075
|
+
]
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "regex"
|
|
1079
|
+
version = "1.12.4"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"aho-corasick",
|
|
1084
|
+
"memchr",
|
|
1085
|
+
"regex-automata",
|
|
1086
|
+
"regex-syntax",
|
|
1087
|
+
]
|
|
1088
|
+
|
|
1089
|
+
[[package]]
|
|
1090
|
+
name = "regex-automata"
|
|
1091
|
+
version = "0.4.14"
|
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1094
|
+
dependencies = [
|
|
1095
|
+
"aho-corasick",
|
|
1096
|
+
"memchr",
|
|
1097
|
+
"regex-syntax",
|
|
1098
|
+
]
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "regex-syntax"
|
|
1102
|
+
version = "0.8.11"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "rustc-demangle"
|
|
1108
|
+
version = "0.1.27"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "rustc_version"
|
|
1114
|
+
version = "0.4.1"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1117
|
+
dependencies = [
|
|
1118
|
+
"semver",
|
|
1119
|
+
]
|
|
1120
|
+
|
|
1121
|
+
[[package]]
|
|
1122
|
+
name = "rustix"
|
|
1123
|
+
version = "1.1.4"
|
|
1124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1126
|
+
dependencies = [
|
|
1127
|
+
"bitflags 2.13.0",
|
|
1128
|
+
"errno",
|
|
1129
|
+
"libc",
|
|
1130
|
+
"linux-raw-sys",
|
|
1131
|
+
"windows-sys",
|
|
1132
|
+
]
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "rustversion"
|
|
1136
|
+
version = "1.0.22"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1139
|
+
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "scopeguard"
|
|
1142
|
+
version = "1.2.0"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "semver"
|
|
1148
|
+
version = "1.0.28"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "serde"
|
|
1154
|
+
version = "1.0.228"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"serde_core",
|
|
1159
|
+
"serde_derive",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "serde_core"
|
|
1164
|
+
version = "1.0.228"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"serde_derive",
|
|
1169
|
+
]
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "serde_derive"
|
|
1173
|
+
version = "1.0.228"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1176
|
+
dependencies = [
|
|
1177
|
+
"proc-macro2",
|
|
1178
|
+
"quote",
|
|
1179
|
+
"syn",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "serde_json"
|
|
1184
|
+
version = "1.0.150"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1187
|
+
dependencies = [
|
|
1188
|
+
"indexmap",
|
|
1189
|
+
"itoa",
|
|
1190
|
+
"memchr",
|
|
1191
|
+
"serde",
|
|
1192
|
+
"serde_core",
|
|
1193
|
+
"zmij",
|
|
1194
|
+
]
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "serde_repr"
|
|
1198
|
+
version = "0.1.20"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
1201
|
+
dependencies = [
|
|
1202
|
+
"proc-macro2",
|
|
1203
|
+
"quote",
|
|
1204
|
+
"syn",
|
|
1205
|
+
]
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "sharded-slab"
|
|
1209
|
+
version = "0.1.7"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
1212
|
+
dependencies = [
|
|
1213
|
+
"lazy_static",
|
|
1214
|
+
]
|
|
1215
|
+
|
|
1216
|
+
[[package]]
|
|
1217
|
+
name = "shlex"
|
|
1218
|
+
version = "2.0.1"
|
|
1219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1220
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1221
|
+
|
|
1222
|
+
[[package]]
|
|
1223
|
+
name = "signal-hook-registry"
|
|
1224
|
+
version = "1.4.8"
|
|
1225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1226
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1227
|
+
dependencies = [
|
|
1228
|
+
"errno",
|
|
1229
|
+
"libc",
|
|
1230
|
+
]
|
|
1231
|
+
|
|
1232
|
+
[[package]]
|
|
1233
|
+
name = "slab"
|
|
1234
|
+
version = "0.4.12"
|
|
1235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1237
|
+
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "smallvec"
|
|
1240
|
+
version = "1.15.1"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "socket2"
|
|
1246
|
+
version = "0.6.4"
|
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
1249
|
+
dependencies = [
|
|
1250
|
+
"libc",
|
|
1251
|
+
"windows-sys",
|
|
1252
|
+
]
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "spin"
|
|
1256
|
+
version = "0.9.8"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
1259
|
+
dependencies = [
|
|
1260
|
+
"lock_api",
|
|
1261
|
+
]
|
|
1262
|
+
|
|
1263
|
+
[[package]]
|
|
1264
|
+
name = "stable_deref_trait"
|
|
1265
|
+
version = "1.2.1"
|
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1268
|
+
|
|
1269
|
+
[[package]]
|
|
1270
|
+
name = "streaming-iterator"
|
|
1271
|
+
version = "0.1.9"
|
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1273
|
+
checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "strsim"
|
|
1277
|
+
version = "0.11.1"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "supports-color"
|
|
1283
|
+
version = "3.0.2"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
|
|
1286
|
+
dependencies = [
|
|
1287
|
+
"is_ci",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "supports-hyperlinks"
|
|
1292
|
+
version = "3.2.0"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "e396b6523b11ccb83120b115a0b7366de372751aa6edf19844dfb13a6af97e91"
|
|
1295
|
+
|
|
1296
|
+
[[package]]
|
|
1297
|
+
name = "supports-unicode"
|
|
1298
|
+
version = "3.0.0"
|
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
+
checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2"
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "syn"
|
|
1304
|
+
version = "2.0.117"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1307
|
+
dependencies = [
|
|
1308
|
+
"proc-macro2",
|
|
1309
|
+
"quote",
|
|
1310
|
+
"unicode-ident",
|
|
1311
|
+
]
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "synstructure"
|
|
1315
|
+
version = "0.13.2"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1318
|
+
dependencies = [
|
|
1319
|
+
"proc-macro2",
|
|
1320
|
+
"quote",
|
|
1321
|
+
"syn",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "target-lexicon"
|
|
1326
|
+
version = "0.13.5"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "tempfile"
|
|
1332
|
+
version = "3.27.0"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"fastrand",
|
|
1337
|
+
"getrandom",
|
|
1338
|
+
"once_cell",
|
|
1339
|
+
"rustix",
|
|
1340
|
+
"windows-sys",
|
|
1341
|
+
]
|
|
1342
|
+
|
|
1343
|
+
[[package]]
|
|
1344
|
+
name = "terminal_size"
|
|
1345
|
+
version = "0.4.4"
|
|
1346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1347
|
+
checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
|
|
1348
|
+
dependencies = [
|
|
1349
|
+
"rustix",
|
|
1350
|
+
"windows-sys",
|
|
1351
|
+
]
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "textwrap"
|
|
1355
|
+
version = "0.16.2"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
1358
|
+
dependencies = [
|
|
1359
|
+
"unicode-linebreak",
|
|
1360
|
+
"unicode-width 0.2.2",
|
|
1361
|
+
]
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "thiserror"
|
|
1365
|
+
version = "2.0.18"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"thiserror-impl",
|
|
1370
|
+
]
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "thiserror-impl"
|
|
1374
|
+
version = "2.0.18"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1377
|
+
dependencies = [
|
|
1378
|
+
"proc-macro2",
|
|
1379
|
+
"quote",
|
|
1380
|
+
"syn",
|
|
1381
|
+
]
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "thread_local"
|
|
1385
|
+
version = "1.1.9"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
1388
|
+
dependencies = [
|
|
1389
|
+
"cfg-if",
|
|
1390
|
+
]
|
|
1391
|
+
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "tinystr"
|
|
1394
|
+
version = "0.8.3"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1397
|
+
dependencies = [
|
|
1398
|
+
"displaydoc",
|
|
1399
|
+
"zerovec",
|
|
1400
|
+
]
|
|
1401
|
+
|
|
1402
|
+
[[package]]
|
|
1403
|
+
name = "tokio"
|
|
1404
|
+
version = "1.52.3"
|
|
1405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
1407
|
+
dependencies = [
|
|
1408
|
+
"bytes",
|
|
1409
|
+
"libc",
|
|
1410
|
+
"mio",
|
|
1411
|
+
"parking_lot",
|
|
1412
|
+
"pin-project-lite",
|
|
1413
|
+
"signal-hook-registry",
|
|
1414
|
+
"socket2",
|
|
1415
|
+
"tokio-macros",
|
|
1416
|
+
"windows-sys",
|
|
1417
|
+
]
|
|
1418
|
+
|
|
1419
|
+
[[package]]
|
|
1420
|
+
name = "tokio-macros"
|
|
1421
|
+
version = "2.7.0"
|
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
1424
|
+
dependencies = [
|
|
1425
|
+
"proc-macro2",
|
|
1426
|
+
"quote",
|
|
1427
|
+
"syn",
|
|
1428
|
+
]
|
|
1429
|
+
|
|
1430
|
+
[[package]]
|
|
1431
|
+
name = "tokio-util"
|
|
1432
|
+
version = "0.7.18"
|
|
1433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1434
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
1435
|
+
dependencies = [
|
|
1436
|
+
"bytes",
|
|
1437
|
+
"futures-core",
|
|
1438
|
+
"futures-sink",
|
|
1439
|
+
"pin-project-lite",
|
|
1440
|
+
"tokio",
|
|
1441
|
+
]
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "tower"
|
|
1445
|
+
version = "0.4.13"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
1448
|
+
dependencies = [
|
|
1449
|
+
"futures-core",
|
|
1450
|
+
"futures-util",
|
|
1451
|
+
"pin-project",
|
|
1452
|
+
"pin-project-lite",
|
|
1453
|
+
"tower-layer",
|
|
1454
|
+
"tower-service",
|
|
1455
|
+
]
|
|
1456
|
+
|
|
1457
|
+
[[package]]
|
|
1458
|
+
name = "tower-layer"
|
|
1459
|
+
version = "0.3.3"
|
|
1460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1462
|
+
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "tower-lsp"
|
|
1465
|
+
version = "0.20.0"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "d4ba052b54a6627628d9b3c34c176e7eda8359b7da9acd497b9f20998d118508"
|
|
1468
|
+
dependencies = [
|
|
1469
|
+
"async-trait",
|
|
1470
|
+
"auto_impl",
|
|
1471
|
+
"bytes",
|
|
1472
|
+
"dashmap 5.5.3",
|
|
1473
|
+
"futures",
|
|
1474
|
+
"httparse",
|
|
1475
|
+
"lsp-types",
|
|
1476
|
+
"memchr",
|
|
1477
|
+
"serde",
|
|
1478
|
+
"serde_json",
|
|
1479
|
+
"tokio",
|
|
1480
|
+
"tokio-util",
|
|
1481
|
+
"tower",
|
|
1482
|
+
"tower-lsp-macros",
|
|
1483
|
+
"tracing",
|
|
1484
|
+
]
|
|
1485
|
+
|
|
1486
|
+
[[package]]
|
|
1487
|
+
name = "tower-lsp-macros"
|
|
1488
|
+
version = "0.9.0"
|
|
1489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1490
|
+
checksum = "84fd902d4e0b9a4b27f2f440108dc034e1758628a9b702f8ec61ad66355422fa"
|
|
1491
|
+
dependencies = [
|
|
1492
|
+
"proc-macro2",
|
|
1493
|
+
"quote",
|
|
1494
|
+
"syn",
|
|
1495
|
+
]
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "tower-service"
|
|
1499
|
+
version = "0.3.3"
|
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1502
|
+
|
|
1503
|
+
[[package]]
|
|
1504
|
+
name = "tracing"
|
|
1505
|
+
version = "0.1.44"
|
|
1506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1507
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1508
|
+
dependencies = [
|
|
1509
|
+
"pin-project-lite",
|
|
1510
|
+
"tracing-attributes",
|
|
1511
|
+
"tracing-core",
|
|
1512
|
+
]
|
|
1513
|
+
|
|
1514
|
+
[[package]]
|
|
1515
|
+
name = "tracing-attributes"
|
|
1516
|
+
version = "0.1.31"
|
|
1517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
1519
|
+
dependencies = [
|
|
1520
|
+
"proc-macro2",
|
|
1521
|
+
"quote",
|
|
1522
|
+
"syn",
|
|
1523
|
+
]
|
|
1524
|
+
|
|
1525
|
+
[[package]]
|
|
1526
|
+
name = "tracing-core"
|
|
1527
|
+
version = "0.1.36"
|
|
1528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1530
|
+
dependencies = [
|
|
1531
|
+
"once_cell",
|
|
1532
|
+
"valuable",
|
|
1533
|
+
]
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "tracing-log"
|
|
1537
|
+
version = "0.2.0"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"log",
|
|
1542
|
+
"once_cell",
|
|
1543
|
+
"tracing-core",
|
|
1544
|
+
]
|
|
1545
|
+
|
|
1546
|
+
[[package]]
|
|
1547
|
+
name = "tracing-subscriber"
|
|
1548
|
+
version = "0.3.23"
|
|
1549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
1551
|
+
dependencies = [
|
|
1552
|
+
"matchers",
|
|
1553
|
+
"nu-ansi-term",
|
|
1554
|
+
"once_cell",
|
|
1555
|
+
"regex-automata",
|
|
1556
|
+
"sharded-slab",
|
|
1557
|
+
"smallvec",
|
|
1558
|
+
"thread_local",
|
|
1559
|
+
"tracing",
|
|
1560
|
+
"tracing-core",
|
|
1561
|
+
"tracing-log",
|
|
1562
|
+
]
|
|
1563
|
+
|
|
1564
|
+
[[package]]
|
|
1565
|
+
name = "tree-sitter"
|
|
1566
|
+
version = "0.25.10"
|
|
1567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1568
|
+
checksum = "78f873475d258561b06f1c595d93308a7ed124d9977cb26b148c2084a4a3cc87"
|
|
1569
|
+
dependencies = [
|
|
1570
|
+
"cc",
|
|
1571
|
+
"regex",
|
|
1572
|
+
"regex-syntax",
|
|
1573
|
+
"serde_json",
|
|
1574
|
+
"streaming-iterator",
|
|
1575
|
+
"tree-sitter-language",
|
|
1576
|
+
]
|
|
1577
|
+
|
|
1578
|
+
[[package]]
|
|
1579
|
+
name = "tree-sitter-bash"
|
|
1580
|
+
version = "0.25.1"
|
|
1581
|
+
source = "git+https://github.com/QuiltLang/tree-sitter-bash.git?rev=4e44c9fca4f64f75dbafd64d07eb3b065f15e45b#4e44c9fca4f64f75dbafd64d07eb3b065f15e45b"
|
|
1582
|
+
dependencies = [
|
|
1583
|
+
"cc",
|
|
1584
|
+
"tree-sitter-language",
|
|
1585
|
+
]
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "tree-sitter-html"
|
|
1589
|
+
version = "0.23.2"
|
|
1590
|
+
source = "git+https://github.com/QuiltLang/tree-sitter-html.git?rev=d81ae0f44b1e084a3383b3355c62cb6953260467#d81ae0f44b1e084a3383b3355c62cb6953260467"
|
|
1591
|
+
dependencies = [
|
|
1592
|
+
"cc",
|
|
1593
|
+
"tree-sitter-language",
|
|
1594
|
+
]
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "tree-sitter-language"
|
|
1598
|
+
version = "0.1.7"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "009994f150cc0cd50ff54917d5bc8bffe8cad10ca10d81c34da2ec421ae61782"
|
|
1601
|
+
|
|
1602
|
+
[[package]]
|
|
1603
|
+
name = "tree-sitter-python"
|
|
1604
|
+
version = "0.23.6"
|
|
1605
|
+
source = "git+https://github.com/QuiltLang/tree-sitter-python.git?rev=72de24676b4acb63d6cee78eaf3d5d18fd2ad6b9#72de24676b4acb63d6cee78eaf3d5d18fd2ad6b9"
|
|
1606
|
+
dependencies = [
|
|
1607
|
+
"cc",
|
|
1608
|
+
"tree-sitter-language",
|
|
1609
|
+
]
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "tree-sitter-quilt"
|
|
1613
|
+
version = "0.2.0"
|
|
1614
|
+
dependencies = [
|
|
1615
|
+
"cc",
|
|
1616
|
+
"tree-sitter",
|
|
1617
|
+
"tree-sitter-language",
|
|
1618
|
+
]
|
|
1619
|
+
|
|
1620
|
+
[[package]]
|
|
1621
|
+
name = "tree-sitter-rust"
|
|
1622
|
+
version = "0.24.0"
|
|
1623
|
+
source = "git+https://github.com/QuiltLang/tree-sitter-rust.git?rev=167de1910dcba9c59d6fa59e37868aa8d14c772b#167de1910dcba9c59d6fa59e37868aa8d14c772b"
|
|
1624
|
+
dependencies = [
|
|
1625
|
+
"cc",
|
|
1626
|
+
"tree-sitter-language",
|
|
1627
|
+
]
|
|
1628
|
+
|
|
1629
|
+
[[package]]
|
|
1630
|
+
name = "tree-sitter-typescript"
|
|
1631
|
+
version = "0.23.2"
|
|
1632
|
+
source = "git+https://github.com/QuiltLang/tree-sitter-typescript.git?rev=25f4db1700b970293b83c5964581ff8ef718106f#25f4db1700b970293b83c5964581ff8ef718106f"
|
|
1633
|
+
dependencies = [
|
|
1634
|
+
"cc",
|
|
1635
|
+
"tree-sitter-language",
|
|
1636
|
+
]
|
|
1637
|
+
|
|
1638
|
+
[[package]]
|
|
1639
|
+
name = "tree-sitter-wgsl"
|
|
1640
|
+
version = "0.0.1"
|
|
1641
|
+
source = "git+https://github.com/QuiltLang/tree-sitter-wgsl.git?rev=a83b84c4dd9ce8f28ee79d36b09ccbaef0f51d6b#a83b84c4dd9ce8f28ee79d36b09ccbaef0f51d6b"
|
|
1642
|
+
dependencies = [
|
|
1643
|
+
"cc",
|
|
1644
|
+
"tree-sitter-language",
|
|
1645
|
+
]
|
|
1646
|
+
|
|
1647
|
+
[[package]]
|
|
1648
|
+
name = "tree-sitter-zsh"
|
|
1649
|
+
version = "0.63.4"
|
|
1650
|
+
source = "git+https://github.com/QuiltLang/tree-sitter-zsh.git?rev=6923371dfd93a273e6ef4af0ba27c12ec8e5ab1d#6923371dfd93a273e6ef4af0ba27c12ec8e5ab1d"
|
|
1651
|
+
dependencies = [
|
|
1652
|
+
"cc",
|
|
1653
|
+
"tree-sitter-language",
|
|
1654
|
+
]
|
|
1655
|
+
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "unicode-ident"
|
|
1658
|
+
version = "1.0.24"
|
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "unicode-linebreak"
|
|
1664
|
+
version = "0.1.5"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
1667
|
+
|
|
1668
|
+
[[package]]
|
|
1669
|
+
name = "unicode-width"
|
|
1670
|
+
version = "0.1.14"
|
|
1671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1672
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
1673
|
+
|
|
1674
|
+
[[package]]
|
|
1675
|
+
name = "unicode-width"
|
|
1676
|
+
version = "0.2.2"
|
|
1677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1679
|
+
|
|
1680
|
+
[[package]]
|
|
1681
|
+
name = "unicode-xid"
|
|
1682
|
+
version = "0.2.6"
|
|
1683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1685
|
+
|
|
1686
|
+
[[package]]
|
|
1687
|
+
name = "url"
|
|
1688
|
+
version = "2.5.8"
|
|
1689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1691
|
+
dependencies = [
|
|
1692
|
+
"form_urlencoded",
|
|
1693
|
+
"idna",
|
|
1694
|
+
"percent-encoding",
|
|
1695
|
+
"serde",
|
|
1696
|
+
"serde_derive",
|
|
1697
|
+
]
|
|
1698
|
+
|
|
1699
|
+
[[package]]
|
|
1700
|
+
name = "utf8_iter"
|
|
1701
|
+
version = "1.0.4"
|
|
1702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1703
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1704
|
+
|
|
1705
|
+
[[package]]
|
|
1706
|
+
name = "utf8parse"
|
|
1707
|
+
version = "0.2.2"
|
|
1708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1709
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1710
|
+
|
|
1711
|
+
[[package]]
|
|
1712
|
+
name = "valuable"
|
|
1713
|
+
version = "0.1.1"
|
|
1714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1715
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
1716
|
+
|
|
1717
|
+
[[package]]
|
|
1718
|
+
name = "wasi"
|
|
1719
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1722
|
+
|
|
1723
|
+
[[package]]
|
|
1724
|
+
name = "wasip2"
|
|
1725
|
+
version = "1.0.3+wasi-0.2.9"
|
|
1726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1727
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
1728
|
+
dependencies = [
|
|
1729
|
+
"wit-bindgen 0.57.1",
|
|
1730
|
+
]
|
|
1731
|
+
|
|
1732
|
+
[[package]]
|
|
1733
|
+
name = "wasip3"
|
|
1734
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
1735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1736
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
1737
|
+
dependencies = [
|
|
1738
|
+
"wit-bindgen 0.51.0",
|
|
1739
|
+
]
|
|
1740
|
+
|
|
1741
|
+
[[package]]
|
|
1742
|
+
name = "wasm-bindgen"
|
|
1743
|
+
version = "0.2.125"
|
|
1744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
1746
|
+
dependencies = [
|
|
1747
|
+
"cfg-if",
|
|
1748
|
+
"once_cell",
|
|
1749
|
+
"rustversion",
|
|
1750
|
+
"wasm-bindgen-macro",
|
|
1751
|
+
"wasm-bindgen-shared",
|
|
1752
|
+
]
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "wasm-bindgen-macro"
|
|
1756
|
+
version = "0.2.125"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"quote",
|
|
1761
|
+
"wasm-bindgen-macro-support",
|
|
1762
|
+
]
|
|
1763
|
+
|
|
1764
|
+
[[package]]
|
|
1765
|
+
name = "wasm-bindgen-macro-support"
|
|
1766
|
+
version = "0.2.125"
|
|
1767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
1769
|
+
dependencies = [
|
|
1770
|
+
"bumpalo",
|
|
1771
|
+
"proc-macro2",
|
|
1772
|
+
"quote",
|
|
1773
|
+
"syn",
|
|
1774
|
+
"wasm-bindgen-shared",
|
|
1775
|
+
]
|
|
1776
|
+
|
|
1777
|
+
[[package]]
|
|
1778
|
+
name = "wasm-bindgen-shared"
|
|
1779
|
+
version = "0.2.125"
|
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
1782
|
+
dependencies = [
|
|
1783
|
+
"unicode-ident",
|
|
1784
|
+
]
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "wasm-encoder"
|
|
1788
|
+
version = "0.244.0"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
1791
|
+
dependencies = [
|
|
1792
|
+
"leb128fmt",
|
|
1793
|
+
"wasmparser",
|
|
1794
|
+
]
|
|
1795
|
+
|
|
1796
|
+
[[package]]
|
|
1797
|
+
name = "wasm-metadata"
|
|
1798
|
+
version = "0.244.0"
|
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
1801
|
+
dependencies = [
|
|
1802
|
+
"anyhow",
|
|
1803
|
+
"indexmap",
|
|
1804
|
+
"wasm-encoder",
|
|
1805
|
+
"wasmparser",
|
|
1806
|
+
]
|
|
1807
|
+
|
|
1808
|
+
[[package]]
|
|
1809
|
+
name = "wasmparser"
|
|
1810
|
+
version = "0.244.0"
|
|
1811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1812
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
1813
|
+
dependencies = [
|
|
1814
|
+
"bitflags 2.13.0",
|
|
1815
|
+
"hashbrown 0.15.5",
|
|
1816
|
+
"indexmap",
|
|
1817
|
+
"semver",
|
|
1818
|
+
]
|
|
1819
|
+
|
|
1820
|
+
[[package]]
|
|
1821
|
+
name = "windows-link"
|
|
1822
|
+
version = "0.2.1"
|
|
1823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1825
|
+
|
|
1826
|
+
[[package]]
|
|
1827
|
+
name = "windows-sys"
|
|
1828
|
+
version = "0.61.2"
|
|
1829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1831
|
+
dependencies = [
|
|
1832
|
+
"windows-link",
|
|
1833
|
+
]
|
|
1834
|
+
|
|
1835
|
+
[[package]]
|
|
1836
|
+
name = "wit-bindgen"
|
|
1837
|
+
version = "0.51.0"
|
|
1838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1839
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1840
|
+
dependencies = [
|
|
1841
|
+
"wit-bindgen-rust-macro",
|
|
1842
|
+
]
|
|
1843
|
+
|
|
1844
|
+
[[package]]
|
|
1845
|
+
name = "wit-bindgen"
|
|
1846
|
+
version = "0.57.1"
|
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1848
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1849
|
+
|
|
1850
|
+
[[package]]
|
|
1851
|
+
name = "wit-bindgen-core"
|
|
1852
|
+
version = "0.51.0"
|
|
1853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
1855
|
+
dependencies = [
|
|
1856
|
+
"anyhow",
|
|
1857
|
+
"heck",
|
|
1858
|
+
"wit-parser",
|
|
1859
|
+
]
|
|
1860
|
+
|
|
1861
|
+
[[package]]
|
|
1862
|
+
name = "wit-bindgen-rust"
|
|
1863
|
+
version = "0.51.0"
|
|
1864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
1866
|
+
dependencies = [
|
|
1867
|
+
"anyhow",
|
|
1868
|
+
"heck",
|
|
1869
|
+
"indexmap",
|
|
1870
|
+
"prettyplease",
|
|
1871
|
+
"syn",
|
|
1872
|
+
"wasm-metadata",
|
|
1873
|
+
"wit-bindgen-core",
|
|
1874
|
+
"wit-component",
|
|
1875
|
+
]
|
|
1876
|
+
|
|
1877
|
+
[[package]]
|
|
1878
|
+
name = "wit-bindgen-rust-macro"
|
|
1879
|
+
version = "0.51.0"
|
|
1880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1881
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
1882
|
+
dependencies = [
|
|
1883
|
+
"anyhow",
|
|
1884
|
+
"prettyplease",
|
|
1885
|
+
"proc-macro2",
|
|
1886
|
+
"quote",
|
|
1887
|
+
"syn",
|
|
1888
|
+
"wit-bindgen-core",
|
|
1889
|
+
"wit-bindgen-rust",
|
|
1890
|
+
]
|
|
1891
|
+
|
|
1892
|
+
[[package]]
|
|
1893
|
+
name = "wit-component"
|
|
1894
|
+
version = "0.244.0"
|
|
1895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
1897
|
+
dependencies = [
|
|
1898
|
+
"anyhow",
|
|
1899
|
+
"bitflags 2.13.0",
|
|
1900
|
+
"indexmap",
|
|
1901
|
+
"log",
|
|
1902
|
+
"serde",
|
|
1903
|
+
"serde_derive",
|
|
1904
|
+
"serde_json",
|
|
1905
|
+
"wasm-encoder",
|
|
1906
|
+
"wasm-metadata",
|
|
1907
|
+
"wasmparser",
|
|
1908
|
+
"wit-parser",
|
|
1909
|
+
]
|
|
1910
|
+
|
|
1911
|
+
[[package]]
|
|
1912
|
+
name = "wit-parser"
|
|
1913
|
+
version = "0.244.0"
|
|
1914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
1916
|
+
dependencies = [
|
|
1917
|
+
"anyhow",
|
|
1918
|
+
"id-arena",
|
|
1919
|
+
"indexmap",
|
|
1920
|
+
"log",
|
|
1921
|
+
"semver",
|
|
1922
|
+
"serde",
|
|
1923
|
+
"serde_derive",
|
|
1924
|
+
"serde_json",
|
|
1925
|
+
"unicode-xid",
|
|
1926
|
+
"wasmparser",
|
|
1927
|
+
]
|
|
1928
|
+
|
|
1929
|
+
[[package]]
|
|
1930
|
+
name = "writeable"
|
|
1931
|
+
version = "0.6.3"
|
|
1932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
1934
|
+
|
|
1935
|
+
[[package]]
|
|
1936
|
+
name = "yansi"
|
|
1937
|
+
version = "1.0.1"
|
|
1938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
1940
|
+
|
|
1941
|
+
[[package]]
|
|
1942
|
+
name = "yoke"
|
|
1943
|
+
version = "0.8.3"
|
|
1944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1945
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
1946
|
+
dependencies = [
|
|
1947
|
+
"stable_deref_trait",
|
|
1948
|
+
"yoke-derive",
|
|
1949
|
+
"zerofrom",
|
|
1950
|
+
]
|
|
1951
|
+
|
|
1952
|
+
[[package]]
|
|
1953
|
+
name = "yoke-derive"
|
|
1954
|
+
version = "0.8.2"
|
|
1955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1956
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1957
|
+
dependencies = [
|
|
1958
|
+
"proc-macro2",
|
|
1959
|
+
"quote",
|
|
1960
|
+
"syn",
|
|
1961
|
+
"synstructure",
|
|
1962
|
+
]
|
|
1963
|
+
|
|
1964
|
+
[[package]]
|
|
1965
|
+
name = "zerofrom"
|
|
1966
|
+
version = "0.1.8"
|
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1968
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
1969
|
+
dependencies = [
|
|
1970
|
+
"zerofrom-derive",
|
|
1971
|
+
]
|
|
1972
|
+
|
|
1973
|
+
[[package]]
|
|
1974
|
+
name = "zerofrom-derive"
|
|
1975
|
+
version = "0.1.7"
|
|
1976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1977
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
1978
|
+
dependencies = [
|
|
1979
|
+
"proc-macro2",
|
|
1980
|
+
"quote",
|
|
1981
|
+
"syn",
|
|
1982
|
+
"synstructure",
|
|
1983
|
+
]
|
|
1984
|
+
|
|
1985
|
+
[[package]]
|
|
1986
|
+
name = "zerotrie"
|
|
1987
|
+
version = "0.2.4"
|
|
1988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1989
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
1990
|
+
dependencies = [
|
|
1991
|
+
"displaydoc",
|
|
1992
|
+
"yoke",
|
|
1993
|
+
"zerofrom",
|
|
1994
|
+
]
|
|
1995
|
+
|
|
1996
|
+
[[package]]
|
|
1997
|
+
name = "zerovec"
|
|
1998
|
+
version = "0.11.6"
|
|
1999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2000
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
2001
|
+
dependencies = [
|
|
2002
|
+
"yoke",
|
|
2003
|
+
"zerofrom",
|
|
2004
|
+
"zerovec-derive",
|
|
2005
|
+
]
|
|
2006
|
+
|
|
2007
|
+
[[package]]
|
|
2008
|
+
name = "zerovec-derive"
|
|
2009
|
+
version = "0.11.3"
|
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
2012
|
+
dependencies = [
|
|
2013
|
+
"proc-macro2",
|
|
2014
|
+
"quote",
|
|
2015
|
+
"syn",
|
|
2016
|
+
]
|
|
2017
|
+
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "zmij"
|
|
2020
|
+
version = "1.0.21"
|
|
2021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|