ast-grep-py 0.39.5__tar.gz → 0.39.6__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.6}/Cargo.lock +91 -196
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/Cargo.toml +6 -6
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/PKG-INFO +1 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/combined.rs +2 -2
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/rule/selector.rs +1 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/transform/parse.rs +1 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/matcher/pattern.rs +3 -3
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/node.rs +2 -2
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/replacer/indent.rs +4 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/source.rs +5 -5
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/tree_sitter/mod.rs +1 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/tree_sitter/traversal.rs +4 -4
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/Cargo.toml +3 -3
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/go.rs +4 -4
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/lib.rs +12 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/pyproject.toml +1 -1
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/README.md +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/ast_grep_py/__init__.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/ast_grep_py/ast_grep_py.pyi +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/ast_grep_py/py.typed +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/Cargo.toml +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/check_var.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/fixer.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/label.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/lib.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/maybe.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/rule/deserialize_env.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/rule/mod.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/rule/nth_child.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/rule/range.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/rule/referent_rule.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/rule/relational_rule.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/rule/stop_by.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/rule_collection.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/rule_config.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/rule_core.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/transform/mod.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/transform/rewrite.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/transform/string_case.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/config/src/transform/trans.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/Cargo.toml +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/language.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/lib.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/match_tree/match_node.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/match_tree/mod.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/match_tree/strictness.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/matcher/kind.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/matcher/node_match.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/matcher/text.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/matcher.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/meta_var.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/ops.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/pinned.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/replacer/structural.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/replacer/template.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/core/src/replacer.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/dynamic/Cargo.toml +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/dynamic/src/custom_lang.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/dynamic/src/lib.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/bash.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/cpp.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/csharp.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/css.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/elixir.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/haskell.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/hcl.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/html.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/json.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/kotlin.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/lua.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/nix.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/parsers.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/php.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/python.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/ruby.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/rust.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/scala.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/solidity.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/swift.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/language/src/yaml.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/Cargo.toml +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/README.md +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/ast_grep_py/__init__.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/ast_grep_py/ast_grep_py.pyi +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/ast_grep_py/py.typed +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/src/lib.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/src/py_lang.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/src/py_node.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/src/range.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/src/unicode_position.rs +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/tests/test_fix.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/tests/test_range.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/tests/test_register_lang.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/tests/test_rule.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/tests/test_simple.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/tests/test_traversal.py +0 -0
- {ast_grep_py-0.39.5 → ast_grep_py-0.39.6}/crates/pyo3/tests/test_wrong_usage.py +0 -0
|
@@ -87,9 +87,9 @@ dependencies = [
|
|
|
87
87
|
|
|
88
88
|
[[package]]
|
|
89
89
|
name = "anyhow"
|
|
90
|
-
version = "1.0.
|
|
90
|
+
version = "1.0.100"
|
|
91
91
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
-
checksum = "
|
|
92
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
93
93
|
|
|
94
94
|
[[package]]
|
|
95
95
|
name = "assert_cmd"
|
|
@@ -109,7 +109,7 @@ dependencies = [
|
|
|
109
109
|
|
|
110
110
|
[[package]]
|
|
111
111
|
name = "ast-grep"
|
|
112
|
-
version = "0.39.
|
|
112
|
+
version = "0.39.6"
|
|
113
113
|
dependencies = [
|
|
114
114
|
"ansi_term",
|
|
115
115
|
"anyhow",
|
|
@@ -123,7 +123,7 @@ dependencies = [
|
|
|
123
123
|
"clap",
|
|
124
124
|
"clap_complete",
|
|
125
125
|
"codespan-reporting",
|
|
126
|
-
"crossterm
|
|
126
|
+
"crossterm",
|
|
127
127
|
"dashmap",
|
|
128
128
|
"ignore",
|
|
129
129
|
"inquire",
|
|
@@ -143,7 +143,7 @@ dependencies = [
|
|
|
143
143
|
|
|
144
144
|
[[package]]
|
|
145
145
|
name = "ast-grep-config"
|
|
146
|
-
version = "0.39.
|
|
146
|
+
version = "0.39.6"
|
|
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.39.
|
|
161
|
+
version = "0.39.6"
|
|
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.39.
|
|
172
|
+
version = "0.39.6"
|
|
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.39.
|
|
186
|
+
version = "0.39.6"
|
|
187
187
|
dependencies = [
|
|
188
188
|
"ast-grep-core",
|
|
189
189
|
"ignore",
|
|
@@ -218,7 +218,7 @@ dependencies = [
|
|
|
218
218
|
|
|
219
219
|
[[package]]
|
|
220
220
|
name = "ast-grep-lsp"
|
|
221
|
-
version = "0.39.
|
|
221
|
+
version = "0.39.6"
|
|
222
222
|
dependencies = [
|
|
223
223
|
"anyhow",
|
|
224
224
|
"ast-grep-config",
|
|
@@ -236,7 +236,7 @@ dependencies = [
|
|
|
236
236
|
|
|
237
237
|
[[package]]
|
|
238
238
|
name = "ast-grep-napi"
|
|
239
|
-
version = "0.39.
|
|
239
|
+
version = "0.39.6"
|
|
240
240
|
dependencies = [
|
|
241
241
|
"ast-grep-config",
|
|
242
242
|
"ast-grep-core",
|
|
@@ -252,7 +252,7 @@ dependencies = [
|
|
|
252
252
|
|
|
253
253
|
[[package]]
|
|
254
254
|
name = "ast-grep-py"
|
|
255
|
-
version = "0.39.
|
|
255
|
+
version = "0.39.6"
|
|
256
256
|
dependencies = [
|
|
257
257
|
"anyhow",
|
|
258
258
|
"ast-grep-config",
|
|
@@ -293,7 +293,7 @@ dependencies = [
|
|
|
293
293
|
"miniz_oxide",
|
|
294
294
|
"object",
|
|
295
295
|
"rustc-demangle",
|
|
296
|
-
"windows-targets
|
|
296
|
+
"windows-targets",
|
|
297
297
|
]
|
|
298
298
|
|
|
299
299
|
[[package]]
|
|
@@ -334,12 +334,6 @@ dependencies = [
|
|
|
334
334
|
"serde",
|
|
335
335
|
]
|
|
336
336
|
|
|
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
337
|
[[package]]
|
|
344
338
|
name = "bytes"
|
|
345
339
|
version = "1.10.1"
|
|
@@ -369,9 +363,9 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
|
369
363
|
|
|
370
364
|
[[package]]
|
|
371
365
|
name = "clap"
|
|
372
|
-
version = "4.5.
|
|
366
|
+
version = "4.5.48"
|
|
373
367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
-
checksum = "
|
|
368
|
+
checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae"
|
|
375
369
|
dependencies = [
|
|
376
370
|
"clap_builder",
|
|
377
371
|
"clap_derive",
|
|
@@ -379,9 +373,9 @@ dependencies = [
|
|
|
379
373
|
|
|
380
374
|
[[package]]
|
|
381
375
|
name = "clap_builder"
|
|
382
|
-
version = "4.5.
|
|
376
|
+
version = "4.5.48"
|
|
383
377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
-
checksum = "
|
|
378
|
+
checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9"
|
|
385
379
|
dependencies = [
|
|
386
380
|
"anstream",
|
|
387
381
|
"anstyle",
|
|
@@ -391,9 +385,9 @@ dependencies = [
|
|
|
391
385
|
|
|
392
386
|
[[package]]
|
|
393
387
|
name = "clap_complete"
|
|
394
|
-
version = "4.5.
|
|
388
|
+
version = "4.5.58"
|
|
395
389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
-
checksum = "
|
|
390
|
+
checksum = "75bf0b32ad2e152de789bb635ea4d3078f6b838ad7974143e99b99f45a04af4a"
|
|
397
391
|
dependencies = [
|
|
398
392
|
"clap",
|
|
399
393
|
]
|
|
@@ -457,7 +451,7 @@ version = "1.1.0"
|
|
|
457
451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
452
|
checksum = "980c2afde4af43d6a05c5be738f9eae595cff86dce1f38f88b95058a98c027f3"
|
|
459
453
|
dependencies = [
|
|
460
|
-
"crossterm
|
|
454
|
+
"crossterm",
|
|
461
455
|
]
|
|
462
456
|
|
|
463
457
|
[[package]]
|
|
@@ -467,7 +461,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
467
461
|
checksum = "51360853ebbeb3df20c76c82aecf43d387a62860f1a59ba65ab51f00eea85aad"
|
|
468
462
|
dependencies = [
|
|
469
463
|
"crokey-proc_macros",
|
|
470
|
-
"crossterm
|
|
464
|
+
"crossterm",
|
|
471
465
|
"once_cell",
|
|
472
466
|
"serde",
|
|
473
467
|
"strict",
|
|
@@ -479,7 +473,7 @@ version = "1.3.0"
|
|
|
479
473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
474
|
checksum = "3bf1a727caeb5ee5e0a0826a97f205a9cf84ee964b0b48239fef5214a00ae439"
|
|
481
475
|
dependencies = [
|
|
482
|
-
"crossterm
|
|
476
|
+
"crossterm",
|
|
483
477
|
"proc-macro2",
|
|
484
478
|
"quote",
|
|
485
479
|
"strict",
|
|
@@ -542,22 +536,6 @@ version = "0.8.21"
|
|
|
542
536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
537
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
544
538
|
|
|
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
539
|
[[package]]
|
|
562
540
|
name = "crossterm"
|
|
563
541
|
version = "0.29.0"
|
|
@@ -568,7 +546,7 @@ dependencies = [
|
|
|
568
546
|
"crossterm_winapi",
|
|
569
547
|
"derive_more",
|
|
570
548
|
"document-features",
|
|
571
|
-
"mio
|
|
549
|
+
"mio",
|
|
572
550
|
"parking_lot",
|
|
573
551
|
"rustix",
|
|
574
552
|
"signal-hook",
|
|
@@ -816,15 +794,6 @@ dependencies = [
|
|
|
816
794
|
"thread_local",
|
|
817
795
|
]
|
|
818
796
|
|
|
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
797
|
[[package]]
|
|
829
798
|
name = "getrandom"
|
|
830
799
|
version = "0.3.2"
|
|
@@ -907,9 +876,9 @@ dependencies = [
|
|
|
907
876
|
|
|
908
877
|
[[package]]
|
|
909
878
|
name = "indexmap"
|
|
910
|
-
version = "2.
|
|
879
|
+
version = "2.11.4"
|
|
911
880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
-
checksum = "
|
|
881
|
+
checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5"
|
|
913
882
|
dependencies = [
|
|
914
883
|
"equivalent",
|
|
915
884
|
"hashbrown 0.15.2",
|
|
@@ -923,19 +892,16 @@ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
|
923
892
|
|
|
924
893
|
[[package]]
|
|
925
894
|
name = "inquire"
|
|
926
|
-
version = "0.
|
|
895
|
+
version = "0.9.1"
|
|
927
896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
-
checksum = "
|
|
897
|
+
checksum = "2628910d0114e9139056161d8644a2026be7b117f8498943f9437748b04c9e0a"
|
|
929
898
|
dependencies = [
|
|
930
899
|
"bitflags 2.9.0",
|
|
931
|
-
"crossterm
|
|
900
|
+
"crossterm",
|
|
932
901
|
"dyn-clone",
|
|
933
902
|
"fuzzy-matcher",
|
|
934
|
-
"fxhash",
|
|
935
|
-
"newline-converter",
|
|
936
|
-
"once_cell",
|
|
937
903
|
"unicode-segmentation",
|
|
938
|
-
"unicode-width 0.
|
|
904
|
+
"unicode-width 0.2.0",
|
|
939
905
|
]
|
|
940
906
|
|
|
941
907
|
[[package]]
|
|
@@ -992,12 +958,12 @@ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
|
|
|
992
958
|
|
|
993
959
|
[[package]]
|
|
994
960
|
name = "libloading"
|
|
995
|
-
version = "0.8.
|
|
961
|
+
version = "0.8.9"
|
|
996
962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
-
checksum = "
|
|
963
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
998
964
|
dependencies = [
|
|
999
965
|
"cfg-if",
|
|
1000
|
-
"windows-
|
|
966
|
+
"windows-link",
|
|
1001
967
|
]
|
|
1002
968
|
|
|
1003
969
|
[[package]]
|
|
@@ -1074,18 +1040,6 @@ dependencies = [
|
|
|
1074
1040
|
"adler2",
|
|
1075
1041
|
]
|
|
1076
1042
|
|
|
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
1043
|
[[package]]
|
|
1090
1044
|
name = "mio"
|
|
1091
1045
|
version = "1.0.3"
|
|
@@ -1100,9 +1054,9 @@ dependencies = [
|
|
|
1100
1054
|
|
|
1101
1055
|
[[package]]
|
|
1102
1056
|
name = "napi"
|
|
1103
|
-
version = "3.
|
|
1057
|
+
version = "3.3.0"
|
|
1104
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
-
checksum = "
|
|
1059
|
+
checksum = "f1b74e3dce5230795bb4d2821b941706dee733c7308752507254b0497f39cad7"
|
|
1106
1060
|
dependencies = [
|
|
1107
1061
|
"anyhow",
|
|
1108
1062
|
"bitflags 2.9.0",
|
|
@@ -1123,9 +1077,9 @@ checksum = "dcae8ad5609d14afb3a3b91dee88c757016261b151e9dcecabf1b2a31a6cab14"
|
|
|
1123
1077
|
|
|
1124
1078
|
[[package]]
|
|
1125
1079
|
name = "napi-derive"
|
|
1126
|
-
version = "3.2.
|
|
1080
|
+
version = "3.2.5"
|
|
1127
1081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
-
checksum = "
|
|
1082
|
+
checksum = "7552d5a579b834614bbd496db5109f1b9f1c758f08224b0dee1e408333adf0d0"
|
|
1129
1083
|
dependencies = [
|
|
1130
1084
|
"convert_case 0.8.0",
|
|
1131
1085
|
"ctor",
|
|
@@ -1137,9 +1091,9 @@ dependencies = [
|
|
|
1137
1091
|
|
|
1138
1092
|
[[package]]
|
|
1139
1093
|
name = "napi-derive-backend"
|
|
1140
|
-
version = "2.
|
|
1094
|
+
version = "2.2.0"
|
|
1141
1095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
-
checksum = "
|
|
1096
|
+
checksum = "5f6a81ac7486b70f2532a289603340862c06eea5a1e650c1ffeda2ce1238516a"
|
|
1143
1097
|
dependencies = [
|
|
1144
1098
|
"convert_case 0.8.0",
|
|
1145
1099
|
"proc-macro2",
|
|
@@ -1157,15 +1111,6 @@ dependencies = [
|
|
|
1157
1111
|
"libloading",
|
|
1158
1112
|
]
|
|
1159
1113
|
|
|
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
1114
|
[[package]]
|
|
1170
1115
|
name = "nix"
|
|
1171
1116
|
version = "0.29.0"
|
|
@@ -1234,7 +1179,7 @@ dependencies = [
|
|
|
1234
1179
|
"libc",
|
|
1235
1180
|
"redox_syscall",
|
|
1236
1181
|
"smallvec",
|
|
1237
|
-
"windows-targets
|
|
1182
|
+
"windows-targets",
|
|
1238
1183
|
]
|
|
1239
1184
|
|
|
1240
1185
|
[[package]]
|
|
@@ -1518,18 +1463,28 @@ checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
|
|
|
1518
1463
|
|
|
1519
1464
|
[[package]]
|
|
1520
1465
|
name = "serde"
|
|
1521
|
-
version = "1.0.
|
|
1466
|
+
version = "1.0.226"
|
|
1467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
+
checksum = "0dca6411025b24b60bfa7ec1fe1f8e710ac09782dca409ee8237ba74b51295fd"
|
|
1469
|
+
dependencies = [
|
|
1470
|
+
"serde_core",
|
|
1471
|
+
"serde_derive",
|
|
1472
|
+
]
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "serde_core"
|
|
1476
|
+
version = "1.0.226"
|
|
1522
1477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
-
checksum = "
|
|
1478
|
+
checksum = "ba2ba63999edb9dac981fb34b3e5c0d111a69b0924e253ed29d83f7c99e966a4"
|
|
1524
1479
|
dependencies = [
|
|
1525
1480
|
"serde_derive",
|
|
1526
1481
|
]
|
|
1527
1482
|
|
|
1528
1483
|
[[package]]
|
|
1529
1484
|
name = "serde_derive"
|
|
1530
|
-
version = "1.0.
|
|
1485
|
+
version = "1.0.226"
|
|
1531
1486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
-
checksum = "
|
|
1487
|
+
checksum = "8db53ae22f34573731bafa1db20f04027b2d25e02d8205921b569171699cdb33"
|
|
1533
1488
|
dependencies = [
|
|
1534
1489
|
"proc-macro2",
|
|
1535
1490
|
"quote",
|
|
@@ -1549,15 +1504,16 @@ dependencies = [
|
|
|
1549
1504
|
|
|
1550
1505
|
[[package]]
|
|
1551
1506
|
name = "serde_json"
|
|
1552
|
-
version = "1.0.
|
|
1507
|
+
version = "1.0.145"
|
|
1553
1508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
|
-
checksum = "
|
|
1509
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
1555
1510
|
dependencies = [
|
|
1556
1511
|
"indexmap",
|
|
1557
1512
|
"itoa",
|
|
1558
1513
|
"memchr",
|
|
1559
1514
|
"ryu",
|
|
1560
1515
|
"serde",
|
|
1516
|
+
"serde_core",
|
|
1561
1517
|
]
|
|
1562
1518
|
|
|
1563
1519
|
[[package]]
|
|
@@ -1607,8 +1563,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1607
1563
|
checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
|
|
1608
1564
|
dependencies = [
|
|
1609
1565
|
"libc",
|
|
1610
|
-
"mio
|
|
1611
|
-
"mio 1.0.3",
|
|
1566
|
+
"mio",
|
|
1612
1567
|
"signal-hook",
|
|
1613
1568
|
]
|
|
1614
1569
|
|
|
@@ -1691,9 +1646,9 @@ checksum = "1ac9aa371f599d22256307c24a9d748c041e548cbf599f35d890f9d365361790"
|
|
|
1691
1646
|
|
|
1692
1647
|
[[package]]
|
|
1693
1648
|
name = "tempfile"
|
|
1694
|
-
version = "3.
|
|
1649
|
+
version = "3.23.0"
|
|
1695
1650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1696
|
-
checksum = "
|
|
1651
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
1697
1652
|
dependencies = [
|
|
1698
1653
|
"fastrand",
|
|
1699
1654
|
"getrandom",
|
|
@@ -1734,7 +1689,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1734
1689
|
checksum = "a6f76be906d875a0ce764c52a055858c24847cb7dc674d3a5ad8cf7e3dd4ee9f"
|
|
1735
1690
|
dependencies = [
|
|
1736
1691
|
"coolor",
|
|
1737
|
-
"crossterm
|
|
1692
|
+
"crossterm",
|
|
1738
1693
|
"thiserror 1.0.69",
|
|
1739
1694
|
"xterm-query",
|
|
1740
1695
|
]
|
|
@@ -1805,7 +1760,7 @@ dependencies = [
|
|
|
1805
1760
|
"bytes",
|
|
1806
1761
|
"io-uring",
|
|
1807
1762
|
"libc",
|
|
1808
|
-
"mio
|
|
1763
|
+
"mio",
|
|
1809
1764
|
"pin-project-lite",
|
|
1810
1765
|
"slab",
|
|
1811
1766
|
"tokio-macros",
|
|
@@ -1848,18 +1803,18 @@ dependencies = [
|
|
|
1848
1803
|
|
|
1849
1804
|
[[package]]
|
|
1850
1805
|
name = "toml_datetime"
|
|
1851
|
-
version = "0.7.
|
|
1806
|
+
version = "0.7.2"
|
|
1852
1807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
-
checksum = "
|
|
1808
|
+
checksum = "32f1085dec27c2b6632b04c80b3bb1b4300d6495d1e129693bdda7d91e72eec1"
|
|
1854
1809
|
dependencies = [
|
|
1855
|
-
"
|
|
1810
|
+
"serde_core",
|
|
1856
1811
|
]
|
|
1857
1812
|
|
|
1858
1813
|
[[package]]
|
|
1859
1814
|
name = "toml_edit"
|
|
1860
|
-
version = "0.23.
|
|
1815
|
+
version = "0.23.6"
|
|
1861
1816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
-
checksum = "
|
|
1817
|
+
checksum = "f3effe7c0e86fdff4f69cdd2ccc1b96f933e24811c5441d44904e8683e27184b"
|
|
1863
1818
|
dependencies = [
|
|
1864
1819
|
"indexmap",
|
|
1865
1820
|
"toml_datetime",
|
|
@@ -1870,18 +1825,18 @@ dependencies = [
|
|
|
1870
1825
|
|
|
1871
1826
|
[[package]]
|
|
1872
1827
|
name = "toml_parser"
|
|
1873
|
-
version = "1.0.
|
|
1828
|
+
version = "1.0.3"
|
|
1874
1829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1875
|
-
checksum = "
|
|
1830
|
+
checksum = "4cf893c33be71572e0e9aa6dd15e6677937abd686b066eac3f8cd3531688a627"
|
|
1876
1831
|
dependencies = [
|
|
1877
1832
|
"winnow",
|
|
1878
1833
|
]
|
|
1879
1834
|
|
|
1880
1835
|
[[package]]
|
|
1881
1836
|
name = "toml_writer"
|
|
1882
|
-
version = "1.0.
|
|
1837
|
+
version = "1.0.3"
|
|
1883
1838
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
-
checksum = "
|
|
1839
|
+
checksum = "d163a63c116ce562a22cda521fcc4d79152e7aba014456fb5eb442f6d6a10109"
|
|
1885
1840
|
|
|
1886
1841
|
[[package]]
|
|
1887
1842
|
name = "tower"
|
|
@@ -1962,9 +1917,9 @@ dependencies = [
|
|
|
1962
1917
|
|
|
1963
1918
|
[[package]]
|
|
1964
1919
|
name = "tree-sitter"
|
|
1965
|
-
version = "0.25.
|
|
1920
|
+
version = "0.25.10"
|
|
1966
1921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
-
checksum = "
|
|
1922
|
+
checksum = "78f873475d258561b06f1c595d93308a7ed124d9977cb26b148c2084a4a3cc87"
|
|
1968
1923
|
dependencies = [
|
|
1969
1924
|
"cc",
|
|
1970
1925
|
"regex",
|
|
@@ -2016,9 +1971,9 @@ dependencies = [
|
|
|
2016
1971
|
|
|
2017
1972
|
[[package]]
|
|
2018
1973
|
name = "tree-sitter-css"
|
|
2019
|
-
version = "0.
|
|
1974
|
+
version = "0.25.0"
|
|
2020
1975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
-
checksum = "
|
|
1976
|
+
checksum = "a5cbc5e18f29a2c6d6435891f42569525cf95435a3e01c2f1947abcde178686f"
|
|
2022
1977
|
dependencies = [
|
|
2023
1978
|
"cc",
|
|
2024
1979
|
"tree-sitter-language",
|
|
@@ -2036,9 +1991,9 @@ dependencies = [
|
|
|
2036
1991
|
|
|
2037
1992
|
[[package]]
|
|
2038
1993
|
name = "tree-sitter-go"
|
|
2039
|
-
version = "0.
|
|
1994
|
+
version = "0.25.0"
|
|
2040
1995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2041
|
-
checksum = "
|
|
1996
|
+
checksum = "c8560a4d2f835cc0d4d2c2e03cbd0dde2f6114b43bc491164238d333e28b16ea"
|
|
2042
1997
|
dependencies = [
|
|
2043
1998
|
"cc",
|
|
2044
1999
|
"tree-sitter-language",
|
|
@@ -2152,9 +2107,9 @@ dependencies = [
|
|
|
2152
2107
|
|
|
2153
2108
|
[[package]]
|
|
2154
2109
|
name = "tree-sitter-python"
|
|
2155
|
-
version = "0.
|
|
2110
|
+
version = "0.25.0"
|
|
2156
2111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2157
|
-
checksum = "
|
|
2112
|
+
checksum = "6bf85fd39652e740bf60f46f4cda9492c3a9ad75880575bf14960f775cb74a1c"
|
|
2158
2113
|
dependencies = [
|
|
2159
2114
|
"cc",
|
|
2160
2115
|
"tree-sitter-language",
|
|
@@ -2338,13 +2293,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2338
2293
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2339
2294
|
|
|
2340
2295
|
[[package]]
|
|
2341
|
-
name = "windows-
|
|
2342
|
-
version = "0.
|
|
2296
|
+
name = "windows-link"
|
|
2297
|
+
version = "0.2.0"
|
|
2343
2298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2344
|
-
checksum = "
|
|
2345
|
-
dependencies = [
|
|
2346
|
-
"windows-targets 0.48.5",
|
|
2347
|
-
]
|
|
2299
|
+
checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
|
|
2348
2300
|
|
|
2349
2301
|
[[package]]
|
|
2350
2302
|
name = "windows-sys"
|
|
@@ -2352,7 +2304,7 @@ version = "0.52.0"
|
|
|
2352
2304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2353
2305
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2354
2306
|
dependencies = [
|
|
2355
|
-
"windows-targets
|
|
2307
|
+
"windows-targets",
|
|
2356
2308
|
]
|
|
2357
2309
|
|
|
2358
2310
|
[[package]]
|
|
@@ -2361,22 +2313,7 @@ version = "0.59.0"
|
|
|
2361
2313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2362
2314
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
2363
2315
|
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",
|
|
2316
|
+
"windows-targets",
|
|
2380
2317
|
]
|
|
2381
2318
|
|
|
2382
2319
|
[[package]]
|
|
@@ -2385,46 +2322,28 @@ version = "0.52.6"
|
|
|
2385
2322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2386
2323
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2387
2324
|
dependencies = [
|
|
2388
|
-
"windows_aarch64_gnullvm
|
|
2389
|
-
"windows_aarch64_msvc
|
|
2390
|
-
"windows_i686_gnu
|
|
2325
|
+
"windows_aarch64_gnullvm",
|
|
2326
|
+
"windows_aarch64_msvc",
|
|
2327
|
+
"windows_i686_gnu",
|
|
2391
2328
|
"windows_i686_gnullvm",
|
|
2392
|
-
"windows_i686_msvc
|
|
2393
|
-
"windows_x86_64_gnu
|
|
2394
|
-
"windows_x86_64_gnullvm
|
|
2395
|
-
"windows_x86_64_msvc
|
|
2329
|
+
"windows_i686_msvc",
|
|
2330
|
+
"windows_x86_64_gnu",
|
|
2331
|
+
"windows_x86_64_gnullvm",
|
|
2332
|
+
"windows_x86_64_msvc",
|
|
2396
2333
|
]
|
|
2397
2334
|
|
|
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
2335
|
[[package]]
|
|
2405
2336
|
name = "windows_aarch64_gnullvm"
|
|
2406
2337
|
version = "0.52.6"
|
|
2407
2338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2408
2339
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2409
2340
|
|
|
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
2341
|
[[package]]
|
|
2417
2342
|
name = "windows_aarch64_msvc"
|
|
2418
2343
|
version = "0.52.6"
|
|
2419
2344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2420
2345
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2421
2346
|
|
|
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
2347
|
[[package]]
|
|
2429
2348
|
name = "windows_i686_gnu"
|
|
2430
2349
|
version = "0.52.6"
|
|
@@ -2437,48 +2356,24 @@ version = "0.52.6"
|
|
|
2437
2356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2438
2357
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2439
2358
|
|
|
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
2359
|
[[package]]
|
|
2447
2360
|
name = "windows_i686_msvc"
|
|
2448
2361
|
version = "0.52.6"
|
|
2449
2362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2450
2363
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2451
2364
|
|
|
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
2365
|
[[package]]
|
|
2459
2366
|
name = "windows_x86_64_gnu"
|
|
2460
2367
|
version = "0.52.6"
|
|
2461
2368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2462
2369
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2463
2370
|
|
|
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
2371
|
[[package]]
|
|
2471
2372
|
name = "windows_x86_64_gnullvm"
|
|
2472
2373
|
version = "0.52.6"
|
|
2473
2374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2474
2375
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2475
2376
|
|
|
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
2377
|
[[package]]
|
|
2483
2378
|
name = "windows_x86_64_msvc"
|
|
2484
2379
|
version = "0.52.6"
|
|
@@ -2487,9 +2382,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
2487
2382
|
|
|
2488
2383
|
[[package]]
|
|
2489
2384
|
name = "winnow"
|
|
2490
|
-
version = "0.7.
|
|
2385
|
+
version = "0.7.13"
|
|
2491
2386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
-
checksum = "
|
|
2387
|
+
checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
|
|
2493
2388
|
dependencies = [
|
|
2494
2389
|
"memchr",
|
|
2495
2390
|
]
|