fatou 0.3.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.
- fatou-0.3.0/Cargo.lock +1096 -0
- fatou-0.3.0/Cargo.toml +44 -0
- fatou-0.3.0/LICENSE +21 -0
- fatou-0.3.0/PKG-INFO +73 -0
- fatou-0.3.0/README.md +49 -0
- fatou-0.3.0/pyproject.toml +34 -0
- fatou-0.3.0/src/ast/nodes.rs +292 -0
- fatou-0.3.0/src/ast.rs +13 -0
- fatou-0.3.0/src/cli.rs +103 -0
- fatou-0.3.0/src/config.rs +181 -0
- fatou-0.3.0/src/file_discovery.rs +83 -0
- fatou-0.3.0/src/formatter/check.rs +96 -0
- fatou-0.3.0/src/formatter/core.rs +80 -0
- fatou-0.3.0/src/formatter/ir.rs +55 -0
- fatou-0.3.0/src/formatter/printer.rs +187 -0
- fatou-0.3.0/src/formatter/rules.rs +3113 -0
- fatou-0.3.0/src/formatter/style.rs +26 -0
- fatou-0.3.0/src/formatter.rs +20 -0
- fatou-0.3.0/src/incremental.rs +236 -0
- fatou-0.3.0/src/lib.rs +11 -0
- fatou-0.3.0/src/linter/check.rs +149 -0
- fatou-0.3.0/src/linter/diagnostic.rs +57 -0
- fatou-0.3.0/src/linter/render.rs +54 -0
- fatou-0.3.0/src/linter/rules.rs +67 -0
- fatou-0.3.0/src/linter/suppression.rs +119 -0
- fatou-0.3.0/src/linter.rs +20 -0
- fatou-0.3.0/src/lsp.rs +203 -0
- fatou-0.3.0/src/main.rs +199 -0
- fatou-0.3.0/src/parser/context.rs +34 -0
- fatou-0.3.0/src/parser/core.rs +699 -0
- fatou-0.3.0/src/parser/cursor.rs +41 -0
- fatou-0.3.0/src/parser/diagnostics.rs +214 -0
- fatou-0.3.0/src/parser/events.rs +30 -0
- fatou-0.3.0/src/parser/expr.rs +5065 -0
- fatou-0.3.0/src/parser/lexer.rs +1678 -0
- fatou-0.3.0/src/parser/recovery.rs +26 -0
- fatou-0.3.0/src/parser/sexpr.rs +3417 -0
- fatou-0.3.0/src/parser/structural.rs +1690 -0
- fatou-0.3.0/src/parser/tree_builder.rs +195 -0
- fatou-0.3.0/src/parser/unicode_ops.rs +617 -0
- fatou-0.3.0/src/parser.rs +23 -0
- fatou-0.3.0/src/syntax.rs +341 -0
- fatou-0.3.0/src/text/line_index.rs +136 -0
- fatou-0.3.0/src/text.rs +5 -0
fatou-0.3.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1096 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "allocator-api2"
|
|
16
|
+
version = "0.2.21"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstream"
|
|
22
|
+
version = "1.0.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"anstyle",
|
|
27
|
+
"anstyle-parse",
|
|
28
|
+
"anstyle-query",
|
|
29
|
+
"anstyle-wincon",
|
|
30
|
+
"colorchoice",
|
|
31
|
+
"is_terminal_polyfill",
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle"
|
|
37
|
+
version = "1.0.14"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-parse"
|
|
43
|
+
version = "1.0.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-query"
|
|
52
|
+
version = "1.1.5"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"windows-sys",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-wincon"
|
|
61
|
+
version = "3.0.11"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"anstyle",
|
|
66
|
+
"once_cell_polyfill",
|
|
67
|
+
"windows-sys",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "autocfg"
|
|
72
|
+
version = "1.5.1"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "bitflags"
|
|
78
|
+
version = "1.3.2"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "bitflags"
|
|
84
|
+
version = "2.13.0"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "boxcar"
|
|
90
|
+
version = "0.2.14"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e"
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "bstr"
|
|
96
|
+
version = "1.12.3"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"memchr",
|
|
101
|
+
"serde_core",
|
|
102
|
+
]
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "cfg-if"
|
|
106
|
+
version = "1.0.4"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "clap"
|
|
112
|
+
version = "4.6.1"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
115
|
+
dependencies = [
|
|
116
|
+
"clap_builder",
|
|
117
|
+
"clap_derive",
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "clap_builder"
|
|
122
|
+
version = "4.6.0"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"anstream",
|
|
127
|
+
"anstyle",
|
|
128
|
+
"clap_lex",
|
|
129
|
+
"strsim",
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "clap_derive"
|
|
134
|
+
version = "4.6.1"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"heck",
|
|
139
|
+
"proc-macro2",
|
|
140
|
+
"quote",
|
|
141
|
+
"syn",
|
|
142
|
+
]
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "clap_lex"
|
|
146
|
+
version = "1.1.0"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "colorchoice"
|
|
152
|
+
version = "1.0.5"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "console"
|
|
158
|
+
version = "0.16.4"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "4fe5f465a4f6fee88fad41b85d990f84c835335e85b5d9e6e63e0d06d28cba7c"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"encode_unicode",
|
|
163
|
+
"libc",
|
|
164
|
+
"windows-sys",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "countme"
|
|
169
|
+
version = "3.0.1"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "crossbeam-channel"
|
|
175
|
+
version = "0.5.15"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"crossbeam-utils",
|
|
180
|
+
]
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "crossbeam-deque"
|
|
184
|
+
version = "0.8.6"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
187
|
+
dependencies = [
|
|
188
|
+
"crossbeam-epoch",
|
|
189
|
+
"crossbeam-utils",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "crossbeam-epoch"
|
|
194
|
+
version = "0.9.18"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"crossbeam-utils",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "crossbeam-queue"
|
|
203
|
+
version = "0.3.12"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"crossbeam-utils",
|
|
208
|
+
]
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "crossbeam-utils"
|
|
212
|
+
version = "0.8.21"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "defmt"
|
|
218
|
+
version = "1.1.0"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "a6e524506490a1953d237cb87b1cfc1e46f88c18f10a22dfe0f507dc6bfc7f7f"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"bitflags 1.3.2",
|
|
223
|
+
"defmt-macros",
|
|
224
|
+
]
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "defmt-macros"
|
|
228
|
+
version = "1.1.0"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "f0a27770e9c8f719a79d8b638281f4d828f77d8fd61e0bd94451b9b85e576a0b"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"defmt-parser",
|
|
233
|
+
"proc-macro-error2",
|
|
234
|
+
"proc-macro2",
|
|
235
|
+
"quote",
|
|
236
|
+
"syn",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "defmt-parser"
|
|
241
|
+
version = "1.0.0"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"thiserror",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "either"
|
|
250
|
+
version = "1.16.0"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "encode_unicode"
|
|
256
|
+
version = "1.0.0"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "env_filter"
|
|
262
|
+
version = "2.0.0"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
|
|
265
|
+
dependencies = [
|
|
266
|
+
"log",
|
|
267
|
+
"regex",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "env_logger"
|
|
272
|
+
version = "0.11.11"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
|
|
275
|
+
dependencies = [
|
|
276
|
+
"anstream",
|
|
277
|
+
"anstyle",
|
|
278
|
+
"env_filter",
|
|
279
|
+
"jiff",
|
|
280
|
+
"log",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "equivalent"
|
|
285
|
+
version = "1.0.2"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "errno"
|
|
291
|
+
version = "0.3.14"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"libc",
|
|
296
|
+
"windows-sys",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "fastrand"
|
|
301
|
+
version = "2.4.1"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "fatou"
|
|
307
|
+
version = "0.3.0"
|
|
308
|
+
dependencies = [
|
|
309
|
+
"clap",
|
|
310
|
+
"crossbeam-channel",
|
|
311
|
+
"env_logger",
|
|
312
|
+
"ignore",
|
|
313
|
+
"insta",
|
|
314
|
+
"log",
|
|
315
|
+
"lsp-server",
|
|
316
|
+
"lsp-types",
|
|
317
|
+
"rowan",
|
|
318
|
+
"salsa",
|
|
319
|
+
"serde",
|
|
320
|
+
"serde_json",
|
|
321
|
+
"similar 3.1.1",
|
|
322
|
+
"toml",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "fluent-uri"
|
|
327
|
+
version = "0.1.4"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"bitflags 1.3.2",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "foldhash"
|
|
336
|
+
version = "0.2.0"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "getrandom"
|
|
342
|
+
version = "0.4.3"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
345
|
+
dependencies = [
|
|
346
|
+
"cfg-if",
|
|
347
|
+
"libc",
|
|
348
|
+
"r-efi",
|
|
349
|
+
]
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "globset"
|
|
353
|
+
version = "0.4.18"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"aho-corasick",
|
|
358
|
+
"bstr",
|
|
359
|
+
"log",
|
|
360
|
+
"regex-automata",
|
|
361
|
+
"regex-syntax",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "hashbrown"
|
|
366
|
+
version = "0.14.5"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "hashbrown"
|
|
372
|
+
version = "0.17.1"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
375
|
+
dependencies = [
|
|
376
|
+
"allocator-api2",
|
|
377
|
+
"equivalent",
|
|
378
|
+
"foldhash",
|
|
379
|
+
]
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "hashlink"
|
|
383
|
+
version = "0.12.0"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "a5081f264ed7adee96ea4b4778b6bb9da0a7228b084587aa3bd3ff05da7c5a3b"
|
|
386
|
+
dependencies = [
|
|
387
|
+
"hashbrown 0.17.1",
|
|
388
|
+
]
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "heck"
|
|
392
|
+
version = "0.5.0"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "ignore"
|
|
398
|
+
version = "0.4.27"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "fe112b004901c62c2faa11f4f75e9864e0cc5af8da71c9115d184a3aa888749f"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"crossbeam-deque",
|
|
403
|
+
"globset",
|
|
404
|
+
"log",
|
|
405
|
+
"memchr",
|
|
406
|
+
"regex-automata",
|
|
407
|
+
"same-file",
|
|
408
|
+
"walkdir",
|
|
409
|
+
"winapi-util",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "indexmap"
|
|
414
|
+
version = "2.14.0"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"equivalent",
|
|
419
|
+
"hashbrown 0.17.1",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "insta"
|
|
424
|
+
version = "1.48.0"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "86f0f8fee8c926415c58d6ae43a08523a26faccb2323f5e6b644fe7dd4ef6b82"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"console",
|
|
429
|
+
"once_cell",
|
|
430
|
+
"similar 2.7.0",
|
|
431
|
+
"tempfile",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "intrusive-collections"
|
|
436
|
+
version = "0.10.2"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "4b719c59241cfaac1042a6d26787e28ed7ee4a4e21a5a907786f54222d1b0062"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"memoffset",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "inventory"
|
|
445
|
+
version = "0.3.24"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"rustversion",
|
|
450
|
+
]
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "is_terminal_polyfill"
|
|
454
|
+
version = "1.70.2"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "itoa"
|
|
460
|
+
version = "1.0.18"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "jiff"
|
|
466
|
+
version = "0.2.31"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "ccfe6121cbe750cf81efa362d85c0bde7ea298ec43092d3a193baca59cdbd634"
|
|
469
|
+
dependencies = [
|
|
470
|
+
"defmt",
|
|
471
|
+
"jiff-static",
|
|
472
|
+
"log",
|
|
473
|
+
"portable-atomic",
|
|
474
|
+
"portable-atomic-util",
|
|
475
|
+
"serde_core",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "jiff-static"
|
|
480
|
+
version = "0.2.31"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "e165e897f662d428f3cd3828a919dbe067c2d42bb1031eede74ef9d27ecdedd2"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"proc-macro2",
|
|
485
|
+
"quote",
|
|
486
|
+
"syn",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "libc"
|
|
491
|
+
version = "0.2.186"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
494
|
+
|
|
495
|
+
[[package]]
|
|
496
|
+
name = "linux-raw-sys"
|
|
497
|
+
version = "0.12.1"
|
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "lock_api"
|
|
503
|
+
version = "0.4.14"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"scopeguard",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "log"
|
|
512
|
+
version = "0.4.33"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "lsp-server"
|
|
518
|
+
version = "0.8.0"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "0ad8be6fe0ca81b8298bfbbe8a77e9fcd8895ad6c84cd7794d5ebadcbb09ae43"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"crossbeam-channel",
|
|
523
|
+
"log",
|
|
524
|
+
"serde",
|
|
525
|
+
"serde_derive",
|
|
526
|
+
"serde_json",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "lsp-types"
|
|
531
|
+
version = "0.97.0"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "53353550a17c04ac46c585feb189c2db82154fc84b79c7a66c96c2c644f66071"
|
|
534
|
+
dependencies = [
|
|
535
|
+
"bitflags 1.3.2",
|
|
536
|
+
"fluent-uri",
|
|
537
|
+
"serde",
|
|
538
|
+
"serde_json",
|
|
539
|
+
"serde_repr",
|
|
540
|
+
]
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "memchr"
|
|
544
|
+
version = "2.8.2"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "memoffset"
|
|
550
|
+
version = "0.9.1"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"autocfg",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "once_cell"
|
|
559
|
+
version = "1.21.4"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "once_cell_polyfill"
|
|
565
|
+
version = "1.70.2"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "parking_lot"
|
|
571
|
+
version = "0.12.5"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
574
|
+
dependencies = [
|
|
575
|
+
"lock_api",
|
|
576
|
+
"parking_lot_core",
|
|
577
|
+
]
|
|
578
|
+
|
|
579
|
+
[[package]]
|
|
580
|
+
name = "parking_lot_core"
|
|
581
|
+
version = "0.9.12"
|
|
582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
584
|
+
dependencies = [
|
|
585
|
+
"cfg-if",
|
|
586
|
+
"libc",
|
|
587
|
+
"redox_syscall",
|
|
588
|
+
"smallvec",
|
|
589
|
+
"windows-link",
|
|
590
|
+
]
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "pin-project-lite"
|
|
594
|
+
version = "0.2.17"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "portable-atomic"
|
|
600
|
+
version = "1.13.1"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "portable-atomic-util"
|
|
606
|
+
version = "0.2.7"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"portable-atomic",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "proc-macro-error-attr2"
|
|
615
|
+
version = "2.0.0"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"proc-macro2",
|
|
620
|
+
"quote",
|
|
621
|
+
]
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "proc-macro-error2"
|
|
625
|
+
version = "2.0.1"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
628
|
+
dependencies = [
|
|
629
|
+
"proc-macro-error-attr2",
|
|
630
|
+
"proc-macro2",
|
|
631
|
+
"quote",
|
|
632
|
+
"syn",
|
|
633
|
+
]
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "proc-macro2"
|
|
637
|
+
version = "1.0.106"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"unicode-ident",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "quote"
|
|
646
|
+
version = "1.0.46"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"proc-macro2",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "r-efi"
|
|
655
|
+
version = "6.0.0"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "rayon"
|
|
661
|
+
version = "1.12.0"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"either",
|
|
666
|
+
"rayon-core",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "rayon-core"
|
|
671
|
+
version = "1.13.0"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"crossbeam-deque",
|
|
676
|
+
"crossbeam-utils",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "redox_syscall"
|
|
681
|
+
version = "0.5.18"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
684
|
+
dependencies = [
|
|
685
|
+
"bitflags 2.13.0",
|
|
686
|
+
]
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "regex"
|
|
690
|
+
version = "1.12.4"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
693
|
+
dependencies = [
|
|
694
|
+
"aho-corasick",
|
|
695
|
+
"memchr",
|
|
696
|
+
"regex-automata",
|
|
697
|
+
"regex-syntax",
|
|
698
|
+
]
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "regex-automata"
|
|
702
|
+
version = "0.4.14"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
705
|
+
dependencies = [
|
|
706
|
+
"aho-corasick",
|
|
707
|
+
"memchr",
|
|
708
|
+
"regex-syntax",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "regex-syntax"
|
|
713
|
+
version = "0.8.11"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "rowan"
|
|
719
|
+
version = "0.16.1"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "417a3a9f582e349834051b8a10c8d71ca88da4211e4093528e36b9845f6b5f21"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"countme",
|
|
724
|
+
"hashbrown 0.14.5",
|
|
725
|
+
"rustc-hash 1.1.0",
|
|
726
|
+
"text-size",
|
|
727
|
+
]
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "rustc-hash"
|
|
731
|
+
version = "1.1.0"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "rustc-hash"
|
|
737
|
+
version = "2.1.2"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "rustix"
|
|
743
|
+
version = "1.1.4"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
746
|
+
dependencies = [
|
|
747
|
+
"bitflags 2.13.0",
|
|
748
|
+
"errno",
|
|
749
|
+
"libc",
|
|
750
|
+
"linux-raw-sys",
|
|
751
|
+
"windows-sys",
|
|
752
|
+
]
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "rustversion"
|
|
756
|
+
version = "1.0.22"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "salsa"
|
|
762
|
+
version = "0.27.2"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "ffbaab832e2ea754afda4a738f987dd1e8bd30c9e5d8c981ee6a3934386095e2"
|
|
765
|
+
dependencies = [
|
|
766
|
+
"boxcar",
|
|
767
|
+
"crossbeam-queue",
|
|
768
|
+
"crossbeam-utils",
|
|
769
|
+
"hashbrown 0.17.1",
|
|
770
|
+
"hashlink",
|
|
771
|
+
"indexmap",
|
|
772
|
+
"intrusive-collections",
|
|
773
|
+
"inventory",
|
|
774
|
+
"parking_lot",
|
|
775
|
+
"portable-atomic",
|
|
776
|
+
"rayon",
|
|
777
|
+
"rustc-hash 2.1.2",
|
|
778
|
+
"salsa-macro-rules",
|
|
779
|
+
"salsa-macros",
|
|
780
|
+
"smallvec",
|
|
781
|
+
"thin-vec",
|
|
782
|
+
"tracing",
|
|
783
|
+
"typeid",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "salsa-macro-rules"
|
|
788
|
+
version = "0.27.2"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "de6872462ac73d39969a836273c24163e6a26a4e08f5114fcd80e25af30ea9c6"
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "salsa-macros"
|
|
794
|
+
version = "0.27.2"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "76bc78ffaf65b1a9175818592c5130aa10b1bb245a905722fd4db87cea8a8457"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"proc-macro2",
|
|
799
|
+
"quote",
|
|
800
|
+
"syn",
|
|
801
|
+
"synstructure",
|
|
802
|
+
]
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "same-file"
|
|
806
|
+
version = "1.0.6"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"winapi-util",
|
|
811
|
+
]
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "scopeguard"
|
|
815
|
+
version = "1.2.0"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "serde"
|
|
821
|
+
version = "1.0.228"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"serde_core",
|
|
826
|
+
"serde_derive",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "serde_core"
|
|
831
|
+
version = "1.0.228"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"serde_derive",
|
|
836
|
+
]
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "serde_derive"
|
|
840
|
+
version = "1.0.228"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
843
|
+
dependencies = [
|
|
844
|
+
"proc-macro2",
|
|
845
|
+
"quote",
|
|
846
|
+
"syn",
|
|
847
|
+
]
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "serde_json"
|
|
851
|
+
version = "1.0.150"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
854
|
+
dependencies = [
|
|
855
|
+
"itoa",
|
|
856
|
+
"memchr",
|
|
857
|
+
"serde",
|
|
858
|
+
"serde_core",
|
|
859
|
+
"zmij",
|
|
860
|
+
]
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "serde_repr"
|
|
864
|
+
version = "0.1.20"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
867
|
+
dependencies = [
|
|
868
|
+
"proc-macro2",
|
|
869
|
+
"quote",
|
|
870
|
+
"syn",
|
|
871
|
+
]
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "serde_spanned"
|
|
875
|
+
version = "1.1.1"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"serde_core",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "similar"
|
|
884
|
+
version = "2.7.0"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "similar"
|
|
890
|
+
version = "3.1.1"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "e6505efef05804732ed8a3f2d4f279429eb485bd69d5b0cc6b19cc02005cda16"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"bstr",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "smallvec"
|
|
899
|
+
version = "1.15.2"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "strsim"
|
|
905
|
+
version = "0.11.1"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "syn"
|
|
911
|
+
version = "2.0.118"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"proc-macro2",
|
|
916
|
+
"quote",
|
|
917
|
+
"unicode-ident",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "synstructure"
|
|
922
|
+
version = "0.13.2"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"proc-macro2",
|
|
927
|
+
"quote",
|
|
928
|
+
"syn",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "tempfile"
|
|
933
|
+
version = "3.27.0"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"fastrand",
|
|
938
|
+
"getrandom",
|
|
939
|
+
"once_cell",
|
|
940
|
+
"rustix",
|
|
941
|
+
"windows-sys",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "text-size"
|
|
946
|
+
version = "1.1.1"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "thin-vec"
|
|
952
|
+
version = "0.2.18"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "thiserror"
|
|
958
|
+
version = "2.0.18"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
961
|
+
dependencies = [
|
|
962
|
+
"thiserror-impl",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "thiserror-impl"
|
|
967
|
+
version = "2.0.18"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"proc-macro2",
|
|
972
|
+
"quote",
|
|
973
|
+
"syn",
|
|
974
|
+
]
|
|
975
|
+
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "toml"
|
|
978
|
+
version = "1.1.2+spec-1.1.0"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"indexmap",
|
|
983
|
+
"serde_core",
|
|
984
|
+
"serde_spanned",
|
|
985
|
+
"toml_datetime",
|
|
986
|
+
"toml_parser",
|
|
987
|
+
"toml_writer",
|
|
988
|
+
"winnow",
|
|
989
|
+
]
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "toml_datetime"
|
|
993
|
+
version = "1.1.1+spec-1.1.0"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
996
|
+
dependencies = [
|
|
997
|
+
"serde_core",
|
|
998
|
+
]
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "toml_parser"
|
|
1002
|
+
version = "1.1.2+spec-1.1.0"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
1005
|
+
dependencies = [
|
|
1006
|
+
"winnow",
|
|
1007
|
+
]
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "toml_writer"
|
|
1011
|
+
version = "1.1.1+spec-1.1.0"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "tracing"
|
|
1017
|
+
version = "0.1.44"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"pin-project-lite",
|
|
1022
|
+
"tracing-core",
|
|
1023
|
+
]
|
|
1024
|
+
|
|
1025
|
+
[[package]]
|
|
1026
|
+
name = "tracing-core"
|
|
1027
|
+
version = "0.1.36"
|
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1029
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1030
|
+
dependencies = [
|
|
1031
|
+
"once_cell",
|
|
1032
|
+
]
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "typeid"
|
|
1036
|
+
version = "1.0.3"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "unicode-ident"
|
|
1042
|
+
version = "1.0.24"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "utf8parse"
|
|
1048
|
+
version = "0.2.2"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1051
|
+
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "walkdir"
|
|
1054
|
+
version = "2.5.0"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1057
|
+
dependencies = [
|
|
1058
|
+
"same-file",
|
|
1059
|
+
"winapi-util",
|
|
1060
|
+
]
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "winapi-util"
|
|
1064
|
+
version = "0.1.11"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"windows-sys",
|
|
1069
|
+
]
|
|
1070
|
+
|
|
1071
|
+
[[package]]
|
|
1072
|
+
name = "windows-link"
|
|
1073
|
+
version = "0.2.1"
|
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "windows-sys"
|
|
1079
|
+
version = "0.61.2"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1082
|
+
dependencies = [
|
|
1083
|
+
"windows-link",
|
|
1084
|
+
]
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "winnow"
|
|
1088
|
+
version = "1.0.3"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
1091
|
+
|
|
1092
|
+
[[package]]
|
|
1093
|
+
name = "zmij"
|
|
1094
|
+
version = "1.0.21"
|
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|