ast-grep-py 0.38.6__tar.gz → 0.38.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.

Files changed (93) hide show
  1. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/Cargo.lock +8 -8
  2. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/Cargo.toml +6 -6
  3. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/PKG-INFO +1 -1
  4. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/pyproject.toml +1 -1
  5. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/README.md +0 -0
  6. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/ast_grep_py/__init__.py +0 -0
  7. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/ast_grep_py/ast_grep_py.pyi +0 -0
  8. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/ast_grep_py/py.typed +0 -0
  9. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/Cargo.toml +0 -0
  10. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/check_var.rs +0 -0
  11. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/combined.rs +0 -0
  12. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/fixer.rs +0 -0
  13. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/label.rs +0 -0
  14. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/lib.rs +0 -0
  15. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/maybe.rs +0 -0
  16. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/rule/deserialize_env.rs +0 -0
  17. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/rule/mod.rs +0 -0
  18. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/rule/nth_child.rs +0 -0
  19. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/rule/range.rs +0 -0
  20. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/rule/referent_rule.rs +0 -0
  21. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/rule/relational_rule.rs +0 -0
  22. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/rule/stop_by.rs +0 -0
  23. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/rule_collection.rs +0 -0
  24. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/rule_config.rs +0 -0
  25. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/rule_core.rs +0 -0
  26. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/transform/mod.rs +0 -0
  27. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/transform/parse.rs +0 -0
  28. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/transform/rewrite.rs +0 -0
  29. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/transform/string_case.rs +0 -0
  30. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/config/src/transform/trans.rs +0 -0
  31. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/Cargo.toml +0 -0
  32. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/language.rs +0 -0
  33. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/lib.rs +0 -0
  34. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/match_tree/match_node.rs +0 -0
  35. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/match_tree/mod.rs +0 -0
  36. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/match_tree/strictness.rs +0 -0
  37. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/matcher/kind.rs +0 -0
  38. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/matcher/node_match.rs +0 -0
  39. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/matcher/pattern.rs +0 -0
  40. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/matcher/text.rs +0 -0
  41. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/matcher.rs +0 -0
  42. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/meta_var.rs +0 -0
  43. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/node.rs +0 -0
  44. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/ops.rs +0 -0
  45. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/pinned.rs +0 -0
  46. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/replacer/indent.rs +0 -0
  47. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/replacer/structural.rs +0 -0
  48. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/replacer/template.rs +0 -0
  49. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/replacer.rs +0 -0
  50. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/source.rs +0 -0
  51. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/tree_sitter/mod.rs +0 -0
  52. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/core/src/tree_sitter/traversal.rs +0 -0
  53. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/dynamic/Cargo.toml +0 -0
  54. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/dynamic/src/custom_lang.rs +0 -0
  55. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/dynamic/src/lib.rs +0 -0
  56. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/Cargo.toml +0 -0
  57. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/bash.rs +0 -0
  58. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/cpp.rs +0 -0
  59. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/csharp.rs +0 -0
  60. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/css.rs +0 -0
  61. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/elixir.rs +0 -0
  62. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/go.rs +0 -0
  63. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/haskell.rs +0 -0
  64. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/html.rs +0 -0
  65. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/json.rs +0 -0
  66. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/kotlin.rs +0 -0
  67. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/lib.rs +0 -0
  68. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/lua.rs +0 -0
  69. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/parsers.rs +0 -0
  70. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/php.rs +0 -0
  71. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/python.rs +0 -0
  72. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/ruby.rs +0 -0
  73. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/rust.rs +0 -0
  74. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/scala.rs +0 -0
  75. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/swift.rs +0 -0
  76. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/language/src/yaml.rs +0 -0
  77. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/Cargo.toml +0 -0
  78. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/README.md +0 -0
  79. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/ast_grep_py/__init__.py +0 -0
  80. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/ast_grep_py/ast_grep_py.pyi +0 -0
  81. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/ast_grep_py/py.typed +0 -0
  82. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/src/lib.rs +0 -0
  83. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/src/py_lang.rs +0 -0
  84. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/src/py_node.rs +0 -0
  85. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/src/range.rs +0 -0
  86. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/src/unicode_position.rs +0 -0
  87. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/tests/test_fix.py +0 -0
  88. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/tests/test_range.py +0 -0
  89. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/tests/test_register_lang.py +0 -0
  90. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/tests/test_rule.py +0 -0
  91. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/tests/test_simple.py +0 -0
  92. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/tests/test_traversal.py +0 -0
  93. {ast_grep_py-0.38.6 → ast_grep_py-0.38.7}/crates/pyo3/tests/test_wrong_usage.py +0 -0
@@ -109,7 +109,7 @@ dependencies = [
109
109
 
110
110
  [[package]]
111
111
  name = "ast-grep"
112
- version = "0.38.6"
112
+ version = "0.38.7"
113
113
  dependencies = [
114
114
  "ansi_term",
115
115
  "anyhow",
@@ -143,7 +143,7 @@ dependencies = [
143
143
 
144
144
  [[package]]
145
145
  name = "ast-grep-config"
146
- version = "0.38.6"
146
+ version = "0.38.7"
147
147
  dependencies = [
148
148
  "ast-grep-core",
149
149
  "bit-set",
@@ -158,7 +158,7 @@ dependencies = [
158
158
 
159
159
  [[package]]
160
160
  name = "ast-grep-core"
161
- version = "0.38.6"
161
+ version = "0.38.7"
162
162
  dependencies = [
163
163
  "bit-set",
164
164
  "regex",
@@ -169,7 +169,7 @@ dependencies = [
169
169
 
170
170
  [[package]]
171
171
  name = "ast-grep-dynamic"
172
- version = "0.38.6"
172
+ version = "0.38.7"
173
173
  dependencies = [
174
174
  "ast-grep-core",
175
175
  "ignore",
@@ -183,7 +183,7 @@ dependencies = [
183
183
 
184
184
  [[package]]
185
185
  name = "ast-grep-language"
186
- version = "0.38.6"
186
+ version = "0.38.7"
187
187
  dependencies = [
188
188
  "ast-grep-core",
189
189
  "ignore",
@@ -215,7 +215,7 @@ dependencies = [
215
215
 
216
216
  [[package]]
217
217
  name = "ast-grep-lsp"
218
- version = "0.38.6"
218
+ version = "0.38.7"
219
219
  dependencies = [
220
220
  "ast-grep-config",
221
221
  "ast-grep-core",
@@ -229,7 +229,7 @@ dependencies = [
229
229
 
230
230
  [[package]]
231
231
  name = "ast-grep-napi"
232
- version = "0.38.6"
232
+ version = "0.38.7"
233
233
  dependencies = [
234
234
  "ast-grep-config",
235
235
  "ast-grep-core",
@@ -245,7 +245,7 @@ dependencies = [
245
245
 
246
246
  [[package]]
247
247
  name = "ast-grep-py"
248
- version = "0.38.6"
248
+ version = "0.38.7"
249
249
  dependencies = [
250
250
  "anyhow",
251
251
  "ast-grep-config",
@@ -7,7 +7,7 @@ resolver = "2"
7
7
  lto = true
8
8
 
9
9
  [workspace.package]
10
- version = "0.38.6"
10
+ version = "0.38.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.70"
18
18
  readme = "README.md"
19
19
 
20
20
  [workspace.dependencies]
21
- ast-grep-core = { path = "crates/core", version = "0.38.6", default-features = false }
22
- ast-grep-config = { path = "crates/config", version = "0.38.6" }
23
- ast-grep-dynamic = { path = "crates/dynamic", version = "0.38.6" }
24
- ast-grep-language = { path = "crates/language", version = "0.38.6" }
25
- ast-grep-lsp = { path = "crates/lsp", version = "0.38.6" }
21
+ ast-grep-core = { path = "crates/core", version = "0.38.7", default-features = false }
22
+ ast-grep-config = { path = "crates/config", version = "0.38.7" }
23
+ ast-grep-dynamic = { path = "crates/dynamic", version = "0.38.7" }
24
+ ast-grep-language = { path = "crates/language", version = "0.38.7" }
25
+ ast-grep-lsp = { path = "crates/lsp", version = "0.38.7" }
26
26
 
27
27
  bit-set = { version = "0.8.0" }
28
28
  ignore = { version = "0.4.22" }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ast-grep-py
3
- Version: 0.38.6
3
+ Version: 0.38.7
4
4
  Classifier: Development Status :: 3 - Alpha
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -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.38.6"
8
+ version = "0.38.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