beancount-lsp 0.0.3__tar.gz → 0.0.5__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.
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/Cargo.lock +590 -420
- beancount_lsp-0.0.5/Cargo.toml +10 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/PKG-INFO +1 -1
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp/Cargo.toml +15 -5
- beancount_lsp-0.0.5/crates/lsp/benches/parse_document.rs +140 -0
- beancount_lsp-0.0.5/crates/lsp/benches/semantic_tokens.rs +48 -0
- beancount_lsp-0.0.5/crates/lsp/src/doc.rs +177 -0
- beancount_lsp-0.0.5/crates/lsp/src/indexer.rs +622 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp/src/lib.rs +28 -4
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp/src/main.rs +1 -1
- beancount_lsp-0.0.5/crates/lsp/src/providers/account.rs +126 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp/src/providers/completion.rs +366 -218
- beancount_lsp-0.0.5/crates/lsp/src/providers/definition.rs +107 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp/src/providers/hover.rs +37 -31
- beancount_lsp-0.0.5/crates/lsp/src/providers/semantic_tokens.rs +687 -0
- beancount_lsp-0.0.5/crates/lsp/src/providers/snapshots/beancount_lsp__providers__semantic_tokens__tests__semantic_tokens_snapshot.snap +74 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp/src/server.rs +298 -312
- beancount_lsp-0.0.5/crates/lsp/src/test_utils.rs +26 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp/src/text.rs +1 -22
- beancount_lsp-0.0.5/crates/lsp/tests/account.rs +46 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp-py/Cargo.toml +1 -1
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/pyproject.toml +1 -1
- beancount_lsp-0.0.3/Cargo.toml +0 -11
- beancount_lsp-0.0.3/crates/lsp/src/providers/account.rs +0 -171
- beancount_lsp-0.0.3/crates/lsp/src/providers/definition.rs +0 -138
- beancount_lsp-0.0.3/crates/lsp/src/providers/semantic_tokens.rs +0 -237
- beancount_lsp-0.0.3/crates/lsp/src/python.rs +0 -53
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/README.md +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp/src/checkers/mod.rs +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp/src/checkers/python.rs +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp/src/checkers/python_script.rs +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp/src/checkers/scripts/python_json_checker.py +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp/src/providers/mod.rs +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp-py/README.md +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp-py/py-src/beancount_lsp/__init__.py +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp-py/py-src/beancount_lsp/_lsp.pyi +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp-py/py-src/beancount_lsp/cli.py +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp-py/py-src/beancount_lsp/py.typed +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/crates/lsp-py/src/lib.rs +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/py-src/beancount_lsp/__init__.py +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/py-src/beancount_lsp/_lsp.pyi +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/py-src/beancount_lsp/cli.py +0 -0
- {beancount_lsp-0.0.3 → beancount_lsp-0.0.5}/py-src/beancount_lsp/py.typed +0 -0
|
@@ -22,6 +22,27 @@ dependencies = [
|
|
|
22
22
|
"memchr",
|
|
23
23
|
]
|
|
24
24
|
|
|
25
|
+
[[package]]
|
|
26
|
+
name = "alloca"
|
|
27
|
+
version = "0.4.0"
|
|
28
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
+
checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
|
|
30
|
+
dependencies = [
|
|
31
|
+
"cc",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "allocator-api2"
|
|
36
|
+
version = "0.2.21"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "anes"
|
|
42
|
+
version = "0.1.6"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
45
|
+
|
|
25
46
|
[[package]]
|
|
26
47
|
name = "anstream"
|
|
27
48
|
version = "0.6.21"
|
|
@@ -58,7 +79,7 @@ version = "1.1.5"
|
|
|
58
79
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
80
|
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
60
81
|
dependencies = [
|
|
61
|
-
"windows-sys",
|
|
82
|
+
"windows-sys 0.61.2",
|
|
62
83
|
]
|
|
63
84
|
|
|
64
85
|
[[package]]
|
|
@@ -69,42 +90,29 @@ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
|
69
90
|
dependencies = [
|
|
70
91
|
"anstyle",
|
|
71
92
|
"once_cell_polyfill",
|
|
72
|
-
"windows-sys",
|
|
93
|
+
"windows-sys 0.61.2",
|
|
73
94
|
]
|
|
74
95
|
|
|
75
96
|
[[package]]
|
|
76
97
|
name = "anyhow"
|
|
77
|
-
version = "1.0.
|
|
78
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
-
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
80
|
-
|
|
81
|
-
[[package]]
|
|
82
|
-
name = "arrayvec"
|
|
83
|
-
version = "0.7.6"
|
|
98
|
+
version = "1.0.101"
|
|
84
99
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
-
checksum = "
|
|
100
|
+
checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
|
|
86
101
|
|
|
87
102
|
[[package]]
|
|
88
|
-
name = "
|
|
89
|
-
version = "0.1
|
|
103
|
+
name = "ar_archive_writer"
|
|
104
|
+
version = "0.5.1"
|
|
90
105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
-
checksum = "
|
|
106
|
+
checksum = "7eb93bbb63b9c227414f6eb3a0adfddca591a8ce1e9b60661bb08969b87e340b"
|
|
92
107
|
dependencies = [
|
|
93
|
-
"
|
|
94
|
-
"quote",
|
|
95
|
-
"syn 2.0.114",
|
|
108
|
+
"object",
|
|
96
109
|
]
|
|
97
110
|
|
|
98
111
|
[[package]]
|
|
99
|
-
name = "
|
|
100
|
-
version = "
|
|
112
|
+
name = "arrayvec"
|
|
113
|
+
version = "0.7.6"
|
|
101
114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
-
checksum = "
|
|
103
|
-
dependencies = [
|
|
104
|
-
"proc-macro2",
|
|
105
|
-
"quote",
|
|
106
|
-
"syn 2.0.114",
|
|
107
|
-
]
|
|
115
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
108
116
|
|
|
109
117
|
[[package]]
|
|
110
118
|
name = "autocfg"
|
|
@@ -118,16 +126,18 @@ version = "0.0.0"
|
|
|
118
126
|
dependencies = [
|
|
119
127
|
"anyhow",
|
|
120
128
|
"beancount-parser",
|
|
121
|
-
"beancount-tree-sitter",
|
|
122
129
|
"clap",
|
|
130
|
+
"criterion",
|
|
123
131
|
"glob",
|
|
132
|
+
"insta",
|
|
133
|
+
"lru",
|
|
124
134
|
"pyo3",
|
|
125
135
|
"ropey",
|
|
126
136
|
"serde",
|
|
127
137
|
"serde_json",
|
|
128
138
|
"tempfile",
|
|
129
139
|
"tokio",
|
|
130
|
-
"tower-lsp",
|
|
140
|
+
"tower-lsp-server",
|
|
131
141
|
"tracing",
|
|
132
142
|
"tracing-subscriber",
|
|
133
143
|
]
|
|
@@ -144,35 +154,18 @@ dependencies = [
|
|
|
144
154
|
[[package]]
|
|
145
155
|
name = "beancount-parser"
|
|
146
156
|
version = "3.3.0-alpha.0"
|
|
147
|
-
source = "git+https://github.com/trim21/beancount.git?rev=
|
|
157
|
+
source = "git+https://github.com/trim21/beancount.git?rev=e084af487707717c638aafebdc28ef6c4c7ba378#e084af487707717c638aafebdc28ef6c4c7ba378"
|
|
148
158
|
dependencies = [
|
|
149
159
|
"anyhow",
|
|
150
|
-
"beancount-tree-sitter",
|
|
151
160
|
"chrono",
|
|
161
|
+
"chumsky",
|
|
152
162
|
"path-clean",
|
|
153
163
|
"ropey",
|
|
154
164
|
"rust_decimal",
|
|
155
165
|
"serde_json",
|
|
156
166
|
"smallvec",
|
|
157
|
-
"tree-sitter",
|
|
158
|
-
]
|
|
159
|
-
|
|
160
|
-
[[package]]
|
|
161
|
-
name = "beancount-tree-sitter"
|
|
162
|
-
version = "2.4.2"
|
|
163
|
-
source = "git+https://github.com/trim21/beancount.git?rev=8b4e3311258194fe3127862dd4132028e97cc01d#8b4e3311258194fe3127862dd4132028e97cc01d"
|
|
164
|
-
dependencies = [
|
|
165
|
-
"cc",
|
|
166
|
-
"tree-sitter",
|
|
167
|
-
"tree-sitter-language",
|
|
168
167
|
]
|
|
169
168
|
|
|
170
|
-
[[package]]
|
|
171
|
-
name = "bitflags"
|
|
172
|
-
version = "1.3.2"
|
|
173
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
175
|
-
|
|
176
169
|
[[package]]
|
|
177
170
|
name = "bitflags"
|
|
178
171
|
version = "2.10.0"
|
|
@@ -191,6 +184,12 @@ dependencies = [
|
|
|
191
184
|
"wyz",
|
|
192
185
|
]
|
|
193
186
|
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "borrow-or-share"
|
|
189
|
+
version = "0.2.4"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c"
|
|
192
|
+
|
|
194
193
|
[[package]]
|
|
195
194
|
name = "borsh"
|
|
196
195
|
version = "1.6.0"
|
|
@@ -214,6 +213,16 @@ dependencies = [
|
|
|
214
213
|
"syn 2.0.114",
|
|
215
214
|
]
|
|
216
215
|
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "bstr"
|
|
218
|
+
version = "1.12.1"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"memchr",
|
|
223
|
+
"serde",
|
|
224
|
+
]
|
|
225
|
+
|
|
217
226
|
[[package]]
|
|
218
227
|
name = "bumpalo"
|
|
219
228
|
version = "3.19.1"
|
|
@@ -244,9 +253,15 @@ dependencies = [
|
|
|
244
253
|
|
|
245
254
|
[[package]]
|
|
246
255
|
name = "bytes"
|
|
247
|
-
version = "1.11.
|
|
256
|
+
version = "1.11.1"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "cast"
|
|
262
|
+
version = "0.3.0"
|
|
248
263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
-
checksum = "
|
|
264
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
250
265
|
|
|
251
266
|
[[package]]
|
|
252
267
|
name = "cc"
|
|
@@ -279,11 +294,52 @@ dependencies = [
|
|
|
279
294
|
"num-traits",
|
|
280
295
|
]
|
|
281
296
|
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "chumsky"
|
|
299
|
+
version = "0.12.0"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "4ba4a05c9ce83b07de31b31c874e87c069881ac4355db9e752e3a55c11ec75a6"
|
|
302
|
+
dependencies = [
|
|
303
|
+
"hashbrown 0.15.5",
|
|
304
|
+
"regex-automata 0.3.9",
|
|
305
|
+
"serde",
|
|
306
|
+
"stacker",
|
|
307
|
+
"unicode-ident",
|
|
308
|
+
"unicode-segmentation",
|
|
309
|
+
]
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "ciborium"
|
|
313
|
+
version = "0.2.2"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"ciborium-io",
|
|
318
|
+
"ciborium-ll",
|
|
319
|
+
"serde",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "ciborium-io"
|
|
324
|
+
version = "0.2.2"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "ciborium-ll"
|
|
330
|
+
version = "0.2.2"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"ciborium-io",
|
|
335
|
+
"half",
|
|
336
|
+
]
|
|
337
|
+
|
|
282
338
|
[[package]]
|
|
283
339
|
name = "clap"
|
|
284
|
-
version = "4.5.
|
|
340
|
+
version = "4.5.57"
|
|
285
341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
-
checksum = "
|
|
342
|
+
checksum = "6899ea499e3fb9305a65d5ebf6e3d2248c5fab291f300ad0a704fbe142eae31a"
|
|
287
343
|
dependencies = [
|
|
288
344
|
"clap_builder",
|
|
289
345
|
"clap_derive",
|
|
@@ -291,9 +347,9 @@ dependencies = [
|
|
|
291
347
|
|
|
292
348
|
[[package]]
|
|
293
349
|
name = "clap_builder"
|
|
294
|
-
version = "4.5.
|
|
350
|
+
version = "4.5.57"
|
|
295
351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
-
checksum = "
|
|
352
|
+
checksum = "7b12c8b680195a62a8364d16b8447b01b6c2c8f9aaf68bee653be34d4245e238"
|
|
297
353
|
dependencies = [
|
|
298
354
|
"anstream",
|
|
299
355
|
"anstyle",
|
|
@@ -325,13 +381,92 @@ version = "1.0.4"
|
|
|
325
381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
382
|
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
327
383
|
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "console"
|
|
386
|
+
version = "0.15.11"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
389
|
+
dependencies = [
|
|
390
|
+
"encode_unicode",
|
|
391
|
+
"libc",
|
|
392
|
+
"once_cell",
|
|
393
|
+
"windows-sys 0.59.0",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "criterion"
|
|
398
|
+
version = "0.8.2"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"alloca",
|
|
403
|
+
"anes",
|
|
404
|
+
"cast",
|
|
405
|
+
"ciborium",
|
|
406
|
+
"clap",
|
|
407
|
+
"criterion-plot",
|
|
408
|
+
"itertools",
|
|
409
|
+
"num-traits",
|
|
410
|
+
"oorandom",
|
|
411
|
+
"page_size",
|
|
412
|
+
"plotters",
|
|
413
|
+
"rayon",
|
|
414
|
+
"regex",
|
|
415
|
+
"serde",
|
|
416
|
+
"serde_json",
|
|
417
|
+
"tinytemplate",
|
|
418
|
+
"walkdir",
|
|
419
|
+
]
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "criterion-plot"
|
|
423
|
+
version = "0.8.2"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"cast",
|
|
428
|
+
"itertools",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "crossbeam-deque"
|
|
433
|
+
version = "0.8.6"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"crossbeam-epoch",
|
|
438
|
+
"crossbeam-utils",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "crossbeam-epoch"
|
|
443
|
+
version = "0.9.18"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"crossbeam-utils",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "crossbeam-utils"
|
|
452
|
+
version = "0.8.21"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
455
|
+
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "crunchy"
|
|
458
|
+
version = "0.2.4"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
461
|
+
|
|
328
462
|
[[package]]
|
|
329
463
|
name = "dashmap"
|
|
330
|
-
version = "
|
|
464
|
+
version = "6.1.0"
|
|
331
465
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
-
checksum = "
|
|
466
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
333
467
|
dependencies = [
|
|
334
468
|
"cfg-if",
|
|
469
|
+
"crossbeam-utils",
|
|
335
470
|
"hashbrown 0.14.5",
|
|
336
471
|
"lock_api",
|
|
337
472
|
"once_cell",
|
|
@@ -339,15 +474,16 @@ dependencies = [
|
|
|
339
474
|
]
|
|
340
475
|
|
|
341
476
|
[[package]]
|
|
342
|
-
name = "
|
|
343
|
-
version = "
|
|
477
|
+
name = "either"
|
|
478
|
+
version = "1.15.0"
|
|
344
479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
-
checksum = "
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
"
|
|
349
|
-
"
|
|
350
|
-
|
|
480
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "encode_unicode"
|
|
484
|
+
version = "1.0.0"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
351
487
|
|
|
352
488
|
[[package]]
|
|
353
489
|
name = "equivalent"
|
|
@@ -362,7 +498,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
362
498
|
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
363
499
|
dependencies = [
|
|
364
500
|
"libc",
|
|
365
|
-
"windows-sys",
|
|
501
|
+
"windows-sys 0.61.2",
|
|
366
502
|
]
|
|
367
503
|
|
|
368
504
|
[[package]]
|
|
@@ -378,14 +514,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
378
514
|
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
379
515
|
|
|
380
516
|
[[package]]
|
|
381
|
-
name = "
|
|
382
|
-
version = "
|
|
517
|
+
name = "fluent-uri"
|
|
518
|
+
version = "0.3.2"
|
|
383
519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
-
checksum = "
|
|
520
|
+
checksum = "1918b65d96df47d3591bed19c5cca17e3fa5d0707318e4b5ef2eae01764df7e5"
|
|
385
521
|
dependencies = [
|
|
386
|
-
"
|
|
522
|
+
"borrow-or-share",
|
|
523
|
+
"ref-cast",
|
|
387
524
|
]
|
|
388
525
|
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "foldhash"
|
|
528
|
+
version = "0.1.5"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "foldhash"
|
|
534
|
+
version = "0.2.0"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
537
|
+
|
|
389
538
|
[[package]]
|
|
390
539
|
name = "funty"
|
|
391
540
|
version = "2.0.0"
|
|
@@ -499,139 +648,77 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
499
648
|
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
500
649
|
|
|
501
650
|
[[package]]
|
|
502
|
-
name = "
|
|
503
|
-
version = "0.
|
|
504
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
-
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
506
|
-
dependencies = [
|
|
507
|
-
"ahash",
|
|
508
|
-
]
|
|
509
|
-
|
|
510
|
-
[[package]]
|
|
511
|
-
name = "hashbrown"
|
|
512
|
-
version = "0.14.5"
|
|
513
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
-
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
515
|
-
|
|
516
|
-
[[package]]
|
|
517
|
-
name = "hashbrown"
|
|
518
|
-
version = "0.16.1"
|
|
519
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
-
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
521
|
-
|
|
522
|
-
[[package]]
|
|
523
|
-
name = "heck"
|
|
524
|
-
version = "0.5.0"
|
|
525
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
-
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
527
|
-
|
|
528
|
-
[[package]]
|
|
529
|
-
name = "httparse"
|
|
530
|
-
version = "1.10.1"
|
|
531
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
-
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
533
|
-
|
|
534
|
-
[[package]]
|
|
535
|
-
name = "icu_collections"
|
|
536
|
-
version = "2.1.1"
|
|
651
|
+
name = "globset"
|
|
652
|
+
version = "0.4.18"
|
|
537
653
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
-
checksum = "
|
|
654
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
539
655
|
dependencies = [
|
|
540
|
-
"
|
|
541
|
-
"
|
|
542
|
-
"
|
|
543
|
-
"
|
|
544
|
-
"
|
|
656
|
+
"aho-corasick",
|
|
657
|
+
"bstr",
|
|
658
|
+
"log",
|
|
659
|
+
"regex-automata 0.4.14",
|
|
660
|
+
"regex-syntax 0.8.9",
|
|
545
661
|
]
|
|
546
662
|
|
|
547
663
|
[[package]]
|
|
548
|
-
name = "
|
|
549
|
-
version = "2.
|
|
664
|
+
name = "half"
|
|
665
|
+
version = "2.7.1"
|
|
550
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
-
checksum = "
|
|
667
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
552
668
|
dependencies = [
|
|
553
|
-
"
|
|
554
|
-
"
|
|
555
|
-
"
|
|
556
|
-
"writeable",
|
|
557
|
-
"zerovec",
|
|
669
|
+
"cfg-if",
|
|
670
|
+
"crunchy",
|
|
671
|
+
"zerocopy",
|
|
558
672
|
]
|
|
559
673
|
|
|
560
674
|
[[package]]
|
|
561
|
-
name = "
|
|
562
|
-
version = "
|
|
675
|
+
name = "hashbrown"
|
|
676
|
+
version = "0.12.3"
|
|
563
677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
-
checksum = "
|
|
678
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
565
679
|
dependencies = [
|
|
566
|
-
"
|
|
567
|
-
"icu_normalizer_data",
|
|
568
|
-
"icu_properties",
|
|
569
|
-
"icu_provider",
|
|
570
|
-
"smallvec",
|
|
571
|
-
"zerovec",
|
|
680
|
+
"ahash",
|
|
572
681
|
]
|
|
573
682
|
|
|
574
683
|
[[package]]
|
|
575
|
-
name = "
|
|
576
|
-
version = "
|
|
684
|
+
name = "hashbrown"
|
|
685
|
+
version = "0.14.5"
|
|
577
686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
-
checksum = "
|
|
687
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
579
688
|
|
|
580
689
|
[[package]]
|
|
581
|
-
name = "
|
|
582
|
-
version = "
|
|
690
|
+
name = "hashbrown"
|
|
691
|
+
version = "0.15.5"
|
|
583
692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
-
checksum = "
|
|
693
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
585
694
|
dependencies = [
|
|
586
|
-
"
|
|
587
|
-
"
|
|
588
|
-
"
|
|
589
|
-
"icu_provider",
|
|
590
|
-
"zerotrie",
|
|
591
|
-
"zerovec",
|
|
695
|
+
"allocator-api2",
|
|
696
|
+
"equivalent",
|
|
697
|
+
"foldhash 0.1.5",
|
|
592
698
|
]
|
|
593
699
|
|
|
594
700
|
[[package]]
|
|
595
|
-
name = "
|
|
596
|
-
version = "
|
|
597
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
-
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
599
|
-
|
|
600
|
-
[[package]]
|
|
601
|
-
name = "icu_provider"
|
|
602
|
-
version = "2.1.1"
|
|
701
|
+
name = "hashbrown"
|
|
702
|
+
version = "0.16.1"
|
|
603
703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
-
checksum = "
|
|
704
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
605
705
|
dependencies = [
|
|
606
|
-
"
|
|
607
|
-
"
|
|
608
|
-
"
|
|
609
|
-
"yoke",
|
|
610
|
-
"zerofrom",
|
|
611
|
-
"zerotrie",
|
|
612
|
-
"zerovec",
|
|
706
|
+
"allocator-api2",
|
|
707
|
+
"equivalent",
|
|
708
|
+
"foldhash 0.2.0",
|
|
613
709
|
]
|
|
614
710
|
|
|
615
711
|
[[package]]
|
|
616
|
-
name = "
|
|
617
|
-
version = "
|
|
712
|
+
name = "heck"
|
|
713
|
+
version = "0.5.0"
|
|
618
714
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
-
checksum = "
|
|
620
|
-
dependencies = [
|
|
621
|
-
"idna_adapter",
|
|
622
|
-
"smallvec",
|
|
623
|
-
"utf8_iter",
|
|
624
|
-
]
|
|
715
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
625
716
|
|
|
626
717
|
[[package]]
|
|
627
|
-
name = "
|
|
628
|
-
version = "1.
|
|
718
|
+
name = "httparse"
|
|
719
|
+
version = "1.10.1"
|
|
629
720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
-
checksum = "
|
|
631
|
-
dependencies = [
|
|
632
|
-
"icu_normalizer",
|
|
633
|
-
"icu_properties",
|
|
634
|
-
]
|
|
721
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
635
722
|
|
|
636
723
|
[[package]]
|
|
637
724
|
name = "indexmap"
|
|
@@ -644,12 +731,17 @@ dependencies = [
|
|
|
644
731
|
]
|
|
645
732
|
|
|
646
733
|
[[package]]
|
|
647
|
-
name = "
|
|
648
|
-
version = "
|
|
734
|
+
name = "insta"
|
|
735
|
+
version = "1.46.3"
|
|
649
736
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
-
checksum = "
|
|
737
|
+
checksum = "e82db8c87c7f1ccecb34ce0c24399b8a73081427f3c7c50a5d597925356115e4"
|
|
651
738
|
dependencies = [
|
|
652
|
-
"
|
|
739
|
+
"console",
|
|
740
|
+
"globset",
|
|
741
|
+
"once_cell",
|
|
742
|
+
"similar",
|
|
743
|
+
"tempfile",
|
|
744
|
+
"walkdir",
|
|
653
745
|
]
|
|
654
746
|
|
|
655
747
|
[[package]]
|
|
@@ -658,6 +750,15 @@ version = "1.70.2"
|
|
|
658
750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
751
|
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
660
752
|
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "itertools"
|
|
755
|
+
version = "0.13.0"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"either",
|
|
760
|
+
]
|
|
761
|
+
|
|
661
762
|
[[package]]
|
|
662
763
|
name = "itoa"
|
|
663
764
|
version = "1.0.17"
|
|
@@ -692,12 +793,6 @@ version = "0.11.0"
|
|
|
692
793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
794
|
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
694
795
|
|
|
695
|
-
[[package]]
|
|
696
|
-
name = "litemap"
|
|
697
|
-
version = "0.8.1"
|
|
698
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
-
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
700
|
-
|
|
701
796
|
[[package]]
|
|
702
797
|
name = "lock_api"
|
|
703
798
|
version = "0.4.14"
|
|
@@ -714,16 +809,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
714
809
|
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
715
810
|
|
|
716
811
|
[[package]]
|
|
717
|
-
name = "
|
|
718
|
-
version = "0.
|
|
812
|
+
name = "lru"
|
|
813
|
+
version = "0.16.3"
|
|
719
814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
-
checksum = "
|
|
815
|
+
checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
|
|
721
816
|
dependencies = [
|
|
722
|
-
"
|
|
817
|
+
"hashbrown 0.16.1",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "ls-types"
|
|
822
|
+
version = "0.0.2"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "7a7deb98ef9daaa7500324351a5bab7c80c644cfb86b4be0c4433b582af93510"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"bitflags",
|
|
827
|
+
"fluent-uri",
|
|
828
|
+
"percent-encoding",
|
|
723
829
|
"serde",
|
|
724
830
|
"serde_json",
|
|
725
|
-
"serde_repr",
|
|
726
|
-
"url",
|
|
727
831
|
]
|
|
728
832
|
|
|
729
833
|
[[package]]
|
|
@@ -732,22 +836,13 @@ version = "2.7.6"
|
|
|
732
836
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
837
|
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
734
838
|
|
|
735
|
-
[[package]]
|
|
736
|
-
name = "memoffset"
|
|
737
|
-
version = "0.9.1"
|
|
738
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
-
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
740
|
-
dependencies = [
|
|
741
|
-
"autocfg",
|
|
742
|
-
]
|
|
743
|
-
|
|
744
839
|
[[package]]
|
|
745
840
|
name = "nu-ansi-term"
|
|
746
841
|
version = "0.50.3"
|
|
747
842
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
843
|
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
749
844
|
dependencies = [
|
|
750
|
-
"windows-sys",
|
|
845
|
+
"windows-sys 0.61.2",
|
|
751
846
|
]
|
|
752
847
|
|
|
753
848
|
[[package]]
|
|
@@ -759,6 +854,15 @@ dependencies = [
|
|
|
759
854
|
"autocfg",
|
|
760
855
|
]
|
|
761
856
|
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "object"
|
|
859
|
+
version = "0.37.3"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"memchr",
|
|
864
|
+
]
|
|
865
|
+
|
|
762
866
|
[[package]]
|
|
763
867
|
name = "once_cell"
|
|
764
868
|
version = "1.21.3"
|
|
@@ -771,6 +875,22 @@ version = "1.70.2"
|
|
|
771
875
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
876
|
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
773
877
|
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "oorandom"
|
|
880
|
+
version = "11.1.5"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "page_size"
|
|
886
|
+
version = "0.6.0"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
|
|
889
|
+
dependencies = [
|
|
890
|
+
"libc",
|
|
891
|
+
"winapi",
|
|
892
|
+
]
|
|
893
|
+
|
|
774
894
|
[[package]]
|
|
775
895
|
name = "parking_lot_core"
|
|
776
896
|
version = "0.9.12"
|
|
@@ -796,26 +916,6 @@ version = "2.3.2"
|
|
|
796
916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
917
|
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
798
918
|
|
|
799
|
-
[[package]]
|
|
800
|
-
name = "pin-project"
|
|
801
|
-
version = "1.1.10"
|
|
802
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
-
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
804
|
-
dependencies = [
|
|
805
|
-
"pin-project-internal",
|
|
806
|
-
]
|
|
807
|
-
|
|
808
|
-
[[package]]
|
|
809
|
-
name = "pin-project-internal"
|
|
810
|
-
version = "1.1.10"
|
|
811
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
-
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
813
|
-
dependencies = [
|
|
814
|
-
"proc-macro2",
|
|
815
|
-
"quote",
|
|
816
|
-
"syn 2.0.114",
|
|
817
|
-
]
|
|
818
|
-
|
|
819
919
|
[[package]]
|
|
820
920
|
name = "pin-project-lite"
|
|
821
921
|
version = "0.2.16"
|
|
@@ -829,20 +929,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
829
929
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
830
930
|
|
|
831
931
|
[[package]]
|
|
832
|
-
name = "
|
|
833
|
-
version = "
|
|
932
|
+
name = "plotters"
|
|
933
|
+
version = "0.3.7"
|
|
834
934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
-
checksum = "
|
|
935
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"num-traits",
|
|
938
|
+
"plotters-backend",
|
|
939
|
+
"plotters-svg",
|
|
940
|
+
"wasm-bindgen",
|
|
941
|
+
"web-sys",
|
|
942
|
+
]
|
|
836
943
|
|
|
837
944
|
[[package]]
|
|
838
|
-
name = "
|
|
839
|
-
version = "0.
|
|
945
|
+
name = "plotters-backend"
|
|
946
|
+
version = "0.3.7"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "plotters-svg"
|
|
952
|
+
version = "0.3.7"
|
|
840
953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
-
checksum = "
|
|
954
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
842
955
|
dependencies = [
|
|
843
|
-
"
|
|
956
|
+
"plotters-backend",
|
|
844
957
|
]
|
|
845
958
|
|
|
959
|
+
[[package]]
|
|
960
|
+
name = "portable-atomic"
|
|
961
|
+
version = "1.13.1"
|
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
964
|
+
|
|
846
965
|
[[package]]
|
|
847
966
|
name = "ppv-lite86"
|
|
848
967
|
version = "0.2.21"
|
|
@@ -870,6 +989,16 @@ dependencies = [
|
|
|
870
989
|
"unicode-ident",
|
|
871
990
|
]
|
|
872
991
|
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "psm"
|
|
994
|
+
version = "0.1.29"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "1fa96cb91275ed31d6da3e983447320c4eb219ac180fa1679a0889ff32861e2d"
|
|
997
|
+
dependencies = [
|
|
998
|
+
"ar_archive_writer",
|
|
999
|
+
"cc",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
873
1002
|
[[package]]
|
|
874
1003
|
name = "ptr_meta"
|
|
875
1004
|
version = "0.1.4"
|
|
@@ -892,26 +1021,23 @@ dependencies = [
|
|
|
892
1021
|
|
|
893
1022
|
[[package]]
|
|
894
1023
|
name = "pyo3"
|
|
895
|
-
version = "0.
|
|
1024
|
+
version = "0.28.0"
|
|
896
1025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
897
|
-
checksum = "
|
|
1026
|
+
checksum = "fcf3ccafdf54c050be48a3a086d372f77ba6615f5057211607cd30e5ac5cec6d"
|
|
898
1027
|
dependencies = [
|
|
899
|
-
"indoc",
|
|
900
1028
|
"libc",
|
|
901
|
-
"memoffset",
|
|
902
1029
|
"once_cell",
|
|
903
1030
|
"portable-atomic",
|
|
904
1031
|
"pyo3-build-config",
|
|
905
1032
|
"pyo3-ffi",
|
|
906
1033
|
"pyo3-macros",
|
|
907
|
-
"unindent",
|
|
908
1034
|
]
|
|
909
1035
|
|
|
910
1036
|
[[package]]
|
|
911
1037
|
name = "pyo3-build-config"
|
|
912
|
-
version = "0.
|
|
1038
|
+
version = "0.28.0"
|
|
913
1039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
-
checksum = "
|
|
1040
|
+
checksum = "972720a441c91fd9c49f212a1d2d74c6e3803b231ebc8d66c51efbd7ccab11c8"
|
|
915
1041
|
dependencies = [
|
|
916
1042
|
"python3-dll-a",
|
|
917
1043
|
"target-lexicon",
|
|
@@ -919,9 +1045,9 @@ dependencies = [
|
|
|
919
1045
|
|
|
920
1046
|
[[package]]
|
|
921
1047
|
name = "pyo3-ffi"
|
|
922
|
-
version = "0.
|
|
1048
|
+
version = "0.28.0"
|
|
923
1049
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
-
checksum = "
|
|
1050
|
+
checksum = "5994456d9dab8934d600d3867571b6410f24fbd6002570ad56356733eb54859b"
|
|
925
1051
|
dependencies = [
|
|
926
1052
|
"libc",
|
|
927
1053
|
"pyo3-build-config",
|
|
@@ -929,9 +1055,9 @@ dependencies = [
|
|
|
929
1055
|
|
|
930
1056
|
[[package]]
|
|
931
1057
|
name = "pyo3-macros"
|
|
932
|
-
version = "0.
|
|
1058
|
+
version = "0.28.0"
|
|
933
1059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
-
checksum = "
|
|
1060
|
+
checksum = "11ce9cc8d81b3c4969748807604d92b4eef363c5bb82b1a1bdb34ec6f1093a18"
|
|
935
1061
|
dependencies = [
|
|
936
1062
|
"proc-macro2",
|
|
937
1063
|
"pyo3-macros-backend",
|
|
@@ -941,9 +1067,9 @@ dependencies = [
|
|
|
941
1067
|
|
|
942
1068
|
[[package]]
|
|
943
1069
|
name = "pyo3-macros-backend"
|
|
944
|
-
version = "0.
|
|
1070
|
+
version = "0.28.0"
|
|
945
1071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
-
checksum = "
|
|
1072
|
+
checksum = "eaf4b60036a154d23282679b658e3cc7d88d3b8c9a40b43824785f232d2e1b98"
|
|
947
1073
|
dependencies = [
|
|
948
1074
|
"heck",
|
|
949
1075
|
"proc-macro2",
|
|
@@ -1012,43 +1138,100 @@ dependencies = [
|
|
|
1012
1138
|
"getrandom 0.2.17",
|
|
1013
1139
|
]
|
|
1014
1140
|
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "rayon"
|
|
1143
|
+
version = "1.11.0"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
1146
|
+
dependencies = [
|
|
1147
|
+
"either",
|
|
1148
|
+
"rayon-core",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "rayon-core"
|
|
1153
|
+
version = "1.13.0"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"crossbeam-deque",
|
|
1158
|
+
"crossbeam-utils",
|
|
1159
|
+
]
|
|
1160
|
+
|
|
1015
1161
|
[[package]]
|
|
1016
1162
|
name = "redox_syscall"
|
|
1017
1163
|
version = "0.5.18"
|
|
1018
1164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
1165
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1020
1166
|
dependencies = [
|
|
1021
|
-
"bitflags
|
|
1167
|
+
"bitflags",
|
|
1168
|
+
]
|
|
1169
|
+
|
|
1170
|
+
[[package]]
|
|
1171
|
+
name = "ref-cast"
|
|
1172
|
+
version = "1.0.25"
|
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
1175
|
+
dependencies = [
|
|
1176
|
+
"ref-cast-impl",
|
|
1177
|
+
]
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "ref-cast-impl"
|
|
1181
|
+
version = "1.0.25"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"proc-macro2",
|
|
1186
|
+
"quote",
|
|
1187
|
+
"syn 2.0.114",
|
|
1022
1188
|
]
|
|
1023
1189
|
|
|
1024
1190
|
[[package]]
|
|
1025
1191
|
name = "regex"
|
|
1026
|
-
version = "1.12.
|
|
1192
|
+
version = "1.12.3"
|
|
1027
1193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
-
checksum = "
|
|
1194
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1029
1195
|
dependencies = [
|
|
1030
1196
|
"aho-corasick",
|
|
1031
1197
|
"memchr",
|
|
1032
|
-
"regex-automata",
|
|
1033
|
-
"regex-syntax",
|
|
1198
|
+
"regex-automata 0.4.14",
|
|
1199
|
+
"regex-syntax 0.8.9",
|
|
1034
1200
|
]
|
|
1035
1201
|
|
|
1036
1202
|
[[package]]
|
|
1037
1203
|
name = "regex-automata"
|
|
1038
|
-
version = "0.
|
|
1204
|
+
version = "0.3.9"
|
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
+
checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9"
|
|
1207
|
+
dependencies = [
|
|
1208
|
+
"aho-corasick",
|
|
1209
|
+
"memchr",
|
|
1210
|
+
"regex-syntax 0.7.5",
|
|
1211
|
+
]
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "regex-automata"
|
|
1215
|
+
version = "0.4.14"
|
|
1039
1216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
-
checksum = "
|
|
1217
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1041
1218
|
dependencies = [
|
|
1042
1219
|
"aho-corasick",
|
|
1043
1220
|
"memchr",
|
|
1044
|
-
"regex-syntax",
|
|
1221
|
+
"regex-syntax 0.8.9",
|
|
1045
1222
|
]
|
|
1046
1223
|
|
|
1047
1224
|
[[package]]
|
|
1048
1225
|
name = "regex-syntax"
|
|
1049
|
-
version = "0.
|
|
1226
|
+
version = "0.7.5"
|
|
1050
1227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
-
checksum = "
|
|
1228
|
+
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "regex-syntax"
|
|
1232
|
+
version = "0.8.9"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
|
|
1052
1235
|
|
|
1053
1236
|
[[package]]
|
|
1054
1237
|
name = "rend"
|
|
@@ -1120,11 +1303,11 @@ version = "1.1.3"
|
|
|
1120
1303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
1304
|
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
1122
1305
|
dependencies = [
|
|
1123
|
-
"bitflags
|
|
1306
|
+
"bitflags",
|
|
1124
1307
|
"errno",
|
|
1125
1308
|
"libc",
|
|
1126
1309
|
"linux-raw-sys",
|
|
1127
|
-
"windows-sys",
|
|
1310
|
+
"windows-sys 0.61.2",
|
|
1128
1311
|
]
|
|
1129
1312
|
|
|
1130
1313
|
[[package]]
|
|
@@ -1133,6 +1316,15 @@ version = "1.0.22"
|
|
|
1133
1316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
1317
|
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1135
1318
|
|
|
1319
|
+
[[package]]
|
|
1320
|
+
name = "same-file"
|
|
1321
|
+
version = "1.0.6"
|
|
1322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1323
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1324
|
+
dependencies = [
|
|
1325
|
+
"winapi-util",
|
|
1326
|
+
]
|
|
1327
|
+
|
|
1136
1328
|
[[package]]
|
|
1137
1329
|
name = "scopeguard"
|
|
1138
1330
|
version = "1.2.0"
|
|
@@ -1181,7 +1373,6 @@ version = "1.0.149"
|
|
|
1181
1373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
1374
|
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1183
1375
|
dependencies = [
|
|
1184
|
-
"indexmap",
|
|
1185
1376
|
"itoa",
|
|
1186
1377
|
"memchr",
|
|
1187
1378
|
"serde",
|
|
@@ -1189,17 +1380,6 @@ dependencies = [
|
|
|
1189
1380
|
"zmij",
|
|
1190
1381
|
]
|
|
1191
1382
|
|
|
1192
|
-
[[package]]
|
|
1193
|
-
name = "serde_repr"
|
|
1194
|
-
version = "0.1.20"
|
|
1195
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
-
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
1197
|
-
dependencies = [
|
|
1198
|
-
"proc-macro2",
|
|
1199
|
-
"quote",
|
|
1200
|
-
"syn 2.0.114",
|
|
1201
|
-
]
|
|
1202
|
-
|
|
1203
1383
|
[[package]]
|
|
1204
1384
|
name = "sharded-slab"
|
|
1205
1385
|
version = "0.1.7"
|
|
@@ -1221,6 +1401,12 @@ version = "0.1.5"
|
|
|
1221
1401
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
1402
|
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1223
1403
|
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "similar"
|
|
1406
|
+
version = "2.7.0"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
1409
|
+
|
|
1224
1410
|
[[package]]
|
|
1225
1411
|
name = "slab"
|
|
1226
1412
|
version = "0.4.12"
|
|
@@ -1234,10 +1420,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1234
1420
|
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1235
1421
|
|
|
1236
1422
|
[[package]]
|
|
1237
|
-
name = "
|
|
1238
|
-
version = "1.
|
|
1423
|
+
name = "stacker"
|
|
1424
|
+
version = "0.1.22"
|
|
1239
1425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
-
checksum = "
|
|
1426
|
+
checksum = "e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59"
|
|
1427
|
+
dependencies = [
|
|
1428
|
+
"cc",
|
|
1429
|
+
"cfg-if",
|
|
1430
|
+
"libc",
|
|
1431
|
+
"psm",
|
|
1432
|
+
"windows-sys 0.59.0",
|
|
1433
|
+
]
|
|
1241
1434
|
|
|
1242
1435
|
[[package]]
|
|
1243
1436
|
name = "str_indices"
|
|
@@ -1245,12 +1438,6 @@ version = "0.4.4"
|
|
|
1245
1438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
1439
|
checksum = "d08889ec5408683408db66ad89e0e1f93dff55c73a4ccc71c427d5b277ee47e6"
|
|
1247
1440
|
|
|
1248
|
-
[[package]]
|
|
1249
|
-
name = "streaming-iterator"
|
|
1250
|
-
version = "0.1.9"
|
|
1251
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
-
checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
|
|
1253
|
-
|
|
1254
1441
|
[[package]]
|
|
1255
1442
|
name = "strsim"
|
|
1256
1443
|
version = "0.11.1"
|
|
@@ -1280,15 +1467,10 @@ dependencies = [
|
|
|
1280
1467
|
]
|
|
1281
1468
|
|
|
1282
1469
|
[[package]]
|
|
1283
|
-
name = "
|
|
1284
|
-
version = "0.
|
|
1470
|
+
name = "sync_wrapper"
|
|
1471
|
+
version = "1.0.2"
|
|
1285
1472
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
-
checksum = "
|
|
1287
|
-
dependencies = [
|
|
1288
|
-
"proc-macro2",
|
|
1289
|
-
"quote",
|
|
1290
|
-
"syn 2.0.114",
|
|
1291
|
-
]
|
|
1473
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1292
1474
|
|
|
1293
1475
|
[[package]]
|
|
1294
1476
|
name = "tap"
|
|
@@ -1312,7 +1494,7 @@ dependencies = [
|
|
|
1312
1494
|
"getrandom 0.3.4",
|
|
1313
1495
|
"once_cell",
|
|
1314
1496
|
"rustix",
|
|
1315
|
-
"windows-sys",
|
|
1497
|
+
"windows-sys 0.61.2",
|
|
1316
1498
|
]
|
|
1317
1499
|
|
|
1318
1500
|
[[package]]
|
|
@@ -1325,13 +1507,13 @@ dependencies = [
|
|
|
1325
1507
|
]
|
|
1326
1508
|
|
|
1327
1509
|
[[package]]
|
|
1328
|
-
name = "
|
|
1329
|
-
version = "
|
|
1510
|
+
name = "tinytemplate"
|
|
1511
|
+
version = "1.2.1"
|
|
1330
1512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
-
checksum = "
|
|
1513
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1332
1514
|
dependencies = [
|
|
1333
|
-
"
|
|
1334
|
-
"
|
|
1515
|
+
"serde",
|
|
1516
|
+
"serde_json",
|
|
1335
1517
|
]
|
|
1336
1518
|
|
|
1337
1519
|
[[package]]
|
|
@@ -1415,14 +1597,14 @@ dependencies = [
|
|
|
1415
1597
|
|
|
1416
1598
|
[[package]]
|
|
1417
1599
|
name = "tower"
|
|
1418
|
-
version = "0.
|
|
1600
|
+
version = "0.5.3"
|
|
1419
1601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
-
checksum = "
|
|
1602
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1421
1603
|
dependencies = [
|
|
1422
1604
|
"futures-core",
|
|
1423
1605
|
"futures-util",
|
|
1424
|
-
"pin-project",
|
|
1425
1606
|
"pin-project-lite",
|
|
1607
|
+
"sync_wrapper",
|
|
1426
1608
|
"tower-layer",
|
|
1427
1609
|
"tower-service",
|
|
1428
1610
|
]
|
|
@@ -1434,39 +1616,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1434
1616
|
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1435
1617
|
|
|
1436
1618
|
[[package]]
|
|
1437
|
-
name = "tower-lsp"
|
|
1438
|
-
version = "0.
|
|
1619
|
+
name = "tower-lsp-server"
|
|
1620
|
+
version = "0.23.0"
|
|
1439
1621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
|
-
checksum = "
|
|
1622
|
+
checksum = "2f0e711655c89181a6bc6a2cc348131fcd9680085f5b06b6af13427a393a6e72"
|
|
1441
1623
|
dependencies = [
|
|
1442
|
-
"async-trait",
|
|
1443
|
-
"auto_impl",
|
|
1444
1624
|
"bytes",
|
|
1445
1625
|
"dashmap",
|
|
1446
1626
|
"futures",
|
|
1447
1627
|
"httparse",
|
|
1448
|
-
"
|
|
1628
|
+
"ls-types",
|
|
1449
1629
|
"memchr",
|
|
1450
1630
|
"serde",
|
|
1451
1631
|
"serde_json",
|
|
1452
1632
|
"tokio",
|
|
1453
1633
|
"tokio-util",
|
|
1454
1634
|
"tower",
|
|
1455
|
-
"tower-lsp-macros",
|
|
1456
1635
|
"tracing",
|
|
1457
1636
|
]
|
|
1458
1637
|
|
|
1459
|
-
[[package]]
|
|
1460
|
-
name = "tower-lsp-macros"
|
|
1461
|
-
version = "0.9.0"
|
|
1462
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
-
checksum = "84fd902d4e0b9a4b27f2f440108dc034e1758628a9b702f8ec61ad66355422fa"
|
|
1464
|
-
dependencies = [
|
|
1465
|
-
"proc-macro2",
|
|
1466
|
-
"quote",
|
|
1467
|
-
"syn 2.0.114",
|
|
1468
|
-
]
|
|
1469
|
-
|
|
1470
1638
|
[[package]]
|
|
1471
1639
|
name = "tower-service"
|
|
1472
1640
|
version = "0.3.3"
|
|
@@ -1530,26 +1698,6 @@ dependencies = [
|
|
|
1530
1698
|
"tracing-log",
|
|
1531
1699
|
]
|
|
1532
1700
|
|
|
1533
|
-
[[package]]
|
|
1534
|
-
name = "tree-sitter"
|
|
1535
|
-
version = "0.26.3"
|
|
1536
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1537
|
-
checksum = "974d205cc395652cfa8b37daa053fe56eebd429acf8dc055503fee648dae981e"
|
|
1538
|
-
dependencies = [
|
|
1539
|
-
"cc",
|
|
1540
|
-
"regex",
|
|
1541
|
-
"regex-syntax",
|
|
1542
|
-
"serde_json",
|
|
1543
|
-
"streaming-iterator",
|
|
1544
|
-
"tree-sitter-language",
|
|
1545
|
-
]
|
|
1546
|
-
|
|
1547
|
-
[[package]]
|
|
1548
|
-
name = "tree-sitter-language"
|
|
1549
|
-
version = "0.1.6"
|
|
1550
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
-
checksum = "4ae62f7eae5eb549c71b76658648b72cc6111f2d87d24a1e31fa907f4943e3ce"
|
|
1552
|
-
|
|
1553
1701
|
[[package]]
|
|
1554
1702
|
name = "unicode-ident"
|
|
1555
1703
|
version = "1.0.22"
|
|
@@ -1557,29 +1705,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1557
1705
|
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1558
1706
|
|
|
1559
1707
|
[[package]]
|
|
1560
|
-
name = "
|
|
1561
|
-
version = "
|
|
1562
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1563
|
-
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1564
|
-
|
|
1565
|
-
[[package]]
|
|
1566
|
-
name = "url"
|
|
1567
|
-
version = "2.5.8"
|
|
1568
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1569
|
-
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1570
|
-
dependencies = [
|
|
1571
|
-
"form_urlencoded",
|
|
1572
|
-
"idna",
|
|
1573
|
-
"percent-encoding",
|
|
1574
|
-
"serde",
|
|
1575
|
-
"serde_derive",
|
|
1576
|
-
]
|
|
1577
|
-
|
|
1578
|
-
[[package]]
|
|
1579
|
-
name = "utf8_iter"
|
|
1580
|
-
version = "1.0.4"
|
|
1708
|
+
name = "unicode-segmentation"
|
|
1709
|
+
version = "1.12.0"
|
|
1581
1710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
-
checksum = "
|
|
1711
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1583
1712
|
|
|
1584
1713
|
[[package]]
|
|
1585
1714
|
name = "utf8parse"
|
|
@@ -1609,6 +1738,16 @@ version = "0.9.5"
|
|
|
1609
1738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
1739
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1611
1740
|
|
|
1741
|
+
[[package]]
|
|
1742
|
+
name = "walkdir"
|
|
1743
|
+
version = "2.5.0"
|
|
1744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1746
|
+
dependencies = [
|
|
1747
|
+
"same-file",
|
|
1748
|
+
"winapi-util",
|
|
1749
|
+
]
|
|
1750
|
+
|
|
1612
1751
|
[[package]]
|
|
1613
1752
|
name = "wasi"
|
|
1614
1753
|
version = "0.11.1+wasi-snapshot-preview1"
|
|
@@ -1669,12 +1808,62 @@ dependencies = [
|
|
|
1669
1808
|
"unicode-ident",
|
|
1670
1809
|
]
|
|
1671
1810
|
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "web-sys"
|
|
1813
|
+
version = "0.3.85"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
|
|
1816
|
+
dependencies = [
|
|
1817
|
+
"js-sys",
|
|
1818
|
+
"wasm-bindgen",
|
|
1819
|
+
]
|
|
1820
|
+
|
|
1821
|
+
[[package]]
|
|
1822
|
+
name = "winapi"
|
|
1823
|
+
version = "0.3.9"
|
|
1824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1825
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1826
|
+
dependencies = [
|
|
1827
|
+
"winapi-i686-pc-windows-gnu",
|
|
1828
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1829
|
+
]
|
|
1830
|
+
|
|
1831
|
+
[[package]]
|
|
1832
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1833
|
+
version = "0.4.0"
|
|
1834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "winapi-util"
|
|
1839
|
+
version = "0.1.11"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1842
|
+
dependencies = [
|
|
1843
|
+
"windows-sys 0.61.2",
|
|
1844
|
+
]
|
|
1845
|
+
|
|
1846
|
+
[[package]]
|
|
1847
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1848
|
+
version = "0.4.0"
|
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1851
|
+
|
|
1672
1852
|
[[package]]
|
|
1673
1853
|
name = "windows-link"
|
|
1674
1854
|
version = "0.2.1"
|
|
1675
1855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
1856
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1677
1857
|
|
|
1858
|
+
[[package]]
|
|
1859
|
+
name = "windows-sys"
|
|
1860
|
+
version = "0.59.0"
|
|
1861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
1863
|
+
dependencies = [
|
|
1864
|
+
"windows-targets",
|
|
1865
|
+
]
|
|
1866
|
+
|
|
1678
1867
|
[[package]]
|
|
1679
1868
|
name = "windows-sys"
|
|
1680
1869
|
version = "0.61.2"
|
|
@@ -1685,126 +1874,107 @@ dependencies = [
|
|
|
1685
1874
|
]
|
|
1686
1875
|
|
|
1687
1876
|
[[package]]
|
|
1688
|
-
name = "
|
|
1689
|
-
version = "0.
|
|
1877
|
+
name = "windows-targets"
|
|
1878
|
+
version = "0.52.6"
|
|
1690
1879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
-
checksum = "
|
|
1880
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1692
1881
|
dependencies = [
|
|
1693
|
-
"
|
|
1882
|
+
"windows_aarch64_gnullvm",
|
|
1883
|
+
"windows_aarch64_msvc",
|
|
1884
|
+
"windows_i686_gnu",
|
|
1885
|
+
"windows_i686_gnullvm",
|
|
1886
|
+
"windows_i686_msvc",
|
|
1887
|
+
"windows_x86_64_gnu",
|
|
1888
|
+
"windows_x86_64_gnullvm",
|
|
1889
|
+
"windows_x86_64_msvc",
|
|
1694
1890
|
]
|
|
1695
1891
|
|
|
1696
1892
|
[[package]]
|
|
1697
|
-
name = "
|
|
1698
|
-
version = "0.
|
|
1893
|
+
name = "windows_aarch64_gnullvm"
|
|
1894
|
+
version = "0.52.6"
|
|
1699
1895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
|
-
checksum = "
|
|
1896
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1701
1897
|
|
|
1702
1898
|
[[package]]
|
|
1703
|
-
name = "
|
|
1704
|
-
version = "0.6
|
|
1899
|
+
name = "windows_aarch64_msvc"
|
|
1900
|
+
version = "0.52.6"
|
|
1705
1901
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1706
|
-
checksum = "
|
|
1902
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1707
1903
|
|
|
1708
1904
|
[[package]]
|
|
1709
|
-
name = "
|
|
1710
|
-
version = "0.
|
|
1905
|
+
name = "windows_i686_gnu"
|
|
1906
|
+
version = "0.52.6"
|
|
1711
1907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1712
|
-
checksum = "
|
|
1713
|
-
dependencies = [
|
|
1714
|
-
"tap",
|
|
1715
|
-
]
|
|
1908
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1716
1909
|
|
|
1717
1910
|
[[package]]
|
|
1718
|
-
name = "
|
|
1719
|
-
version = "0.
|
|
1911
|
+
name = "windows_i686_gnullvm"
|
|
1912
|
+
version = "0.52.6"
|
|
1720
1913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1721
|
-
checksum = "
|
|
1722
|
-
dependencies = [
|
|
1723
|
-
"stable_deref_trait",
|
|
1724
|
-
"yoke-derive",
|
|
1725
|
-
"zerofrom",
|
|
1726
|
-
]
|
|
1914
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1727
1915
|
|
|
1728
1916
|
[[package]]
|
|
1729
|
-
name = "
|
|
1730
|
-
version = "0.
|
|
1917
|
+
name = "windows_i686_msvc"
|
|
1918
|
+
version = "0.52.6"
|
|
1731
1919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
-
checksum = "
|
|
1733
|
-
dependencies = [
|
|
1734
|
-
"proc-macro2",
|
|
1735
|
-
"quote",
|
|
1736
|
-
"syn 2.0.114",
|
|
1737
|
-
"synstructure",
|
|
1738
|
-
]
|
|
1920
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1739
1921
|
|
|
1740
1922
|
[[package]]
|
|
1741
|
-
name = "
|
|
1742
|
-
version = "0.
|
|
1923
|
+
name = "windows_x86_64_gnu"
|
|
1924
|
+
version = "0.52.6"
|
|
1743
1925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
-
checksum = "
|
|
1745
|
-
dependencies = [
|
|
1746
|
-
"zerocopy-derive",
|
|
1747
|
-
]
|
|
1926
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1748
1927
|
|
|
1749
1928
|
[[package]]
|
|
1750
|
-
name = "
|
|
1751
|
-
version = "0.
|
|
1929
|
+
name = "windows_x86_64_gnullvm"
|
|
1930
|
+
version = "0.52.6"
|
|
1752
1931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1753
|
-
checksum = "
|
|
1754
|
-
dependencies = [
|
|
1755
|
-
"proc-macro2",
|
|
1756
|
-
"quote",
|
|
1757
|
-
"syn 2.0.114",
|
|
1758
|
-
]
|
|
1932
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1759
1933
|
|
|
1760
1934
|
[[package]]
|
|
1761
|
-
name = "
|
|
1762
|
-
version = "0.
|
|
1935
|
+
name = "windows_x86_64_msvc"
|
|
1936
|
+
version = "0.52.6"
|
|
1763
1937
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
-
checksum = "
|
|
1765
|
-
dependencies = [
|
|
1766
|
-
"zerofrom-derive",
|
|
1767
|
-
]
|
|
1938
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1768
1939
|
|
|
1769
1940
|
[[package]]
|
|
1770
|
-
name = "
|
|
1771
|
-
version = "0.
|
|
1941
|
+
name = "winnow"
|
|
1942
|
+
version = "0.7.14"
|
|
1772
1943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
-
checksum = "
|
|
1944
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
1774
1945
|
dependencies = [
|
|
1775
|
-
"
|
|
1776
|
-
"quote",
|
|
1777
|
-
"syn 2.0.114",
|
|
1778
|
-
"synstructure",
|
|
1946
|
+
"memchr",
|
|
1779
1947
|
]
|
|
1780
1948
|
|
|
1781
1949
|
[[package]]
|
|
1782
|
-
name = "
|
|
1783
|
-
version = "0.
|
|
1950
|
+
name = "wit-bindgen"
|
|
1951
|
+
version = "0.51.0"
|
|
1952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1954
|
+
|
|
1955
|
+
[[package]]
|
|
1956
|
+
name = "wyz"
|
|
1957
|
+
version = "0.5.1"
|
|
1784
1958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
-
checksum = "
|
|
1959
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
1786
1960
|
dependencies = [
|
|
1787
|
-
"
|
|
1788
|
-
"yoke",
|
|
1789
|
-
"zerofrom",
|
|
1961
|
+
"tap",
|
|
1790
1962
|
]
|
|
1791
1963
|
|
|
1792
1964
|
[[package]]
|
|
1793
|
-
name = "
|
|
1794
|
-
version = "0.
|
|
1965
|
+
name = "zerocopy"
|
|
1966
|
+
version = "0.8.38"
|
|
1795
1967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
-
checksum = "
|
|
1968
|
+
checksum = "57cf3aa6855b23711ee9852dfc97dfaa51c45feaba5b645d0c777414d494a961"
|
|
1797
1969
|
dependencies = [
|
|
1798
|
-
"
|
|
1799
|
-
"zerofrom",
|
|
1800
|
-
"zerovec-derive",
|
|
1970
|
+
"zerocopy-derive",
|
|
1801
1971
|
]
|
|
1802
1972
|
|
|
1803
1973
|
[[package]]
|
|
1804
|
-
name = "
|
|
1805
|
-
version = "0.
|
|
1974
|
+
name = "zerocopy-derive"
|
|
1975
|
+
version = "0.8.38"
|
|
1806
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1807
|
-
checksum = "
|
|
1977
|
+
checksum = "8a616990af1a287837c4fe6596ad77ef57948f787e46ce28e166facc0cc1cb75"
|
|
1808
1978
|
dependencies = [
|
|
1809
1979
|
"proc-macro2",
|
|
1810
1980
|
"quote",
|
|
@@ -1813,6 +1983,6 @@ dependencies = [
|
|
|
1813
1983
|
|
|
1814
1984
|
[[package]]
|
|
1815
1985
|
name = "zmij"
|
|
1816
|
-
version = "1.0.
|
|
1986
|
+
version = "1.0.19"
|
|
1817
1987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1818
|
-
checksum = "
|
|
1988
|
+
checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"
|