fabricatio 0.2.9.dev4__tar.gz → 0.2.10__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.9.dev4 → fabricatio-0.2.10}/Cargo.lock +524 -24
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/Cargo.toml +2 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/PKG-INFO +1 -4
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/README.md +0 -2
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/extract_and_inject/.gitignore +2 -1
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/extract_and_inject/ask.py +16 -17
- fabricatio-0.2.10/examples/extract_and_inject/chunk_article.py +41 -0
- fabricatio-0.2.10/examples/propose_task/.gitignore +2 -0
- fabricatio-0.2.10/examples/propose_task/propose.py +49 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/search_bibtex/search.py +1 -1
- fabricatio-0.2.10/examples/write_article/post_process.py +10 -0
- fabricatio-0.2.10/examples/write_article/write_article.py +200 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/pyproject.toml +1 -2
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/actions/article.py +20 -106
- fabricatio-0.2.10/python/fabricatio/actions/article_rag.py +236 -0
- fabricatio-0.2.10/python/fabricatio/actions/fs.py +25 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/actions/output.py +17 -3
- fabricatio-0.2.10/python/fabricatio/actions/rag.py +96 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/actions/rules.py +14 -3
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/capabilities/check.py +2 -1
- fabricatio-0.2.10/python/fabricatio/capabilities/rag.py +232 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/config.py +4 -2
- fabricatio-0.2.10/python/fabricatio/constants.py +20 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/decorators.py +23 -0
- fabricatio-0.2.10/python/fabricatio/models/adv_kwargs_types.py +60 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/events.py +6 -6
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/extra/advanced_judge.py +2 -2
- fabricatio-0.2.10/python/fabricatio/models/extra/aricle_rag.py +170 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/extra/article_base.py +2 -186
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/extra/article_essence.py +8 -7
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/extra/article_main.py +39 -107
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/extra/problem.py +12 -17
- fabricatio-0.2.10/python/fabricatio/models/extra/rag.py +98 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/extra/rule.py +1 -2
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/generic.py +35 -12
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/kwargs_types.py +8 -36
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/task.py +3 -3
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/usages.py +80 -6
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/rust.pyi +138 -6
- fabricatio-0.2.10/python/fabricatio/utils.py +112 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/src/bib_tools.rs +44 -27
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/src/hash.rs +1 -1
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/src/hbs_helpers.rs +1 -1
- fabricatio-0.2.10/src/language.rs +126 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/src/lib.rs +3 -1
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/src/templates.rs +2 -1
- fabricatio-0.2.10/src/typst_tools.rs +46 -0
- fabricatio-0.2.10/src/word_split.rs +86 -0
- fabricatio-0.2.10/templates/built-in/check_string.hbs +22 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/extract_criteria_from_reasons.hbs +3 -3
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/extract_reasons_from_examples.hbs +5 -3
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/refined_query.hbs +7 -6
- fabricatio-0.2.10/templates.tar.gz +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/tests/test_models/test_action.py +1 -1
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/tests/test_models/test_problem.py +7 -7
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/tests/test_models/test_task.py +1 -1
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/uv.lock +97 -122
- fabricatio-0.2.9.dev4/examples/propose_task/propose.py +0 -32
- fabricatio-0.2.9.dev4/examples/write_article/write_article.py +0 -64
- fabricatio-0.2.9.dev4/python/fabricatio/actions/article_rag.py +0 -105
- fabricatio-0.2.9.dev4/python/fabricatio/actions/rag.py +0 -74
- fabricatio-0.2.9.dev4/python/fabricatio/capabilities/rag.py +0 -422
- fabricatio-0.2.9.dev4/python/fabricatio/models/adv_kwargs_types.py +0 -25
- fabricatio-0.2.9.dev4/python/fabricatio/models/utils.py +0 -148
- fabricatio-0.2.9.dev4/python/fabricatio/utils.py +0 -54
- fabricatio-0.2.9.dev4/src/language.rs +0 -41
- fabricatio-0.2.9.dev4/src/word_split.rs +0 -27
- fabricatio-0.2.9.dev4/templates/built-in/check_string.hbs +0 -19
- fabricatio-0.2.9.dev4/templates.tar.gz +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/.github/workflows/build-package.yaml +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/.github/workflows/ruff.yaml +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/.github/workflows/tests.yaml +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/.gitignore +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/.python-version +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/LICENSE +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/Makefile +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/correct/correct.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/correct/correct_loop.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/extract_and_inject/article_rag.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/extract_and_inject/extract_and_inject.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/extract_article/extract.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/llm_usages/llm_usage.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/make_a_rating/rating.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/make_diary/commits.json +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/make_diary/diary.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/minor/hello_fabricatio.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/minor/write_a_poem.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/reviewer/censor.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/reviewer/review.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/rules/.gitignore +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/rules/draft_ruleset.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/search_bibtex/.gitignore +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/simple_chat/chat.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/simple_rag/simple_rag.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/task_handle/handle_task.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/write_article/.gitignore +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/write_article/article_rag.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/write_outline/.gitignore +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/write_outline/write_outline.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/examples/write_outline/write_outline_corrected.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/__init__.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/actions/__init__.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/capabilities/__init__.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/capabilities/advanced_judge.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/capabilities/censor.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/capabilities/correct.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/capabilities/propose.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/capabilities/rating.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/capabilities/review.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/capabilities/task.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/core.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/fs/__init__.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/fs/curd.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/fs/readers.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/journal.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/action.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/extra/__init__.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/extra/article_outline.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/extra/article_proposal.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/extra/patches.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/role.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/models/tool.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/parser.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/py.typed +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/rust_instances.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/toolboxes/__init__.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/toolboxes/arithmetic.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/toolboxes/fs.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/workflows/__init__.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/workflows/articles.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/python/fabricatio/workflows/rag.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/as_prompt.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/binary-exploitation-ctf-solver.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/claude-xml.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/clean-up-code.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/co_validation.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/create_json_obj.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/cryptography-ctf-solver.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/dependencies.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/document-the-code.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/draft_rating_criteria.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/draft_rating_manual.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/draft_rating_weights_klee.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/draft_tool_usage_code.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/find-security-vulnerabilities.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/fix-bugs.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/fix_troubled_obj.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/fix_troubled_string.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/generic_string.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/improve-performance.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/liststr.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/make_choice.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/make_judgment.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/pathstr.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/rate_fine_grind.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/refactor.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/retrieved_display.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/reverse-engineering-ctf-solver.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/review_string.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/rule_requirement.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/ruleset_requirement_breakdown.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/task_briefing.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/web-ctf-solver.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/write-git-commit.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/write-github-pull-request.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/templates/built-in/write-github-readme.hbs +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/tests/test_config.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/tests/test_models/test_advanced.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/tests/test_models/test_generic.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/tests/test_models/test_role.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/tests/test_models/test_tool.py +0 -0
- {fabricatio-0.2.9.dev4 → fabricatio-0.2.10}/tests/test_models/test_usages.py +0 -0
@@ -17,6 +17,26 @@ version = "2.0.0"
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
18
|
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
19
19
|
|
20
|
+
[[package]]
|
21
|
+
name = "ahash"
|
22
|
+
version = "0.7.8"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
25
|
+
dependencies = [
|
26
|
+
"getrandom 0.2.15",
|
27
|
+
"once_cell",
|
28
|
+
"version_check",
|
29
|
+
]
|
30
|
+
|
31
|
+
[[package]]
|
32
|
+
name = "aho-corasick"
|
33
|
+
version = "1.1.3"
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
35
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
36
|
+
dependencies = [
|
37
|
+
"memchr",
|
38
|
+
]
|
39
|
+
|
20
40
|
[[package]]
|
21
41
|
name = "anstream"
|
22
42
|
version = "0.6.18"
|
@@ -67,6 +87,12 @@ dependencies = [
|
|
67
87
|
"windows-sys 0.59.0",
|
68
88
|
]
|
69
89
|
|
90
|
+
[[package]]
|
91
|
+
name = "anyhow"
|
92
|
+
version = "1.0.97"
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
94
|
+
checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
|
95
|
+
|
70
96
|
[[package]]
|
71
97
|
name = "arrayref"
|
72
98
|
version = "0.3.9"
|
@@ -112,6 +138,12 @@ version = "0.22.1"
|
|
112
138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
113
139
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
114
140
|
|
141
|
+
[[package]]
|
142
|
+
name = "beef"
|
143
|
+
version = "0.5.2"
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
145
|
+
checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
|
146
|
+
|
115
147
|
[[package]]
|
116
148
|
name = "biblatex"
|
117
149
|
version = "0.10.0"
|
@@ -131,6 +163,18 @@ version = "2.9.0"
|
|
131
163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
132
164
|
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
133
165
|
|
166
|
+
[[package]]
|
167
|
+
name = "bitvec"
|
168
|
+
version = "1.0.1"
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
170
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
171
|
+
dependencies = [
|
172
|
+
"funty",
|
173
|
+
"radium",
|
174
|
+
"tap",
|
175
|
+
"wyz",
|
176
|
+
]
|
177
|
+
|
134
178
|
[[package]]
|
135
179
|
name = "blake3"
|
136
180
|
version = "1.7.0"
|
@@ -159,6 +203,34 @@ version = "3.17.0"
|
|
159
203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
160
204
|
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
|
161
205
|
|
206
|
+
[[package]]
|
207
|
+
name = "bytecheck"
|
208
|
+
version = "0.6.12"
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
210
|
+
checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
|
211
|
+
dependencies = [
|
212
|
+
"bytecheck_derive",
|
213
|
+
"ptr_meta",
|
214
|
+
"simdutf8",
|
215
|
+
]
|
216
|
+
|
217
|
+
[[package]]
|
218
|
+
name = "bytecheck_derive"
|
219
|
+
version = "0.6.12"
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
221
|
+
checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
|
222
|
+
dependencies = [
|
223
|
+
"proc-macro2",
|
224
|
+
"quote",
|
225
|
+
"syn 1.0.109",
|
226
|
+
]
|
227
|
+
|
228
|
+
[[package]]
|
229
|
+
name = "byteorder"
|
230
|
+
version = "1.5.0"
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
232
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
233
|
+
|
162
234
|
[[package]]
|
163
235
|
name = "bytes"
|
164
236
|
version = "1.10.1"
|
@@ -211,7 +283,7 @@ dependencies = [
|
|
211
283
|
"heck",
|
212
284
|
"proc-macro2",
|
213
285
|
"quote",
|
214
|
-
"syn",
|
286
|
+
"syn 2.0.100",
|
215
287
|
]
|
216
288
|
|
217
289
|
[[package]]
|
@@ -248,6 +320,12 @@ version = "0.8.7"
|
|
248
320
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
249
321
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
250
322
|
|
323
|
+
[[package]]
|
324
|
+
name = "countme"
|
325
|
+
version = "3.0.1"
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
327
|
+
checksum = "7704b5fdd17b18ae31c4c1da5a2e0305a2bf17b5249300a9ee9ed7b72114c636"
|
328
|
+
|
251
329
|
[[package]]
|
252
330
|
name = "cpufeatures"
|
253
331
|
version = "0.2.17"
|
@@ -322,7 +400,7 @@ dependencies = [
|
|
322
400
|
"proc-macro2",
|
323
401
|
"quote",
|
324
402
|
"strsim",
|
325
|
-
"syn",
|
403
|
+
"syn 2.0.100",
|
326
404
|
]
|
327
405
|
|
328
406
|
[[package]]
|
@@ -333,7 +411,7 @@ checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
333
411
|
dependencies = [
|
334
412
|
"darling_core",
|
335
413
|
"quote",
|
336
|
-
"syn",
|
414
|
+
"syn 2.0.100",
|
337
415
|
]
|
338
416
|
|
339
417
|
[[package]]
|
@@ -354,7 +432,7 @@ dependencies = [
|
|
354
432
|
"darling",
|
355
433
|
"proc-macro2",
|
356
434
|
"quote",
|
357
|
-
"syn",
|
435
|
+
"syn 2.0.100",
|
358
436
|
]
|
359
437
|
|
360
438
|
[[package]]
|
@@ -364,7 +442,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
442
|
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
365
443
|
dependencies = [
|
366
444
|
"derive_builder_core",
|
367
|
-
"syn",
|
445
|
+
"syn 2.0.100",
|
368
446
|
]
|
369
447
|
|
370
448
|
[[package]]
|
@@ -406,15 +484,30 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
406
484
|
dependencies = [
|
407
485
|
"proc-macro2",
|
408
486
|
"quote",
|
409
|
-
"syn",
|
487
|
+
"syn 2.0.100",
|
410
488
|
]
|
411
489
|
|
490
|
+
[[package]]
|
491
|
+
name = "ecow"
|
492
|
+
version = "0.2.4"
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
494
|
+
checksum = "ef5eeffa816451f3a6a4cce9cd796e3e5ba6018638d3ce5cc7f87b73bababf60"
|
495
|
+
|
412
496
|
[[package]]
|
413
497
|
name = "either"
|
414
498
|
version = "1.15.0"
|
415
499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
416
500
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
417
501
|
|
502
|
+
[[package]]
|
503
|
+
name = "ena"
|
504
|
+
version = "0.14.3"
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
506
|
+
checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5"
|
507
|
+
dependencies = [
|
508
|
+
"log",
|
509
|
+
]
|
510
|
+
|
418
511
|
[[package]]
|
419
512
|
name = "encoding_rs"
|
420
513
|
version = "0.8.35"
|
@@ -447,10 +540,12 @@ dependencies = [
|
|
447
540
|
"biblatex",
|
448
541
|
"blake3",
|
449
542
|
"handlebars",
|
543
|
+
"mitex",
|
450
544
|
"nucleo-matcher",
|
451
545
|
"pyo3",
|
452
546
|
"pythonize",
|
453
547
|
"rayon",
|
548
|
+
"regex",
|
454
549
|
"serde_json",
|
455
550
|
"unicode-segmentation",
|
456
551
|
"walkdir",
|
@@ -515,6 +610,12 @@ dependencies = [
|
|
515
610
|
"percent-encoding",
|
516
611
|
]
|
517
612
|
|
613
|
+
[[package]]
|
614
|
+
name = "funty"
|
615
|
+
version = "2.0.0"
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
617
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
618
|
+
|
518
619
|
[[package]]
|
519
620
|
name = "futures-channel"
|
520
621
|
version = "0.3.31"
|
@@ -565,6 +666,15 @@ dependencies = [
|
|
565
666
|
"slab",
|
566
667
|
]
|
567
668
|
|
669
|
+
[[package]]
|
670
|
+
name = "fxhash"
|
671
|
+
version = "0.2.1"
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
673
|
+
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
674
|
+
dependencies = [
|
675
|
+
"byteorder",
|
676
|
+
]
|
677
|
+
|
568
678
|
[[package]]
|
569
679
|
name = "generic-array"
|
570
680
|
version = "0.14.7"
|
@@ -639,6 +749,21 @@ dependencies = [
|
|
639
749
|
"thiserror",
|
640
750
|
]
|
641
751
|
|
752
|
+
[[package]]
|
753
|
+
name = "hashbrown"
|
754
|
+
version = "0.12.3"
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
756
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
757
|
+
dependencies = [
|
758
|
+
"ahash",
|
759
|
+
]
|
760
|
+
|
761
|
+
[[package]]
|
762
|
+
name = "hashbrown"
|
763
|
+
version = "0.14.5"
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
765
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
766
|
+
|
642
767
|
[[package]]
|
643
768
|
name = "hashbrown"
|
644
769
|
version = "0.15.2"
|
@@ -651,6 +776,15 @@ version = "0.5.0"
|
|
651
776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
652
777
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
653
778
|
|
779
|
+
[[package]]
|
780
|
+
name = "home"
|
781
|
+
version = "0.5.11"
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
783
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
784
|
+
dependencies = [
|
785
|
+
"windows-sys 0.59.0",
|
786
|
+
]
|
787
|
+
|
654
788
|
[[package]]
|
655
789
|
name = "http"
|
656
790
|
version = "1.3.1"
|
@@ -878,7 +1012,7 @@ checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
878
1012
|
dependencies = [
|
879
1013
|
"proc-macro2",
|
880
1014
|
"quote",
|
881
|
-
"syn",
|
1015
|
+
"syn 2.0.100",
|
882
1016
|
]
|
883
1017
|
|
884
1018
|
[[package]]
|
@@ -915,7 +1049,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
1049
|
checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
|
916
1050
|
dependencies = [
|
917
1051
|
"equivalent",
|
918
|
-
"hashbrown",
|
1052
|
+
"hashbrown 0.15.2",
|
919
1053
|
]
|
920
1054
|
|
921
1055
|
[[package]]
|
@@ -969,6 +1103,12 @@ dependencies = [
|
|
969
1103
|
"redox_syscall",
|
970
1104
|
]
|
971
1105
|
|
1106
|
+
[[package]]
|
1107
|
+
name = "linux-raw-sys"
|
1108
|
+
version = "0.4.15"
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1110
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
1111
|
+
|
972
1112
|
[[package]]
|
973
1113
|
name = "linux-raw-sys"
|
974
1114
|
version = "0.9.3"
|
@@ -987,6 +1127,38 @@ version = "0.4.27"
|
|
987
1127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
988
1128
|
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
989
1129
|
|
1130
|
+
[[package]]
|
1131
|
+
name = "logos"
|
1132
|
+
version = "0.13.0"
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1134
|
+
checksum = "c000ca4d908ff18ac99b93a062cb8958d331c3220719c52e77cb19cc6ac5d2c1"
|
1135
|
+
dependencies = [
|
1136
|
+
"logos-derive",
|
1137
|
+
]
|
1138
|
+
|
1139
|
+
[[package]]
|
1140
|
+
name = "logos-codegen"
|
1141
|
+
version = "0.13.0"
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1143
|
+
checksum = "dc487311295e0002e452025d6b580b77bb17286de87b57138f3b5db711cded68"
|
1144
|
+
dependencies = [
|
1145
|
+
"beef",
|
1146
|
+
"fnv",
|
1147
|
+
"proc-macro2",
|
1148
|
+
"quote",
|
1149
|
+
"regex-syntax 0.6.29",
|
1150
|
+
"syn 2.0.100",
|
1151
|
+
]
|
1152
|
+
|
1153
|
+
[[package]]
|
1154
|
+
name = "logos-derive"
|
1155
|
+
version = "0.13.0"
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1157
|
+
checksum = "dbfc0d229f1f42d790440136d941afd806bc9e949e2bcb8faa813b0f00d1267e"
|
1158
|
+
dependencies = [
|
1159
|
+
"logos-codegen",
|
1160
|
+
]
|
1161
|
+
|
990
1162
|
[[package]]
|
991
1163
|
name = "memchr"
|
992
1164
|
version = "2.7.4"
|
@@ -1028,6 +1200,75 @@ dependencies = [
|
|
1028
1200
|
"windows-sys 0.52.0",
|
1029
1201
|
]
|
1030
1202
|
|
1203
|
+
[[package]]
|
1204
|
+
name = "mitex"
|
1205
|
+
version = "0.2.4"
|
1206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1207
|
+
checksum = "81f1eb466efdd212fe624f8bf24083f21d582f2d08e3b879bc4a059b25969d6c"
|
1208
|
+
dependencies = [
|
1209
|
+
"mitex-parser",
|
1210
|
+
"mitex-spec-gen",
|
1211
|
+
"rowan",
|
1212
|
+
]
|
1213
|
+
|
1214
|
+
[[package]]
|
1215
|
+
name = "mitex-glob"
|
1216
|
+
version = "0.2.4"
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1218
|
+
checksum = "c3074187856f137e3392e906daefa2fdc993175d1c7d55ff1348e3bb9321d415"
|
1219
|
+
|
1220
|
+
[[package]]
|
1221
|
+
name = "mitex-lexer"
|
1222
|
+
version = "0.2.4"
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1224
|
+
checksum = "0fd0a245774eed6cbf0df25bc3a9c6cc64445a5ea2c3a241f1c9691d83ae214b"
|
1225
|
+
dependencies = [
|
1226
|
+
"ecow",
|
1227
|
+
"ena",
|
1228
|
+
"fxhash",
|
1229
|
+
"logos",
|
1230
|
+
"mitex-spec",
|
1231
|
+
"once_cell",
|
1232
|
+
]
|
1233
|
+
|
1234
|
+
[[package]]
|
1235
|
+
name = "mitex-parser"
|
1236
|
+
version = "0.2.4"
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1238
|
+
checksum = "1a42a2f86c46d250802262387dfb1d6bb18affd2d99328bbe4dbd12ce294c3a4"
|
1239
|
+
dependencies = [
|
1240
|
+
"mitex-glob",
|
1241
|
+
"mitex-lexer",
|
1242
|
+
"mitex-spec",
|
1243
|
+
"rowan",
|
1244
|
+
]
|
1245
|
+
|
1246
|
+
[[package]]
|
1247
|
+
name = "mitex-spec"
|
1248
|
+
version = "0.2.4"
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1250
|
+
checksum = "12ecaa5f36d60e2d64ea5508d1be44b1c19daa50518f5b8425f36697fdc60509"
|
1251
|
+
dependencies = [
|
1252
|
+
"fxhash",
|
1253
|
+
"rkyv",
|
1254
|
+
"serde",
|
1255
|
+
"serde_json",
|
1256
|
+
]
|
1257
|
+
|
1258
|
+
[[package]]
|
1259
|
+
name = "mitex-spec-gen"
|
1260
|
+
version = "0.2.4"
|
1261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1262
|
+
checksum = "a1e9ef918ec9c2a14e60ebb20275684b483d23afb5c3314127c9eb46ce74ae68"
|
1263
|
+
dependencies = [
|
1264
|
+
"anyhow",
|
1265
|
+
"mitex-spec",
|
1266
|
+
"once_cell",
|
1267
|
+
"serde",
|
1268
|
+
"serde_json",
|
1269
|
+
"which",
|
1270
|
+
]
|
1271
|
+
|
1031
1272
|
[[package]]
|
1032
1273
|
name = "native-tls"
|
1033
1274
|
version = "0.2.14"
|
@@ -1114,7 +1355,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1114
1355
|
dependencies = [
|
1115
1356
|
"proc-macro2",
|
1116
1357
|
"quote",
|
1117
|
-
"syn",
|
1358
|
+
"syn 2.0.100",
|
1118
1359
|
]
|
1119
1360
|
|
1120
1361
|
[[package]]
|
@@ -1184,7 +1425,7 @@ dependencies = [
|
|
1184
1425
|
"pest_meta",
|
1185
1426
|
"proc-macro2",
|
1186
1427
|
"quote",
|
1187
|
-
"syn",
|
1428
|
+
"syn 2.0.100",
|
1188
1429
|
]
|
1189
1430
|
|
1190
1431
|
[[package]]
|
@@ -1231,6 +1472,26 @@ dependencies = [
|
|
1231
1472
|
"unicode-ident",
|
1232
1473
|
]
|
1233
1474
|
|
1475
|
+
[[package]]
|
1476
|
+
name = "ptr_meta"
|
1477
|
+
version = "0.1.4"
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1479
|
+
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
|
1480
|
+
dependencies = [
|
1481
|
+
"ptr_meta_derive",
|
1482
|
+
]
|
1483
|
+
|
1484
|
+
[[package]]
|
1485
|
+
name = "ptr_meta_derive"
|
1486
|
+
version = "0.1.4"
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1488
|
+
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
1489
|
+
dependencies = [
|
1490
|
+
"proc-macro2",
|
1491
|
+
"quote",
|
1492
|
+
"syn 1.0.109",
|
1493
|
+
]
|
1494
|
+
|
1234
1495
|
[[package]]
|
1235
1496
|
name = "pyo3"
|
1236
1497
|
version = "0.23.5"
|
@@ -1278,7 +1539,7 @@ dependencies = [
|
|
1278
1539
|
"proc-macro2",
|
1279
1540
|
"pyo3-macros-backend",
|
1280
1541
|
"quote",
|
1281
|
-
"syn",
|
1542
|
+
"syn 2.0.100",
|
1282
1543
|
]
|
1283
1544
|
|
1284
1545
|
[[package]]
|
@@ -1291,7 +1552,7 @@ dependencies = [
|
|
1291
1552
|
"proc-macro2",
|
1292
1553
|
"pyo3-build-config",
|
1293
1554
|
"quote",
|
1294
|
-
"syn",
|
1555
|
+
"syn 2.0.100",
|
1295
1556
|
]
|
1296
1557
|
|
1297
1558
|
[[package]]
|
@@ -1319,6 +1580,12 @@ version = "5.2.0"
|
|
1319
1580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1320
1581
|
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
|
1321
1582
|
|
1583
|
+
[[package]]
|
1584
|
+
name = "radium"
|
1585
|
+
version = "0.7.0"
|
1586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1587
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
1588
|
+
|
1322
1589
|
[[package]]
|
1323
1590
|
name = "rayon"
|
1324
1591
|
version = "1.10.0"
|
@@ -1359,6 +1626,50 @@ dependencies = [
|
|
1359
1626
|
"thiserror",
|
1360
1627
|
]
|
1361
1628
|
|
1629
|
+
[[package]]
|
1630
|
+
name = "regex"
|
1631
|
+
version = "1.11.1"
|
1632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1633
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
1634
|
+
dependencies = [
|
1635
|
+
"aho-corasick",
|
1636
|
+
"memchr",
|
1637
|
+
"regex-automata",
|
1638
|
+
"regex-syntax 0.8.5",
|
1639
|
+
]
|
1640
|
+
|
1641
|
+
[[package]]
|
1642
|
+
name = "regex-automata"
|
1643
|
+
version = "0.4.9"
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1645
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
1646
|
+
dependencies = [
|
1647
|
+
"aho-corasick",
|
1648
|
+
"memchr",
|
1649
|
+
"regex-syntax 0.8.5",
|
1650
|
+
]
|
1651
|
+
|
1652
|
+
[[package]]
|
1653
|
+
name = "regex-syntax"
|
1654
|
+
version = "0.6.29"
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1656
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
1657
|
+
|
1658
|
+
[[package]]
|
1659
|
+
name = "regex-syntax"
|
1660
|
+
version = "0.8.5"
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1662
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
1663
|
+
|
1664
|
+
[[package]]
|
1665
|
+
name = "rend"
|
1666
|
+
version = "0.4.2"
|
1667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1668
|
+
checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
|
1669
|
+
dependencies = [
|
1670
|
+
"bytecheck",
|
1671
|
+
]
|
1672
|
+
|
1362
1673
|
[[package]]
|
1363
1674
|
name = "reqwest"
|
1364
1675
|
version = "0.12.15"
|
@@ -1418,12 +1729,72 @@ dependencies = [
|
|
1418
1729
|
"windows-sys 0.52.0",
|
1419
1730
|
]
|
1420
1731
|
|
1732
|
+
[[package]]
|
1733
|
+
name = "rkyv"
|
1734
|
+
version = "0.7.45"
|
1735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1736
|
+
checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b"
|
1737
|
+
dependencies = [
|
1738
|
+
"bitvec",
|
1739
|
+
"bytecheck",
|
1740
|
+
"bytes",
|
1741
|
+
"hashbrown 0.12.3",
|
1742
|
+
"ptr_meta",
|
1743
|
+
"rend",
|
1744
|
+
"rkyv_derive",
|
1745
|
+
"seahash",
|
1746
|
+
"tinyvec",
|
1747
|
+
"uuid",
|
1748
|
+
]
|
1749
|
+
|
1750
|
+
[[package]]
|
1751
|
+
name = "rkyv_derive"
|
1752
|
+
version = "0.7.45"
|
1753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1754
|
+
checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0"
|
1755
|
+
dependencies = [
|
1756
|
+
"proc-macro2",
|
1757
|
+
"quote",
|
1758
|
+
"syn 1.0.109",
|
1759
|
+
]
|
1760
|
+
|
1761
|
+
[[package]]
|
1762
|
+
name = "rowan"
|
1763
|
+
version = "0.15.16"
|
1764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1765
|
+
checksum = "0a542b0253fa46e632d27a1dc5cf7b930de4df8659dc6e720b647fc72147ae3d"
|
1766
|
+
dependencies = [
|
1767
|
+
"countme",
|
1768
|
+
"hashbrown 0.14.5",
|
1769
|
+
"rustc-hash",
|
1770
|
+
"text-size",
|
1771
|
+
]
|
1772
|
+
|
1421
1773
|
[[package]]
|
1422
1774
|
name = "rustc-demangle"
|
1423
1775
|
version = "0.1.24"
|
1424
1776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1425
1777
|
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
1426
1778
|
|
1779
|
+
[[package]]
|
1780
|
+
name = "rustc-hash"
|
1781
|
+
version = "1.1.0"
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1783
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1784
|
+
|
1785
|
+
[[package]]
|
1786
|
+
name = "rustix"
|
1787
|
+
version = "0.38.44"
|
1788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1789
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
1790
|
+
dependencies = [
|
1791
|
+
"bitflags",
|
1792
|
+
"errno",
|
1793
|
+
"libc",
|
1794
|
+
"linux-raw-sys 0.4.15",
|
1795
|
+
"windows-sys 0.59.0",
|
1796
|
+
]
|
1797
|
+
|
1427
1798
|
[[package]]
|
1428
1799
|
name = "rustix"
|
1429
1800
|
version = "1.0.3"
|
@@ -1433,7 +1804,7 @@ dependencies = [
|
|
1433
1804
|
"bitflags",
|
1434
1805
|
"errno",
|
1435
1806
|
"libc",
|
1436
|
-
"linux-raw-sys",
|
1807
|
+
"linux-raw-sys 0.9.3",
|
1437
1808
|
"windows-sys 0.59.0",
|
1438
1809
|
]
|
1439
1810
|
|
@@ -1506,6 +1877,12 @@ dependencies = [
|
|
1506
1877
|
"windows-sys 0.59.0",
|
1507
1878
|
]
|
1508
1879
|
|
1880
|
+
[[package]]
|
1881
|
+
name = "seahash"
|
1882
|
+
version = "4.1.0"
|
1883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1884
|
+
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
1885
|
+
|
1509
1886
|
[[package]]
|
1510
1887
|
name = "security-framework"
|
1511
1888
|
version = "2.11.1"
|
@@ -1546,7 +1923,7 @@ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
|
1546
1923
|
dependencies = [
|
1547
1924
|
"proc-macro2",
|
1548
1925
|
"quote",
|
1549
|
-
"syn",
|
1926
|
+
"syn 2.0.100",
|
1550
1927
|
]
|
1551
1928
|
|
1552
1929
|
[[package]]
|
@@ -1590,6 +1967,12 @@ version = "1.3.0"
|
|
1590
1967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1591
1968
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
1592
1969
|
|
1970
|
+
[[package]]
|
1971
|
+
name = "simdutf8"
|
1972
|
+
version = "0.1.5"
|
1973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1974
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
1975
|
+
|
1593
1976
|
[[package]]
|
1594
1977
|
name = "slab"
|
1595
1978
|
version = "0.4.9"
|
@@ -1646,7 +2029,7 @@ dependencies = [
|
|
1646
2029
|
"proc-macro2",
|
1647
2030
|
"quote",
|
1648
2031
|
"rustversion",
|
1649
|
-
"syn",
|
2032
|
+
"syn 2.0.100",
|
1650
2033
|
]
|
1651
2034
|
|
1652
2035
|
[[package]]
|
@@ -1655,6 +2038,17 @@ version = "2.6.1"
|
|
1655
2038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1656
2039
|
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
1657
2040
|
|
2041
|
+
[[package]]
|
2042
|
+
name = "syn"
|
2043
|
+
version = "1.0.109"
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2045
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
2046
|
+
dependencies = [
|
2047
|
+
"proc-macro2",
|
2048
|
+
"quote",
|
2049
|
+
"unicode-ident",
|
2050
|
+
]
|
2051
|
+
|
1658
2052
|
[[package]]
|
1659
2053
|
name = "syn"
|
1660
2054
|
version = "2.0.100"
|
@@ -1683,7 +2077,7 @@ checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
|
1683
2077
|
dependencies = [
|
1684
2078
|
"proc-macro2",
|
1685
2079
|
"quote",
|
1686
|
-
"syn",
|
2080
|
+
"syn 2.0.100",
|
1687
2081
|
]
|
1688
2082
|
|
1689
2083
|
[[package]]
|
@@ -1707,6 +2101,12 @@ dependencies = [
|
|
1707
2101
|
"libc",
|
1708
2102
|
]
|
1709
2103
|
|
2104
|
+
[[package]]
|
2105
|
+
name = "tap"
|
2106
|
+
version = "1.0.1"
|
2107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2108
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
2109
|
+
|
1710
2110
|
[[package]]
|
1711
2111
|
name = "tar"
|
1712
2112
|
version = "0.4.44"
|
@@ -1733,10 +2133,16 @@ dependencies = [
|
|
1733
2133
|
"fastrand",
|
1734
2134
|
"getrandom 0.3.2",
|
1735
2135
|
"once_cell",
|
1736
|
-
"rustix",
|
2136
|
+
"rustix 1.0.3",
|
1737
2137
|
"windows-sys 0.59.0",
|
1738
2138
|
]
|
1739
2139
|
|
2140
|
+
[[package]]
|
2141
|
+
name = "text-size"
|
2142
|
+
version = "1.1.1"
|
2143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2144
|
+
checksum = "f18aa187839b2bdb1ad2fa35ead8c4c2976b64e4363c386d45ac0f7ee85c9233"
|
2145
|
+
|
1740
2146
|
[[package]]
|
1741
2147
|
name = "thiserror"
|
1742
2148
|
version = "2.0.12"
|
@@ -1754,7 +2160,7 @@ checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
|
|
1754
2160
|
dependencies = [
|
1755
2161
|
"proc-macro2",
|
1756
2162
|
"quote",
|
1757
|
-
"syn",
|
2163
|
+
"syn 2.0.100",
|
1758
2164
|
]
|
1759
2165
|
|
1760
2166
|
[[package]]
|
@@ -1974,6 +2380,12 @@ version = "0.2.2"
|
|
1974
2380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1975
2381
|
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
1976
2382
|
|
2383
|
+
[[package]]
|
2384
|
+
name = "uuid"
|
2385
|
+
version = "1.16.0"
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2387
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
2388
|
+
|
1977
2389
|
[[package]]
|
1978
2390
|
name = "vcpkg"
|
1979
2391
|
version = "0.2.15"
|
@@ -2042,7 +2454,7 @@ dependencies = [
|
|
2042
2454
|
"log",
|
2043
2455
|
"proc-macro2",
|
2044
2456
|
"quote",
|
2045
|
-
"syn",
|
2457
|
+
"syn 2.0.100",
|
2046
2458
|
"wasm-bindgen-shared",
|
2047
2459
|
]
|
2048
2460
|
|
@@ -2077,7 +2489,7 @@ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
2077
2489
|
dependencies = [
|
2078
2490
|
"proc-macro2",
|
2079
2491
|
"quote",
|
2080
|
-
"syn",
|
2492
|
+
"syn 2.0.100",
|
2081
2493
|
"wasm-bindgen-backend",
|
2082
2494
|
"wasm-bindgen-shared",
|
2083
2495
|
]
|
@@ -2101,6 +2513,19 @@ dependencies = [
|
|
2101
2513
|
"wasm-bindgen",
|
2102
2514
|
]
|
2103
2515
|
|
2516
|
+
[[package]]
|
2517
|
+
name = "which"
|
2518
|
+
version = "5.0.0"
|
2519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2520
|
+
checksum = "9bf3ea8596f3a0dd5980b46430f2058dfe2c36a27ccfbb1845d6fbfcd9ba6e14"
|
2521
|
+
dependencies = [
|
2522
|
+
"either",
|
2523
|
+
"home",
|
2524
|
+
"once_cell",
|
2525
|
+
"rustix 0.38.44",
|
2526
|
+
"windows-sys 0.48.0",
|
2527
|
+
]
|
2528
|
+
|
2104
2529
|
[[package]]
|
2105
2530
|
name = "whichlang"
|
2106
2531
|
version = "0.1.1"
|
@@ -2151,6 +2576,15 @@ dependencies = [
|
|
2151
2576
|
"windows-link",
|
2152
2577
|
]
|
2153
2578
|
|
2579
|
+
[[package]]
|
2580
|
+
name = "windows-sys"
|
2581
|
+
version = "0.48.0"
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2583
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
2584
|
+
dependencies = [
|
2585
|
+
"windows-targets 0.48.5",
|
2586
|
+
]
|
2587
|
+
|
2154
2588
|
[[package]]
|
2155
2589
|
name = "windows-sys"
|
2156
2590
|
version = "0.52.0"
|
@@ -2169,6 +2603,21 @@ dependencies = [
|
|
2169
2603
|
"windows-targets 0.52.6",
|
2170
2604
|
]
|
2171
2605
|
|
2606
|
+
[[package]]
|
2607
|
+
name = "windows-targets"
|
2608
|
+
version = "0.48.5"
|
2609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2610
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
2611
|
+
dependencies = [
|
2612
|
+
"windows_aarch64_gnullvm 0.48.5",
|
2613
|
+
"windows_aarch64_msvc 0.48.5",
|
2614
|
+
"windows_i686_gnu 0.48.5",
|
2615
|
+
"windows_i686_msvc 0.48.5",
|
2616
|
+
"windows_x86_64_gnu 0.48.5",
|
2617
|
+
"windows_x86_64_gnullvm 0.48.5",
|
2618
|
+
"windows_x86_64_msvc 0.48.5",
|
2619
|
+
]
|
2620
|
+
|
2172
2621
|
[[package]]
|
2173
2622
|
name = "windows-targets"
|
2174
2623
|
version = "0.52.6"
|
@@ -2201,6 +2650,12 @@ dependencies = [
|
|
2201
2650
|
"windows_x86_64_msvc 0.53.0",
|
2202
2651
|
]
|
2203
2652
|
|
2653
|
+
[[package]]
|
2654
|
+
name = "windows_aarch64_gnullvm"
|
2655
|
+
version = "0.48.5"
|
2656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2657
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
2658
|
+
|
2204
2659
|
[[package]]
|
2205
2660
|
name = "windows_aarch64_gnullvm"
|
2206
2661
|
version = "0.52.6"
|
@@ -2213,6 +2668,12 @@ version = "0.53.0"
|
|
2213
2668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2214
2669
|
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
2215
2670
|
|
2671
|
+
[[package]]
|
2672
|
+
name = "windows_aarch64_msvc"
|
2673
|
+
version = "0.48.5"
|
2674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2675
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
2676
|
+
|
2216
2677
|
[[package]]
|
2217
2678
|
name = "windows_aarch64_msvc"
|
2218
2679
|
version = "0.52.6"
|
@@ -2225,6 +2686,12 @@ version = "0.53.0"
|
|
2225
2686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2226
2687
|
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
2227
2688
|
|
2689
|
+
[[package]]
|
2690
|
+
name = "windows_i686_gnu"
|
2691
|
+
version = "0.48.5"
|
2692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2693
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
2694
|
+
|
2228
2695
|
[[package]]
|
2229
2696
|
name = "windows_i686_gnu"
|
2230
2697
|
version = "0.52.6"
|
@@ -2249,6 +2716,12 @@ version = "0.53.0"
|
|
2249
2716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2250
2717
|
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
2251
2718
|
|
2719
|
+
[[package]]
|
2720
|
+
name = "windows_i686_msvc"
|
2721
|
+
version = "0.48.5"
|
2722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2723
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
2724
|
+
|
2252
2725
|
[[package]]
|
2253
2726
|
name = "windows_i686_msvc"
|
2254
2727
|
version = "0.52.6"
|
@@ -2261,6 +2734,12 @@ version = "0.53.0"
|
|
2261
2734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2262
2735
|
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
2263
2736
|
|
2737
|
+
[[package]]
|
2738
|
+
name = "windows_x86_64_gnu"
|
2739
|
+
version = "0.48.5"
|
2740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2741
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
2742
|
+
|
2264
2743
|
[[package]]
|
2265
2744
|
name = "windows_x86_64_gnu"
|
2266
2745
|
version = "0.52.6"
|
@@ -2273,6 +2752,12 @@ version = "0.53.0"
|
|
2273
2752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2274
2753
|
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
2275
2754
|
|
2755
|
+
[[package]]
|
2756
|
+
name = "windows_x86_64_gnullvm"
|
2757
|
+
version = "0.48.5"
|
2758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2759
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
2760
|
+
|
2276
2761
|
[[package]]
|
2277
2762
|
name = "windows_x86_64_gnullvm"
|
2278
2763
|
version = "0.52.6"
|
@@ -2285,6 +2770,12 @@ version = "0.53.0"
|
|
2285
2770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2286
2771
|
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
2287
2772
|
|
2773
|
+
[[package]]
|
2774
|
+
name = "windows_x86_64_msvc"
|
2775
|
+
version = "0.48.5"
|
2776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2777
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
2778
|
+
|
2288
2779
|
[[package]]
|
2289
2780
|
name = "windows_x86_64_msvc"
|
2290
2781
|
version = "0.52.6"
|
@@ -2318,6 +2809,15 @@ version = "0.5.5"
|
|
2318
2809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2319
2810
|
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
2320
2811
|
|
2812
|
+
[[package]]
|
2813
|
+
name = "wyz"
|
2814
|
+
version = "0.5.1"
|
2815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2816
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
2817
|
+
dependencies = [
|
2818
|
+
"tap",
|
2819
|
+
]
|
2820
|
+
|
2321
2821
|
[[package]]
|
2322
2822
|
name = "xattr"
|
2323
2823
|
version = "1.5.0"
|
@@ -2325,7 +2825,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2325
2825
|
checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e"
|
2326
2826
|
dependencies = [
|
2327
2827
|
"libc",
|
2328
|
-
"rustix",
|
2828
|
+
"rustix 1.0.3",
|
2329
2829
|
]
|
2330
2830
|
|
2331
2831
|
[[package]]
|
@@ -2348,7 +2848,7 @@ checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
2348
2848
|
dependencies = [
|
2349
2849
|
"proc-macro2",
|
2350
2850
|
"quote",
|
2351
|
-
"syn",
|
2851
|
+
"syn 2.0.100",
|
2352
2852
|
"synstructure",
|
2353
2853
|
]
|
2354
2854
|
|
@@ -2369,7 +2869,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
2369
2869
|
dependencies = [
|
2370
2870
|
"proc-macro2",
|
2371
2871
|
"quote",
|
2372
|
-
"syn",
|
2872
|
+
"syn 2.0.100",
|
2373
2873
|
"synstructure",
|
2374
2874
|
]
|
2375
2875
|
|
@@ -2398,5 +2898,5 @@ checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
2398
2898
|
dependencies = [
|
2399
2899
|
"proc-macro2",
|
2400
2900
|
"quote",
|
2401
|
-
"syn",
|
2901
|
+
"syn 2.0.100",
|
2402
2902
|
]
|