ast-grep-py 0.39.5__tar.gz → 0.39.7__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.
Potentially problematic release.
This version of ast-grep-py might be problematic. Click here for more details.
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/Cargo.lock +124 -305
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/Cargo.toml +6 -6
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/PKG-INFO +1 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/combined.rs +2 -2
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/rule/selector.rs +1 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/transform/parse.rs +1 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/matcher/pattern.rs +3 -3
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/node.rs +2 -2
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/replacer/indent.rs +4 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/source.rs +5 -5
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/tree_sitter/mod.rs +1 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/tree_sitter/traversal.rs +4 -4
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/Cargo.toml +3 -3
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/go.rs +4 -4
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/lib.rs +12 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/pyproject.toml +1 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/README.md +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/ast_grep_py/__init__.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/ast_grep_py/ast_grep_py.pyi +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/ast_grep_py/py.typed +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/Cargo.toml +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/check_var.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/fixer.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/label.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/lib.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/maybe.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/rule/deserialize_env.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/rule/mod.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/rule/nth_child.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/rule/range.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/rule/referent_rule.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/rule/relational_rule.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/rule/stop_by.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/rule_collection.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/rule_config.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/rule_core.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/transform/mod.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/transform/rewrite.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/transform/string_case.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/config/src/transform/trans.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/Cargo.toml +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/language.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/lib.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/match_tree/match_node.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/match_tree/mod.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/match_tree/strictness.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/matcher/kind.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/matcher/node_match.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/matcher/text.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/matcher.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/meta_var.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/ops.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/pinned.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/replacer/structural.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/replacer/template.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/core/src/replacer.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/dynamic/Cargo.toml +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/dynamic/src/custom_lang.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/dynamic/src/lib.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/bash.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/cpp.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/csharp.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/css.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/elixir.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/haskell.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/hcl.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/html.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/json.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/kotlin.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/lua.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/nix.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/parsers.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/php.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/python.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/ruby.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/rust.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/scala.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/solidity.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/swift.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/language/src/yaml.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/Cargo.toml +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/README.md +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/ast_grep_py/__init__.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/ast_grep_py/ast_grep_py.pyi +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/ast_grep_py/py.typed +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/src/lib.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/src/py_lang.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/src/py_node.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/src/range.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/src/unicode_position.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_fix.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_range.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_register_lang.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_rule.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_simple.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_traversal.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_wrong_usage.py +0 -0
|
@@ -2,21 +2,6 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 3
|
|
4
4
|
|
|
5
|
-
[[package]]
|
|
6
|
-
name = "addr2line"
|
|
7
|
-
version = "0.24.2"
|
|
8
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
|
-
dependencies = [
|
|
11
|
-
"gimli",
|
|
12
|
-
]
|
|
13
|
-
|
|
14
|
-
[[package]]
|
|
15
|
-
name = "adler2"
|
|
16
|
-
version = "2.0.0"
|
|
17
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
|
19
|
-
|
|
20
5
|
[[package]]
|
|
21
6
|
name = "aho-corasick"
|
|
22
7
|
version = "1.1.3"
|
|
@@ -87,9 +72,9 @@ dependencies = [
|
|
|
87
72
|
|
|
88
73
|
[[package]]
|
|
89
74
|
name = "anyhow"
|
|
90
|
-
version = "1.0.
|
|
75
|
+
version = "1.0.100"
|
|
91
76
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
-
checksum = "
|
|
77
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
93
78
|
|
|
94
79
|
[[package]]
|
|
95
80
|
name = "assert_cmd"
|
|
@@ -109,7 +94,7 @@ dependencies = [
|
|
|
109
94
|
|
|
110
95
|
[[package]]
|
|
111
96
|
name = "ast-grep"
|
|
112
|
-
version = "0.39.
|
|
97
|
+
version = "0.39.7"
|
|
113
98
|
dependencies = [
|
|
114
99
|
"ansi_term",
|
|
115
100
|
"anyhow",
|
|
@@ -123,7 +108,7 @@ dependencies = [
|
|
|
123
108
|
"clap",
|
|
124
109
|
"clap_complete",
|
|
125
110
|
"codespan-reporting",
|
|
126
|
-
"crossterm
|
|
111
|
+
"crossterm",
|
|
127
112
|
"dashmap",
|
|
128
113
|
"ignore",
|
|
129
114
|
"inquire",
|
|
@@ -143,7 +128,7 @@ dependencies = [
|
|
|
143
128
|
|
|
144
129
|
[[package]]
|
|
145
130
|
name = "ast-grep-config"
|
|
146
|
-
version = "0.39.
|
|
131
|
+
version = "0.39.7"
|
|
147
132
|
dependencies = [
|
|
148
133
|
"ast-grep-core",
|
|
149
134
|
"bit-set",
|
|
@@ -152,24 +137,24 @@ dependencies = [
|
|
|
152
137
|
"schemars",
|
|
153
138
|
"serde",
|
|
154
139
|
"serde_yaml",
|
|
155
|
-
"thiserror 2.0.
|
|
140
|
+
"thiserror 2.0.17",
|
|
156
141
|
"tree-sitter-typescript",
|
|
157
142
|
]
|
|
158
143
|
|
|
159
144
|
[[package]]
|
|
160
145
|
name = "ast-grep-core"
|
|
161
|
-
version = "0.39.
|
|
146
|
+
version = "0.39.7"
|
|
162
147
|
dependencies = [
|
|
163
148
|
"bit-set",
|
|
164
149
|
"regex",
|
|
165
|
-
"thiserror 2.0.
|
|
150
|
+
"thiserror 2.0.17",
|
|
166
151
|
"tree-sitter",
|
|
167
152
|
"tree-sitter-typescript",
|
|
168
153
|
]
|
|
169
154
|
|
|
170
155
|
[[package]]
|
|
171
156
|
name = "ast-grep-dynamic"
|
|
172
|
-
version = "0.39.
|
|
157
|
+
version = "0.39.7"
|
|
173
158
|
dependencies = [
|
|
174
159
|
"ast-grep-core",
|
|
175
160
|
"ignore",
|
|
@@ -177,13 +162,13 @@ dependencies = [
|
|
|
177
162
|
"serde",
|
|
178
163
|
"serde_yaml",
|
|
179
164
|
"target-triple",
|
|
180
|
-
"thiserror 2.0.
|
|
165
|
+
"thiserror 2.0.17",
|
|
181
166
|
"tree-sitter",
|
|
182
167
|
]
|
|
183
168
|
|
|
184
169
|
[[package]]
|
|
185
170
|
name = "ast-grep-language"
|
|
186
|
-
version = "0.39.
|
|
171
|
+
version = "0.39.7"
|
|
187
172
|
dependencies = [
|
|
188
173
|
"ast-grep-core",
|
|
189
174
|
"ignore",
|
|
@@ -218,7 +203,7 @@ dependencies = [
|
|
|
218
203
|
|
|
219
204
|
[[package]]
|
|
220
205
|
name = "ast-grep-lsp"
|
|
221
|
-
version = "0.39.
|
|
206
|
+
version = "0.39.7"
|
|
222
207
|
dependencies = [
|
|
223
208
|
"anyhow",
|
|
224
209
|
"ast-grep-config",
|
|
@@ -236,7 +221,7 @@ dependencies = [
|
|
|
236
221
|
|
|
237
222
|
[[package]]
|
|
238
223
|
name = "ast-grep-napi"
|
|
239
|
-
version = "0.39.
|
|
224
|
+
version = "0.39.7"
|
|
240
225
|
dependencies = [
|
|
241
226
|
"ast-grep-config",
|
|
242
227
|
"ast-grep-core",
|
|
@@ -252,7 +237,7 @@ dependencies = [
|
|
|
252
237
|
|
|
253
238
|
[[package]]
|
|
254
239
|
name = "ast-grep-py"
|
|
255
|
-
version = "0.39.
|
|
240
|
+
version = "0.39.7"
|
|
256
241
|
dependencies = [
|
|
257
242
|
"anyhow",
|
|
258
243
|
"ast-grep-config",
|
|
@@ -281,21 +266,6 @@ version = "1.4.0"
|
|
|
281
266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
267
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
283
268
|
|
|
284
|
-
[[package]]
|
|
285
|
-
name = "backtrace"
|
|
286
|
-
version = "0.3.74"
|
|
287
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
-
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
|
|
289
|
-
dependencies = [
|
|
290
|
-
"addr2line",
|
|
291
|
-
"cfg-if",
|
|
292
|
-
"libc",
|
|
293
|
-
"miniz_oxide",
|
|
294
|
-
"object",
|
|
295
|
-
"rustc-demangle",
|
|
296
|
-
"windows-targets 0.52.6",
|
|
297
|
-
]
|
|
298
|
-
|
|
299
269
|
[[package]]
|
|
300
270
|
name = "bit-set"
|
|
301
271
|
version = "0.8.0"
|
|
@@ -334,12 +304,6 @@ dependencies = [
|
|
|
334
304
|
"serde",
|
|
335
305
|
]
|
|
336
306
|
|
|
337
|
-
[[package]]
|
|
338
|
-
name = "byteorder"
|
|
339
|
-
version = "1.5.0"
|
|
340
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
-
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
342
|
-
|
|
343
307
|
[[package]]
|
|
344
308
|
name = "bytes"
|
|
345
309
|
version = "1.10.1"
|
|
@@ -369,9 +333,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
369
333
|
|
|
370
334
|
[[package]]
|
|
371
335
|
name = "clap"
|
|
372
|
-
version = "4.5.
|
|
336
|
+
version = "4.5.50"
|
|
373
337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
-
checksum = "
|
|
338
|
+
checksum = "0c2cfd7bf8a6017ddaa4e32ffe7403d547790db06bd171c1c53926faab501623"
|
|
375
339
|
dependencies = [
|
|
376
340
|
"clap_builder",
|
|
377
341
|
"clap_derive",
|
|
@@ -379,9 +343,9 @@ dependencies = [
|
|
|
379
343
|
|
|
380
344
|
[[package]]
|
|
381
345
|
name = "clap_builder"
|
|
382
|
-
version = "4.5.
|
|
346
|
+
version = "4.5.50"
|
|
383
347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
-
checksum = "
|
|
348
|
+
checksum = "0a4c05b9e80c5ccd3a7ef080ad7b6ba7d6fc00a985b8b157197075677c82c7a0"
|
|
385
349
|
dependencies = [
|
|
386
350
|
"anstream",
|
|
387
351
|
"anstyle",
|
|
@@ -391,18 +355,18 @@ dependencies = [
|
|
|
391
355
|
|
|
392
356
|
[[package]]
|
|
393
357
|
name = "clap_complete"
|
|
394
|
-
version = "4.5.
|
|
358
|
+
version = "4.5.59"
|
|
395
359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
-
checksum = "
|
|
360
|
+
checksum = "2348487adcd4631696ced64ccdb40d38ac4d31cae7f2eec8817fcea1b9d1c43c"
|
|
397
361
|
dependencies = [
|
|
398
362
|
"clap",
|
|
399
363
|
]
|
|
400
364
|
|
|
401
365
|
[[package]]
|
|
402
366
|
name = "clap_derive"
|
|
403
|
-
version = "4.5.
|
|
367
|
+
version = "4.5.49"
|
|
404
368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
-
checksum = "
|
|
369
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
406
370
|
dependencies = [
|
|
407
371
|
"heck",
|
|
408
372
|
"proc-macro2",
|
|
@@ -418,9 +382,9 @@ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
|
|
418
382
|
|
|
419
383
|
[[package]]
|
|
420
384
|
name = "codespan-reporting"
|
|
421
|
-
version = "0.
|
|
385
|
+
version = "0.13.1"
|
|
422
386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
-
checksum = "
|
|
387
|
+
checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
|
|
424
388
|
dependencies = [
|
|
425
389
|
"serde",
|
|
426
390
|
"termcolor",
|
|
@@ -457,7 +421,7 @@ version = "1.1.0"
|
|
|
457
421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
422
|
checksum = "980c2afde4af43d6a05c5be738f9eae595cff86dce1f38f88b95058a98c027f3"
|
|
459
423
|
dependencies = [
|
|
460
|
-
"crossterm
|
|
424
|
+
"crossterm",
|
|
461
425
|
]
|
|
462
426
|
|
|
463
427
|
[[package]]
|
|
@@ -467,7 +431,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
467
431
|
checksum = "51360853ebbeb3df20c76c82aecf43d387a62860f1a59ba65ab51f00eea85aad"
|
|
468
432
|
dependencies = [
|
|
469
433
|
"crokey-proc_macros",
|
|
470
|
-
"crossterm
|
|
434
|
+
"crossterm",
|
|
471
435
|
"once_cell",
|
|
472
436
|
"serde",
|
|
473
437
|
"strict",
|
|
@@ -479,7 +443,7 @@ version = "1.3.0"
|
|
|
479
443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
444
|
checksum = "3bf1a727caeb5ee5e0a0826a97f205a9cf84ee964b0b48239fef5214a00ae439"
|
|
481
445
|
dependencies = [
|
|
482
|
-
"crossterm
|
|
446
|
+
"crossterm",
|
|
483
447
|
"proc-macro2",
|
|
484
448
|
"quote",
|
|
485
449
|
"strict",
|
|
@@ -542,22 +506,6 @@ version = "0.8.21"
|
|
|
542
506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
507
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
544
508
|
|
|
545
|
-
[[package]]
|
|
546
|
-
name = "crossterm"
|
|
547
|
-
version = "0.25.0"
|
|
548
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
549
|
-
checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67"
|
|
550
|
-
dependencies = [
|
|
551
|
-
"bitflags 1.3.2",
|
|
552
|
-
"crossterm_winapi",
|
|
553
|
-
"libc",
|
|
554
|
-
"mio 0.8.11",
|
|
555
|
-
"parking_lot",
|
|
556
|
-
"signal-hook",
|
|
557
|
-
"signal-hook-mio",
|
|
558
|
-
"winapi",
|
|
559
|
-
]
|
|
560
|
-
|
|
561
509
|
[[package]]
|
|
562
510
|
name = "crossterm"
|
|
563
511
|
version = "0.29.0"
|
|
@@ -568,7 +516,7 @@ dependencies = [
|
|
|
568
516
|
"crossterm_winapi",
|
|
569
517
|
"derive_more",
|
|
570
518
|
"document-features",
|
|
571
|
-
"mio
|
|
519
|
+
"mio",
|
|
572
520
|
"parking_lot",
|
|
573
521
|
"rustix",
|
|
574
522
|
"signal-hook",
|
|
@@ -587,9 +535,9 @@ dependencies = [
|
|
|
587
535
|
|
|
588
536
|
[[package]]
|
|
589
537
|
name = "ctor"
|
|
590
|
-
version = "0.
|
|
538
|
+
version = "0.6.0"
|
|
591
539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
-
checksum = "
|
|
540
|
+
checksum = "59c9b8bdf64ee849747c1b12eb861d21aa47fa161564f48332f1afe2373bf899"
|
|
593
541
|
dependencies = [
|
|
594
542
|
"ctor-proc-macro",
|
|
595
543
|
"dtor",
|
|
@@ -597,9 +545,9 @@ dependencies = [
|
|
|
597
545
|
|
|
598
546
|
[[package]]
|
|
599
547
|
name = "ctor-proc-macro"
|
|
600
|
-
version = "0.0.
|
|
548
|
+
version = "0.0.7"
|
|
601
549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
-
checksum = "
|
|
550
|
+
checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
|
|
603
551
|
|
|
604
552
|
[[package]]
|
|
605
553
|
name = "dashmap"
|
|
@@ -691,7 +639,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
691
639
|
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
|
692
640
|
dependencies = [
|
|
693
641
|
"libc",
|
|
694
|
-
"windows-sys 0.
|
|
642
|
+
"windows-sys 0.52.0",
|
|
695
643
|
]
|
|
696
644
|
|
|
697
645
|
[[package]]
|
|
@@ -816,15 +764,6 @@ dependencies = [
|
|
|
816
764
|
"thread_local",
|
|
817
765
|
]
|
|
818
766
|
|
|
819
|
-
[[package]]
|
|
820
|
-
name = "fxhash"
|
|
821
|
-
version = "0.2.1"
|
|
822
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
-
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
|
824
|
-
dependencies = [
|
|
825
|
-
"byteorder",
|
|
826
|
-
]
|
|
827
|
-
|
|
828
767
|
[[package]]
|
|
829
768
|
name = "getrandom"
|
|
830
769
|
version = "0.3.2"
|
|
@@ -837,12 +776,6 @@ dependencies = [
|
|
|
837
776
|
"wasi 0.14.2+wasi-0.2.4",
|
|
838
777
|
]
|
|
839
778
|
|
|
840
|
-
[[package]]
|
|
841
|
-
name = "gimli"
|
|
842
|
-
version = "0.31.1"
|
|
843
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
-
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
845
|
-
|
|
846
779
|
[[package]]
|
|
847
780
|
name = "globset"
|
|
848
781
|
version = "0.4.16"
|
|
@@ -907,9 +840,9 @@ dependencies = [
|
|
|
907
840
|
|
|
908
841
|
[[package]]
|
|
909
842
|
name = "indexmap"
|
|
910
|
-
version = "2.
|
|
843
|
+
version = "2.11.4"
|
|
911
844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
-
checksum = "
|
|
845
|
+
checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5"
|
|
913
846
|
dependencies = [
|
|
914
847
|
"equivalent",
|
|
915
848
|
"hashbrown 0.15.2",
|
|
@@ -923,30 +856,16 @@ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
|
923
856
|
|
|
924
857
|
[[package]]
|
|
925
858
|
name = "inquire"
|
|
926
|
-
version = "0.
|
|
859
|
+
version = "0.9.1"
|
|
927
860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
-
checksum = "
|
|
861
|
+
checksum = "2628910d0114e9139056161d8644a2026be7b117f8498943f9437748b04c9e0a"
|
|
929
862
|
dependencies = [
|
|
930
863
|
"bitflags 2.9.0",
|
|
931
|
-
"crossterm
|
|
864
|
+
"crossterm",
|
|
932
865
|
"dyn-clone",
|
|
933
866
|
"fuzzy-matcher",
|
|
934
|
-
"fxhash",
|
|
935
|
-
"newline-converter",
|
|
936
|
-
"once_cell",
|
|
937
867
|
"unicode-segmentation",
|
|
938
|
-
"unicode-width 0.
|
|
939
|
-
]
|
|
940
|
-
|
|
941
|
-
[[package]]
|
|
942
|
-
name = "io-uring"
|
|
943
|
-
version = "0.7.8"
|
|
944
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
-
checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013"
|
|
946
|
-
dependencies = [
|
|
947
|
-
"bitflags 2.9.0",
|
|
948
|
-
"cfg-if",
|
|
949
|
-
"libc",
|
|
868
|
+
"unicode-width 0.2.0",
|
|
950
869
|
]
|
|
951
870
|
|
|
952
871
|
[[package]]
|
|
@@ -992,12 +911,12 @@ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
|
992
911
|
|
|
993
912
|
[[package]]
|
|
994
913
|
name = "libloading"
|
|
995
|
-
version = "0.8.
|
|
914
|
+
version = "0.8.9"
|
|
996
915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
-
checksum = "
|
|
916
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
998
917
|
dependencies = [
|
|
999
918
|
"cfg-if",
|
|
1000
|
-
"windows-
|
|
919
|
+
"windows-link",
|
|
1001
920
|
]
|
|
1002
921
|
|
|
1003
922
|
[[package]]
|
|
@@ -1065,27 +984,6 @@ dependencies = [
|
|
|
1065
984
|
"once_cell",
|
|
1066
985
|
]
|
|
1067
986
|
|
|
1068
|
-
[[package]]
|
|
1069
|
-
name = "miniz_oxide"
|
|
1070
|
-
version = "0.8.8"
|
|
1071
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
-
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
1073
|
-
dependencies = [
|
|
1074
|
-
"adler2",
|
|
1075
|
-
]
|
|
1076
|
-
|
|
1077
|
-
[[package]]
|
|
1078
|
-
name = "mio"
|
|
1079
|
-
version = "0.8.11"
|
|
1080
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
|
1082
|
-
dependencies = [
|
|
1083
|
-
"libc",
|
|
1084
|
-
"log",
|
|
1085
|
-
"wasi 0.11.0+wasi-snapshot-preview1",
|
|
1086
|
-
"windows-sys 0.48.0",
|
|
1087
|
-
]
|
|
1088
|
-
|
|
1089
987
|
[[package]]
|
|
1090
988
|
name = "mio"
|
|
1091
989
|
version = "1.0.3"
|
|
@@ -1100,9 +998,9 @@ dependencies = [
|
|
|
1100
998
|
|
|
1101
999
|
[[package]]
|
|
1102
1000
|
name = "napi"
|
|
1103
|
-
version = "3.
|
|
1001
|
+
version = "3.4.0"
|
|
1104
1002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
-
checksum = "
|
|
1003
|
+
checksum = "c3a1135cfe16ca43ac82ac05858554fc39c037d8e4592f2b4a83d7ef8e822f43"
|
|
1106
1004
|
dependencies = [
|
|
1107
1005
|
"anyhow",
|
|
1108
1006
|
"bitflags 2.9.0",
|
|
@@ -1117,15 +1015,15 @@ dependencies = [
|
|
|
1117
1015
|
|
|
1118
1016
|
[[package]]
|
|
1119
1017
|
name = "napi-build"
|
|
1120
|
-
version = "2.2.
|
|
1018
|
+
version = "2.2.4"
|
|
1121
1019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
-
checksum = "
|
|
1020
|
+
checksum = "3ae82775d1b06f3f07efd0666e59bbc175da8383bc372051031d7a447e94fbea"
|
|
1123
1021
|
|
|
1124
1022
|
[[package]]
|
|
1125
1023
|
name = "napi-derive"
|
|
1126
|
-
version = "3.
|
|
1024
|
+
version = "3.3.0"
|
|
1127
1025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
-
checksum = "
|
|
1026
|
+
checksum = "78665d6bdf10e9a4e6b38123efb0f66962e6197c1aea2f07cff3f159a374696d"
|
|
1129
1027
|
dependencies = [
|
|
1130
1028
|
"convert_case 0.8.0",
|
|
1131
1029
|
"ctor",
|
|
@@ -1137,9 +1035,9 @@ dependencies = [
|
|
|
1137
1035
|
|
|
1138
1036
|
[[package]]
|
|
1139
1037
|
name = "napi-derive-backend"
|
|
1140
|
-
version = "
|
|
1038
|
+
version = "3.0.0"
|
|
1141
1039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
-
checksum = "
|
|
1040
|
+
checksum = "42d55d01423e7264de3acc13b258fa48ca7cf38a4d25db848908ec3c1304a85a"
|
|
1143
1041
|
dependencies = [
|
|
1144
1042
|
"convert_case 0.8.0",
|
|
1145
1043
|
"proc-macro2",
|
|
@@ -1150,22 +1048,13 @@ dependencies = [
|
|
|
1150
1048
|
|
|
1151
1049
|
[[package]]
|
|
1152
1050
|
name = "napi-sys"
|
|
1153
|
-
version = "3.0.
|
|
1051
|
+
version = "3.0.1"
|
|
1154
1052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
-
checksum = "
|
|
1053
|
+
checksum = "1ed8f0e23a62a3ce0fbb6527cdc056e9282ddd9916b068c46f8923e18eed5ee6"
|
|
1156
1054
|
dependencies = [
|
|
1157
1055
|
"libloading",
|
|
1158
1056
|
]
|
|
1159
1057
|
|
|
1160
|
-
[[package]]
|
|
1161
|
-
name = "newline-converter"
|
|
1162
|
-
version = "0.3.0"
|
|
1163
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
-
checksum = "47b6b097ecb1cbfed438542d16e84fd7ad9b0c76c8a65b7f9039212a3d14dc7f"
|
|
1165
|
-
dependencies = [
|
|
1166
|
-
"unicode-segmentation",
|
|
1167
|
-
]
|
|
1168
|
-
|
|
1169
1058
|
[[package]]
|
|
1170
1059
|
name = "nix"
|
|
1171
1060
|
version = "0.29.0"
|
|
@@ -1199,15 +1088,6 @@ dependencies = [
|
|
|
1199
1088
|
"autocfg",
|
|
1200
1089
|
]
|
|
1201
1090
|
|
|
1202
|
-
[[package]]
|
|
1203
|
-
name = "object"
|
|
1204
|
-
version = "0.36.7"
|
|
1205
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
-
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
1207
|
-
dependencies = [
|
|
1208
|
-
"memchr",
|
|
1209
|
-
]
|
|
1210
|
-
|
|
1211
1091
|
[[package]]
|
|
1212
1092
|
name = "once_cell"
|
|
1213
1093
|
version = "1.21.3"
|
|
@@ -1234,7 +1114,7 @@ dependencies = [
|
|
|
1234
1114
|
"libc",
|
|
1235
1115
|
"redox_syscall",
|
|
1236
1116
|
"smallvec",
|
|
1237
|
-
"windows-targets
|
|
1117
|
+
"windows-targets",
|
|
1238
1118
|
]
|
|
1239
1119
|
|
|
1240
1120
|
[[package]]
|
|
@@ -1412,9 +1292,9 @@ dependencies = [
|
|
|
1412
1292
|
|
|
1413
1293
|
[[package]]
|
|
1414
1294
|
name = "regex"
|
|
1415
|
-
version = "1.
|
|
1295
|
+
version = "1.12.2"
|
|
1416
1296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
-
checksum = "
|
|
1297
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1418
1298
|
dependencies = [
|
|
1419
1299
|
"aho-corasick",
|
|
1420
1300
|
"memchr",
|
|
@@ -1424,9 +1304,9 @@ dependencies = [
|
|
|
1424
1304
|
|
|
1425
1305
|
[[package]]
|
|
1426
1306
|
name = "regex-automata"
|
|
1427
|
-
version = "0.4.
|
|
1307
|
+
version = "0.4.12"
|
|
1428
1308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1429
|
-
checksum = "
|
|
1309
|
+
checksum = "722166aa0d7438abbaa4d5cc2c649dac844e8c56d82fb3d33e9c34b5cd268fc6"
|
|
1430
1310
|
dependencies = [
|
|
1431
1311
|
"aho-corasick",
|
|
1432
1312
|
"memchr",
|
|
@@ -1439,12 +1319,6 @@ version = "0.8.5"
|
|
|
1439
1319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1440
1320
|
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
1441
1321
|
|
|
1442
|
-
[[package]]
|
|
1443
|
-
name = "rustc-demangle"
|
|
1444
|
-
version = "0.1.24"
|
|
1445
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
-
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
1447
|
-
|
|
1448
1322
|
[[package]]
|
|
1449
1323
|
name = "rustc-hash"
|
|
1450
1324
|
version = "2.1.1"
|
|
@@ -1461,7 +1335,7 @@ dependencies = [
|
|
|
1461
1335
|
"errno",
|
|
1462
1336
|
"libc",
|
|
1463
1337
|
"linux-raw-sys",
|
|
1464
|
-
"windows-sys 0.
|
|
1338
|
+
"windows-sys 0.52.0",
|
|
1465
1339
|
]
|
|
1466
1340
|
|
|
1467
1341
|
[[package]]
|
|
@@ -1518,18 +1392,28 @@ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
|
1518
1392
|
|
|
1519
1393
|
[[package]]
|
|
1520
1394
|
name = "serde"
|
|
1521
|
-
version = "1.0.
|
|
1395
|
+
version = "1.0.226"
|
|
1396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1397
|
+
checksum = "0dca6411025b24b60bfa7ec1fe1f8e710ac09782dca409ee8237ba74b51295fd"
|
|
1398
|
+
dependencies = [
|
|
1399
|
+
"serde_core",
|
|
1400
|
+
"serde_derive",
|
|
1401
|
+
]
|
|
1402
|
+
|
|
1403
|
+
[[package]]
|
|
1404
|
+
name = "serde_core"
|
|
1405
|
+
version = "1.0.226"
|
|
1522
1406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
-
checksum = "
|
|
1407
|
+
checksum = "ba2ba63999edb9dac981fb34b3e5c0d111a69b0924e253ed29d83f7c99e966a4"
|
|
1524
1408
|
dependencies = [
|
|
1525
1409
|
"serde_derive",
|
|
1526
1410
|
]
|
|
1527
1411
|
|
|
1528
1412
|
[[package]]
|
|
1529
1413
|
name = "serde_derive"
|
|
1530
|
-
version = "1.0.
|
|
1414
|
+
version = "1.0.226"
|
|
1531
1415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
-
checksum = "
|
|
1416
|
+
checksum = "8db53ae22f34573731bafa1db20f04027b2d25e02d8205921b569171699cdb33"
|
|
1533
1417
|
dependencies = [
|
|
1534
1418
|
"proc-macro2",
|
|
1535
1419
|
"quote",
|
|
@@ -1549,15 +1433,16 @@ dependencies = [
|
|
|
1549
1433
|
|
|
1550
1434
|
[[package]]
|
|
1551
1435
|
name = "serde_json"
|
|
1552
|
-
version = "1.0.
|
|
1436
|
+
version = "1.0.145"
|
|
1553
1437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
|
-
checksum = "
|
|
1438
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
1555
1439
|
dependencies = [
|
|
1556
1440
|
"indexmap",
|
|
1557
1441
|
"itoa",
|
|
1558
1442
|
"memchr",
|
|
1559
1443
|
"ryu",
|
|
1560
1444
|
"serde",
|
|
1445
|
+
"serde_core",
|
|
1561
1446
|
]
|
|
1562
1447
|
|
|
1563
1448
|
[[package]]
|
|
@@ -1607,8 +1492,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1607
1492
|
checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
|
|
1608
1493
|
dependencies = [
|
|
1609
1494
|
"libc",
|
|
1610
|
-
"mio
|
|
1611
|
-
"mio 1.0.3",
|
|
1495
|
+
"mio",
|
|
1612
1496
|
"signal-hook",
|
|
1613
1497
|
]
|
|
1614
1498
|
|
|
@@ -1691,15 +1575,15 @@ checksum = "1ac9aa371f599d22256307c24a9d748c041e548cbf599f35d890f9d365361790"
|
|
|
1691
1575
|
|
|
1692
1576
|
[[package]]
|
|
1693
1577
|
name = "tempfile"
|
|
1694
|
-
version = "3.
|
|
1578
|
+
version = "3.23.0"
|
|
1695
1579
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
-
checksum = "
|
|
1580
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
1697
1581
|
dependencies = [
|
|
1698
1582
|
"fastrand",
|
|
1699
1583
|
"getrandom",
|
|
1700
1584
|
"once_cell",
|
|
1701
1585
|
"rustix",
|
|
1702
|
-
"windows-sys 0.
|
|
1586
|
+
"windows-sys 0.52.0",
|
|
1703
1587
|
]
|
|
1704
1588
|
|
|
1705
1589
|
[[package]]
|
|
@@ -1723,7 +1607,7 @@ dependencies = [
|
|
|
1723
1607
|
"lazy-regex",
|
|
1724
1608
|
"minimad",
|
|
1725
1609
|
"serde",
|
|
1726
|
-
"thiserror 2.0.
|
|
1610
|
+
"thiserror 2.0.17",
|
|
1727
1611
|
"unicode-width 0.1.14",
|
|
1728
1612
|
]
|
|
1729
1613
|
|
|
@@ -1734,7 +1618,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1734
1618
|
checksum = "a6f76be906d875a0ce764c52a055858c24847cb7dc674d3a5ad8cf7e3dd4ee9f"
|
|
1735
1619
|
dependencies = [
|
|
1736
1620
|
"coolor",
|
|
1737
|
-
"crossterm
|
|
1621
|
+
"crossterm",
|
|
1738
1622
|
"thiserror 1.0.69",
|
|
1739
1623
|
"xterm-query",
|
|
1740
1624
|
]
|
|
@@ -1756,11 +1640,11 @@ dependencies = [
|
|
|
1756
1640
|
|
|
1757
1641
|
[[package]]
|
|
1758
1642
|
name = "thiserror"
|
|
1759
|
-
version = "2.0.
|
|
1643
|
+
version = "2.0.17"
|
|
1760
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
-
checksum = "
|
|
1645
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
1762
1646
|
dependencies = [
|
|
1763
|
-
"thiserror-impl 2.0.
|
|
1647
|
+
"thiserror-impl 2.0.17",
|
|
1764
1648
|
]
|
|
1765
1649
|
|
|
1766
1650
|
[[package]]
|
|
@@ -1776,9 +1660,9 @@ dependencies = [
|
|
|
1776
1660
|
|
|
1777
1661
|
[[package]]
|
|
1778
1662
|
name = "thiserror-impl"
|
|
1779
|
-
version = "2.0.
|
|
1663
|
+
version = "2.0.17"
|
|
1780
1664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
-
checksum = "
|
|
1665
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
1782
1666
|
dependencies = [
|
|
1783
1667
|
"proc-macro2",
|
|
1784
1668
|
"quote",
|
|
@@ -1797,25 +1681,20 @@ dependencies = [
|
|
|
1797
1681
|
|
|
1798
1682
|
[[package]]
|
|
1799
1683
|
name = "tokio"
|
|
1800
|
-
version = "1.
|
|
1684
|
+
version = "1.48.0"
|
|
1801
1685
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1802
|
-
checksum = "
|
|
1686
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
1803
1687
|
dependencies = [
|
|
1804
|
-
"backtrace",
|
|
1805
1688
|
"bytes",
|
|
1806
|
-
"io-uring",
|
|
1807
|
-
"libc",
|
|
1808
|
-
"mio 1.0.3",
|
|
1809
1689
|
"pin-project-lite",
|
|
1810
|
-
"slab",
|
|
1811
1690
|
"tokio-macros",
|
|
1812
1691
|
]
|
|
1813
1692
|
|
|
1814
1693
|
[[package]]
|
|
1815
1694
|
name = "tokio-macros"
|
|
1816
|
-
version = "2.
|
|
1695
|
+
version = "2.6.0"
|
|
1817
1696
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1818
|
-
checksum = "
|
|
1697
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
1819
1698
|
dependencies = [
|
|
1820
1699
|
"proc-macro2",
|
|
1821
1700
|
"quote",
|
|
@@ -1848,18 +1727,18 @@ dependencies = [
|
|
|
1848
1727
|
|
|
1849
1728
|
[[package]]
|
|
1850
1729
|
name = "toml_datetime"
|
|
1851
|
-
version = "0.7.
|
|
1730
|
+
version = "0.7.3"
|
|
1852
1731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
-
checksum = "
|
|
1732
|
+
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
|
1854
1733
|
dependencies = [
|
|
1855
|
-
"
|
|
1734
|
+
"serde_core",
|
|
1856
1735
|
]
|
|
1857
1736
|
|
|
1858
1737
|
[[package]]
|
|
1859
1738
|
name = "toml_edit"
|
|
1860
|
-
version = "0.23.
|
|
1739
|
+
version = "0.23.7"
|
|
1861
1740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
-
checksum = "
|
|
1741
|
+
checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
|
|
1863
1742
|
dependencies = [
|
|
1864
1743
|
"indexmap",
|
|
1865
1744
|
"toml_datetime",
|
|
@@ -1870,18 +1749,18 @@ dependencies = [
|
|
|
1870
1749
|
|
|
1871
1750
|
[[package]]
|
|
1872
1751
|
name = "toml_parser"
|
|
1873
|
-
version = "1.0.
|
|
1752
|
+
version = "1.0.4"
|
|
1874
1753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1875
|
-
checksum = "
|
|
1754
|
+
checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
|
|
1876
1755
|
dependencies = [
|
|
1877
1756
|
"winnow",
|
|
1878
1757
|
]
|
|
1879
1758
|
|
|
1880
1759
|
[[package]]
|
|
1881
1760
|
name = "toml_writer"
|
|
1882
|
-
version = "1.0.
|
|
1761
|
+
version = "1.0.4"
|
|
1883
1762
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
-
checksum = "
|
|
1763
|
+
checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
|
|
1885
1764
|
|
|
1886
1765
|
[[package]]
|
|
1887
1766
|
name = "tower"
|
|
@@ -1962,9 +1841,9 @@ dependencies = [
|
|
|
1962
1841
|
|
|
1963
1842
|
[[package]]
|
|
1964
1843
|
name = "tree-sitter"
|
|
1965
|
-
version = "0.25.
|
|
1844
|
+
version = "0.25.10"
|
|
1966
1845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
-
checksum = "
|
|
1846
|
+
checksum = "78f873475d258561b06f1c595d93308a7ed124d9977cb26b148c2084a4a3cc87"
|
|
1968
1847
|
dependencies = [
|
|
1969
1848
|
"cc",
|
|
1970
1849
|
"regex",
|
|
@@ -2016,9 +1895,9 @@ dependencies = [
|
|
|
2016
1895
|
|
|
2017
1896
|
[[package]]
|
|
2018
1897
|
name = "tree-sitter-css"
|
|
2019
|
-
version = "0.
|
|
1898
|
+
version = "0.25.0"
|
|
2020
1899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
-
checksum = "
|
|
1900
|
+
checksum = "a5cbc5e18f29a2c6d6435891f42569525cf95435a3e01c2f1947abcde178686f"
|
|
2022
1901
|
dependencies = [
|
|
2023
1902
|
"cc",
|
|
2024
1903
|
"tree-sitter-language",
|
|
@@ -2036,9 +1915,9 @@ dependencies = [
|
|
|
2036
1915
|
|
|
2037
1916
|
[[package]]
|
|
2038
1917
|
name = "tree-sitter-go"
|
|
2039
|
-
version = "0.
|
|
1918
|
+
version = "0.25.0"
|
|
2040
1919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2041
|
-
checksum = "
|
|
1920
|
+
checksum = "c8560a4d2f835cc0d4d2c2e03cbd0dde2f6114b43bc491164238d333e28b16ea"
|
|
2042
1921
|
dependencies = [
|
|
2043
1922
|
"cc",
|
|
2044
1923
|
"tree-sitter-language",
|
|
@@ -2152,9 +2031,9 @@ dependencies = [
|
|
|
2152
2031
|
|
|
2153
2032
|
[[package]]
|
|
2154
2033
|
name = "tree-sitter-python"
|
|
2155
|
-
version = "0.
|
|
2034
|
+
version = "0.25.0"
|
|
2156
2035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2157
|
-
checksum = "
|
|
2036
|
+
checksum = "6bf85fd39652e740bf60f46f4cda9492c3a9ad75880575bf14960f775cb74a1c"
|
|
2158
2037
|
dependencies = [
|
|
2159
2038
|
"cc",
|
|
2160
2039
|
"tree-sitter-language",
|
|
@@ -2222,9 +2101,9 @@ dependencies = [
|
|
|
2222
2101
|
|
|
2223
2102
|
[[package]]
|
|
2224
2103
|
name = "tree-sitter-yaml"
|
|
2225
|
-
version = "0.7.
|
|
2104
|
+
version = "0.7.2"
|
|
2226
2105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2227
|
-
checksum = "
|
|
2106
|
+
checksum = "53c223db85f05e34794f065454843b0668ebc15d240ada63e2b5939f43ce7c97"
|
|
2228
2107
|
dependencies = [
|
|
2229
2108
|
"cc",
|
|
2230
2109
|
"tree-sitter-language",
|
|
@@ -2328,7 +2207,7 @@ version = "0.1.9"
|
|
|
2328
2207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
2208
|
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
2330
2209
|
dependencies = [
|
|
2331
|
-
"windows-sys 0.
|
|
2210
|
+
"windows-sys 0.52.0",
|
|
2332
2211
|
]
|
|
2333
2212
|
|
|
2334
2213
|
[[package]]
|
|
@@ -2338,13 +2217,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2338
2217
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2339
2218
|
|
|
2340
2219
|
[[package]]
|
|
2341
|
-
name = "windows-
|
|
2342
|
-
version = "0.
|
|
2220
|
+
name = "windows-link"
|
|
2221
|
+
version = "0.2.0"
|
|
2343
2222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2344
|
-
checksum = "
|
|
2345
|
-
dependencies = [
|
|
2346
|
-
"windows-targets 0.48.5",
|
|
2347
|
-
]
|
|
2223
|
+
checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
|
|
2348
2224
|
|
|
2349
2225
|
[[package]]
|
|
2350
2226
|
name = "windows-sys"
|
|
@@ -2352,7 +2228,7 @@ version = "0.52.0"
|
|
|
2352
2228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
2229
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2354
2230
|
dependencies = [
|
|
2355
|
-
"windows-targets
|
|
2231
|
+
"windows-targets",
|
|
2356
2232
|
]
|
|
2357
2233
|
|
|
2358
2234
|
[[package]]
|
|
@@ -2361,22 +2237,7 @@ version = "0.59.0"
|
|
|
2361
2237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2362
2238
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
2363
2239
|
dependencies = [
|
|
2364
|
-
"windows-targets
|
|
2365
|
-
]
|
|
2366
|
-
|
|
2367
|
-
[[package]]
|
|
2368
|
-
name = "windows-targets"
|
|
2369
|
-
version = "0.48.5"
|
|
2370
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2371
|
-
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
2372
|
-
dependencies = [
|
|
2373
|
-
"windows_aarch64_gnullvm 0.48.5",
|
|
2374
|
-
"windows_aarch64_msvc 0.48.5",
|
|
2375
|
-
"windows_i686_gnu 0.48.5",
|
|
2376
|
-
"windows_i686_msvc 0.48.5",
|
|
2377
|
-
"windows_x86_64_gnu 0.48.5",
|
|
2378
|
-
"windows_x86_64_gnullvm 0.48.5",
|
|
2379
|
-
"windows_x86_64_msvc 0.48.5",
|
|
2240
|
+
"windows-targets",
|
|
2380
2241
|
]
|
|
2381
2242
|
|
|
2382
2243
|
[[package]]
|
|
@@ -2385,46 +2246,28 @@ version = "0.52.6"
|
|
|
2385
2246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2386
2247
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2387
2248
|
dependencies = [
|
|
2388
|
-
"windows_aarch64_gnullvm
|
|
2389
|
-
"windows_aarch64_msvc
|
|
2390
|
-
"windows_i686_gnu
|
|
2249
|
+
"windows_aarch64_gnullvm",
|
|
2250
|
+
"windows_aarch64_msvc",
|
|
2251
|
+
"windows_i686_gnu",
|
|
2391
2252
|
"windows_i686_gnullvm",
|
|
2392
|
-
"windows_i686_msvc
|
|
2393
|
-
"windows_x86_64_gnu
|
|
2394
|
-
"windows_x86_64_gnullvm
|
|
2395
|
-
"windows_x86_64_msvc
|
|
2253
|
+
"windows_i686_msvc",
|
|
2254
|
+
"windows_x86_64_gnu",
|
|
2255
|
+
"windows_x86_64_gnullvm",
|
|
2256
|
+
"windows_x86_64_msvc",
|
|
2396
2257
|
]
|
|
2397
2258
|
|
|
2398
|
-
[[package]]
|
|
2399
|
-
name = "windows_aarch64_gnullvm"
|
|
2400
|
-
version = "0.48.5"
|
|
2401
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2402
|
-
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
2403
|
-
|
|
2404
2259
|
[[package]]
|
|
2405
2260
|
name = "windows_aarch64_gnullvm"
|
|
2406
2261
|
version = "0.52.6"
|
|
2407
2262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2408
2263
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2409
2264
|
|
|
2410
|
-
[[package]]
|
|
2411
|
-
name = "windows_aarch64_msvc"
|
|
2412
|
-
version = "0.48.5"
|
|
2413
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2414
|
-
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
2415
|
-
|
|
2416
2265
|
[[package]]
|
|
2417
2266
|
name = "windows_aarch64_msvc"
|
|
2418
2267
|
version = "0.52.6"
|
|
2419
2268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
2269
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2421
2270
|
|
|
2422
|
-
[[package]]
|
|
2423
|
-
name = "windows_i686_gnu"
|
|
2424
|
-
version = "0.48.5"
|
|
2425
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
-
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
2427
|
-
|
|
2428
2271
|
[[package]]
|
|
2429
2272
|
name = "windows_i686_gnu"
|
|
2430
2273
|
version = "0.52.6"
|
|
@@ -2437,48 +2280,24 @@ version = "0.52.6"
|
|
|
2437
2280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2438
2281
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2439
2282
|
|
|
2440
|
-
[[package]]
|
|
2441
|
-
name = "windows_i686_msvc"
|
|
2442
|
-
version = "0.48.5"
|
|
2443
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2444
|
-
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
2445
|
-
|
|
2446
2283
|
[[package]]
|
|
2447
2284
|
name = "windows_i686_msvc"
|
|
2448
2285
|
version = "0.52.6"
|
|
2449
2286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2450
2287
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2451
2288
|
|
|
2452
|
-
[[package]]
|
|
2453
|
-
name = "windows_x86_64_gnu"
|
|
2454
|
-
version = "0.48.5"
|
|
2455
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2456
|
-
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
2457
|
-
|
|
2458
2289
|
[[package]]
|
|
2459
2290
|
name = "windows_x86_64_gnu"
|
|
2460
2291
|
version = "0.52.6"
|
|
2461
2292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2462
2293
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2463
2294
|
|
|
2464
|
-
[[package]]
|
|
2465
|
-
name = "windows_x86_64_gnullvm"
|
|
2466
|
-
version = "0.48.5"
|
|
2467
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2468
|
-
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
2469
|
-
|
|
2470
2295
|
[[package]]
|
|
2471
2296
|
name = "windows_x86_64_gnullvm"
|
|
2472
2297
|
version = "0.52.6"
|
|
2473
2298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2474
2299
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2475
2300
|
|
|
2476
|
-
[[package]]
|
|
2477
|
-
name = "windows_x86_64_msvc"
|
|
2478
|
-
version = "0.48.5"
|
|
2479
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
|
-
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
2481
|
-
|
|
2482
2301
|
[[package]]
|
|
2483
2302
|
name = "windows_x86_64_msvc"
|
|
2484
2303
|
version = "0.52.6"
|
|
@@ -2487,9 +2306,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
2487
2306
|
|
|
2488
2307
|
[[package]]
|
|
2489
2308
|
name = "winnow"
|
|
2490
|
-
version = "0.7.
|
|
2309
|
+
version = "0.7.13"
|
|
2491
2310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
-
checksum = "
|
|
2311
|
+
checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
|
|
2493
2312
|
dependencies = [
|
|
2494
2313
|
"memchr",
|
|
2495
2314
|
]
|