ast-grep-py 0.39.6__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.6 → ast_grep_py-0.39.7}/Cargo.lock +63 -139
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/Cargo.toml +6 -6
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/PKG-INFO +1 -1
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/pyproject.toml +1 -1
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/README.md +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/ast_grep_py/__init__.py +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/ast_grep_py/ast_grep_py.pyi +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/ast_grep_py/py.typed +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/Cargo.toml +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/check_var.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/combined.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/fixer.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/label.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/lib.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/maybe.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/rule/deserialize_env.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/rule/mod.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/rule/nth_child.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/rule/range.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/rule/referent_rule.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/rule/relational_rule.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/rule/selector.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/rule/stop_by.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/rule_collection.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/rule_config.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/rule_core.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/transform/mod.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/transform/parse.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/transform/rewrite.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/transform/string_case.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/config/src/transform/trans.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/Cargo.toml +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/language.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/lib.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/match_tree/match_node.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/match_tree/mod.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/match_tree/strictness.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/matcher/kind.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/matcher/node_match.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/matcher/pattern.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/matcher/text.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/matcher.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/meta_var.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/node.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/ops.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/pinned.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/replacer/indent.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/replacer/structural.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/replacer/template.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/replacer.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/source.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/tree_sitter/mod.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/core/src/tree_sitter/traversal.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/dynamic/Cargo.toml +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/dynamic/src/custom_lang.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/dynamic/src/lib.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/Cargo.toml +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/bash.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/cpp.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/csharp.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/css.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/elixir.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/go.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/haskell.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/hcl.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/html.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/json.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/kotlin.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/lib.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/lua.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/nix.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/parsers.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/php.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/python.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/ruby.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/rust.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/scala.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/solidity.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/swift.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/language/src/yaml.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/Cargo.toml +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/README.md +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/ast_grep_py/__init__.py +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/ast_grep_py/ast_grep_py.pyi +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/ast_grep_py/py.typed +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/src/lib.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/src/py_lang.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/src/py_node.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/src/range.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/src/unicode_position.rs +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_fix.py +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_range.py +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_register_lang.py +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_rule.py +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_simple.py +0 -0
- {ast_grep_py-0.39.6 → ast_grep_py-0.39.7}/crates/pyo3/tests/test_traversal.py +0 -0
- {ast_grep_py-0.39.6 → 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"
|
|
@@ -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",
|
|
@@ -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",
|
|
297
|
-
]
|
|
298
|
-
|
|
299
269
|
[[package]]
|
|
300
270
|
name = "bit-set"
|
|
301
271
|
version = "0.8.0"
|
|
@@ -363,9 +333,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
363
333
|
|
|
364
334
|
[[package]]
|
|
365
335
|
name = "clap"
|
|
366
|
-
version = "4.5.
|
|
336
|
+
version = "4.5.50"
|
|
367
337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
-
checksum = "
|
|
338
|
+
checksum = "0c2cfd7bf8a6017ddaa4e32ffe7403d547790db06bd171c1c53926faab501623"
|
|
369
339
|
dependencies = [
|
|
370
340
|
"clap_builder",
|
|
371
341
|
"clap_derive",
|
|
@@ -373,9 +343,9 @@ dependencies = [
|
|
|
373
343
|
|
|
374
344
|
[[package]]
|
|
375
345
|
name = "clap_builder"
|
|
376
|
-
version = "4.5.
|
|
346
|
+
version = "4.5.50"
|
|
377
347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
-
checksum = "
|
|
348
|
+
checksum = "0a4c05b9e80c5ccd3a7ef080ad7b6ba7d6fc00a985b8b157197075677c82c7a0"
|
|
379
349
|
dependencies = [
|
|
380
350
|
"anstream",
|
|
381
351
|
"anstyle",
|
|
@@ -385,18 +355,18 @@ dependencies = [
|
|
|
385
355
|
|
|
386
356
|
[[package]]
|
|
387
357
|
name = "clap_complete"
|
|
388
|
-
version = "4.5.
|
|
358
|
+
version = "4.5.59"
|
|
389
359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
-
checksum = "
|
|
360
|
+
checksum = "2348487adcd4631696ced64ccdb40d38ac4d31cae7f2eec8817fcea1b9d1c43c"
|
|
391
361
|
dependencies = [
|
|
392
362
|
"clap",
|
|
393
363
|
]
|
|
394
364
|
|
|
395
365
|
[[package]]
|
|
396
366
|
name = "clap_derive"
|
|
397
|
-
version = "4.5.
|
|
367
|
+
version = "4.5.49"
|
|
398
368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
-
checksum = "
|
|
369
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
400
370
|
dependencies = [
|
|
401
371
|
"heck",
|
|
402
372
|
"proc-macro2",
|
|
@@ -412,9 +382,9 @@ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
|
|
412
382
|
|
|
413
383
|
[[package]]
|
|
414
384
|
name = "codespan-reporting"
|
|
415
|
-
version = "0.
|
|
385
|
+
version = "0.13.1"
|
|
416
386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
417
|
-
checksum = "
|
|
387
|
+
checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
|
|
418
388
|
dependencies = [
|
|
419
389
|
"serde",
|
|
420
390
|
"termcolor",
|
|
@@ -565,9 +535,9 @@ dependencies = [
|
|
|
565
535
|
|
|
566
536
|
[[package]]
|
|
567
537
|
name = "ctor"
|
|
568
|
-
version = "0.
|
|
538
|
+
version = "0.6.0"
|
|
569
539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
-
checksum = "
|
|
540
|
+
checksum = "59c9b8bdf64ee849747c1b12eb861d21aa47fa161564f48332f1afe2373bf899"
|
|
571
541
|
dependencies = [
|
|
572
542
|
"ctor-proc-macro",
|
|
573
543
|
"dtor",
|
|
@@ -575,9 +545,9 @@ dependencies = [
|
|
|
575
545
|
|
|
576
546
|
[[package]]
|
|
577
547
|
name = "ctor-proc-macro"
|
|
578
|
-
version = "0.0.
|
|
548
|
+
version = "0.0.7"
|
|
579
549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
-
checksum = "
|
|
550
|
+
checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
|
|
581
551
|
|
|
582
552
|
[[package]]
|
|
583
553
|
name = "dashmap"
|
|
@@ -669,7 +639,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
669
639
|
checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
|
|
670
640
|
dependencies = [
|
|
671
641
|
"libc",
|
|
672
|
-
"windows-sys 0.
|
|
642
|
+
"windows-sys 0.52.0",
|
|
673
643
|
]
|
|
674
644
|
|
|
675
645
|
[[package]]
|
|
@@ -806,12 +776,6 @@ dependencies = [
|
|
|
806
776
|
"wasi 0.14.2+wasi-0.2.4",
|
|
807
777
|
]
|
|
808
778
|
|
|
809
|
-
[[package]]
|
|
810
|
-
name = "gimli"
|
|
811
|
-
version = "0.31.1"
|
|
812
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
-
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
814
|
-
|
|
815
779
|
[[package]]
|
|
816
780
|
name = "globset"
|
|
817
781
|
version = "0.4.16"
|
|
@@ -904,17 +868,6 @@ dependencies = [
|
|
|
904
868
|
"unicode-width 0.2.0",
|
|
905
869
|
]
|
|
906
870
|
|
|
907
|
-
[[package]]
|
|
908
|
-
name = "io-uring"
|
|
909
|
-
version = "0.7.8"
|
|
910
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
-
checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013"
|
|
912
|
-
dependencies = [
|
|
913
|
-
"bitflags 2.9.0",
|
|
914
|
-
"cfg-if",
|
|
915
|
-
"libc",
|
|
916
|
-
]
|
|
917
|
-
|
|
918
871
|
[[package]]
|
|
919
872
|
name = "is_terminal_polyfill"
|
|
920
873
|
version = "1.70.1"
|
|
@@ -1031,15 +984,6 @@ dependencies = [
|
|
|
1031
984
|
"once_cell",
|
|
1032
985
|
]
|
|
1033
986
|
|
|
1034
|
-
[[package]]
|
|
1035
|
-
name = "miniz_oxide"
|
|
1036
|
-
version = "0.8.8"
|
|
1037
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
-
checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
|
|
1039
|
-
dependencies = [
|
|
1040
|
-
"adler2",
|
|
1041
|
-
]
|
|
1042
|
-
|
|
1043
987
|
[[package]]
|
|
1044
988
|
name = "mio"
|
|
1045
989
|
version = "1.0.3"
|
|
@@ -1054,9 +998,9 @@ dependencies = [
|
|
|
1054
998
|
|
|
1055
999
|
[[package]]
|
|
1056
1000
|
name = "napi"
|
|
1057
|
-
version = "3.
|
|
1001
|
+
version = "3.4.0"
|
|
1058
1002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
-
checksum = "
|
|
1003
|
+
checksum = "c3a1135cfe16ca43ac82ac05858554fc39c037d8e4592f2b4a83d7ef8e822f43"
|
|
1060
1004
|
dependencies = [
|
|
1061
1005
|
"anyhow",
|
|
1062
1006
|
"bitflags 2.9.0",
|
|
@@ -1071,15 +1015,15 @@ dependencies = [
|
|
|
1071
1015
|
|
|
1072
1016
|
[[package]]
|
|
1073
1017
|
name = "napi-build"
|
|
1074
|
-
version = "2.2.
|
|
1018
|
+
version = "2.2.4"
|
|
1075
1019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
-
checksum = "
|
|
1020
|
+
checksum = "3ae82775d1b06f3f07efd0666e59bbc175da8383bc372051031d7a447e94fbea"
|
|
1077
1021
|
|
|
1078
1022
|
[[package]]
|
|
1079
1023
|
name = "napi-derive"
|
|
1080
|
-
version = "3.
|
|
1024
|
+
version = "3.3.0"
|
|
1081
1025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
-
checksum = "
|
|
1026
|
+
checksum = "78665d6bdf10e9a4e6b38123efb0f66962e6197c1aea2f07cff3f159a374696d"
|
|
1083
1027
|
dependencies = [
|
|
1084
1028
|
"convert_case 0.8.0",
|
|
1085
1029
|
"ctor",
|
|
@@ -1091,9 +1035,9 @@ dependencies = [
|
|
|
1091
1035
|
|
|
1092
1036
|
[[package]]
|
|
1093
1037
|
name = "napi-derive-backend"
|
|
1094
|
-
version = "
|
|
1038
|
+
version = "3.0.0"
|
|
1095
1039
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
-
checksum = "
|
|
1040
|
+
checksum = "42d55d01423e7264de3acc13b258fa48ca7cf38a4d25db848908ec3c1304a85a"
|
|
1097
1041
|
dependencies = [
|
|
1098
1042
|
"convert_case 0.8.0",
|
|
1099
1043
|
"proc-macro2",
|
|
@@ -1104,9 +1048,9 @@ dependencies = [
|
|
|
1104
1048
|
|
|
1105
1049
|
[[package]]
|
|
1106
1050
|
name = "napi-sys"
|
|
1107
|
-
version = "3.0.
|
|
1051
|
+
version = "3.0.1"
|
|
1108
1052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
-
checksum = "
|
|
1053
|
+
checksum = "1ed8f0e23a62a3ce0fbb6527cdc056e9282ddd9916b068c46f8923e18eed5ee6"
|
|
1110
1054
|
dependencies = [
|
|
1111
1055
|
"libloading",
|
|
1112
1056
|
]
|
|
@@ -1144,15 +1088,6 @@ dependencies = [
|
|
|
1144
1088
|
"autocfg",
|
|
1145
1089
|
]
|
|
1146
1090
|
|
|
1147
|
-
[[package]]
|
|
1148
|
-
name = "object"
|
|
1149
|
-
version = "0.36.7"
|
|
1150
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
-
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
1152
|
-
dependencies = [
|
|
1153
|
-
"memchr",
|
|
1154
|
-
]
|
|
1155
|
-
|
|
1156
1091
|
[[package]]
|
|
1157
1092
|
name = "once_cell"
|
|
1158
1093
|
version = "1.21.3"
|
|
@@ -1357,9 +1292,9 @@ dependencies = [
|
|
|
1357
1292
|
|
|
1358
1293
|
[[package]]
|
|
1359
1294
|
name = "regex"
|
|
1360
|
-
version = "1.
|
|
1295
|
+
version = "1.12.2"
|
|
1361
1296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
-
checksum = "
|
|
1297
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1363
1298
|
dependencies = [
|
|
1364
1299
|
"aho-corasick",
|
|
1365
1300
|
"memchr",
|
|
@@ -1369,9 +1304,9 @@ dependencies = [
|
|
|
1369
1304
|
|
|
1370
1305
|
[[package]]
|
|
1371
1306
|
name = "regex-automata"
|
|
1372
|
-
version = "0.4.
|
|
1307
|
+
version = "0.4.12"
|
|
1373
1308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
|
-
checksum = "
|
|
1309
|
+
checksum = "722166aa0d7438abbaa4d5cc2c649dac844e8c56d82fb3d33e9c34b5cd268fc6"
|
|
1375
1310
|
dependencies = [
|
|
1376
1311
|
"aho-corasick",
|
|
1377
1312
|
"memchr",
|
|
@@ -1384,12 +1319,6 @@ version = "0.8.5"
|
|
|
1384
1319
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
1320
|
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
1386
1321
|
|
|
1387
|
-
[[package]]
|
|
1388
|
-
name = "rustc-demangle"
|
|
1389
|
-
version = "0.1.24"
|
|
1390
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1391
|
-
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
1392
|
-
|
|
1393
1322
|
[[package]]
|
|
1394
1323
|
name = "rustc-hash"
|
|
1395
1324
|
version = "2.1.1"
|
|
@@ -1406,7 +1335,7 @@ dependencies = [
|
|
|
1406
1335
|
"errno",
|
|
1407
1336
|
"libc",
|
|
1408
1337
|
"linux-raw-sys",
|
|
1409
|
-
"windows-sys 0.
|
|
1338
|
+
"windows-sys 0.52.0",
|
|
1410
1339
|
]
|
|
1411
1340
|
|
|
1412
1341
|
[[package]]
|
|
@@ -1654,7 +1583,7 @@ dependencies = [
|
|
|
1654
1583
|
"getrandom",
|
|
1655
1584
|
"once_cell",
|
|
1656
1585
|
"rustix",
|
|
1657
|
-
"windows-sys 0.
|
|
1586
|
+
"windows-sys 0.52.0",
|
|
1658
1587
|
]
|
|
1659
1588
|
|
|
1660
1589
|
[[package]]
|
|
@@ -1678,7 +1607,7 @@ dependencies = [
|
|
|
1678
1607
|
"lazy-regex",
|
|
1679
1608
|
"minimad",
|
|
1680
1609
|
"serde",
|
|
1681
|
-
"thiserror 2.0.
|
|
1610
|
+
"thiserror 2.0.17",
|
|
1682
1611
|
"unicode-width 0.1.14",
|
|
1683
1612
|
]
|
|
1684
1613
|
|
|
@@ -1711,11 +1640,11 @@ dependencies = [
|
|
|
1711
1640
|
|
|
1712
1641
|
[[package]]
|
|
1713
1642
|
name = "thiserror"
|
|
1714
|
-
version = "2.0.
|
|
1643
|
+
version = "2.0.17"
|
|
1715
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
-
checksum = "
|
|
1645
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
1717
1646
|
dependencies = [
|
|
1718
|
-
"thiserror-impl 2.0.
|
|
1647
|
+
"thiserror-impl 2.0.17",
|
|
1719
1648
|
]
|
|
1720
1649
|
|
|
1721
1650
|
[[package]]
|
|
@@ -1731,9 +1660,9 @@ dependencies = [
|
|
|
1731
1660
|
|
|
1732
1661
|
[[package]]
|
|
1733
1662
|
name = "thiserror-impl"
|
|
1734
|
-
version = "2.0.
|
|
1663
|
+
version = "2.0.17"
|
|
1735
1664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1736
|
-
checksum = "
|
|
1665
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
1737
1666
|
dependencies = [
|
|
1738
1667
|
"proc-macro2",
|
|
1739
1668
|
"quote",
|
|
@@ -1752,25 +1681,20 @@ dependencies = [
|
|
|
1752
1681
|
|
|
1753
1682
|
[[package]]
|
|
1754
1683
|
name = "tokio"
|
|
1755
|
-
version = "1.
|
|
1684
|
+
version = "1.48.0"
|
|
1756
1685
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
-
checksum = "
|
|
1686
|
+
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
1758
1687
|
dependencies = [
|
|
1759
|
-
"backtrace",
|
|
1760
1688
|
"bytes",
|
|
1761
|
-
"io-uring",
|
|
1762
|
-
"libc",
|
|
1763
|
-
"mio",
|
|
1764
1689
|
"pin-project-lite",
|
|
1765
|
-
"slab",
|
|
1766
1690
|
"tokio-macros",
|
|
1767
1691
|
]
|
|
1768
1692
|
|
|
1769
1693
|
[[package]]
|
|
1770
1694
|
name = "tokio-macros"
|
|
1771
|
-
version = "2.
|
|
1695
|
+
version = "2.6.0"
|
|
1772
1696
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
-
checksum = "
|
|
1697
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
1774
1698
|
dependencies = [
|
|
1775
1699
|
"proc-macro2",
|
|
1776
1700
|
"quote",
|
|
@@ -1803,18 +1727,18 @@ dependencies = [
|
|
|
1803
1727
|
|
|
1804
1728
|
[[package]]
|
|
1805
1729
|
name = "toml_datetime"
|
|
1806
|
-
version = "0.7.
|
|
1730
|
+
version = "0.7.3"
|
|
1807
1731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
-
checksum = "
|
|
1732
|
+
checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
|
|
1809
1733
|
dependencies = [
|
|
1810
1734
|
"serde_core",
|
|
1811
1735
|
]
|
|
1812
1736
|
|
|
1813
1737
|
[[package]]
|
|
1814
1738
|
name = "toml_edit"
|
|
1815
|
-
version = "0.23.
|
|
1739
|
+
version = "0.23.7"
|
|
1816
1740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
-
checksum = "
|
|
1741
|
+
checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d"
|
|
1818
1742
|
dependencies = [
|
|
1819
1743
|
"indexmap",
|
|
1820
1744
|
"toml_datetime",
|
|
@@ -1825,18 +1749,18 @@ dependencies = [
|
|
|
1825
1749
|
|
|
1826
1750
|
[[package]]
|
|
1827
1751
|
name = "toml_parser"
|
|
1828
|
-
version = "1.0.
|
|
1752
|
+
version = "1.0.4"
|
|
1829
1753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
-
checksum = "
|
|
1754
|
+
checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
|
|
1831
1755
|
dependencies = [
|
|
1832
1756
|
"winnow",
|
|
1833
1757
|
]
|
|
1834
1758
|
|
|
1835
1759
|
[[package]]
|
|
1836
1760
|
name = "toml_writer"
|
|
1837
|
-
version = "1.0.
|
|
1761
|
+
version = "1.0.4"
|
|
1838
1762
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1839
|
-
checksum = "
|
|
1763
|
+
checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
|
|
1840
1764
|
|
|
1841
1765
|
[[package]]
|
|
1842
1766
|
name = "tower"
|
|
@@ -2177,9 +2101,9 @@ dependencies = [
|
|
|
2177
2101
|
|
|
2178
2102
|
[[package]]
|
|
2179
2103
|
name = "tree-sitter-yaml"
|
|
2180
|
-
version = "0.7.
|
|
2104
|
+
version = "0.7.2"
|
|
2181
2105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2182
|
-
checksum = "
|
|
2106
|
+
checksum = "53c223db85f05e34794f065454843b0668ebc15d240ada63e2b5939f43ce7c97"
|
|
2183
2107
|
dependencies = [
|
|
2184
2108
|
"cc",
|
|
2185
2109
|
"tree-sitter-language",
|
|
@@ -2283,7 +2207,7 @@ version = "0.1.9"
|
|
|
2283
2207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2284
2208
|
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
2285
2209
|
dependencies = [
|
|
2286
|
-
"windows-sys 0.
|
|
2210
|
+
"windows-sys 0.52.0",
|
|
2287
2211
|
]
|
|
2288
2212
|
|
|
2289
2213
|
[[package]]
|
|
@@ -7,7 +7,7 @@ resolver = "2"
|
|
|
7
7
|
lto = true
|
|
8
8
|
|
|
9
9
|
[workspace.package]
|
|
10
|
-
version = "0.39.
|
|
10
|
+
version = "0.39.7"
|
|
11
11
|
authors = ["Herrington Darkholme <2883231+HerringtonDarkholme@users.noreply.github.com>"]
|
|
12
12
|
edition = "2021"
|
|
13
13
|
license = "MIT"
|
|
@@ -18,11 +18,11 @@ rust-version = "1.79"
|
|
|
18
18
|
readme = "README.md"
|
|
19
19
|
|
|
20
20
|
[workspace.dependencies]
|
|
21
|
-
ast-grep-core = { path = "crates/core", version = "0.39.
|
|
22
|
-
ast-grep-config = { path = "crates/config", version = "0.39.
|
|
23
|
-
ast-grep-dynamic = { path = "crates/dynamic", version = "0.39.
|
|
24
|
-
ast-grep-language = { path = "crates/language", version = "0.39.
|
|
25
|
-
ast-grep-lsp = { path = "crates/lsp", version = "0.39.
|
|
21
|
+
ast-grep-core = { path = "crates/core", version = "0.39.7", default-features = false }
|
|
22
|
+
ast-grep-config = { path = "crates/config", version = "0.39.7" }
|
|
23
|
+
ast-grep-dynamic = { path = "crates/dynamic", version = "0.39.7" }
|
|
24
|
+
ast-grep-language = { path = "crates/language", version = "0.39.7" }
|
|
25
|
+
ast-grep-lsp = { path = "crates/lsp", version = "0.39.7" }
|
|
26
26
|
|
|
27
27
|
bit-set = { version = "0.8.0" }
|
|
28
28
|
ignore = { version = "0.4.22" }
|
|
@@ -5,7 +5,7 @@ build-backend = "maturin"
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ast-grep-py"
|
|
7
7
|
requires-python = ">=3.8"
|
|
8
|
-
version = "0.39.
|
|
8
|
+
version = "0.39.7"
|
|
9
9
|
description = "Structural Search and Rewrite code at large scale using precise AST pattern."
|
|
10
10
|
authors = [{ name = "Herrington Darkholme", email = "2883231+HerringtonDarkholme@users.noreply.github.com" }]
|
|
11
11
|
maintainers = [{ name = "Herrington Darkholme", email = "2883231+HerringtonDarkholme@users.noreply.github.com" }]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|