fabricatio 0.2.7.dev4__tar.gz → 0.2.8__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.
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/Cargo.lock +236 -173
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/PKG-INFO +2 -1
- fabricatio-0.2.8/examples/extract_and_inject/.gitignore +3 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/extract_and_inject/ask.py +1 -1
- fabricatio-0.2.8/examples/extract_and_inject/extract_and_inject.py +66 -0
- {fabricatio-0.2.7.dev4/examples/write_outline → fabricatio-0.2.8/examples/rules}/.gitignore +2 -1
- fabricatio-0.2.8/examples/rules/draft_ruleset.py +50 -0
- fabricatio-0.2.8/examples/write_article/.gitignore +3 -0
- fabricatio-0.2.8/examples/write_article/article_rag.py +83 -0
- fabricatio-0.2.8/examples/write_article/write_article.py +64 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/pyproject.toml +3 -2
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/__init__.py +4 -11
- fabricatio-0.2.8/python/fabricatio/actions/article.py +346 -0
- fabricatio-0.2.8/python/fabricatio/actions/article_rag.py +100 -0
- fabricatio-0.2.8/python/fabricatio/actions/output.py +102 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/actions/rag.py +3 -3
- fabricatio-0.2.8/python/fabricatio/actions/rules.py +39 -0
- fabricatio-0.2.8/python/fabricatio/capabilities/advanced_judge.py +23 -0
- fabricatio-0.2.8/python/fabricatio/capabilities/censor.py +90 -0
- fabricatio-0.2.8/python/fabricatio/capabilities/check.py +195 -0
- fabricatio-0.2.8/python/fabricatio/capabilities/correct.py +209 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/capabilities/propose.py +20 -4
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/capabilities/rag.py +5 -4
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/capabilities/rating.py +68 -23
- fabricatio-0.2.8/python/fabricatio/capabilities/review.py +112 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/capabilities/task.py +9 -10
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/config.py +11 -3
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/fs/curd.py +4 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/models/action.py +24 -10
- fabricatio-0.2.8/python/fabricatio/models/adv_kwargs_types.py +25 -0
- fabricatio-0.2.8/python/fabricatio/models/extra/__init__.py +1 -0
- fabricatio-0.2.8/python/fabricatio/models/extra/advanced_judge.py +32 -0
- fabricatio-0.2.8/python/fabricatio/models/extra/article_base.py +427 -0
- fabricatio-0.2.8/python/fabricatio/models/extra/article_essence.py +99 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/models/extra/article_main.py +48 -127
- fabricatio-0.2.8/python/fabricatio/models/extra/article_outline.py +41 -0
- fabricatio-0.2.8/python/fabricatio/models/extra/article_proposal.py +51 -0
- fabricatio-0.2.8/python/fabricatio/models/extra/patches.py +7 -0
- fabricatio-0.2.8/python/fabricatio/models/extra/problem.py +153 -0
- fabricatio-0.2.8/python/fabricatio/models/extra/rule.py +65 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/models/generic.py +360 -88
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/models/kwargs_types.py +23 -17
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/models/role.py +4 -1
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/models/task.py +1 -1
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/models/tool.py +149 -14
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/models/usages.py +61 -47
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/models/utils.py +0 -46
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/parser.py +7 -8
- fabricatio-0.2.7.dev4/python/fabricatio/_rust.pyi → fabricatio-0.2.8/python/fabricatio/rust.pyi +50 -0
- fabricatio-0.2.7.dev4/python/fabricatio/_rust_instances.py → fabricatio-0.2.8/python/fabricatio/rust_instances.py +1 -1
- fabricatio-0.2.8/python/fabricatio/utils.py +54 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/src/bib_tools.rs +52 -6
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/src/lib.rs +1 -1
- fabricatio-0.2.8/templates/built-in/check_string.hbs +19 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/create_json_obj.hbs +1 -1
- fabricatio-0.2.8/templates/built-in/fix_troubled_obj.hbs +14 -0
- fabricatio-0.2.8/templates/built-in/fix_troubled_string.hbs +19 -0
- fabricatio-0.2.8/templates/built-in/ruleset_requirement_breakdown.hbs +17 -0
- fabricatio-0.2.8/templates.tar.gz +0 -0
- fabricatio-0.2.8/uv.lock +1711 -0
- fabricatio-0.2.7.dev4/examples/extract_and_inject/.gitignore +0 -2
- fabricatio-0.2.7.dev4/examples/extract_and_inject/extract_and_inject.py +0 -66
- fabricatio-0.2.7.dev4/examples/write_article/write_article.py +0 -46
- fabricatio-0.2.7.dev4/python/fabricatio/actions/article.py +0 -212
- fabricatio-0.2.7.dev4/python/fabricatio/actions/article_rag.py +0 -35
- fabricatio-0.2.7.dev4/python/fabricatio/actions/output.py +0 -34
- fabricatio-0.2.7.dev4/python/fabricatio/capabilities/correct.py +0 -145
- fabricatio-0.2.7.dev4/python/fabricatio/capabilities/review.py +0 -281
- fabricatio-0.2.7.dev4/python/fabricatio/models/extra/article_base.py +0 -192
- fabricatio-0.2.7.dev4/python/fabricatio/models/extra/article_essence.py +0 -226
- fabricatio-0.2.7.dev4/python/fabricatio/models/extra/article_outline.py +0 -181
- fabricatio-0.2.7.dev4/python/fabricatio/models/extra/article_proposal.py +0 -35
- fabricatio-0.2.7.dev4/templates/built-in/correct.hbs +0 -15
- fabricatio-0.2.7.dev4/templates.tar.gz +0 -0
- fabricatio-0.2.7.dev4/uv.lock +0 -1682
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/.github/workflows/build-package.yaml +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/.github/workflows/ruff.yaml +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/.github/workflows/tests.yaml +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/.gitignore +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/.python-version +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/Cargo.toml +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/LICENSE +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/Makefile +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/README.md +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/correct/correct.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/correct/correct_loop.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/extract_and_inject/article_rag.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/extract_article/extract.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/llm_usages/llm_usage.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/make_a_rating/rating.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/make_diary/commits.json +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/make_diary/diary.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/minor/hello_fabricatio.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/minor/write_a_poem.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/propose_task/propose.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/reviewer/review.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/search_bibtex/.gitignore +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/search_bibtex/search.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/simple_chat/chat.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/simple_rag/simple_rag.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/task_handle/handle_task.py +0 -0
- {fabricatio-0.2.7.dev4/examples/write_article → fabricatio-0.2.8/examples/write_outline}/.gitignore +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/write_outline/write_outline.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/examples/write_outline/write_outline_corrected.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/core.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/decorators.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/fs/__init__.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/fs/readers.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/journal.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/models/events.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/py.typed +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/toolboxes/__init__.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/toolboxes/arithmetic.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/toolboxes/fs.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/workflows/articles.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/python/fabricatio/workflows/rag.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/src/hash.rs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/src/hbs_helpers.rs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/src/templates.rs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/as_prompt.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/binary-exploitation-ctf-solver.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/claude-xml.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/clean-up-code.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/co_validation.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/cryptography-ctf-solver.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/dependencies.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/document-the-code.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/draft_rating_criteria.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/draft_rating_manual.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/draft_rating_weights_klee.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/draft_tool_usage_code.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/extract_criteria_from_reasons.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/extract_reasons_from_examples.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/find-security-vulnerabilities.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/fix-bugs.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/generic_string.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/improve-performance.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/liststr.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/make_choice.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/make_judgment.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/pathstr.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/rate_fine_grind.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/refactor.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/refined_query.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/retrieved_display.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/reverse-engineering-ctf-solver.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/review_string.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/task_briefing.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/web-ctf-solver.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/write-git-commit.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/write-github-pull-request.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/templates/built-in/write-github-readme.hbs +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/tests/test_config.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/tests/test_models/test_action.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/tests/test_models/test_advanced.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/tests/test_models/test_generic.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/tests/test_models/test_role.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/tests/test_models/test_task.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/tests/test_models/test_tool.py +0 -0
- {fabricatio-0.2.7.dev4 → fabricatio-0.2.8}/tests/test_models/test_usages.py +0 -0
@@ -103,7 +103,7 @@ dependencies = [
|
|
103
103
|
"miniz_oxide",
|
104
104
|
"object",
|
105
105
|
"rustc-demangle",
|
106
|
-
"windows-targets",
|
106
|
+
"windows-targets 0.52.6",
|
107
107
|
]
|
108
108
|
|
109
109
|
[[package]]
|
@@ -127,22 +127,21 @@ dependencies = [
|
|
127
127
|
|
128
128
|
[[package]]
|
129
129
|
name = "bitflags"
|
130
|
-
version = "2.
|
130
|
+
version = "2.9.0"
|
131
131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
132
|
-
checksum = "
|
132
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
133
133
|
|
134
134
|
[[package]]
|
135
135
|
name = "blake3"
|
136
|
-
version = "1.
|
136
|
+
version = "1.7.0"
|
137
137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
138
|
-
checksum = "
|
138
|
+
checksum = "b17679a8d69b6d7fd9cd9801a536cec9fa5e5970b69f9d4747f70b39b031f5e7"
|
139
139
|
dependencies = [
|
140
140
|
"arrayref",
|
141
141
|
"arrayvec",
|
142
142
|
"cc",
|
143
143
|
"cfg-if",
|
144
144
|
"constant_time_eq",
|
145
|
-
"memmap2",
|
146
145
|
]
|
147
146
|
|
148
147
|
[[package]]
|
@@ -162,15 +161,15 @@ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
|
162
161
|
|
163
162
|
[[package]]
|
164
163
|
name = "bytes"
|
165
|
-
version = "1.10.
|
164
|
+
version = "1.10.1"
|
166
165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
167
|
-
checksum = "
|
166
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
168
167
|
|
169
168
|
[[package]]
|
170
169
|
name = "cc"
|
171
|
-
version = "1.2.
|
170
|
+
version = "1.2.17"
|
172
171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
173
|
-
checksum = "
|
172
|
+
checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
|
174
173
|
dependencies = [
|
175
174
|
"shlex",
|
176
175
|
]
|
@@ -183,9 +182,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
183
182
|
|
184
183
|
[[package]]
|
185
184
|
name = "clap"
|
186
|
-
version = "4.5.
|
185
|
+
version = "4.5.32"
|
187
186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
188
|
-
checksum = "
|
187
|
+
checksum = "6088f3ae8c3608d19260cd7445411865a485688711b78b5be70d78cd96136f83"
|
189
188
|
dependencies = [
|
190
189
|
"clap_builder",
|
191
190
|
"clap_derive",
|
@@ -193,9 +192,9 @@ dependencies = [
|
|
193
192
|
|
194
193
|
[[package]]
|
195
194
|
name = "clap_builder"
|
196
|
-
version = "4.5.
|
195
|
+
version = "4.5.32"
|
197
196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
198
|
-
checksum = "
|
197
|
+
checksum = "22a7ef7f676155edfb82daa97f99441f3ebf4a58d5e32f295a56259f1b6facc8"
|
199
198
|
dependencies = [
|
200
199
|
"anstream",
|
201
200
|
"anstyle",
|
@@ -205,9 +204,9 @@ dependencies = [
|
|
205
204
|
|
206
205
|
[[package]]
|
207
206
|
name = "clap_derive"
|
208
|
-
version = "4.5.
|
207
|
+
version = "4.5.32"
|
209
208
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
210
|
-
checksum = "
|
209
|
+
checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
|
211
210
|
dependencies = [
|
212
211
|
"heck",
|
213
212
|
"proc-macro2",
|
@@ -427,9 +426,9 @@ dependencies = [
|
|
427
426
|
|
428
427
|
[[package]]
|
429
428
|
name = "equivalent"
|
430
|
-
version = "1.0.
|
429
|
+
version = "1.0.2"
|
431
430
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
432
|
-
checksum = "
|
431
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
433
432
|
|
434
433
|
[[package]]
|
435
434
|
name = "errno"
|
@@ -476,9 +475,9 @@ dependencies = [
|
|
476
475
|
|
477
476
|
[[package]]
|
478
477
|
name = "flate2"
|
479
|
-
version = "1.0
|
478
|
+
version = "1.1.0"
|
480
479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
481
|
-
checksum = "
|
480
|
+
checksum = "11faaf5a5236997af9848be0bef4db95824b1d534ebc64d0f0c6cf3e67bd38dc"
|
482
481
|
dependencies = [
|
483
482
|
"crc32fast",
|
484
483
|
"miniz_oxide",
|
@@ -587,14 +586,14 @@ dependencies = [
|
|
587
586
|
|
588
587
|
[[package]]
|
589
588
|
name = "getrandom"
|
590
|
-
version = "0.3.
|
589
|
+
version = "0.3.2"
|
591
590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
592
|
-
checksum = "
|
591
|
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
|
593
592
|
dependencies = [
|
594
593
|
"cfg-if",
|
595
594
|
"libc",
|
596
|
-
"
|
597
|
-
"
|
595
|
+
"r-efi",
|
596
|
+
"wasi 0.14.2+wasi-0.2.4",
|
598
597
|
]
|
599
598
|
|
600
599
|
[[package]]
|
@@ -605,9 +604,9 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
605
604
|
|
606
605
|
[[package]]
|
607
606
|
name = "h2"
|
608
|
-
version = "0.4.
|
607
|
+
version = "0.4.8"
|
609
608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
610
|
-
checksum = "
|
609
|
+
checksum = "5017294ff4bb30944501348f6f8e42e6ad28f42c8bbef7a74029aff064a4e3c2"
|
611
610
|
dependencies = [
|
612
611
|
"atomic-waker",
|
613
612
|
"bytes",
|
@@ -624,9 +623,9 @@ dependencies = [
|
|
624
623
|
|
625
624
|
[[package]]
|
626
625
|
name = "handlebars"
|
627
|
-
version = "6.3.
|
626
|
+
version = "6.3.2"
|
628
627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
629
|
-
checksum = "
|
628
|
+
checksum = "759e2d5aea3287cb1190c8ec394f42866cb5bf74fcbf213f354e3c856ea26098"
|
630
629
|
dependencies = [
|
631
630
|
"derive_builder",
|
632
631
|
"log",
|
@@ -652,9 +651,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
652
651
|
|
653
652
|
[[package]]
|
654
653
|
name = "http"
|
655
|
-
version = "1.
|
654
|
+
version = "1.3.1"
|
656
655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
657
|
-
checksum = "
|
656
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
658
657
|
dependencies = [
|
659
658
|
"bytes",
|
660
659
|
"fnv",
|
@@ -673,12 +672,12 @@ dependencies = [
|
|
673
672
|
|
674
673
|
[[package]]
|
675
674
|
name = "http-body-util"
|
676
|
-
version = "0.1.
|
675
|
+
version = "0.1.3"
|
677
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
678
|
-
checksum = "
|
677
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
679
678
|
dependencies = [
|
680
679
|
"bytes",
|
681
|
-
"futures-
|
680
|
+
"futures-core",
|
682
681
|
"http",
|
683
682
|
"http-body",
|
684
683
|
"pin-project-lite",
|
@@ -686,9 +685,9 @@ dependencies = [
|
|
686
685
|
|
687
686
|
[[package]]
|
688
687
|
name = "httparse"
|
689
|
-
version = "1.10.
|
688
|
+
version = "1.10.1"
|
690
689
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
691
|
-
checksum = "
|
690
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
692
691
|
|
693
692
|
[[package]]
|
694
693
|
name = "hyper"
|
@@ -909,9 +908,9 @@ dependencies = [
|
|
909
908
|
|
910
909
|
[[package]]
|
911
910
|
name = "indexmap"
|
912
|
-
version = "2.
|
911
|
+
version = "2.8.0"
|
913
912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
914
|
-
checksum = "
|
913
|
+
checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
|
915
914
|
dependencies = [
|
916
915
|
"equivalent",
|
917
916
|
"hashbrown",
|
@@ -919,9 +918,9 @@ dependencies = [
|
|
919
918
|
|
920
919
|
[[package]]
|
921
920
|
name = "indoc"
|
922
|
-
version = "2.0.
|
921
|
+
version = "2.0.6"
|
923
922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
924
|
-
checksum = "
|
923
|
+
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
925
924
|
|
926
925
|
[[package]]
|
927
926
|
name = "ipnet"
|
@@ -937,9 +936,9 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
937
936
|
|
938
937
|
[[package]]
|
939
938
|
name = "itoa"
|
940
|
-
version = "1.0.
|
939
|
+
version = "1.0.15"
|
941
940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
942
|
-
checksum = "
|
941
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
943
942
|
|
944
943
|
[[package]]
|
945
944
|
name = "js-sys"
|
@@ -953,9 +952,9 @@ dependencies = [
|
|
953
952
|
|
954
953
|
[[package]]
|
955
954
|
name = "libc"
|
956
|
-
version = "0.2.
|
955
|
+
version = "0.2.171"
|
957
956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
958
|
-
checksum = "
|
957
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
959
958
|
|
960
959
|
[[package]]
|
961
960
|
name = "libredox"
|
@@ -970,21 +969,21 @@ dependencies = [
|
|
970
969
|
|
971
970
|
[[package]]
|
972
971
|
name = "linux-raw-sys"
|
973
|
-
version = "0.
|
972
|
+
version = "0.9.3"
|
974
973
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
975
|
-
checksum = "
|
974
|
+
checksum = "fe7db12097d22ec582439daf8618b8fdd1a7bef6270e9af3b1ebcd30893cf413"
|
976
975
|
|
977
976
|
[[package]]
|
978
977
|
name = "litemap"
|
979
|
-
version = "0.7.
|
978
|
+
version = "0.7.5"
|
980
979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
981
|
-
checksum = "
|
980
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
982
981
|
|
983
982
|
[[package]]
|
984
983
|
name = "log"
|
985
|
-
version = "0.4.
|
984
|
+
version = "0.4.27"
|
986
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
987
|
-
checksum = "
|
986
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
988
987
|
|
989
988
|
[[package]]
|
990
989
|
name = "memchr"
|
@@ -992,15 +991,6 @@ version = "2.7.4"
|
|
992
991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
993
992
|
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
994
993
|
|
995
|
-
[[package]]
|
996
|
-
name = "memmap2"
|
997
|
-
version = "0.9.5"
|
998
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
999
|
-
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
1000
|
-
dependencies = [
|
1001
|
-
"libc",
|
1002
|
-
]
|
1003
|
-
|
1004
994
|
[[package]]
|
1005
995
|
name = "memoffset"
|
1006
996
|
version = "0.9.1"
|
@@ -1018,9 +1008,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1018
1008
|
|
1019
1009
|
[[package]]
|
1020
1010
|
name = "miniz_oxide"
|
1021
|
-
version = "0.8.
|
1011
|
+
version = "0.8.5"
|
1022
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1023
|
-
checksum = "
|
1013
|
+
checksum = "8e3e04debbb59698c15bacbb6d93584a8c0ca9cc3213cb423d31f760d8843ce5"
|
1024
1014
|
dependencies = [
|
1025
1015
|
"adler2",
|
1026
1016
|
]
|
@@ -1038,9 +1028,9 @@ dependencies = [
|
|
1038
1028
|
|
1039
1029
|
[[package]]
|
1040
1030
|
name = "native-tls"
|
1041
|
-
version = "0.2.
|
1031
|
+
version = "0.2.14"
|
1042
1032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1043
|
-
checksum = "
|
1033
|
+
checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
|
1044
1034
|
dependencies = [
|
1045
1035
|
"libc",
|
1046
1036
|
"log",
|
@@ -1095,15 +1085,15 @@ dependencies = [
|
|
1095
1085
|
|
1096
1086
|
[[package]]
|
1097
1087
|
name = "once_cell"
|
1098
|
-
version = "1.
|
1088
|
+
version = "1.21.1"
|
1099
1089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1100
|
-
checksum = "
|
1090
|
+
checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
|
1101
1091
|
|
1102
1092
|
[[package]]
|
1103
1093
|
name = "openssl"
|
1104
|
-
version = "0.10.
|
1094
|
+
version = "0.10.71"
|
1105
1095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1106
|
-
checksum = "
|
1096
|
+
checksum = "5e14130c6a98cd258fdcb0fb6d744152343ff729cbfcb28c656a9d12b999fbcd"
|
1107
1097
|
dependencies = [
|
1108
1098
|
"bitflags",
|
1109
1099
|
"cfg-if",
|
@@ -1133,9 +1123,9 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1133
1123
|
|
1134
1124
|
[[package]]
|
1135
1125
|
name = "openssl-sys"
|
1136
|
-
version = "0.9.
|
1126
|
+
version = "0.9.106"
|
1137
1127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1138
|
-
checksum = "
|
1128
|
+
checksum = "8bb61ea9811cc39e3c2069f40b8b8e2e70d8569b361f879786cc7ed48b777cdd"
|
1139
1129
|
dependencies = [
|
1140
1130
|
"cc",
|
1141
1131
|
"libc",
|
@@ -1163,9 +1153,9 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
1163
1153
|
|
1164
1154
|
[[package]]
|
1165
1155
|
name = "pest"
|
1166
|
-
version = "2.
|
1156
|
+
version = "2.8.0"
|
1167
1157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1168
|
-
checksum = "
|
1158
|
+
checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
|
1169
1159
|
dependencies = [
|
1170
1160
|
"memchr",
|
1171
1161
|
"thiserror",
|
@@ -1174,9 +1164,9 @@ dependencies = [
|
|
1174
1164
|
|
1175
1165
|
[[package]]
|
1176
1166
|
name = "pest_derive"
|
1177
|
-
version = "2.
|
1167
|
+
version = "2.8.0"
|
1178
1168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1179
|
-
checksum = "
|
1169
|
+
checksum = "d725d9cfd79e87dccc9341a2ef39d1b6f6353d68c4b33c177febbe1a402c97c5"
|
1180
1170
|
dependencies = [
|
1181
1171
|
"pest",
|
1182
1172
|
"pest_generator",
|
@@ -1184,9 +1174,9 @@ dependencies = [
|
|
1184
1174
|
|
1185
1175
|
[[package]]
|
1186
1176
|
name = "pest_generator"
|
1187
|
-
version = "2.
|
1177
|
+
version = "2.8.0"
|
1188
1178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1189
|
-
checksum = "
|
1179
|
+
checksum = "db7d01726be8ab66ab32f9df467ae8b1148906685bbe75c82d1e65d7f5b3f841"
|
1190
1180
|
dependencies = [
|
1191
1181
|
"pest",
|
1192
1182
|
"pest_meta",
|
@@ -1197,9 +1187,9 @@ dependencies = [
|
|
1197
1187
|
|
1198
1188
|
[[package]]
|
1199
1189
|
name = "pest_meta"
|
1200
|
-
version = "2.
|
1190
|
+
version = "2.8.0"
|
1201
1191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1202
|
-
checksum = "
|
1192
|
+
checksum = "7f9f832470494906d1fca5329f8ab5791cc60beb230c74815dff541cbd2b5ca0"
|
1203
1193
|
dependencies = [
|
1204
1194
|
"once_cell",
|
1205
1195
|
"pest",
|
@@ -1220,30 +1210,30 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
1220
1210
|
|
1221
1211
|
[[package]]
|
1222
1212
|
name = "pkg-config"
|
1223
|
-
version = "0.3.
|
1213
|
+
version = "0.3.32"
|
1224
1214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1225
|
-
checksum = "
|
1215
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
1226
1216
|
|
1227
1217
|
[[package]]
|
1228
1218
|
name = "portable-atomic"
|
1229
|
-
version = "1.
|
1219
|
+
version = "1.11.0"
|
1230
1220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1231
|
-
checksum = "
|
1221
|
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
|
1232
1222
|
|
1233
1223
|
[[package]]
|
1234
1224
|
name = "proc-macro2"
|
1235
|
-
version = "1.0.
|
1225
|
+
version = "1.0.94"
|
1236
1226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1237
|
-
checksum = "
|
1227
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
1238
1228
|
dependencies = [
|
1239
1229
|
"unicode-ident",
|
1240
1230
|
]
|
1241
1231
|
|
1242
1232
|
[[package]]
|
1243
1233
|
name = "pyo3"
|
1244
|
-
version = "0.23.
|
1234
|
+
version = "0.23.5"
|
1245
1235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1246
|
-
checksum = "
|
1236
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
1247
1237
|
dependencies = [
|
1248
1238
|
"cfg-if",
|
1249
1239
|
"indoc",
|
@@ -1259,9 +1249,9 @@ dependencies = [
|
|
1259
1249
|
|
1260
1250
|
[[package]]
|
1261
1251
|
name = "pyo3-build-config"
|
1262
|
-
version = "0.23.
|
1252
|
+
version = "0.23.5"
|
1263
1253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1264
|
-
checksum = "
|
1254
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
1265
1255
|
dependencies = [
|
1266
1256
|
"once_cell",
|
1267
1257
|
"target-lexicon",
|
@@ -1269,9 +1259,9 @@ dependencies = [
|
|
1269
1259
|
|
1270
1260
|
[[package]]
|
1271
1261
|
name = "pyo3-ffi"
|
1272
|
-
version = "0.23.
|
1262
|
+
version = "0.23.5"
|
1273
1263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1274
|
-
checksum = "
|
1264
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
1275
1265
|
dependencies = [
|
1276
1266
|
"libc",
|
1277
1267
|
"pyo3-build-config",
|
@@ -1279,9 +1269,9 @@ dependencies = [
|
|
1279
1269
|
|
1280
1270
|
[[package]]
|
1281
1271
|
name = "pyo3-macros"
|
1282
|
-
version = "0.23.
|
1272
|
+
version = "0.23.5"
|
1283
1273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1284
|
-
checksum = "
|
1274
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
1285
1275
|
dependencies = [
|
1286
1276
|
"proc-macro2",
|
1287
1277
|
"pyo3-macros-backend",
|
@@ -1291,9 +1281,9 @@ dependencies = [
|
|
1291
1281
|
|
1292
1282
|
[[package]]
|
1293
1283
|
name = "pyo3-macros-backend"
|
1294
|
-
version = "0.23.
|
1284
|
+
version = "0.23.5"
|
1295
1285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1296
|
-
checksum = "
|
1286
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
1297
1287
|
dependencies = [
|
1298
1288
|
"heck",
|
1299
1289
|
"proc-macro2",
|
@@ -1314,13 +1304,19 @@ dependencies = [
|
|
1314
1304
|
|
1315
1305
|
[[package]]
|
1316
1306
|
name = "quote"
|
1317
|
-
version = "1.0.
|
1307
|
+
version = "1.0.40"
|
1318
1308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1319
|
-
checksum = "
|
1309
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
1320
1310
|
dependencies = [
|
1321
1311
|
"proc-macro2",
|
1322
1312
|
]
|
1323
1313
|
|
1314
|
+
[[package]]
|
1315
|
+
name = "r-efi"
|
1316
|
+
version = "5.2.0"
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1318
|
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
1319
|
+
|
1324
1320
|
[[package]]
|
1325
1321
|
name = "rayon"
|
1326
1322
|
version = "1.10.0"
|
@@ -1343,9 +1339,9 @@ dependencies = [
|
|
1343
1339
|
|
1344
1340
|
[[package]]
|
1345
1341
|
name = "redox_syscall"
|
1346
|
-
version = "0.5.
|
1342
|
+
version = "0.5.10"
|
1347
1343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1348
|
-
checksum = "
|
1344
|
+
checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
|
1349
1345
|
dependencies = [
|
1350
1346
|
"bitflags",
|
1351
1347
|
]
|
@@ -1363,9 +1359,9 @@ dependencies = [
|
|
1363
1359
|
|
1364
1360
|
[[package]]
|
1365
1361
|
name = "reqwest"
|
1366
|
-
version = "0.12.
|
1362
|
+
version = "0.12.15"
|
1367
1363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1368
|
-
checksum = "
|
1364
|
+
checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
|
1369
1365
|
dependencies = [
|
1370
1366
|
"base64",
|
1371
1367
|
"bytes",
|
@@ -1408,9 +1404,9 @@ dependencies = [
|
|
1408
1404
|
|
1409
1405
|
[[package]]
|
1410
1406
|
name = "ring"
|
1411
|
-
version = "0.17.
|
1407
|
+
version = "0.17.14"
|
1412
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1413
|
-
checksum = "
|
1409
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
1414
1410
|
dependencies = [
|
1415
1411
|
"cc",
|
1416
1412
|
"cfg-if",
|
@@ -1428,9 +1424,9 @@ checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
|
1428
1424
|
|
1429
1425
|
[[package]]
|
1430
1426
|
name = "rustix"
|
1431
|
-
version = "0.
|
1427
|
+
version = "1.0.3"
|
1432
1428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1433
|
-
checksum = "
|
1429
|
+
checksum = "e56a18552996ac8d29ecc3b190b4fdbb2d91ca4ec396de7bbffaf43f3d637e96"
|
1434
1430
|
dependencies = [
|
1435
1431
|
"bitflags",
|
1436
1432
|
"errno",
|
@@ -1441,9 +1437,9 @@ dependencies = [
|
|
1441
1437
|
|
1442
1438
|
[[package]]
|
1443
1439
|
name = "rustls"
|
1444
|
-
version = "0.23.
|
1440
|
+
version = "0.23.25"
|
1445
1441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1446
|
-
checksum = "
|
1442
|
+
checksum = "822ee9188ac4ec04a2f0531e55d035fb2de73f18b41a63c70c2712503b6fb13c"
|
1447
1443
|
dependencies = [
|
1448
1444
|
"once_cell",
|
1449
1445
|
"rustls-pki-types",
|
@@ -1469,9 +1465,9 @@ checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
|
1469
1465
|
|
1470
1466
|
[[package]]
|
1471
1467
|
name = "rustls-webpki"
|
1472
|
-
version = "0.
|
1468
|
+
version = "0.103.1"
|
1473
1469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1474
|
-
checksum = "
|
1470
|
+
checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03"
|
1475
1471
|
dependencies = [
|
1476
1472
|
"ring",
|
1477
1473
|
"rustls-pki-types",
|
@@ -1480,15 +1476,15 @@ dependencies = [
|
|
1480
1476
|
|
1481
1477
|
[[package]]
|
1482
1478
|
name = "rustversion"
|
1483
|
-
version = "1.0.
|
1479
|
+
version = "1.0.20"
|
1484
1480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1485
|
-
checksum = "
|
1481
|
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
1486
1482
|
|
1487
1483
|
[[package]]
|
1488
1484
|
name = "ryu"
|
1489
|
-
version = "1.0.
|
1485
|
+
version = "1.0.20"
|
1490
1486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1491
|
-
checksum = "
|
1487
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
1492
1488
|
|
1493
1489
|
[[package]]
|
1494
1490
|
name = "same-file"
|
@@ -1533,18 +1529,18 @@ dependencies = [
|
|
1533
1529
|
|
1534
1530
|
[[package]]
|
1535
1531
|
name = "serde"
|
1536
|
-
version = "1.0.
|
1532
|
+
version = "1.0.219"
|
1537
1533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1538
|
-
checksum = "
|
1534
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
1539
1535
|
dependencies = [
|
1540
1536
|
"serde_derive",
|
1541
1537
|
]
|
1542
1538
|
|
1543
1539
|
[[package]]
|
1544
1540
|
name = "serde_derive"
|
1545
|
-
version = "1.0.
|
1541
|
+
version = "1.0.219"
|
1546
1542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1547
|
-
checksum = "
|
1543
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
1548
1544
|
dependencies = [
|
1549
1545
|
"proc-macro2",
|
1550
1546
|
"quote",
|
@@ -1553,9 +1549,9 @@ dependencies = [
|
|
1553
1549
|
|
1554
1550
|
[[package]]
|
1555
1551
|
name = "serde_json"
|
1556
|
-
version = "1.0.
|
1552
|
+
version = "1.0.140"
|
1557
1553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1558
|
-
checksum = "
|
1554
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
1559
1555
|
dependencies = [
|
1560
1556
|
"itoa",
|
1561
1557
|
"memchr",
|
@@ -1603,9 +1599,9 @@ dependencies = [
|
|
1603
1599
|
|
1604
1600
|
[[package]]
|
1605
1601
|
name = "smallvec"
|
1606
|
-
version = "1.
|
1602
|
+
version = "1.14.0"
|
1607
1603
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1608
|
-
checksum = "
|
1604
|
+
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
1609
1605
|
|
1610
1606
|
[[package]]
|
1611
1607
|
name = "socket2"
|
@@ -1659,9 +1655,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1659
1655
|
|
1660
1656
|
[[package]]
|
1661
1657
|
name = "syn"
|
1662
|
-
version = "2.0.
|
1658
|
+
version = "2.0.100"
|
1663
1659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1664
|
-
checksum = "
|
1660
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
1665
1661
|
dependencies = [
|
1666
1662
|
"proc-macro2",
|
1667
1663
|
"quote",
|
@@ -1711,9 +1707,9 @@ dependencies = [
|
|
1711
1707
|
|
1712
1708
|
[[package]]
|
1713
1709
|
name = "tar"
|
1714
|
-
version = "0.4.
|
1710
|
+
version = "0.4.44"
|
1715
1711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1716
|
-
checksum = "
|
1712
|
+
checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
|
1717
1713
|
dependencies = [
|
1718
1714
|
"filetime",
|
1719
1715
|
"libc",
|
@@ -1728,13 +1724,12 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
1728
1724
|
|
1729
1725
|
[[package]]
|
1730
1726
|
name = "tempfile"
|
1731
|
-
version = "3.
|
1727
|
+
version = "3.19.1"
|
1732
1728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1733
|
-
checksum = "
|
1729
|
+
checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
|
1734
1730
|
dependencies = [
|
1735
|
-
"cfg-if",
|
1736
1731
|
"fastrand",
|
1737
|
-
"getrandom 0.3.
|
1732
|
+
"getrandom 0.3.2",
|
1738
1733
|
"once_cell",
|
1739
1734
|
"rustix",
|
1740
1735
|
"windows-sys 0.59.0",
|
@@ -1742,18 +1737,18 @@ dependencies = [
|
|
1742
1737
|
|
1743
1738
|
[[package]]
|
1744
1739
|
name = "thiserror"
|
1745
|
-
version = "2.0.
|
1740
|
+
version = "2.0.12"
|
1746
1741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1747
|
-
checksum = "
|
1742
|
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
|
1748
1743
|
dependencies = [
|
1749
1744
|
"thiserror-impl",
|
1750
1745
|
]
|
1751
1746
|
|
1752
1747
|
[[package]]
|
1753
1748
|
name = "thiserror-impl"
|
1754
|
-
version = "2.0.
|
1749
|
+
version = "2.0.12"
|
1755
1750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1756
|
-
checksum = "
|
1751
|
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
1757
1752
|
dependencies = [
|
1758
1753
|
"proc-macro2",
|
1759
1754
|
"quote",
|
@@ -1787,9 +1782,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1787
1782
|
|
1788
1783
|
[[package]]
|
1789
1784
|
name = "tokio"
|
1790
|
-
version = "1.
|
1785
|
+
version = "1.44.1"
|
1791
1786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1792
|
-
checksum = "
|
1787
|
+
checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a"
|
1793
1788
|
dependencies = [
|
1794
1789
|
"backtrace",
|
1795
1790
|
"bytes",
|
@@ -1812,9 +1807,9 @@ dependencies = [
|
|
1812
1807
|
|
1813
1808
|
[[package]]
|
1814
1809
|
name = "tokio-rustls"
|
1815
|
-
version = "0.26.
|
1810
|
+
version = "0.26.2"
|
1816
1811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1817
|
-
checksum = "
|
1812
|
+
checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
|
1818
1813
|
dependencies = [
|
1819
1814
|
"rustls",
|
1820
1815
|
"tokio",
|
@@ -1822,9 +1817,9 @@ dependencies = [
|
|
1822
1817
|
|
1823
1818
|
[[package]]
|
1824
1819
|
name = "tokio-util"
|
1825
|
-
version = "0.7.
|
1820
|
+
version = "0.7.14"
|
1826
1821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1827
|
-
checksum = "
|
1822
|
+
checksum = "6b9590b93e6fcc1739458317cccd391ad3955e2bde8913edf6f95f9e65a8f034"
|
1828
1823
|
dependencies = [
|
1829
1824
|
"bytes",
|
1830
1825
|
"futures-core",
|
@@ -1899,9 +1894,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1899
1894
|
|
1900
1895
|
[[package]]
|
1901
1896
|
name = "typenum"
|
1902
|
-
version = "1.
|
1897
|
+
version = "1.18.0"
|
1903
1898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1904
|
-
checksum = "
|
1899
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
1905
1900
|
|
1906
1901
|
[[package]]
|
1907
1902
|
name = "ucd-trie"
|
@@ -1911,9 +1906,9 @@ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
1911
1906
|
|
1912
1907
|
[[package]]
|
1913
1908
|
name = "unicode-ident"
|
1914
|
-
version = "1.0.
|
1909
|
+
version = "1.0.18"
|
1915
1910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1916
|
-
checksum = "
|
1911
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
1917
1912
|
|
1918
1913
|
[[package]]
|
1919
1914
|
name = "unicode-normalization"
|
@@ -1932,9 +1927,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1932
1927
|
|
1933
1928
|
[[package]]
|
1934
1929
|
name = "unindent"
|
1935
|
-
version = "0.2.
|
1930
|
+
version = "0.2.4"
|
1936
1931
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1937
|
-
checksum = "
|
1932
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
1938
1933
|
|
1939
1934
|
[[package]]
|
1940
1935
|
name = "unscanny"
|
@@ -2016,9 +2011,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
2016
2011
|
|
2017
2012
|
[[package]]
|
2018
2013
|
name = "wasi"
|
2019
|
-
version = "0.
|
2014
|
+
version = "0.14.2+wasi-0.2.4"
|
2020
2015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021
|
-
checksum = "
|
2016
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
2022
2017
|
dependencies = [
|
2023
2018
|
"wit-bindgen-rt",
|
2024
2019
|
]
|
@@ -2113,34 +2108,39 @@ dependencies = [
|
|
2113
2108
|
"windows-sys 0.59.0",
|
2114
2109
|
]
|
2115
2110
|
|
2111
|
+
[[package]]
|
2112
|
+
name = "windows-link"
|
2113
|
+
version = "0.1.1"
|
2114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2115
|
+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
|
2116
|
+
|
2116
2117
|
[[package]]
|
2117
2118
|
name = "windows-registry"
|
2118
|
-
version = "0.
|
2119
|
+
version = "0.4.0"
|
2119
2120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2120
|
-
checksum = "
|
2121
|
+
checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
|
2121
2122
|
dependencies = [
|
2122
2123
|
"windows-result",
|
2123
2124
|
"windows-strings",
|
2124
|
-
"windows-targets",
|
2125
|
+
"windows-targets 0.53.0",
|
2125
2126
|
]
|
2126
2127
|
|
2127
2128
|
[[package]]
|
2128
2129
|
name = "windows-result"
|
2129
|
-
version = "0.2
|
2130
|
+
version = "0.3.2"
|
2130
2131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2131
|
-
checksum = "
|
2132
|
+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
|
2132
2133
|
dependencies = [
|
2133
|
-
"windows-
|
2134
|
+
"windows-link",
|
2134
2135
|
]
|
2135
2136
|
|
2136
2137
|
[[package]]
|
2137
2138
|
name = "windows-strings"
|
2138
|
-
version = "0.1
|
2139
|
+
version = "0.3.1"
|
2139
2140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2140
|
-
checksum = "
|
2141
|
+
checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
|
2141
2142
|
dependencies = [
|
2142
|
-
"windows-
|
2143
|
-
"windows-targets",
|
2143
|
+
"windows-link",
|
2144
2144
|
]
|
2145
2145
|
|
2146
2146
|
[[package]]
|
@@ -2149,7 +2149,7 @@ version = "0.52.0"
|
|
2149
2149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2150
2150
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2151
2151
|
dependencies = [
|
2152
|
-
"windows-targets",
|
2152
|
+
"windows-targets 0.52.6",
|
2153
2153
|
]
|
2154
2154
|
|
2155
2155
|
[[package]]
|
@@ -2158,7 +2158,7 @@ version = "0.59.0"
|
|
2158
2158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2159
2159
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
2160
2160
|
dependencies = [
|
2161
|
-
"windows-targets",
|
2161
|
+
"windows-targets 0.52.6",
|
2162
2162
|
]
|
2163
2163
|
|
2164
2164
|
[[package]]
|
@@ -2167,14 +2167,30 @@ version = "0.52.6"
|
|
2167
2167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2168
2168
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
2169
2169
|
dependencies = [
|
2170
|
-
"windows_aarch64_gnullvm",
|
2171
|
-
"windows_aarch64_msvc",
|
2172
|
-
"windows_i686_gnu",
|
2173
|
-
"windows_i686_gnullvm",
|
2174
|
-
"windows_i686_msvc",
|
2175
|
-
"windows_x86_64_gnu",
|
2176
|
-
"windows_x86_64_gnullvm",
|
2177
|
-
"windows_x86_64_msvc",
|
2170
|
+
"windows_aarch64_gnullvm 0.52.6",
|
2171
|
+
"windows_aarch64_msvc 0.52.6",
|
2172
|
+
"windows_i686_gnu 0.52.6",
|
2173
|
+
"windows_i686_gnullvm 0.52.6",
|
2174
|
+
"windows_i686_msvc 0.52.6",
|
2175
|
+
"windows_x86_64_gnu 0.52.6",
|
2176
|
+
"windows_x86_64_gnullvm 0.52.6",
|
2177
|
+
"windows_x86_64_msvc 0.52.6",
|
2178
|
+
]
|
2179
|
+
|
2180
|
+
[[package]]
|
2181
|
+
name = "windows-targets"
|
2182
|
+
version = "0.53.0"
|
2183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2184
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
2185
|
+
dependencies = [
|
2186
|
+
"windows_aarch64_gnullvm 0.53.0",
|
2187
|
+
"windows_aarch64_msvc 0.53.0",
|
2188
|
+
"windows_i686_gnu 0.53.0",
|
2189
|
+
"windows_i686_gnullvm 0.53.0",
|
2190
|
+
"windows_i686_msvc 0.53.0",
|
2191
|
+
"windows_x86_64_gnu 0.53.0",
|
2192
|
+
"windows_x86_64_gnullvm 0.53.0",
|
2193
|
+
"windows_x86_64_msvc 0.53.0",
|
2178
2194
|
]
|
2179
2195
|
|
2180
2196
|
[[package]]
|
@@ -2183,53 +2199,101 @@ version = "0.52.6"
|
|
2183
2199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2184
2200
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
2185
2201
|
|
2202
|
+
[[package]]
|
2203
|
+
name = "windows_aarch64_gnullvm"
|
2204
|
+
version = "0.53.0"
|
2205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2206
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
2207
|
+
|
2186
2208
|
[[package]]
|
2187
2209
|
name = "windows_aarch64_msvc"
|
2188
2210
|
version = "0.52.6"
|
2189
2211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2190
2212
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
2191
2213
|
|
2214
|
+
[[package]]
|
2215
|
+
name = "windows_aarch64_msvc"
|
2216
|
+
version = "0.53.0"
|
2217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2218
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
2219
|
+
|
2192
2220
|
[[package]]
|
2193
2221
|
name = "windows_i686_gnu"
|
2194
2222
|
version = "0.52.6"
|
2195
2223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2196
2224
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
2197
2225
|
|
2226
|
+
[[package]]
|
2227
|
+
name = "windows_i686_gnu"
|
2228
|
+
version = "0.53.0"
|
2229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2230
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
2231
|
+
|
2198
2232
|
[[package]]
|
2199
2233
|
name = "windows_i686_gnullvm"
|
2200
2234
|
version = "0.52.6"
|
2201
2235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2202
2236
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
2203
2237
|
|
2238
|
+
[[package]]
|
2239
|
+
name = "windows_i686_gnullvm"
|
2240
|
+
version = "0.53.0"
|
2241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2242
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
2243
|
+
|
2204
2244
|
[[package]]
|
2205
2245
|
name = "windows_i686_msvc"
|
2206
2246
|
version = "0.52.6"
|
2207
2247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2208
2248
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
2209
2249
|
|
2250
|
+
[[package]]
|
2251
|
+
name = "windows_i686_msvc"
|
2252
|
+
version = "0.53.0"
|
2253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2254
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
2255
|
+
|
2210
2256
|
[[package]]
|
2211
2257
|
name = "windows_x86_64_gnu"
|
2212
2258
|
version = "0.52.6"
|
2213
2259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2214
2260
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
2215
2261
|
|
2262
|
+
[[package]]
|
2263
|
+
name = "windows_x86_64_gnu"
|
2264
|
+
version = "0.53.0"
|
2265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2266
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
2267
|
+
|
2216
2268
|
[[package]]
|
2217
2269
|
name = "windows_x86_64_gnullvm"
|
2218
2270
|
version = "0.52.6"
|
2219
2271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2220
2272
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
2221
2273
|
|
2274
|
+
[[package]]
|
2275
|
+
name = "windows_x86_64_gnullvm"
|
2276
|
+
version = "0.53.0"
|
2277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2278
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
2279
|
+
|
2222
2280
|
[[package]]
|
2223
2281
|
name = "windows_x86_64_msvc"
|
2224
2282
|
version = "0.52.6"
|
2225
2283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2226
2284
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2227
2285
|
|
2286
|
+
[[package]]
|
2287
|
+
name = "windows_x86_64_msvc"
|
2288
|
+
version = "0.53.0"
|
2289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2290
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
2291
|
+
|
2228
2292
|
[[package]]
|
2229
2293
|
name = "wit-bindgen-rt"
|
2230
|
-
version = "0.
|
2294
|
+
version = "0.39.0"
|
2231
2295
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2232
|
-
checksum = "
|
2296
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
2233
2297
|
dependencies = [
|
2234
2298
|
"bitflags",
|
2235
2299
|
]
|
@@ -2248,12 +2312,11 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
2248
2312
|
|
2249
2313
|
[[package]]
|
2250
2314
|
name = "xattr"
|
2251
|
-
version = "1.
|
2315
|
+
version = "1.5.0"
|
2252
2316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2253
|
-
checksum = "
|
2317
|
+
checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
|
2254
2318
|
dependencies = [
|
2255
2319
|
"libc",
|
2256
|
-
"linux-raw-sys",
|
2257
2320
|
"rustix",
|
2258
2321
|
]
|
2259
2322
|
|
@@ -2283,18 +2346,18 @@ dependencies = [
|
|
2283
2346
|
|
2284
2347
|
[[package]]
|
2285
2348
|
name = "zerofrom"
|
2286
|
-
version = "0.1.
|
2349
|
+
version = "0.1.6"
|
2287
2350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2288
|
-
checksum = "
|
2351
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
2289
2352
|
dependencies = [
|
2290
2353
|
"zerofrom-derive",
|
2291
2354
|
]
|
2292
2355
|
|
2293
2356
|
[[package]]
|
2294
2357
|
name = "zerofrom-derive"
|
2295
|
-
version = "0.1.
|
2358
|
+
version = "0.1.6"
|
2296
2359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2297
|
-
checksum = "
|
2360
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
2298
2361
|
dependencies = [
|
2299
2362
|
"proc-macro2",
|
2300
2363
|
"quote",
|