ast-grep-cli 0.40.4__tar.gz → 0.41.0__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.
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/Cargo.lock +298 -122
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/Cargo.toml +6 -7
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/PKG-INFO +3 -3
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/config.rs +29 -2
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/lang/injection.rs +49 -26
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/lang/lang_globs.rs +12 -15
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/lang/mod.rs +10 -9
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/lib.rs +3 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/scan.rs +55 -4
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/utils/debug_query.rs +120 -65
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/utils/error_context.rs +19 -6
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/utils/mod.rs +6 -9
- ast_grep_cli-0.41.0/crates/cli/src/utils/worker.rs +323 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/tests/scan_test.rs +257 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/rule/range.rs +116 -15
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/rule_collection.rs +105 -5
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/rule_config.rs +131 -2
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/matcher/pattern.rs +89 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/matcher.rs +1 -1
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/tree_sitter/mod.rs +10 -12
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/dynamic/src/custom_lang.rs +1 -1
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/dynamic/src/lib.rs +13 -17
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/html.rs +20 -22
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/lib.rs +2 -3
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/pyproject.toml +1 -1
- ast_grep_cli-0.40.4/crates/cli/src/utils/worker.rs +0 -147
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/LICENSE +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/README.md +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/Cargo.toml +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/README.md +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/bin/alias.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/completions.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/lsp.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/main.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/new.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/print/cloud_print.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/print/colored_print/markdown.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/print/colored_print/match_merger.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/print/colored_print/styles.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/print/colored_print/test.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/print/colored_print.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/print/file_name_printer.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/print/interactive_print.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/print/json_print.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/print/mod.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/run.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/utils/args.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/utils/inspect.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/utils/print_diff.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/utils/rule_overwrite.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/verify/case_result.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/verify/find_file.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/verify/reporter.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/verify/snapshot.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/verify/test_case.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/src/verify.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/tests/common/mod.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/tests/help_test.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/tests/run_test.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/cli/tests/verify_test.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/Cargo.toml +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/check_var.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/combined.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/fixer.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/label.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/lib.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/maybe.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/rule/deserialize_env.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/rule/mod.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/rule/nth_child.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/rule/referent_rule.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/rule/relational_rule.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/rule/selector.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/rule/stop_by.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/rule_core.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/transform/mod.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/transform/parse.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/transform/rewrite.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/transform/string_case.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/config/src/transform/trans.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/Cargo.toml +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/language.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/lib.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/match_tree/match_node.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/match_tree/mod.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/match_tree/strictness.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/matcher/kind.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/matcher/node_match.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/matcher/text.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/meta_var.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/node.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/ops.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/pinned.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/replacer/indent.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/replacer/structural.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/replacer/template.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/replacer.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/source.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/core/src/tree_sitter/traversal.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/dynamic/Cargo.toml +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/Cargo.toml +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/bash.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/cpp.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/csharp.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/css.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/elixir.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/go.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/haskell.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/hcl.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/json.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/kotlin.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/lua.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/nix.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/parsers.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/php.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/python.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/ruby.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/rust.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/scala.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/solidity.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/swift.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/language/src/yaml.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/lsp/Cargo.toml +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/lsp/src/lib.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/lsp/src/utils.rs +0 -0
- {ast_grep_cli-0.40.4 → ast_grep_cli-0.41.0}/crates/lsp/tests/basic.rs +0 -0
|
@@ -82,15 +82,15 @@ dependencies = [
|
|
|
82
82
|
|
|
83
83
|
[[package]]
|
|
84
84
|
name = "anyhow"
|
|
85
|
-
version = "1.0.
|
|
85
|
+
version = "1.0.102"
|
|
86
86
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
-
checksum = "
|
|
87
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
88
88
|
|
|
89
89
|
[[package]]
|
|
90
90
|
name = "assert_cmd"
|
|
91
|
-
version = "2.1.
|
|
91
|
+
version = "2.1.2"
|
|
92
92
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
-
checksum = "
|
|
93
|
+
checksum = "9c5bcfa8749ac45dd12cb11055aeeb6b27a3895560d60d71e3c23bf979e60514"
|
|
94
94
|
dependencies = [
|
|
95
95
|
"anstyle",
|
|
96
96
|
"bstr",
|
|
@@ -103,7 +103,7 @@ dependencies = [
|
|
|
103
103
|
|
|
104
104
|
[[package]]
|
|
105
105
|
name = "ast-grep"
|
|
106
|
-
version = "0.
|
|
106
|
+
version = "0.41.0"
|
|
107
107
|
dependencies = [
|
|
108
108
|
"ansi_term",
|
|
109
109
|
"anyhow",
|
|
@@ -138,7 +138,7 @@ dependencies = [
|
|
|
138
138
|
|
|
139
139
|
[[package]]
|
|
140
140
|
name = "ast-grep-config"
|
|
141
|
-
version = "0.
|
|
141
|
+
version = "0.41.0"
|
|
142
142
|
dependencies = [
|
|
143
143
|
"ast-grep-core",
|
|
144
144
|
"bit-set",
|
|
@@ -147,24 +147,24 @@ dependencies = [
|
|
|
147
147
|
"schemars",
|
|
148
148
|
"serde",
|
|
149
149
|
"serde_yaml",
|
|
150
|
-
"thiserror 2.0.
|
|
150
|
+
"thiserror 2.0.18",
|
|
151
151
|
"tree-sitter-typescript",
|
|
152
152
|
]
|
|
153
153
|
|
|
154
154
|
[[package]]
|
|
155
155
|
name = "ast-grep-core"
|
|
156
|
-
version = "0.
|
|
156
|
+
version = "0.41.0"
|
|
157
157
|
dependencies = [
|
|
158
158
|
"bit-set",
|
|
159
159
|
"regex",
|
|
160
|
-
"thiserror 2.0.
|
|
160
|
+
"thiserror 2.0.18",
|
|
161
161
|
"tree-sitter",
|
|
162
162
|
"tree-sitter-typescript",
|
|
163
163
|
]
|
|
164
164
|
|
|
165
165
|
[[package]]
|
|
166
166
|
name = "ast-grep-dynamic"
|
|
167
|
-
version = "0.
|
|
167
|
+
version = "0.41.0"
|
|
168
168
|
dependencies = [
|
|
169
169
|
"ast-grep-core",
|
|
170
170
|
"ignore",
|
|
@@ -172,13 +172,13 @@ dependencies = [
|
|
|
172
172
|
"serde",
|
|
173
173
|
"serde_yaml",
|
|
174
174
|
"target-triple",
|
|
175
|
-
"thiserror 2.0.
|
|
175
|
+
"thiserror 2.0.18",
|
|
176
176
|
"tree-sitter",
|
|
177
177
|
]
|
|
178
178
|
|
|
179
179
|
[[package]]
|
|
180
180
|
name = "ast-grep-language"
|
|
181
|
-
version = "0.
|
|
181
|
+
version = "0.41.0"
|
|
182
182
|
dependencies = [
|
|
183
183
|
"ast-grep-core",
|
|
184
184
|
"ignore",
|
|
@@ -213,7 +213,7 @@ dependencies = [
|
|
|
213
213
|
|
|
214
214
|
[[package]]
|
|
215
215
|
name = "ast-grep-lsp"
|
|
216
|
-
version = "0.
|
|
216
|
+
version = "0.41.0"
|
|
217
217
|
dependencies = [
|
|
218
218
|
"anyhow",
|
|
219
219
|
"ast-grep-config",
|
|
@@ -231,7 +231,7 @@ dependencies = [
|
|
|
231
231
|
|
|
232
232
|
[[package]]
|
|
233
233
|
name = "ast-grep-napi"
|
|
234
|
-
version = "0.
|
|
234
|
+
version = "0.41.0"
|
|
235
235
|
dependencies = [
|
|
236
236
|
"ast-grep-config",
|
|
237
237
|
"ast-grep-core",
|
|
@@ -247,7 +247,7 @@ dependencies = [
|
|
|
247
247
|
|
|
248
248
|
[[package]]
|
|
249
249
|
name = "ast-grep-py"
|
|
250
|
-
version = "0.
|
|
250
|
+
version = "0.41.0"
|
|
251
251
|
dependencies = [
|
|
252
252
|
"anyhow",
|
|
253
253
|
"ast-grep-config",
|
|
@@ -259,6 +259,17 @@ dependencies = [
|
|
|
259
259
|
"serde",
|
|
260
260
|
]
|
|
261
261
|
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "async-trait"
|
|
264
|
+
version = "0.1.89"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"proc-macro2",
|
|
269
|
+
"quote",
|
|
270
|
+
"syn 2.0.110",
|
|
271
|
+
]
|
|
272
|
+
|
|
262
273
|
[[package]]
|
|
263
274
|
name = "atty"
|
|
264
275
|
version = "0.2.14"
|
|
@@ -314,12 +325,24 @@ dependencies = [
|
|
|
314
325
|
"serde",
|
|
315
326
|
]
|
|
316
327
|
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "bumpalo"
|
|
330
|
+
version = "3.19.1"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
333
|
+
|
|
317
334
|
[[package]]
|
|
318
335
|
name = "bytes"
|
|
319
336
|
version = "1.10.1"
|
|
320
337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
338
|
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
322
339
|
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "cast"
|
|
342
|
+
version = "0.3.0"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
345
|
+
|
|
323
346
|
[[package]]
|
|
324
347
|
name = "cc"
|
|
325
348
|
version = "1.2.49"
|
|
@@ -344,9 +367,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
344
367
|
|
|
345
368
|
[[package]]
|
|
346
369
|
name = "clap"
|
|
347
|
-
version = "4.5.
|
|
370
|
+
version = "4.5.60"
|
|
348
371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
-
checksum = "
|
|
372
|
+
checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
|
|
350
373
|
dependencies = [
|
|
351
374
|
"clap_builder",
|
|
352
375
|
"clap_derive",
|
|
@@ -354,9 +377,9 @@ dependencies = [
|
|
|
354
377
|
|
|
355
378
|
[[package]]
|
|
356
379
|
name = "clap_builder"
|
|
357
|
-
version = "4.5.
|
|
380
|
+
version = "4.5.60"
|
|
358
381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
-
checksum = "
|
|
382
|
+
checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
|
|
360
383
|
dependencies = [
|
|
361
384
|
"anstream",
|
|
362
385
|
"anstyle",
|
|
@@ -366,18 +389,18 @@ dependencies = [
|
|
|
366
389
|
|
|
367
390
|
[[package]]
|
|
368
391
|
name = "clap_complete"
|
|
369
|
-
version = "4.5.
|
|
392
|
+
version = "4.5.66"
|
|
370
393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
-
checksum = "
|
|
394
|
+
checksum = "c757a3b7e39161a4e56f9365141ada2a6c915a8622c408ab6bb4b5d047371031"
|
|
372
395
|
dependencies = [
|
|
373
396
|
"clap",
|
|
374
397
|
]
|
|
375
398
|
|
|
376
399
|
[[package]]
|
|
377
400
|
name = "clap_derive"
|
|
378
|
-
version = "4.5.
|
|
401
|
+
version = "4.5.55"
|
|
379
402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
-
checksum = "
|
|
403
|
+
checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
|
|
381
404
|
dependencies = [
|
|
382
405
|
"heck",
|
|
383
406
|
"proc-macro2",
|
|
@@ -387,9 +410,9 @@ dependencies = [
|
|
|
387
410
|
|
|
388
411
|
[[package]]
|
|
389
412
|
name = "clap_lex"
|
|
390
|
-
version = "0.
|
|
413
|
+
version = "1.0.0"
|
|
391
414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
-
checksum = "
|
|
415
|
+
checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
|
|
393
416
|
|
|
394
417
|
[[package]]
|
|
395
418
|
name = "codespan-reporting"
|
|
@@ -419,9 +442,9 @@ dependencies = [
|
|
|
419
442
|
|
|
420
443
|
[[package]]
|
|
421
444
|
name = "convert_case"
|
|
422
|
-
version = "0.
|
|
445
|
+
version = "0.11.0"
|
|
423
446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
-
checksum = "
|
|
447
|
+
checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49"
|
|
425
448
|
dependencies = [
|
|
426
449
|
"unicode-segmentation",
|
|
427
450
|
]
|
|
@@ -686,9 +709,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
686
709
|
|
|
687
710
|
[[package]]
|
|
688
711
|
name = "futures"
|
|
689
|
-
version = "0.3.
|
|
712
|
+
version = "0.3.32"
|
|
690
713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
-
checksum = "
|
|
714
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
692
715
|
dependencies = [
|
|
693
716
|
"futures-channel",
|
|
694
717
|
"futures-core",
|
|
@@ -701,9 +724,9 @@ dependencies = [
|
|
|
701
724
|
|
|
702
725
|
[[package]]
|
|
703
726
|
name = "futures-channel"
|
|
704
|
-
version = "0.3.
|
|
727
|
+
version = "0.3.32"
|
|
705
728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
-
checksum = "
|
|
729
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
707
730
|
dependencies = [
|
|
708
731
|
"futures-core",
|
|
709
732
|
"futures-sink",
|
|
@@ -711,15 +734,15 @@ dependencies = [
|
|
|
711
734
|
|
|
712
735
|
[[package]]
|
|
713
736
|
name = "futures-core"
|
|
714
|
-
version = "0.3.
|
|
737
|
+
version = "0.3.32"
|
|
715
738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
-
checksum = "
|
|
739
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
717
740
|
|
|
718
741
|
[[package]]
|
|
719
742
|
name = "futures-executor"
|
|
720
|
-
version = "0.3.
|
|
743
|
+
version = "0.3.32"
|
|
721
744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
-
checksum = "
|
|
745
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
723
746
|
dependencies = [
|
|
724
747
|
"futures-core",
|
|
725
748
|
"futures-task",
|
|
@@ -728,15 +751,15 @@ dependencies = [
|
|
|
728
751
|
|
|
729
752
|
[[package]]
|
|
730
753
|
name = "futures-io"
|
|
731
|
-
version = "0.3.
|
|
754
|
+
version = "0.3.32"
|
|
732
755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
-
checksum = "
|
|
756
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
734
757
|
|
|
735
758
|
[[package]]
|
|
736
759
|
name = "futures-macro"
|
|
737
|
-
version = "0.3.
|
|
760
|
+
version = "0.3.32"
|
|
738
761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
-
checksum = "
|
|
762
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
740
763
|
dependencies = [
|
|
741
764
|
"proc-macro2",
|
|
742
765
|
"quote",
|
|
@@ -745,21 +768,21 @@ dependencies = [
|
|
|
745
768
|
|
|
746
769
|
[[package]]
|
|
747
770
|
name = "futures-sink"
|
|
748
|
-
version = "0.3.
|
|
771
|
+
version = "0.3.32"
|
|
749
772
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
-
checksum = "
|
|
773
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
751
774
|
|
|
752
775
|
[[package]]
|
|
753
776
|
name = "futures-task"
|
|
754
|
-
version = "0.3.
|
|
777
|
+
version = "0.3.32"
|
|
755
778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
-
checksum = "
|
|
779
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
757
780
|
|
|
758
781
|
[[package]]
|
|
759
782
|
name = "futures-util"
|
|
760
|
-
version = "0.3.
|
|
783
|
+
version = "0.3.32"
|
|
761
784
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
-
checksum = "
|
|
785
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
763
786
|
dependencies = [
|
|
764
787
|
"futures-channel",
|
|
765
788
|
"futures-core",
|
|
@@ -769,7 +792,6 @@ dependencies = [
|
|
|
769
792
|
"futures-task",
|
|
770
793
|
"memchr",
|
|
771
794
|
"pin-project-lite",
|
|
772
|
-
"pin-utils",
|
|
773
795
|
"slab",
|
|
774
796
|
]
|
|
775
797
|
|
|
@@ -866,17 +888,11 @@ dependencies = [
|
|
|
866
888
|
"hashbrown 0.15.2",
|
|
867
889
|
]
|
|
868
890
|
|
|
869
|
-
[[package]]
|
|
870
|
-
name = "indoc"
|
|
871
|
-
version = "2.0.6"
|
|
872
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
-
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
874
|
-
|
|
875
891
|
[[package]]
|
|
876
892
|
name = "inquire"
|
|
877
|
-
version = "0.9.
|
|
893
|
+
version = "0.9.3"
|
|
878
894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
879
|
-
checksum = "
|
|
895
|
+
checksum = "979f5ab9760427ada4fa5762b2d905e5b12704fb1fada07b6bfa66aeaa586f87"
|
|
880
896
|
dependencies = [
|
|
881
897
|
"bitflags",
|
|
882
898
|
"crossterm",
|
|
@@ -898,6 +914,16 @@ version = "1.0.15"
|
|
|
898
914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
915
|
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
900
916
|
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "js-sys"
|
|
919
|
+
version = "0.3.88"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "c7e709f3e3d22866f9c25b3aff01af289b18422cc8b4262fb19103ee80fe513d"
|
|
922
|
+
dependencies = [
|
|
923
|
+
"once_cell",
|
|
924
|
+
"wasm-bindgen",
|
|
925
|
+
]
|
|
926
|
+
|
|
901
927
|
[[package]]
|
|
902
928
|
name = "lazy-regex"
|
|
903
929
|
version = "3.4.1"
|
|
@@ -943,6 +969,12 @@ dependencies = [
|
|
|
943
969
|
"windows-link",
|
|
944
970
|
]
|
|
945
971
|
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "libm"
|
|
974
|
+
version = "0.2.16"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
977
|
+
|
|
946
978
|
[[package]]
|
|
947
979
|
name = "linux-raw-sys"
|
|
948
980
|
version = "0.11.0"
|
|
@@ -991,12 +1023,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
991
1023
|
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
992
1024
|
|
|
993
1025
|
[[package]]
|
|
994
|
-
name = "
|
|
995
|
-
version = "0.
|
|
1026
|
+
name = "minicov"
|
|
1027
|
+
version = "0.3.8"
|
|
996
1028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
-
checksum = "
|
|
1029
|
+
checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
|
|
998
1030
|
dependencies = [
|
|
999
|
-
"
|
|
1031
|
+
"cc",
|
|
1032
|
+
"walkdir",
|
|
1000
1033
|
]
|
|
1001
1034
|
|
|
1002
1035
|
[[package]]
|
|
@@ -1022,9 +1055,9 @@ dependencies = [
|
|
|
1022
1055
|
|
|
1023
1056
|
[[package]]
|
|
1024
1057
|
name = "napi"
|
|
1025
|
-
version = "3.8.
|
|
1058
|
+
version = "3.8.3"
|
|
1026
1059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
-
checksum = "
|
|
1060
|
+
checksum = "e6944d0bf100571cd6e1a98a316cdca262deb6fccf8d93f5ae1502ca3fc88bd3"
|
|
1028
1061
|
dependencies = [
|
|
1029
1062
|
"anyhow",
|
|
1030
1063
|
"bitflags",
|
|
@@ -1046,11 +1079,11 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
|
|
|
1046
1079
|
|
|
1047
1080
|
[[package]]
|
|
1048
1081
|
name = "napi-derive"
|
|
1049
|
-
version = "3.5.
|
|
1082
|
+
version = "3.5.2"
|
|
1050
1083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
-
checksum = "
|
|
1084
|
+
checksum = "2c914b5e420182bfb73504e0607592cdb8e2e21437d450883077669fb72a114d"
|
|
1052
1085
|
dependencies = [
|
|
1053
|
-
"convert_case 0.
|
|
1086
|
+
"convert_case 0.11.0",
|
|
1054
1087
|
"ctor",
|
|
1055
1088
|
"napi-derive-backend",
|
|
1056
1089
|
"proc-macro2",
|
|
@@ -1060,11 +1093,11 @@ dependencies = [
|
|
|
1060
1093
|
|
|
1061
1094
|
[[package]]
|
|
1062
1095
|
name = "napi-derive-backend"
|
|
1063
|
-
version = "5.0.
|
|
1096
|
+
version = "5.0.2"
|
|
1064
1097
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
-
checksum = "
|
|
1098
|
+
checksum = "f0864cf6a82e2cfb69067374b64c9253d7e910e5b34db833ed7495dda56ccb18"
|
|
1066
1099
|
dependencies = [
|
|
1067
|
-
"convert_case 0.
|
|
1100
|
+
"convert_case 0.11.0",
|
|
1068
1101
|
"proc-macro2",
|
|
1069
1102
|
"quote",
|
|
1070
1103
|
"semver",
|
|
@@ -1104,6 +1137,15 @@ version = "0.3.0"
|
|
|
1104
1137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
1138
|
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
1106
1139
|
|
|
1140
|
+
[[package]]
|
|
1141
|
+
name = "nu-ansi-term"
|
|
1142
|
+
version = "0.50.3"
|
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1144
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1145
|
+
dependencies = [
|
|
1146
|
+
"windows-sys 0.59.0",
|
|
1147
|
+
]
|
|
1148
|
+
|
|
1107
1149
|
[[package]]
|
|
1108
1150
|
name = "num-traits"
|
|
1109
1151
|
version = "0.2.19"
|
|
@@ -1111,6 +1153,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1111
1153
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1112
1154
|
dependencies = [
|
|
1113
1155
|
"autocfg",
|
|
1156
|
+
"libm",
|
|
1114
1157
|
]
|
|
1115
1158
|
|
|
1116
1159
|
[[package]]
|
|
@@ -1119,6 +1162,12 @@ version = "1.21.3"
|
|
|
1119
1162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
1163
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1121
1164
|
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "oorandom"
|
|
1167
|
+
version = "11.1.5"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1170
|
+
|
|
1122
1171
|
[[package]]
|
|
1123
1172
|
name = "parking_lot"
|
|
1124
1173
|
version = "0.12.3"
|
|
@@ -1154,12 +1203,6 @@ version = "0.2.16"
|
|
|
1154
1203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
1204
|
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1156
1205
|
|
|
1157
|
-
[[package]]
|
|
1158
|
-
name = "pin-utils"
|
|
1159
|
-
version = "0.1.0"
|
|
1160
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1162
|
-
|
|
1163
1206
|
[[package]]
|
|
1164
1207
|
name = "portable-atomic"
|
|
1165
1208
|
version = "1.11.0"
|
|
@@ -1168,9 +1211,9 @@ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
|
|
1168
1211
|
|
|
1169
1212
|
[[package]]
|
|
1170
1213
|
name = "predicates"
|
|
1171
|
-
version = "3.1.
|
|
1214
|
+
version = "3.1.4"
|
|
1172
1215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
-
checksum = "
|
|
1216
|
+
checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
|
|
1174
1217
|
dependencies = [
|
|
1175
1218
|
"anstyle",
|
|
1176
1219
|
"difflib",
|
|
@@ -1217,36 +1260,33 @@ dependencies = [
|
|
|
1217
1260
|
|
|
1218
1261
|
[[package]]
|
|
1219
1262
|
name = "pyo3"
|
|
1220
|
-
version = "0.
|
|
1263
|
+
version = "0.28.2"
|
|
1221
1264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
-
checksum = "
|
|
1265
|
+
checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
|
|
1223
1266
|
dependencies = [
|
|
1224
1267
|
"anyhow",
|
|
1225
|
-
"indoc",
|
|
1226
1268
|
"libc",
|
|
1227
|
-
"memoffset",
|
|
1228
1269
|
"once_cell",
|
|
1229
1270
|
"portable-atomic",
|
|
1230
1271
|
"pyo3-build-config",
|
|
1231
1272
|
"pyo3-ffi",
|
|
1232
1273
|
"pyo3-macros",
|
|
1233
|
-
"unindent",
|
|
1234
1274
|
]
|
|
1235
1275
|
|
|
1236
1276
|
[[package]]
|
|
1237
1277
|
name = "pyo3-build-config"
|
|
1238
|
-
version = "0.
|
|
1278
|
+
version = "0.28.2"
|
|
1239
1279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
-
checksum = "
|
|
1280
|
+
checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
|
|
1241
1281
|
dependencies = [
|
|
1242
1282
|
"target-lexicon",
|
|
1243
1283
|
]
|
|
1244
1284
|
|
|
1245
1285
|
[[package]]
|
|
1246
1286
|
name = "pyo3-ffi"
|
|
1247
|
-
version = "0.
|
|
1287
|
+
version = "0.28.2"
|
|
1248
1288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
-
checksum = "
|
|
1289
|
+
checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
|
|
1250
1290
|
dependencies = [
|
|
1251
1291
|
"libc",
|
|
1252
1292
|
"pyo3-build-config",
|
|
@@ -1254,9 +1294,9 @@ dependencies = [
|
|
|
1254
1294
|
|
|
1255
1295
|
[[package]]
|
|
1256
1296
|
name = "pyo3-macros"
|
|
1257
|
-
version = "0.
|
|
1297
|
+
version = "0.28.2"
|
|
1258
1298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
-
checksum = "
|
|
1299
|
+
checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
|
|
1260
1300
|
dependencies = [
|
|
1261
1301
|
"proc-macro2",
|
|
1262
1302
|
"pyo3-macros-backend",
|
|
@@ -1266,9 +1306,9 @@ dependencies = [
|
|
|
1266
1306
|
|
|
1267
1307
|
[[package]]
|
|
1268
1308
|
name = "pyo3-macros-backend"
|
|
1269
|
-
version = "0.
|
|
1309
|
+
version = "0.28.2"
|
|
1270
1310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
-
checksum = "
|
|
1311
|
+
checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
|
|
1272
1312
|
dependencies = [
|
|
1273
1313
|
"heck",
|
|
1274
1314
|
"proc-macro2",
|
|
@@ -1279,9 +1319,9 @@ dependencies = [
|
|
|
1279
1319
|
|
|
1280
1320
|
[[package]]
|
|
1281
1321
|
name = "pythonize"
|
|
1282
|
-
version = "0.
|
|
1322
|
+
version = "0.28.0"
|
|
1283
1323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
-
checksum = "
|
|
1324
|
+
checksum = "0b79f670c9626c8b651c0581011b57b6ba6970bb69faf01a7c4c0cfc81c43f95"
|
|
1285
1325
|
dependencies = [
|
|
1286
1326
|
"pyo3",
|
|
1287
1327
|
"serde",
|
|
@@ -1333,9 +1373,9 @@ dependencies = [
|
|
|
1333
1373
|
|
|
1334
1374
|
[[package]]
|
|
1335
1375
|
name = "regex"
|
|
1336
|
-
version = "1.12.
|
|
1376
|
+
version = "1.12.3"
|
|
1337
1377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
-
checksum = "
|
|
1378
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1339
1379
|
dependencies = [
|
|
1340
1380
|
"aho-corasick",
|
|
1341
1381
|
"memchr",
|
|
@@ -1379,6 +1419,12 @@ dependencies = [
|
|
|
1379
1419
|
"windows-sys 0.59.0",
|
|
1380
1420
|
]
|
|
1381
1421
|
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "rustversion"
|
|
1424
|
+
version = "1.0.22"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1427
|
+
|
|
1382
1428
|
[[package]]
|
|
1383
1429
|
name = "ryu"
|
|
1384
1430
|
version = "1.0.20"
|
|
@@ -1423,9 +1469,9 @@ dependencies = [
|
|
|
1423
1469
|
|
|
1424
1470
|
[[package]]
|
|
1425
1471
|
name = "schemars"
|
|
1426
|
-
version = "1.2.
|
|
1472
|
+
version = "1.2.1"
|
|
1427
1473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1428
|
-
checksum = "
|
|
1474
|
+
checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
|
|
1429
1475
|
dependencies = [
|
|
1430
1476
|
"dyn-clone",
|
|
1431
1477
|
"ref-cast",
|
|
@@ -1436,9 +1482,9 @@ dependencies = [
|
|
|
1436
1482
|
|
|
1437
1483
|
[[package]]
|
|
1438
1484
|
name = "schemars_derive"
|
|
1439
|
-
version = "1.2.
|
|
1485
|
+
version = "1.2.1"
|
|
1440
1486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
-
checksum = "
|
|
1487
|
+
checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
|
|
1442
1488
|
dependencies = [
|
|
1443
1489
|
"proc-macro2",
|
|
1444
1490
|
"quote",
|
|
@@ -1484,10 +1530,21 @@ dependencies = [
|
|
|
1484
1530
|
"strum",
|
|
1485
1531
|
"strum_macros",
|
|
1486
1532
|
"syn 2.0.110",
|
|
1487
|
-
"thiserror 2.0.
|
|
1533
|
+
"thiserror 2.0.18",
|
|
1488
1534
|
"typed-builder",
|
|
1489
1535
|
]
|
|
1490
1536
|
|
|
1537
|
+
[[package]]
|
|
1538
|
+
name = "serde-wasm-bindgen"
|
|
1539
|
+
version = "0.6.5"
|
|
1540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
|
+
checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
|
|
1542
|
+
dependencies = [
|
|
1543
|
+
"js-sys",
|
|
1544
|
+
"serde",
|
|
1545
|
+
"wasm-bindgen",
|
|
1546
|
+
]
|
|
1547
|
+
|
|
1491
1548
|
[[package]]
|
|
1492
1549
|
name = "serde_core"
|
|
1493
1550
|
version = "1.0.226"
|
|
@@ -1521,9 +1578,9 @@ dependencies = [
|
|
|
1521
1578
|
|
|
1522
1579
|
[[package]]
|
|
1523
1580
|
name = "serde_json"
|
|
1524
|
-
version = "1.0.
|
|
1581
|
+
version = "1.0.149"
|
|
1525
1582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
-
checksum = "
|
|
1583
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1527
1584
|
dependencies = [
|
|
1528
1585
|
"indexmap",
|
|
1529
1586
|
"itoa",
|
|
@@ -1669,9 +1726,9 @@ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
|
1669
1726
|
|
|
1670
1727
|
[[package]]
|
|
1671
1728
|
name = "target-lexicon"
|
|
1672
|
-
version = "0.13.
|
|
1729
|
+
version = "0.13.5"
|
|
1673
1730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
-
checksum = "
|
|
1731
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1675
1732
|
|
|
1676
1733
|
[[package]]
|
|
1677
1734
|
name = "target-triple"
|
|
@@ -1681,9 +1738,9 @@ checksum = "591ef38edfb78ca4771ee32cf494cb8771944bee237a9b91fc9c1424ac4b777b"
|
|
|
1681
1738
|
|
|
1682
1739
|
[[package]]
|
|
1683
1740
|
name = "tempfile"
|
|
1684
|
-
version = "3.
|
|
1741
|
+
version = "3.25.0"
|
|
1685
1742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
-
checksum = "
|
|
1743
|
+
checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
|
|
1687
1744
|
dependencies = [
|
|
1688
1745
|
"fastrand",
|
|
1689
1746
|
"getrandom",
|
|
@@ -1713,7 +1770,7 @@ dependencies = [
|
|
|
1713
1770
|
"lazy-regex",
|
|
1714
1771
|
"minimad",
|
|
1715
1772
|
"serde",
|
|
1716
|
-
"thiserror 2.0.
|
|
1773
|
+
"thiserror 2.0.18",
|
|
1717
1774
|
"unicode-width 0.1.14",
|
|
1718
1775
|
]
|
|
1719
1776
|
|
|
@@ -1746,11 +1803,11 @@ dependencies = [
|
|
|
1746
1803
|
|
|
1747
1804
|
[[package]]
|
|
1748
1805
|
name = "thiserror"
|
|
1749
|
-
version = "2.0.
|
|
1806
|
+
version = "2.0.18"
|
|
1750
1807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
-
checksum = "
|
|
1808
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1752
1809
|
dependencies = [
|
|
1753
|
-
"thiserror-impl 2.0.
|
|
1810
|
+
"thiserror-impl 2.0.18",
|
|
1754
1811
|
]
|
|
1755
1812
|
|
|
1756
1813
|
[[package]]
|
|
@@ -1766,9 +1823,9 @@ dependencies = [
|
|
|
1766
1823
|
|
|
1767
1824
|
[[package]]
|
|
1768
1825
|
name = "thiserror-impl"
|
|
1769
|
-
version = "2.0.
|
|
1826
|
+
version = "2.0.18"
|
|
1770
1827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
-
checksum = "
|
|
1828
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1772
1829
|
dependencies = [
|
|
1773
1830
|
"proc-macro2",
|
|
1774
1831
|
"quote",
|
|
@@ -1833,18 +1890,18 @@ dependencies = [
|
|
|
1833
1890
|
|
|
1834
1891
|
[[package]]
|
|
1835
1892
|
name = "toml_datetime"
|
|
1836
|
-
version = "0.
|
|
1893
|
+
version = "1.0.0+spec-1.1.0"
|
|
1837
1894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
-
checksum = "
|
|
1895
|
+
checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e"
|
|
1839
1896
|
dependencies = [
|
|
1840
1897
|
"serde_core",
|
|
1841
1898
|
]
|
|
1842
1899
|
|
|
1843
1900
|
[[package]]
|
|
1844
1901
|
name = "toml_edit"
|
|
1845
|
-
version = "0.
|
|
1902
|
+
version = "0.25.3+spec-1.1.0"
|
|
1846
1903
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1847
|
-
checksum = "
|
|
1904
|
+
checksum = "a0a07913e63758bc95142d9863a5a45173b71515e68b690cad70cf99c3255ce1"
|
|
1848
1905
|
dependencies = [
|
|
1849
1906
|
"indexmap",
|
|
1850
1907
|
"toml_datetime",
|
|
@@ -1855,9 +1912,9 @@ dependencies = [
|
|
|
1855
1912
|
|
|
1856
1913
|
[[package]]
|
|
1857
1914
|
name = "toml_parser"
|
|
1858
|
-
version = "1.0.
|
|
1915
|
+
version = "1.0.9+spec-1.1.0"
|
|
1859
1916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
-
checksum = "
|
|
1917
|
+
checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4"
|
|
1861
1918
|
dependencies = [
|
|
1862
1919
|
"winnow",
|
|
1863
1920
|
]
|
|
@@ -1947,9 +2004,9 @@ dependencies = [
|
|
|
1947
2004
|
|
|
1948
2005
|
[[package]]
|
|
1949
2006
|
name = "tree-sitter"
|
|
1950
|
-
version = "0.26.
|
|
2007
|
+
version = "0.26.5"
|
|
1951
2008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1952
|
-
checksum = "
|
|
2009
|
+
checksum = "12987371f54efc9b9306a20dc87ed5aaee9f320c8a8b115e28515c412b2efe39"
|
|
1953
2010
|
dependencies = [
|
|
1954
2011
|
"cc",
|
|
1955
2012
|
"regex",
|
|
@@ -2259,12 +2316,6 @@ version = "0.2.0"
|
|
|
2259
2316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
2317
|
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
|
2261
2318
|
|
|
2262
|
-
[[package]]
|
|
2263
|
-
name = "unindent"
|
|
2264
|
-
version = "0.2.4"
|
|
2265
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2266
|
-
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
2267
|
-
|
|
2268
2319
|
[[package]]
|
|
2269
2320
|
name = "unsafe-libyaml"
|
|
2270
2321
|
version = "0.2.11"
|
|
@@ -2321,6 +2372,131 @@ dependencies = [
|
|
|
2321
2372
|
"wit-bindgen-rt",
|
|
2322
2373
|
]
|
|
2323
2374
|
|
|
2375
|
+
[[package]]
|
|
2376
|
+
name = "wasm"
|
|
2377
|
+
version = "0.41.0"
|
|
2378
|
+
dependencies = [
|
|
2379
|
+
"ast-grep-config",
|
|
2380
|
+
"ast-grep-core",
|
|
2381
|
+
"js-sys",
|
|
2382
|
+
"serde",
|
|
2383
|
+
"serde-wasm-bindgen",
|
|
2384
|
+
"serde_json",
|
|
2385
|
+
"wasm-bindgen",
|
|
2386
|
+
"wasm-bindgen-futures",
|
|
2387
|
+
"wasm-bindgen-test",
|
|
2388
|
+
]
|
|
2389
|
+
|
|
2390
|
+
[[package]]
|
|
2391
|
+
name = "wasm-bindgen"
|
|
2392
|
+
version = "0.2.111"
|
|
2393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2394
|
+
checksum = "ec1adf1535672f5b7824f817792b1afd731d7e843d2d04ec8f27e8cb51edd8ac"
|
|
2395
|
+
dependencies = [
|
|
2396
|
+
"cfg-if",
|
|
2397
|
+
"once_cell",
|
|
2398
|
+
"rustversion",
|
|
2399
|
+
"serde",
|
|
2400
|
+
"serde_json",
|
|
2401
|
+
"wasm-bindgen-macro",
|
|
2402
|
+
"wasm-bindgen-shared",
|
|
2403
|
+
]
|
|
2404
|
+
|
|
2405
|
+
[[package]]
|
|
2406
|
+
name = "wasm-bindgen-futures"
|
|
2407
|
+
version = "0.4.61"
|
|
2408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2409
|
+
checksum = "fe88540d1c934c4ec8e6db0afa536876c5441289d7f9f9123d4f065ac1250a6b"
|
|
2410
|
+
dependencies = [
|
|
2411
|
+
"cfg-if",
|
|
2412
|
+
"futures-util",
|
|
2413
|
+
"js-sys",
|
|
2414
|
+
"once_cell",
|
|
2415
|
+
"wasm-bindgen",
|
|
2416
|
+
"web-sys",
|
|
2417
|
+
]
|
|
2418
|
+
|
|
2419
|
+
[[package]]
|
|
2420
|
+
name = "wasm-bindgen-macro"
|
|
2421
|
+
version = "0.2.111"
|
|
2422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2423
|
+
checksum = "19e638317c08b21663aed4d2b9a2091450548954695ff4efa75bff5fa546b3b1"
|
|
2424
|
+
dependencies = [
|
|
2425
|
+
"quote",
|
|
2426
|
+
"wasm-bindgen-macro-support",
|
|
2427
|
+
]
|
|
2428
|
+
|
|
2429
|
+
[[package]]
|
|
2430
|
+
name = "wasm-bindgen-macro-support"
|
|
2431
|
+
version = "0.2.111"
|
|
2432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2433
|
+
checksum = "2c64760850114d03d5f65457e96fc988f11f01d38fbaa51b254e4ab5809102af"
|
|
2434
|
+
dependencies = [
|
|
2435
|
+
"bumpalo",
|
|
2436
|
+
"proc-macro2",
|
|
2437
|
+
"quote",
|
|
2438
|
+
"syn 2.0.110",
|
|
2439
|
+
"wasm-bindgen-shared",
|
|
2440
|
+
]
|
|
2441
|
+
|
|
2442
|
+
[[package]]
|
|
2443
|
+
name = "wasm-bindgen-shared"
|
|
2444
|
+
version = "0.2.111"
|
|
2445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2446
|
+
checksum = "60eecd4fe26177cfa3339eb00b4a36445889ba3ad37080c2429879718e20ca41"
|
|
2447
|
+
dependencies = [
|
|
2448
|
+
"unicode-ident",
|
|
2449
|
+
]
|
|
2450
|
+
|
|
2451
|
+
[[package]]
|
|
2452
|
+
name = "wasm-bindgen-test"
|
|
2453
|
+
version = "0.3.61"
|
|
2454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
+
checksum = "6f9483e929b4ae6889bc7c62b314abda7d0bd286a8d82b21235855d5327e4eb4"
|
|
2456
|
+
dependencies = [
|
|
2457
|
+
"async-trait",
|
|
2458
|
+
"cast",
|
|
2459
|
+
"js-sys",
|
|
2460
|
+
"libm",
|
|
2461
|
+
"minicov",
|
|
2462
|
+
"nu-ansi-term",
|
|
2463
|
+
"num-traits",
|
|
2464
|
+
"oorandom",
|
|
2465
|
+
"serde",
|
|
2466
|
+
"serde_json",
|
|
2467
|
+
"wasm-bindgen",
|
|
2468
|
+
"wasm-bindgen-futures",
|
|
2469
|
+
"wasm-bindgen-test-macro",
|
|
2470
|
+
"wasm-bindgen-test-shared",
|
|
2471
|
+
]
|
|
2472
|
+
|
|
2473
|
+
[[package]]
|
|
2474
|
+
name = "wasm-bindgen-test-macro"
|
|
2475
|
+
version = "0.3.61"
|
|
2476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2477
|
+
checksum = "30f8b972c5c33f97917c9f418535f3175e464d48db15f5226d124c648a1b4036"
|
|
2478
|
+
dependencies = [
|
|
2479
|
+
"proc-macro2",
|
|
2480
|
+
"quote",
|
|
2481
|
+
"syn 2.0.110",
|
|
2482
|
+
]
|
|
2483
|
+
|
|
2484
|
+
[[package]]
|
|
2485
|
+
name = "wasm-bindgen-test-shared"
|
|
2486
|
+
version = "0.2.111"
|
|
2487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2488
|
+
checksum = "0000397743a3b549ddba01befd1a26020eff98a028429630281c4203b4cc538d"
|
|
2489
|
+
|
|
2490
|
+
[[package]]
|
|
2491
|
+
name = "web-sys"
|
|
2492
|
+
version = "0.3.88"
|
|
2493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2494
|
+
checksum = "9d6bb20ed2d9572df8584f6dc81d68a41a625cadc6f15999d649a70ce7e3597a"
|
|
2495
|
+
dependencies = [
|
|
2496
|
+
"js-sys",
|
|
2497
|
+
"wasm-bindgen",
|
|
2498
|
+
]
|
|
2499
|
+
|
|
2324
2500
|
[[package]]
|
|
2325
2501
|
name = "winapi"
|
|
2326
2502
|
version = "0.3.9"
|