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