refnd 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- refnd-0.0.0/Cargo.lock +2412 -0
- refnd-0.0.0/Cargo.toml +7 -0
- refnd-0.0.0/PKG-INFO +28 -0
- refnd-0.0.0/README.md +18 -0
- refnd-0.0.0/py/.github/workflows/CI.yml +186 -0
- refnd-0.0.0/py/.gitignore +71 -0
- refnd-0.0.0/py/AGENTS.md +189 -0
- refnd-0.0.0/py/CLAUDE.md +189 -0
- refnd-0.0.0/py/Cargo.toml +19 -0
- refnd-0.0.0/py/README.md +18 -0
- refnd-0.0.0/py/docs/source/_static/css/copy_markdown.css +20 -0
- refnd-0.0.0/py/docs/source/_static/js/copy_markdown.js +151 -0
- refnd-0.0.0/py/docs/source/api/core.md +45 -0
- refnd-0.0.0/py/docs/source/api/kernels.md +28 -0
- refnd-0.0.0/py/docs/source/api/utils.md +6 -0
- refnd-0.0.0/py/docs/source/conf.py +169 -0
- refnd-0.0.0/py/docs/source/index.md +16 -0
- refnd-0.0.0/py/src/bin/stub_gen.rs +82 -0
- refnd-0.0.0/py/src/core/_utils.rs +99 -0
- refnd-0.0.0/py/src/core/edge_store.rs +158 -0
- refnd-0.0.0/py/src/core/exact.rs +165 -0
- refnd-0.0.0/py/src/core/functional.rs +91 -0
- refnd-0.0.0/py/src/core/hnsw.rs +590 -0
- refnd-0.0.0/py/src/core/leiden.rs +138 -0
- refnd-0.0.0/py/src/core/mod.rs +6 -0
- refnd-0.0.0/py/src/kernels/mod.rs +15 -0
- refnd-0.0.0/py/src/kernels/molecules/mod.rs +149 -0
- refnd-0.0.0/py/src/kernels/protein/mod.rs +1 -0
- refnd-0.0.0/py/src/kernels/protein/sequence.rs +416 -0
- refnd-0.0.0/py/src/lib.rs +93 -0
- refnd-0.0.0/py/src/utils.rs +337 -0
- refnd-0.0.0/py/uv.lock +856 -0
- refnd-0.0.0/pyproject.toml +32 -0
- refnd-0.0.0/python/refnd/__init__.py +7 -0
- refnd-0.0.0/python/refnd/__init__.pyi +20 -0
- refnd-0.0.0/python/refnd/core/__init__.pyi +646 -0
- refnd-0.0.0/python/refnd/kernels/__init__.pyi +20 -0
- refnd-0.0.0/python/refnd/kernels/molecules/__init__.pyi +119 -0
- refnd-0.0.0/python/refnd/kernels/protein/__init__.pyi +8 -0
- refnd-0.0.0/python/refnd/kernels/protein/sequence/__init__.pyi +253 -0
- refnd-0.0.0/python/refnd/utils/__init__.pyi +174 -0
- refnd-0.0.0/refnd/.gitignore +2 -0
- refnd-0.0.0/refnd/AGENTS.md +60 -0
- refnd-0.0.0/refnd/CLAUDE.md +60 -0
- refnd-0.0.0/refnd/Cargo.lock +1620 -0
- refnd-0.0.0/refnd/Cargo.toml +29 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/00_preamble.md +8 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/00_table_of_contents.md +23 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/01_1_color_system.md +195 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/02_2_style_system.md +146 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/03_3_segment_rendering_atom.md +95 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/04_4_markup_parser.md +103 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/05_5_measurement_protocol.md +87 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/06_6_text_object.md +303 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/07_7_console.md +238 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/08_8_box_characters.md +310 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/09_9_table_layout.md +405 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/10_10_panel_padding.md +260 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/11_11_alignment_system.md +139 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/12_12_unicode_cell_width.md +153 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/13_13_text_wrapping.md +91 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/14_14_ratio_distribution.md +189 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/15_15_exclusions_and_not_yet_implemented_features.md +37 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/16_16_live_display_system.md +519 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/17_17_layout_system.md +543 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/18_18_logging_handler_integration.md +373 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/19_19_htmlsvg_export.md +470 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/20_appendix_a_rust_trait_summary.md +23 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/21_appendix_b_recommended_crate_mappings.md +17 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/INDEX.md +32 -0
- refnd-0.0.0/refnd/llm_docs/rich_rust/README.md +926 -0
- refnd-0.0.0/refnd/src/cli/CLI.md +11 -0
- refnd-0.0.0/refnd/src/cli/autocomplete.rs +96 -0
- refnd-0.0.0/refnd/src/cli/custer/mod.rs +143 -0
- refnd-0.0.0/refnd/src/cli/display.rs +282 -0
- refnd-0.0.0/refnd/src/cli/edge/mod.rs +162 -0
- refnd-0.0.0/refnd/src/cli/index/mod.rs +124 -0
- refnd-0.0.0/refnd/src/cli/kernel_parameters.rs +224 -0
- refnd-0.0.0/refnd/src/cli/knn/mod.rs +173 -0
- refnd-0.0.0/refnd/src/cli/mod.rs +50 -0
- refnd-0.0.0/refnd/src/cli/parameters.rs +133 -0
- refnd-0.0.0/refnd/src/cli/renderer.rs +468 -0
- refnd-0.0.0/refnd/src/cli/split/mod.rs +173 -0
- refnd-0.0.0/refnd/src/cli/utils.rs +410 -0
- refnd-0.0.0/refnd/src/core/connected_components.rs +35 -0
- refnd-0.0.0/refnd/src/core/distance.rs +6 -0
- refnd-0.0.0/refnd/src/core/edge_store.rs +270 -0
- refnd-0.0.0/refnd/src/core/exact/exact_edges.rs +56 -0
- refnd-0.0.0/refnd/src/core/exact/exact_nearest_neighbors.rs +54 -0
- refnd-0.0.0/refnd/src/core/exact/mod.rs +5 -0
- refnd-0.0.0/refnd/src/core/hnsw/HNSW.md +38 -0
- refnd-0.0.0/refnd/src/core/hnsw/build.rs +86 -0
- refnd-0.0.0/refnd/src/core/hnsw/config.rs +147 -0
- refnd-0.0.0/refnd/src/core/hnsw/hnsw_index.rs +84 -0
- refnd-0.0.0/refnd/src/core/hnsw/insert.rs +135 -0
- refnd-0.0.0/refnd/src/core/hnsw/mod.rs +471 -0
- refnd-0.0.0/refnd/src/core/hnsw/search.rs +148 -0
- refnd-0.0.0/refnd/src/core/hnsw/search_layer.rs +70 -0
- refnd-0.0.0/refnd/src/core/hnsw/select_neighbors.rs +178 -0
- refnd-0.0.0/refnd/src/core/leiden/LEIDEN.md +40 -0
- refnd-0.0.0/refnd/src/core/leiden/csr_graph.rs +66 -0
- refnd-0.0.0/refnd/src/core/leiden/leiden.rs +449 -0
- refnd-0.0.0/refnd/src/core/leiden/mod.rs +7 -0
- refnd-0.0.0/refnd/src/core/leiden/utils.rs +18 -0
- refnd-0.0.0/refnd/src/core/mod.rs +12 -0
- refnd-0.0.0/refnd/src/core/partition.rs +41 -0
- refnd-0.0.0/refnd/src/kernels/mod.rs +2 -0
- refnd-0.0.0/refnd/src/kernels/molecules/MOLECULE_KERNELS.md +53 -0
- refnd-0.0.0/refnd/src/kernels/molecules/mod.rs +2 -0
- refnd-0.0.0/refnd/src/kernels/molecules/tanimoto/mod.rs +28 -0
- refnd-0.0.0/refnd/src/kernels/proteins/PROTEIN_KERNELS.md +10 -0
- refnd-0.0.0/refnd/src/kernels/proteins/mod.rs +1 -0
- refnd-0.0.0/refnd/src/kernels/proteins/parasail/aligner_config.rs +115 -0
- refnd-0.0.0/refnd/src/kernels/proteins/parasail/global.rs +99 -0
- refnd-0.0.0/refnd/src/kernels/proteins/parasail/local.rs +162 -0
- refnd-0.0.0/refnd/src/kernels/proteins/parasail/matrix.rs +94 -0
- refnd-0.0.0/refnd/src/kernels/proteins/parasail/meta.rs +23 -0
- refnd-0.0.0/refnd/src/kernels/proteins/parasail/mod.rs +11 -0
- refnd-0.0.0/refnd/src/lib.rs +4 -0
- refnd-0.0.0/refnd/src/main.rs +102 -0
- refnd-0.0.0/refnd/src/utils/fingerprints.rs +43 -0
- refnd-0.0.0/refnd/src/utils/mod.rs +7 -0
- refnd-0.0.0/refnd/src/utils/read_fasta.rs +60 -0
- refnd-0.0.0/refnd/src/utils/read_sdf.rs +124 -0
refnd-0.0.0/Cargo.lock
ADDED
|
@@ -0,0 +1,2412 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"getrandom 0.3.4",
|
|
19
|
+
"once_cell",
|
|
20
|
+
"version_check",
|
|
21
|
+
"zerocopy",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[[package]]
|
|
25
|
+
name = "aho-corasick"
|
|
26
|
+
version = "1.1.4"
|
|
27
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
28
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
29
|
+
dependencies = [
|
|
30
|
+
"memchr",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[[package]]
|
|
34
|
+
name = "allocator-api2"
|
|
35
|
+
version = "0.2.21"
|
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
38
|
+
|
|
39
|
+
[[package]]
|
|
40
|
+
name = "android_system_properties"
|
|
41
|
+
version = "0.1.5"
|
|
42
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
43
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
44
|
+
dependencies = [
|
|
45
|
+
"libc",
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "anstream"
|
|
50
|
+
version = "1.0.0"
|
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
53
|
+
dependencies = [
|
|
54
|
+
"anstyle",
|
|
55
|
+
"anstyle-parse",
|
|
56
|
+
"anstyle-query",
|
|
57
|
+
"anstyle-wincon",
|
|
58
|
+
"colorchoice",
|
|
59
|
+
"is_terminal_polyfill",
|
|
60
|
+
"utf8parse",
|
|
61
|
+
]
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "anstyle"
|
|
65
|
+
version = "1.0.14"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "anstyle-parse"
|
|
71
|
+
version = "1.0.0"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
74
|
+
dependencies = [
|
|
75
|
+
"utf8parse",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "anstyle-query"
|
|
80
|
+
version = "1.1.5"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"windows-sys 0.61.2",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "anstyle-wincon"
|
|
89
|
+
version = "3.0.11"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"anstyle",
|
|
94
|
+
"once_cell_polyfill",
|
|
95
|
+
"windows-sys 0.61.2",
|
|
96
|
+
]
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "anyhow"
|
|
100
|
+
version = "1.0.102"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "autocfg"
|
|
106
|
+
version = "1.5.0"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "bincode"
|
|
112
|
+
version = "2.0.1"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
|
|
115
|
+
dependencies = [
|
|
116
|
+
"bincode_derive",
|
|
117
|
+
"serde",
|
|
118
|
+
"unty",
|
|
119
|
+
]
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "bincode_derive"
|
|
123
|
+
version = "2.0.1"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
|
|
126
|
+
dependencies = [
|
|
127
|
+
"virtue",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "bindgen"
|
|
132
|
+
version = "0.72.1"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
135
|
+
dependencies = [
|
|
136
|
+
"bitflags",
|
|
137
|
+
"cexpr",
|
|
138
|
+
"clang-sys",
|
|
139
|
+
"itertools 0.13.0",
|
|
140
|
+
"log",
|
|
141
|
+
"prettyplease",
|
|
142
|
+
"proc-macro2",
|
|
143
|
+
"quote",
|
|
144
|
+
"regex",
|
|
145
|
+
"rustc-hash 2.1.2",
|
|
146
|
+
"shlex",
|
|
147
|
+
"syn",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "bit-set"
|
|
152
|
+
version = "0.8.0"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
155
|
+
dependencies = [
|
|
156
|
+
"bit-vec",
|
|
157
|
+
]
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "bit-vec"
|
|
161
|
+
version = "0.8.0"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "bitflags"
|
|
167
|
+
version = "2.11.1"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "bumpalo"
|
|
173
|
+
version = "3.20.2"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "cc"
|
|
179
|
+
version = "1.2.60"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"find-msvc-tools",
|
|
184
|
+
"shlex",
|
|
185
|
+
]
|
|
186
|
+
|
|
187
|
+
[[package]]
|
|
188
|
+
name = "cexpr"
|
|
189
|
+
version = "0.6.0"
|
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
192
|
+
dependencies = [
|
|
193
|
+
"nom",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "cfg-if"
|
|
198
|
+
version = "1.0.4"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "chacha20"
|
|
204
|
+
version = "0.10.0"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
207
|
+
dependencies = [
|
|
208
|
+
"cfg-if",
|
|
209
|
+
"cpufeatures",
|
|
210
|
+
"rand_core 0.10.1",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "chrono"
|
|
215
|
+
version = "0.4.44"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"iana-time-zone",
|
|
220
|
+
"js-sys",
|
|
221
|
+
"num-traits",
|
|
222
|
+
"wasm-bindgen",
|
|
223
|
+
"windows-link",
|
|
224
|
+
]
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "clang-sys"
|
|
228
|
+
version = "1.8.1"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"glob",
|
|
233
|
+
"libc",
|
|
234
|
+
"libloading",
|
|
235
|
+
]
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "clap"
|
|
239
|
+
version = "4.6.1"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
242
|
+
dependencies = [
|
|
243
|
+
"clap_builder",
|
|
244
|
+
"clap_derive",
|
|
245
|
+
]
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "clap_builder"
|
|
249
|
+
version = "4.6.0"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
252
|
+
dependencies = [
|
|
253
|
+
"anstream",
|
|
254
|
+
"anstyle",
|
|
255
|
+
"clap_lex",
|
|
256
|
+
"strsim",
|
|
257
|
+
]
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "clap_complete"
|
|
261
|
+
version = "4.6.2"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "3ff7a1dccbdd8b078c2bdebff47e404615151534d5043da397ec50286816f9cb"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"clap",
|
|
266
|
+
]
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "clap_derive"
|
|
270
|
+
version = "4.6.1"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"heck",
|
|
275
|
+
"proc-macro2",
|
|
276
|
+
"quote",
|
|
277
|
+
"syn",
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "clap_lex"
|
|
282
|
+
version = "1.1.0"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "cmake"
|
|
288
|
+
version = "0.1.58"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
291
|
+
dependencies = [
|
|
292
|
+
"cc",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "colorchoice"
|
|
297
|
+
version = "1.0.5"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "console"
|
|
303
|
+
version = "0.15.11"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"encode_unicode",
|
|
308
|
+
"libc",
|
|
309
|
+
"once_cell",
|
|
310
|
+
"unicode-width",
|
|
311
|
+
"windows-sys 0.59.0",
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "convert_case"
|
|
316
|
+
version = "0.10.0"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"unicode-segmentation",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "core-foundation-sys"
|
|
325
|
+
version = "0.8.7"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "cpufeatures"
|
|
331
|
+
version = "0.3.0"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"libc",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "crc32fast"
|
|
340
|
+
version = "1.5.0"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"cfg-if",
|
|
345
|
+
]
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "crossbeam-deque"
|
|
349
|
+
version = "0.8.6"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
352
|
+
dependencies = [
|
|
353
|
+
"crossbeam-epoch",
|
|
354
|
+
"crossbeam-utils",
|
|
355
|
+
]
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "crossbeam-epoch"
|
|
359
|
+
version = "0.9.18"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"crossbeam-utils",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "crossbeam-utils"
|
|
368
|
+
version = "0.8.21"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "crossterm"
|
|
374
|
+
version = "0.29.0"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"bitflags",
|
|
379
|
+
"crossterm_winapi",
|
|
380
|
+
"derive_more",
|
|
381
|
+
"document-features",
|
|
382
|
+
"mio",
|
|
383
|
+
"parking_lot",
|
|
384
|
+
"rustix",
|
|
385
|
+
"signal-hook",
|
|
386
|
+
"signal-hook-mio",
|
|
387
|
+
"winapi",
|
|
388
|
+
]
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "crossterm_winapi"
|
|
392
|
+
version = "0.9.1"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
|
395
|
+
dependencies = [
|
|
396
|
+
"winapi",
|
|
397
|
+
]
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "crunchy"
|
|
401
|
+
version = "0.2.4"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "dashmap"
|
|
407
|
+
version = "6.1.0"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"cfg-if",
|
|
412
|
+
"crossbeam-utils",
|
|
413
|
+
"hashbrown 0.14.5",
|
|
414
|
+
"lock_api",
|
|
415
|
+
"once_cell",
|
|
416
|
+
"parking_lot_core",
|
|
417
|
+
"rayon",
|
|
418
|
+
]
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "deranged"
|
|
422
|
+
version = "0.5.8"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"powerfmt",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "derive_more"
|
|
431
|
+
version = "2.1.1"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"derive_more-impl",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "derive_more-impl"
|
|
440
|
+
version = "2.1.1"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"convert_case",
|
|
445
|
+
"proc-macro2",
|
|
446
|
+
"quote",
|
|
447
|
+
"rustc_version",
|
|
448
|
+
"syn",
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "document-features"
|
|
453
|
+
version = "0.2.12"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"litrs",
|
|
458
|
+
]
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "either"
|
|
462
|
+
version = "1.15.0"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "encode_unicode"
|
|
468
|
+
version = "1.0.0"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "equivalent"
|
|
474
|
+
version = "1.0.2"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "errno"
|
|
480
|
+
version = "0.3.14"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"libc",
|
|
485
|
+
"windows-sys 0.61.2",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "fancy-regex"
|
|
490
|
+
version = "0.17.0"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "72cf461f865c862bb7dc573f643dd6a2b6842f7c30b07882b56bd148cc2761b8"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"bit-set",
|
|
495
|
+
"regex-automata",
|
|
496
|
+
"regex-syntax",
|
|
497
|
+
]
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "find-msvc-tools"
|
|
501
|
+
version = "0.1.9"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "fixedbitset"
|
|
507
|
+
version = "0.4.2"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "fixedbitset"
|
|
513
|
+
version = "0.5.7"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "flate2"
|
|
519
|
+
version = "1.1.9"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"crc32fast",
|
|
524
|
+
"miniz_oxide",
|
|
525
|
+
]
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "foldhash"
|
|
529
|
+
version = "0.1.5"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "foldhash"
|
|
535
|
+
version = "0.2.0"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "getopts"
|
|
541
|
+
version = "0.2.24"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
544
|
+
dependencies = [
|
|
545
|
+
"unicode-width",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "getrandom"
|
|
550
|
+
version = "0.2.17"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"cfg-if",
|
|
555
|
+
"libc",
|
|
556
|
+
"wasi",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "getrandom"
|
|
561
|
+
version = "0.3.4"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"cfg-if",
|
|
566
|
+
"libc",
|
|
567
|
+
"r-efi 5.3.0",
|
|
568
|
+
"wasip2",
|
|
569
|
+
]
|
|
570
|
+
|
|
571
|
+
[[package]]
|
|
572
|
+
name = "getrandom"
|
|
573
|
+
version = "0.4.2"
|
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
575
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
576
|
+
dependencies = [
|
|
577
|
+
"cfg-if",
|
|
578
|
+
"libc",
|
|
579
|
+
"r-efi 6.0.0",
|
|
580
|
+
"rand_core 0.10.1",
|
|
581
|
+
"wasip2",
|
|
582
|
+
"wasip3",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "glob"
|
|
587
|
+
version = "0.3.3"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "hashbrown"
|
|
593
|
+
version = "0.14.5"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "hashbrown"
|
|
599
|
+
version = "0.15.5"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"foldhash 0.1.5",
|
|
604
|
+
]
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "hashbrown"
|
|
608
|
+
version = "0.16.1"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
611
|
+
dependencies = [
|
|
612
|
+
"allocator-api2",
|
|
613
|
+
"equivalent",
|
|
614
|
+
"foldhash 0.2.0",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "hashbrown"
|
|
619
|
+
version = "0.17.0"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "heck"
|
|
625
|
+
version = "0.5.0"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "iana-time-zone"
|
|
631
|
+
version = "0.1.65"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"android_system_properties",
|
|
636
|
+
"core-foundation-sys",
|
|
637
|
+
"iana-time-zone-haiku",
|
|
638
|
+
"js-sys",
|
|
639
|
+
"log",
|
|
640
|
+
"wasm-bindgen",
|
|
641
|
+
"windows-core",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "iana-time-zone-haiku"
|
|
646
|
+
version = "0.1.2"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"cc",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "id-arena"
|
|
655
|
+
version = "2.3.0"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "indexmap"
|
|
661
|
+
version = "2.14.0"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"equivalent",
|
|
666
|
+
"hashbrown 0.17.0",
|
|
667
|
+
"serde",
|
|
668
|
+
"serde_core",
|
|
669
|
+
]
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "indicatif"
|
|
673
|
+
version = "0.17.11"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
|
|
676
|
+
dependencies = [
|
|
677
|
+
"console",
|
|
678
|
+
"number_prefix",
|
|
679
|
+
"portable-atomic",
|
|
680
|
+
"unicode-width",
|
|
681
|
+
"web-time",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "inventory"
|
|
686
|
+
version = "0.3.24"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"rustversion",
|
|
691
|
+
]
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "is-macro"
|
|
695
|
+
version = "0.3.7"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"heck",
|
|
700
|
+
"proc-macro2",
|
|
701
|
+
"quote",
|
|
702
|
+
"syn",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "is_terminal_polyfill"
|
|
707
|
+
version = "1.70.2"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "itertools"
|
|
713
|
+
version = "0.11.0"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"either",
|
|
718
|
+
]
|
|
719
|
+
|
|
720
|
+
[[package]]
|
|
721
|
+
name = "itertools"
|
|
722
|
+
version = "0.13.0"
|
|
723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
724
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
725
|
+
dependencies = [
|
|
726
|
+
"either",
|
|
727
|
+
]
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "itertools"
|
|
731
|
+
version = "0.14.0"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"either",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "itoa"
|
|
740
|
+
version = "1.0.18"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "js-sys"
|
|
746
|
+
version = "0.3.95"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
|
|
749
|
+
dependencies = [
|
|
750
|
+
"once_cell",
|
|
751
|
+
"wasm-bindgen",
|
|
752
|
+
]
|
|
753
|
+
|
|
754
|
+
[[package]]
|
|
755
|
+
name = "lalrpop-util"
|
|
756
|
+
version = "0.20.2"
|
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
758
|
+
checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "leb128fmt"
|
|
762
|
+
version = "0.1.0"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "libc"
|
|
768
|
+
version = "0.2.185"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "libloading"
|
|
774
|
+
version = "0.8.9"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
777
|
+
dependencies = [
|
|
778
|
+
"cfg-if",
|
|
779
|
+
"windows-link",
|
|
780
|
+
]
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "libmimalloc-sys"
|
|
784
|
+
version = "0.1.44"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
|
|
787
|
+
dependencies = [
|
|
788
|
+
"cc",
|
|
789
|
+
"libc",
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "libparasail-sys"
|
|
794
|
+
version = "0.2.0"
|
|
795
|
+
source = "git+https://github.com/anthol42/libparasail-sys?branch=main#e9b1043cf6ba459d3e5e440e31df1819a0cce660"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"bindgen",
|
|
798
|
+
"cmake",
|
|
799
|
+
"pkg-config",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "linux-raw-sys"
|
|
804
|
+
version = "0.12.1"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "litrs"
|
|
810
|
+
version = "1.0.0"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "lock_api"
|
|
816
|
+
version = "0.4.14"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
819
|
+
dependencies = [
|
|
820
|
+
"scopeguard",
|
|
821
|
+
]
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "log"
|
|
825
|
+
version = "0.4.29"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "lru"
|
|
831
|
+
version = "0.16.4"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "7f66e8d5d03f609abc3a39e6f08e4164ebf1447a732906d39eb9b99b7919ef39"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"hashbrown 0.16.1",
|
|
836
|
+
]
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "maplit"
|
|
840
|
+
version = "1.0.2"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "matrixmultiply"
|
|
846
|
+
version = "0.3.10"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
849
|
+
dependencies = [
|
|
850
|
+
"autocfg",
|
|
851
|
+
"rawpointer",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "memchr"
|
|
856
|
+
version = "2.8.0"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
859
|
+
|
|
860
|
+
[[package]]
|
|
861
|
+
name = "memmap2"
|
|
862
|
+
version = "0.9.10"
|
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
864
|
+
checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
|
|
865
|
+
dependencies = [
|
|
866
|
+
"libc",
|
|
867
|
+
]
|
|
868
|
+
|
|
869
|
+
[[package]]
|
|
870
|
+
name = "mimalloc"
|
|
871
|
+
version = "0.1.48"
|
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
+
checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
|
|
874
|
+
dependencies = [
|
|
875
|
+
"libmimalloc-sys",
|
|
876
|
+
]
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "minimal-lexical"
|
|
880
|
+
version = "0.2.1"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "miniz_oxide"
|
|
886
|
+
version = "0.8.9"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
889
|
+
dependencies = [
|
|
890
|
+
"adler2",
|
|
891
|
+
"simd-adler32",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "mio"
|
|
896
|
+
version = "1.2.0"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"libc",
|
|
901
|
+
"log",
|
|
902
|
+
"wasi",
|
|
903
|
+
"windows-sys 0.61.2",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "molprint-core"
|
|
908
|
+
version = "0.1.0"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "862293c2bfc5e87d4622f71f092aa7cb93928010290ff3d17ff34a36be0bff9c"
|
|
911
|
+
dependencies = [
|
|
912
|
+
"ahash",
|
|
913
|
+
"petgraph 0.6.5",
|
|
914
|
+
"smallvec",
|
|
915
|
+
"thiserror",
|
|
916
|
+
]
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "molprint-fp"
|
|
920
|
+
version = "0.1.0"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "520569a53096cdc3769b020673972ccc74be2fe8cb709dcaaedc816b589a5e36"
|
|
923
|
+
dependencies = [
|
|
924
|
+
"molprint-core",
|
|
925
|
+
"petgraph 0.6.5",
|
|
926
|
+
"smallvec",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "molprint-io"
|
|
931
|
+
version = "0.1.0"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "af8bec7302b60089f49b64eda21290556b21401d71038c6dae0c32414e7dfe93"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"flate2",
|
|
936
|
+
"memmap2",
|
|
937
|
+
"molprint-core",
|
|
938
|
+
"molprint-fp",
|
|
939
|
+
"petgraph 0.6.5",
|
|
940
|
+
"thiserror",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "ndarray"
|
|
945
|
+
version = "0.17.2"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"matrixmultiply",
|
|
950
|
+
"num-complex",
|
|
951
|
+
"num-integer",
|
|
952
|
+
"num-traits",
|
|
953
|
+
"portable-atomic",
|
|
954
|
+
"portable-atomic-util",
|
|
955
|
+
"rawpointer",
|
|
956
|
+
]
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "nom"
|
|
960
|
+
version = "7.1.3"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
963
|
+
dependencies = [
|
|
964
|
+
"memchr",
|
|
965
|
+
"minimal-lexical",
|
|
966
|
+
]
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "num-bigint"
|
|
970
|
+
version = "0.4.6"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
973
|
+
dependencies = [
|
|
974
|
+
"num-integer",
|
|
975
|
+
"num-traits",
|
|
976
|
+
]
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "num-complex"
|
|
980
|
+
version = "0.4.6"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"num-traits",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "num-conv"
|
|
989
|
+
version = "0.2.1"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "num-integer"
|
|
995
|
+
version = "0.1.46"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
998
|
+
dependencies = [
|
|
999
|
+
"num-traits",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "num-rational"
|
|
1004
|
+
version = "0.4.2"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"num-bigint",
|
|
1009
|
+
"num-integer",
|
|
1010
|
+
"num-traits",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "num-traits"
|
|
1015
|
+
version = "0.2.19"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"autocfg",
|
|
1020
|
+
]
|
|
1021
|
+
|
|
1022
|
+
[[package]]
|
|
1023
|
+
name = "num_threads"
|
|
1024
|
+
version = "0.1.7"
|
|
1025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
+
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
|
|
1027
|
+
dependencies = [
|
|
1028
|
+
"libc",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "number_prefix"
|
|
1033
|
+
version = "0.4.0"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
|
1036
|
+
|
|
1037
|
+
[[package]]
|
|
1038
|
+
name = "numpy"
|
|
1039
|
+
version = "0.28.0"
|
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
+
checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
|
|
1042
|
+
dependencies = [
|
|
1043
|
+
"libc",
|
|
1044
|
+
"ndarray",
|
|
1045
|
+
"num-complex",
|
|
1046
|
+
"num-integer",
|
|
1047
|
+
"num-traits",
|
|
1048
|
+
"pyo3",
|
|
1049
|
+
"pyo3-build-config",
|
|
1050
|
+
"rustc-hash 2.1.2",
|
|
1051
|
+
]
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "once_cell"
|
|
1055
|
+
version = "1.21.4"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "once_cell_polyfill"
|
|
1061
|
+
version = "1.70.2"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "ordered-float"
|
|
1067
|
+
version = "5.3.0"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
|
|
1070
|
+
dependencies = [
|
|
1071
|
+
"num-traits",
|
|
1072
|
+
]
|
|
1073
|
+
|
|
1074
|
+
[[package]]
|
|
1075
|
+
name = "os_pipe"
|
|
1076
|
+
version = "1.2.3"
|
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
+
checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967"
|
|
1079
|
+
dependencies = [
|
|
1080
|
+
"libc",
|
|
1081
|
+
"windows-sys 0.61.2",
|
|
1082
|
+
]
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "parasail-rs"
|
|
1086
|
+
version = "0.9.0"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "40cf15218ef48ea888aac1415e75662590b3cb7b1378ac99ac8e1910e90f2350"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"bitflags",
|
|
1091
|
+
"derive_more",
|
|
1092
|
+
"libc",
|
|
1093
|
+
"libparasail-sys",
|
|
1094
|
+
"log",
|
|
1095
|
+
]
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "parking_lot"
|
|
1099
|
+
version = "0.12.5"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"lock_api",
|
|
1104
|
+
"parking_lot_core",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "parking_lot_core"
|
|
1109
|
+
version = "0.9.12"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1112
|
+
dependencies = [
|
|
1113
|
+
"cfg-if",
|
|
1114
|
+
"libc",
|
|
1115
|
+
"redox_syscall",
|
|
1116
|
+
"smallvec",
|
|
1117
|
+
"windows-link",
|
|
1118
|
+
]
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "petgraph"
|
|
1122
|
+
version = "0.6.5"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
1125
|
+
dependencies = [
|
|
1126
|
+
"fixedbitset 0.4.2",
|
|
1127
|
+
"indexmap",
|
|
1128
|
+
]
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "petgraph"
|
|
1132
|
+
version = "0.8.3"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
1135
|
+
dependencies = [
|
|
1136
|
+
"fixedbitset 0.5.7",
|
|
1137
|
+
"hashbrown 0.15.5",
|
|
1138
|
+
"indexmap",
|
|
1139
|
+
"serde",
|
|
1140
|
+
]
|
|
1141
|
+
|
|
1142
|
+
[[package]]
|
|
1143
|
+
name = "phf"
|
|
1144
|
+
version = "0.11.3"
|
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
1147
|
+
dependencies = [
|
|
1148
|
+
"phf_shared",
|
|
1149
|
+
]
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "phf_codegen"
|
|
1153
|
+
version = "0.11.3"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"phf_generator",
|
|
1158
|
+
"phf_shared",
|
|
1159
|
+
]
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "phf_generator"
|
|
1163
|
+
version = "0.11.3"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
1166
|
+
dependencies = [
|
|
1167
|
+
"phf_shared",
|
|
1168
|
+
"rand 0.8.5",
|
|
1169
|
+
]
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "phf_shared"
|
|
1173
|
+
version = "0.11.3"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
1176
|
+
dependencies = [
|
|
1177
|
+
"siphasher",
|
|
1178
|
+
]
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "pkg-config"
|
|
1182
|
+
version = "0.3.33"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "portable-atomic"
|
|
1188
|
+
version = "1.13.1"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "portable-atomic-util"
|
|
1194
|
+
version = "0.2.7"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
1197
|
+
dependencies = [
|
|
1198
|
+
"portable-atomic",
|
|
1199
|
+
]
|
|
1200
|
+
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "powerfmt"
|
|
1203
|
+
version = "0.2.0"
|
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "ppv-lite86"
|
|
1209
|
+
version = "0.2.21"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1212
|
+
dependencies = [
|
|
1213
|
+
"zerocopy",
|
|
1214
|
+
]
|
|
1215
|
+
|
|
1216
|
+
[[package]]
|
|
1217
|
+
name = "prettyplease"
|
|
1218
|
+
version = "0.2.37"
|
|
1219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1220
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1221
|
+
dependencies = [
|
|
1222
|
+
"proc-macro2",
|
|
1223
|
+
"syn",
|
|
1224
|
+
]
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "proc-macro2"
|
|
1228
|
+
version = "1.0.106"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"unicode-ident",
|
|
1233
|
+
]
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "py-refnd"
|
|
1237
|
+
version = "0.0.0"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"anyhow",
|
|
1240
|
+
"fixedbitset 0.5.7",
|
|
1241
|
+
"indicatif",
|
|
1242
|
+
"numpy",
|
|
1243
|
+
"pyo3",
|
|
1244
|
+
"pyo3-stub-gen",
|
|
1245
|
+
"refnd",
|
|
1246
|
+
]
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "pyo3"
|
|
1250
|
+
version = "0.28.3"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
1253
|
+
dependencies = [
|
|
1254
|
+
"libc",
|
|
1255
|
+
"once_cell",
|
|
1256
|
+
"portable-atomic",
|
|
1257
|
+
"pyo3-build-config",
|
|
1258
|
+
"pyo3-ffi",
|
|
1259
|
+
"pyo3-macros",
|
|
1260
|
+
]
|
|
1261
|
+
|
|
1262
|
+
[[package]]
|
|
1263
|
+
name = "pyo3-build-config"
|
|
1264
|
+
version = "0.28.3"
|
|
1265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
1267
|
+
dependencies = [
|
|
1268
|
+
"target-lexicon",
|
|
1269
|
+
]
|
|
1270
|
+
|
|
1271
|
+
[[package]]
|
|
1272
|
+
name = "pyo3-ffi"
|
|
1273
|
+
version = "0.28.3"
|
|
1274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1275
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
1276
|
+
dependencies = [
|
|
1277
|
+
"libc",
|
|
1278
|
+
"pyo3-build-config",
|
|
1279
|
+
]
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "pyo3-macros"
|
|
1283
|
+
version = "0.28.3"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
1286
|
+
dependencies = [
|
|
1287
|
+
"proc-macro2",
|
|
1288
|
+
"pyo3-macros-backend",
|
|
1289
|
+
"quote",
|
|
1290
|
+
"syn",
|
|
1291
|
+
]
|
|
1292
|
+
|
|
1293
|
+
[[package]]
|
|
1294
|
+
name = "pyo3-macros-backend"
|
|
1295
|
+
version = "0.28.3"
|
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
1298
|
+
dependencies = [
|
|
1299
|
+
"heck",
|
|
1300
|
+
"proc-macro2",
|
|
1301
|
+
"pyo3-build-config",
|
|
1302
|
+
"quote",
|
|
1303
|
+
"syn",
|
|
1304
|
+
]
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "pyo3-stub-gen"
|
|
1308
|
+
version = "0.22.1"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "8933f5816871707ba1379189c9fe3ae3511403fc9564914fb085b7686160529f"
|
|
1311
|
+
dependencies = [
|
|
1312
|
+
"anyhow",
|
|
1313
|
+
"chrono",
|
|
1314
|
+
"either",
|
|
1315
|
+
"indexmap",
|
|
1316
|
+
"inventory",
|
|
1317
|
+
"itertools 0.14.0",
|
|
1318
|
+
"log",
|
|
1319
|
+
"maplit",
|
|
1320
|
+
"num-complex",
|
|
1321
|
+
"numpy",
|
|
1322
|
+
"ordered-float",
|
|
1323
|
+
"pyo3",
|
|
1324
|
+
"pyo3-stub-gen-derive",
|
|
1325
|
+
"rustpython-parser",
|
|
1326
|
+
"serde",
|
|
1327
|
+
"serde_json",
|
|
1328
|
+
"time",
|
|
1329
|
+
"toml",
|
|
1330
|
+
]
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "pyo3-stub-gen-derive"
|
|
1334
|
+
version = "0.22.1"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "d085a7cb2c2a8aa9b660abfbdbb456b2e0872090158398d0524a3a2ae38f0ab0"
|
|
1337
|
+
dependencies = [
|
|
1338
|
+
"heck",
|
|
1339
|
+
"indexmap",
|
|
1340
|
+
"proc-macro2",
|
|
1341
|
+
"quote",
|
|
1342
|
+
"rustpython-parser",
|
|
1343
|
+
"syn",
|
|
1344
|
+
]
|
|
1345
|
+
|
|
1346
|
+
[[package]]
|
|
1347
|
+
name = "quick_cache"
|
|
1348
|
+
version = "0.6.21"
|
|
1349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
+
checksum = "5a70b1b8b47e31d0498ecbc3c5470bb931399a8bfed1fd79d1717a61ce7f96e3"
|
|
1351
|
+
dependencies = [
|
|
1352
|
+
"ahash",
|
|
1353
|
+
"equivalent",
|
|
1354
|
+
"hashbrown 0.16.1",
|
|
1355
|
+
"parking_lot",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "quote"
|
|
1360
|
+
version = "1.0.45"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1363
|
+
dependencies = [
|
|
1364
|
+
"proc-macro2",
|
|
1365
|
+
]
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "r-efi"
|
|
1369
|
+
version = "5.3.0"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1372
|
+
|
|
1373
|
+
[[package]]
|
|
1374
|
+
name = "r-efi"
|
|
1375
|
+
version = "6.0.0"
|
|
1376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1378
|
+
|
|
1379
|
+
[[package]]
|
|
1380
|
+
name = "rand"
|
|
1381
|
+
version = "0.8.5"
|
|
1382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1383
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
1384
|
+
dependencies = [
|
|
1385
|
+
"libc",
|
|
1386
|
+
"rand_chacha",
|
|
1387
|
+
"rand_core 0.6.4",
|
|
1388
|
+
]
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "rand"
|
|
1392
|
+
version = "0.10.1"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"chacha20",
|
|
1397
|
+
"getrandom 0.4.2",
|
|
1398
|
+
"rand_core 0.10.1",
|
|
1399
|
+
]
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "rand_chacha"
|
|
1403
|
+
version = "0.3.1"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
1406
|
+
dependencies = [
|
|
1407
|
+
"ppv-lite86",
|
|
1408
|
+
"rand_core 0.6.4",
|
|
1409
|
+
]
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "rand_core"
|
|
1413
|
+
version = "0.6.4"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1416
|
+
dependencies = [
|
|
1417
|
+
"getrandom 0.2.17",
|
|
1418
|
+
]
|
|
1419
|
+
|
|
1420
|
+
[[package]]
|
|
1421
|
+
name = "rand_core"
|
|
1422
|
+
version = "0.10.1"
|
|
1423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1424
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
1425
|
+
|
|
1426
|
+
[[package]]
|
|
1427
|
+
name = "rawpointer"
|
|
1428
|
+
version = "0.2.1"
|
|
1429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "rayon"
|
|
1434
|
+
version = "1.12.0"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1437
|
+
dependencies = [
|
|
1438
|
+
"either",
|
|
1439
|
+
"rayon-core",
|
|
1440
|
+
]
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "rayon-core"
|
|
1444
|
+
version = "1.13.0"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1447
|
+
dependencies = [
|
|
1448
|
+
"crossbeam-deque",
|
|
1449
|
+
"crossbeam-utils",
|
|
1450
|
+
]
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "redox_syscall"
|
|
1454
|
+
version = "0.5.18"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1457
|
+
dependencies = [
|
|
1458
|
+
"bitflags",
|
|
1459
|
+
]
|
|
1460
|
+
|
|
1461
|
+
[[package]]
|
|
1462
|
+
name = "refnd"
|
|
1463
|
+
version = "0.1.0"
|
|
1464
|
+
dependencies = [
|
|
1465
|
+
"bincode",
|
|
1466
|
+
"clap",
|
|
1467
|
+
"clap_complete",
|
|
1468
|
+
"dashmap",
|
|
1469
|
+
"fixedbitset 0.5.7",
|
|
1470
|
+
"indicatif",
|
|
1471
|
+
"mimalloc",
|
|
1472
|
+
"molprint-core",
|
|
1473
|
+
"molprint-fp",
|
|
1474
|
+
"molprint-io",
|
|
1475
|
+
"ndarray",
|
|
1476
|
+
"parasail-rs",
|
|
1477
|
+
"parking_lot",
|
|
1478
|
+
"petgraph 0.8.3",
|
|
1479
|
+
"quick_cache",
|
|
1480
|
+
"rand 0.10.1",
|
|
1481
|
+
"rayon",
|
|
1482
|
+
"regex",
|
|
1483
|
+
"rich_rust",
|
|
1484
|
+
"rustc-hash 2.1.2",
|
|
1485
|
+
]
|
|
1486
|
+
|
|
1487
|
+
[[package]]
|
|
1488
|
+
name = "regex"
|
|
1489
|
+
version = "1.12.3"
|
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
1492
|
+
dependencies = [
|
|
1493
|
+
"aho-corasick",
|
|
1494
|
+
"memchr",
|
|
1495
|
+
"regex-automata",
|
|
1496
|
+
"regex-syntax",
|
|
1497
|
+
]
|
|
1498
|
+
|
|
1499
|
+
[[package]]
|
|
1500
|
+
name = "regex-automata"
|
|
1501
|
+
version = "0.4.14"
|
|
1502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1504
|
+
dependencies = [
|
|
1505
|
+
"aho-corasick",
|
|
1506
|
+
"memchr",
|
|
1507
|
+
"regex-syntax",
|
|
1508
|
+
]
|
|
1509
|
+
|
|
1510
|
+
[[package]]
|
|
1511
|
+
name = "regex-syntax"
|
|
1512
|
+
version = "0.8.10"
|
|
1513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
1515
|
+
|
|
1516
|
+
[[package]]
|
|
1517
|
+
name = "rich_rust"
|
|
1518
|
+
version = "0.2.1"
|
|
1519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
+
checksum = "28b19f5711867dc33a82cdbfd437c03b4089308f63a7ec3ee6ab34a9d74ff519"
|
|
1521
|
+
dependencies = [
|
|
1522
|
+
"bitflags",
|
|
1523
|
+
"crossterm",
|
|
1524
|
+
"fancy-regex",
|
|
1525
|
+
"log",
|
|
1526
|
+
"lru",
|
|
1527
|
+
"num-rational",
|
|
1528
|
+
"once_cell",
|
|
1529
|
+
"os_pipe",
|
|
1530
|
+
"regex",
|
|
1531
|
+
"smallvec",
|
|
1532
|
+
"stdio-override",
|
|
1533
|
+
"time",
|
|
1534
|
+
"unicode-width",
|
|
1535
|
+
]
|
|
1536
|
+
|
|
1537
|
+
[[package]]
|
|
1538
|
+
name = "rustc-hash"
|
|
1539
|
+
version = "1.1.0"
|
|
1540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1542
|
+
|
|
1543
|
+
[[package]]
|
|
1544
|
+
name = "rustc-hash"
|
|
1545
|
+
version = "2.1.2"
|
|
1546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1548
|
+
|
|
1549
|
+
[[package]]
|
|
1550
|
+
name = "rustc_version"
|
|
1551
|
+
version = "0.4.1"
|
|
1552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1554
|
+
dependencies = [
|
|
1555
|
+
"semver",
|
|
1556
|
+
]
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "rustix"
|
|
1560
|
+
version = "1.1.4"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"bitflags",
|
|
1565
|
+
"errno",
|
|
1566
|
+
"libc",
|
|
1567
|
+
"linux-raw-sys",
|
|
1568
|
+
"windows-sys 0.61.2",
|
|
1569
|
+
]
|
|
1570
|
+
|
|
1571
|
+
[[package]]
|
|
1572
|
+
name = "rustpython-ast"
|
|
1573
|
+
version = "0.4.0"
|
|
1574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1575
|
+
checksum = "4cdaf8ee5c1473b993b398c174641d3aa9da847af36e8d5eb8291930b72f31a5"
|
|
1576
|
+
dependencies = [
|
|
1577
|
+
"is-macro",
|
|
1578
|
+
"num-bigint",
|
|
1579
|
+
"rustpython-parser-core",
|
|
1580
|
+
"static_assertions",
|
|
1581
|
+
]
|
|
1582
|
+
|
|
1583
|
+
[[package]]
|
|
1584
|
+
name = "rustpython-parser"
|
|
1585
|
+
version = "0.4.0"
|
|
1586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
+
checksum = "868f724daac0caf9bd36d38caf45819905193a901e8f1c983345a68e18fb2abb"
|
|
1588
|
+
dependencies = [
|
|
1589
|
+
"anyhow",
|
|
1590
|
+
"is-macro",
|
|
1591
|
+
"itertools 0.11.0",
|
|
1592
|
+
"lalrpop-util",
|
|
1593
|
+
"log",
|
|
1594
|
+
"num-bigint",
|
|
1595
|
+
"num-traits",
|
|
1596
|
+
"phf",
|
|
1597
|
+
"phf_codegen",
|
|
1598
|
+
"rustc-hash 1.1.0",
|
|
1599
|
+
"rustpython-ast",
|
|
1600
|
+
"rustpython-parser-core",
|
|
1601
|
+
"tiny-keccak",
|
|
1602
|
+
"unic-emoji-char",
|
|
1603
|
+
"unic-ucd-ident",
|
|
1604
|
+
"unicode_names2",
|
|
1605
|
+
]
|
|
1606
|
+
|
|
1607
|
+
[[package]]
|
|
1608
|
+
name = "rustpython-parser-core"
|
|
1609
|
+
version = "0.4.0"
|
|
1610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
+
checksum = "b4b6c12fa273825edc7bccd9a734f0ad5ba4b8a2f4da5ff7efe946f066d0f4ad"
|
|
1612
|
+
dependencies = [
|
|
1613
|
+
"is-macro",
|
|
1614
|
+
"memchr",
|
|
1615
|
+
"rustpython-parser-vendored",
|
|
1616
|
+
]
|
|
1617
|
+
|
|
1618
|
+
[[package]]
|
|
1619
|
+
name = "rustpython-parser-vendored"
|
|
1620
|
+
version = "0.4.0"
|
|
1621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
+
checksum = "04fcea49a4630a3a5d940f4d514dc4f575ed63c14c3e3ed07146634aed7f67a6"
|
|
1623
|
+
dependencies = [
|
|
1624
|
+
"memchr",
|
|
1625
|
+
"once_cell",
|
|
1626
|
+
]
|
|
1627
|
+
|
|
1628
|
+
[[package]]
|
|
1629
|
+
name = "rustversion"
|
|
1630
|
+
version = "1.0.22"
|
|
1631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1632
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1633
|
+
|
|
1634
|
+
[[package]]
|
|
1635
|
+
name = "scopeguard"
|
|
1636
|
+
version = "1.2.0"
|
|
1637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1639
|
+
|
|
1640
|
+
[[package]]
|
|
1641
|
+
name = "semver"
|
|
1642
|
+
version = "1.0.28"
|
|
1643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1644
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1645
|
+
|
|
1646
|
+
[[package]]
|
|
1647
|
+
name = "serde"
|
|
1648
|
+
version = "1.0.228"
|
|
1649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1651
|
+
dependencies = [
|
|
1652
|
+
"serde_core",
|
|
1653
|
+
"serde_derive",
|
|
1654
|
+
]
|
|
1655
|
+
|
|
1656
|
+
[[package]]
|
|
1657
|
+
name = "serde_core"
|
|
1658
|
+
version = "1.0.228"
|
|
1659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1661
|
+
dependencies = [
|
|
1662
|
+
"serde_derive",
|
|
1663
|
+
]
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "serde_derive"
|
|
1667
|
+
version = "1.0.228"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1670
|
+
dependencies = [
|
|
1671
|
+
"proc-macro2",
|
|
1672
|
+
"quote",
|
|
1673
|
+
"syn",
|
|
1674
|
+
]
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "serde_json"
|
|
1678
|
+
version = "1.0.149"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1681
|
+
dependencies = [
|
|
1682
|
+
"itoa",
|
|
1683
|
+
"memchr",
|
|
1684
|
+
"serde",
|
|
1685
|
+
"serde_core",
|
|
1686
|
+
"zmij",
|
|
1687
|
+
]
|
|
1688
|
+
|
|
1689
|
+
[[package]]
|
|
1690
|
+
name = "serde_spanned"
|
|
1691
|
+
version = "1.1.1"
|
|
1692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
1694
|
+
dependencies = [
|
|
1695
|
+
"serde_core",
|
|
1696
|
+
]
|
|
1697
|
+
|
|
1698
|
+
[[package]]
|
|
1699
|
+
name = "shlex"
|
|
1700
|
+
version = "1.3.0"
|
|
1701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1703
|
+
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "signal-hook"
|
|
1706
|
+
version = "0.3.18"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
|
|
1709
|
+
dependencies = [
|
|
1710
|
+
"libc",
|
|
1711
|
+
"signal-hook-registry",
|
|
1712
|
+
]
|
|
1713
|
+
|
|
1714
|
+
[[package]]
|
|
1715
|
+
name = "signal-hook-mio"
|
|
1716
|
+
version = "0.2.5"
|
|
1717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1718
|
+
checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
|
|
1719
|
+
dependencies = [
|
|
1720
|
+
"libc",
|
|
1721
|
+
"mio",
|
|
1722
|
+
"signal-hook",
|
|
1723
|
+
]
|
|
1724
|
+
|
|
1725
|
+
[[package]]
|
|
1726
|
+
name = "signal-hook-registry"
|
|
1727
|
+
version = "1.4.8"
|
|
1728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1729
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1730
|
+
dependencies = [
|
|
1731
|
+
"errno",
|
|
1732
|
+
"libc",
|
|
1733
|
+
]
|
|
1734
|
+
|
|
1735
|
+
[[package]]
|
|
1736
|
+
name = "simd-adler32"
|
|
1737
|
+
version = "0.3.9"
|
|
1738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1740
|
+
|
|
1741
|
+
[[package]]
|
|
1742
|
+
name = "siphasher"
|
|
1743
|
+
version = "1.0.2"
|
|
1744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
+
checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
|
|
1746
|
+
|
|
1747
|
+
[[package]]
|
|
1748
|
+
name = "smallvec"
|
|
1749
|
+
version = "1.15.1"
|
|
1750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1752
|
+
dependencies = [
|
|
1753
|
+
"serde",
|
|
1754
|
+
]
|
|
1755
|
+
|
|
1756
|
+
[[package]]
|
|
1757
|
+
name = "static_assertions"
|
|
1758
|
+
version = "1.1.0"
|
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1761
|
+
|
|
1762
|
+
[[package]]
|
|
1763
|
+
name = "stdio-override"
|
|
1764
|
+
version = "0.2.0"
|
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
+
checksum = "cffa8a2e517b4e9f270c47e1c4120df90506d9451c1efa67e3698d66446d30ce"
|
|
1767
|
+
dependencies = [
|
|
1768
|
+
"libc",
|
|
1769
|
+
"winapi",
|
|
1770
|
+
]
|
|
1771
|
+
|
|
1772
|
+
[[package]]
|
|
1773
|
+
name = "strsim"
|
|
1774
|
+
version = "0.11.1"
|
|
1775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1776
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1777
|
+
|
|
1778
|
+
[[package]]
|
|
1779
|
+
name = "syn"
|
|
1780
|
+
version = "2.0.117"
|
|
1781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1783
|
+
dependencies = [
|
|
1784
|
+
"proc-macro2",
|
|
1785
|
+
"quote",
|
|
1786
|
+
"unicode-ident",
|
|
1787
|
+
]
|
|
1788
|
+
|
|
1789
|
+
[[package]]
|
|
1790
|
+
name = "target-lexicon"
|
|
1791
|
+
version = "0.13.5"
|
|
1792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1793
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1794
|
+
|
|
1795
|
+
[[package]]
|
|
1796
|
+
name = "thiserror"
|
|
1797
|
+
version = "2.0.18"
|
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1800
|
+
dependencies = [
|
|
1801
|
+
"thiserror-impl",
|
|
1802
|
+
]
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "thiserror-impl"
|
|
1806
|
+
version = "2.0.18"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1809
|
+
dependencies = [
|
|
1810
|
+
"proc-macro2",
|
|
1811
|
+
"quote",
|
|
1812
|
+
"syn",
|
|
1813
|
+
]
|
|
1814
|
+
|
|
1815
|
+
[[package]]
|
|
1816
|
+
name = "time"
|
|
1817
|
+
version = "0.3.47"
|
|
1818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
+
checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
|
1820
|
+
dependencies = [
|
|
1821
|
+
"deranged",
|
|
1822
|
+
"itoa",
|
|
1823
|
+
"libc",
|
|
1824
|
+
"num-conv",
|
|
1825
|
+
"num_threads",
|
|
1826
|
+
"powerfmt",
|
|
1827
|
+
"serde_core",
|
|
1828
|
+
"time-core",
|
|
1829
|
+
"time-macros",
|
|
1830
|
+
]
|
|
1831
|
+
|
|
1832
|
+
[[package]]
|
|
1833
|
+
name = "time-core"
|
|
1834
|
+
version = "0.1.8"
|
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
+
checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
|
|
1837
|
+
|
|
1838
|
+
[[package]]
|
|
1839
|
+
name = "time-macros"
|
|
1840
|
+
version = "0.2.27"
|
|
1841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
+
checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
|
|
1843
|
+
dependencies = [
|
|
1844
|
+
"num-conv",
|
|
1845
|
+
"time-core",
|
|
1846
|
+
]
|
|
1847
|
+
|
|
1848
|
+
[[package]]
|
|
1849
|
+
name = "tiny-keccak"
|
|
1850
|
+
version = "2.0.2"
|
|
1851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1852
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
1853
|
+
dependencies = [
|
|
1854
|
+
"crunchy",
|
|
1855
|
+
]
|
|
1856
|
+
|
|
1857
|
+
[[package]]
|
|
1858
|
+
name = "toml"
|
|
1859
|
+
version = "1.1.2+spec-1.1.0"
|
|
1860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
+
checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
|
|
1862
|
+
dependencies = [
|
|
1863
|
+
"indexmap",
|
|
1864
|
+
"serde_core",
|
|
1865
|
+
"serde_spanned",
|
|
1866
|
+
"toml_datetime",
|
|
1867
|
+
"toml_parser",
|
|
1868
|
+
"toml_writer",
|
|
1869
|
+
"winnow",
|
|
1870
|
+
]
|
|
1871
|
+
|
|
1872
|
+
[[package]]
|
|
1873
|
+
name = "toml_datetime"
|
|
1874
|
+
version = "1.1.1+spec-1.1.0"
|
|
1875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
1877
|
+
dependencies = [
|
|
1878
|
+
"serde_core",
|
|
1879
|
+
]
|
|
1880
|
+
|
|
1881
|
+
[[package]]
|
|
1882
|
+
name = "toml_parser"
|
|
1883
|
+
version = "1.1.2+spec-1.1.0"
|
|
1884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1885
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
1886
|
+
dependencies = [
|
|
1887
|
+
"winnow",
|
|
1888
|
+
]
|
|
1889
|
+
|
|
1890
|
+
[[package]]
|
|
1891
|
+
name = "toml_writer"
|
|
1892
|
+
version = "1.1.1+spec-1.1.0"
|
|
1893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1894
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
1895
|
+
|
|
1896
|
+
[[package]]
|
|
1897
|
+
name = "unic-char-property"
|
|
1898
|
+
version = "0.9.0"
|
|
1899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1900
|
+
checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
|
|
1901
|
+
dependencies = [
|
|
1902
|
+
"unic-char-range",
|
|
1903
|
+
]
|
|
1904
|
+
|
|
1905
|
+
[[package]]
|
|
1906
|
+
name = "unic-char-range"
|
|
1907
|
+
version = "0.9.0"
|
|
1908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1909
|
+
checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
|
|
1910
|
+
|
|
1911
|
+
[[package]]
|
|
1912
|
+
name = "unic-common"
|
|
1913
|
+
version = "0.9.0"
|
|
1914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
+
checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
|
|
1916
|
+
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "unic-emoji-char"
|
|
1919
|
+
version = "0.9.0"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d"
|
|
1922
|
+
dependencies = [
|
|
1923
|
+
"unic-char-property",
|
|
1924
|
+
"unic-char-range",
|
|
1925
|
+
"unic-ucd-version",
|
|
1926
|
+
]
|
|
1927
|
+
|
|
1928
|
+
[[package]]
|
|
1929
|
+
name = "unic-ucd-ident"
|
|
1930
|
+
version = "0.9.0"
|
|
1931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1932
|
+
checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
|
|
1933
|
+
dependencies = [
|
|
1934
|
+
"unic-char-property",
|
|
1935
|
+
"unic-char-range",
|
|
1936
|
+
"unic-ucd-version",
|
|
1937
|
+
]
|
|
1938
|
+
|
|
1939
|
+
[[package]]
|
|
1940
|
+
name = "unic-ucd-version"
|
|
1941
|
+
version = "0.9.0"
|
|
1942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1943
|
+
checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
|
|
1944
|
+
dependencies = [
|
|
1945
|
+
"unic-common",
|
|
1946
|
+
]
|
|
1947
|
+
|
|
1948
|
+
[[package]]
|
|
1949
|
+
name = "unicode-ident"
|
|
1950
|
+
version = "1.0.24"
|
|
1951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1952
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1953
|
+
|
|
1954
|
+
[[package]]
|
|
1955
|
+
name = "unicode-segmentation"
|
|
1956
|
+
version = "1.13.2"
|
|
1957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
1959
|
+
|
|
1960
|
+
[[package]]
|
|
1961
|
+
name = "unicode-width"
|
|
1962
|
+
version = "0.2.2"
|
|
1963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1965
|
+
|
|
1966
|
+
[[package]]
|
|
1967
|
+
name = "unicode-xid"
|
|
1968
|
+
version = "0.2.6"
|
|
1969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1970
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1971
|
+
|
|
1972
|
+
[[package]]
|
|
1973
|
+
name = "unicode_names2"
|
|
1974
|
+
version = "1.3.0"
|
|
1975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1976
|
+
checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
|
|
1977
|
+
dependencies = [
|
|
1978
|
+
"phf",
|
|
1979
|
+
"unicode_names2_generator",
|
|
1980
|
+
]
|
|
1981
|
+
|
|
1982
|
+
[[package]]
|
|
1983
|
+
name = "unicode_names2_generator"
|
|
1984
|
+
version = "1.3.0"
|
|
1985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
+
checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
|
|
1987
|
+
dependencies = [
|
|
1988
|
+
"getopts",
|
|
1989
|
+
"log",
|
|
1990
|
+
"phf_codegen",
|
|
1991
|
+
"rand 0.8.5",
|
|
1992
|
+
]
|
|
1993
|
+
|
|
1994
|
+
[[package]]
|
|
1995
|
+
name = "unty"
|
|
1996
|
+
version = "0.0.4"
|
|
1997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
+
checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
|
|
1999
|
+
|
|
2000
|
+
[[package]]
|
|
2001
|
+
name = "utf8parse"
|
|
2002
|
+
version = "0.2.2"
|
|
2003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2004
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2005
|
+
|
|
2006
|
+
[[package]]
|
|
2007
|
+
name = "version_check"
|
|
2008
|
+
version = "0.9.5"
|
|
2009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2011
|
+
|
|
2012
|
+
[[package]]
|
|
2013
|
+
name = "virtue"
|
|
2014
|
+
version = "0.0.18"
|
|
2015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
+
checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
|
|
2017
|
+
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "wasi"
|
|
2020
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2023
|
+
|
|
2024
|
+
[[package]]
|
|
2025
|
+
name = "wasip2"
|
|
2026
|
+
version = "1.0.2+wasi-0.2.9"
|
|
2027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
2029
|
+
dependencies = [
|
|
2030
|
+
"wit-bindgen",
|
|
2031
|
+
]
|
|
2032
|
+
|
|
2033
|
+
[[package]]
|
|
2034
|
+
name = "wasip3"
|
|
2035
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
2036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2037
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
2038
|
+
dependencies = [
|
|
2039
|
+
"wit-bindgen",
|
|
2040
|
+
]
|
|
2041
|
+
|
|
2042
|
+
[[package]]
|
|
2043
|
+
name = "wasm-bindgen"
|
|
2044
|
+
version = "0.2.118"
|
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
+
checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
|
|
2047
|
+
dependencies = [
|
|
2048
|
+
"cfg-if",
|
|
2049
|
+
"once_cell",
|
|
2050
|
+
"rustversion",
|
|
2051
|
+
"wasm-bindgen-macro",
|
|
2052
|
+
"wasm-bindgen-shared",
|
|
2053
|
+
]
|
|
2054
|
+
|
|
2055
|
+
[[package]]
|
|
2056
|
+
name = "wasm-bindgen-macro"
|
|
2057
|
+
version = "0.2.118"
|
|
2058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2059
|
+
checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
|
|
2060
|
+
dependencies = [
|
|
2061
|
+
"quote",
|
|
2062
|
+
"wasm-bindgen-macro-support",
|
|
2063
|
+
]
|
|
2064
|
+
|
|
2065
|
+
[[package]]
|
|
2066
|
+
name = "wasm-bindgen-macro-support"
|
|
2067
|
+
version = "0.2.118"
|
|
2068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2069
|
+
checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
|
|
2070
|
+
dependencies = [
|
|
2071
|
+
"bumpalo",
|
|
2072
|
+
"proc-macro2",
|
|
2073
|
+
"quote",
|
|
2074
|
+
"syn",
|
|
2075
|
+
"wasm-bindgen-shared",
|
|
2076
|
+
]
|
|
2077
|
+
|
|
2078
|
+
[[package]]
|
|
2079
|
+
name = "wasm-bindgen-shared"
|
|
2080
|
+
version = "0.2.118"
|
|
2081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
+
checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
|
|
2083
|
+
dependencies = [
|
|
2084
|
+
"unicode-ident",
|
|
2085
|
+
]
|
|
2086
|
+
|
|
2087
|
+
[[package]]
|
|
2088
|
+
name = "wasm-encoder"
|
|
2089
|
+
version = "0.244.0"
|
|
2090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
2092
|
+
dependencies = [
|
|
2093
|
+
"leb128fmt",
|
|
2094
|
+
"wasmparser",
|
|
2095
|
+
]
|
|
2096
|
+
|
|
2097
|
+
[[package]]
|
|
2098
|
+
name = "wasm-metadata"
|
|
2099
|
+
version = "0.244.0"
|
|
2100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2101
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
2102
|
+
dependencies = [
|
|
2103
|
+
"anyhow",
|
|
2104
|
+
"indexmap",
|
|
2105
|
+
"wasm-encoder",
|
|
2106
|
+
"wasmparser",
|
|
2107
|
+
]
|
|
2108
|
+
|
|
2109
|
+
[[package]]
|
|
2110
|
+
name = "wasmparser"
|
|
2111
|
+
version = "0.244.0"
|
|
2112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2113
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
2114
|
+
dependencies = [
|
|
2115
|
+
"bitflags",
|
|
2116
|
+
"hashbrown 0.15.5",
|
|
2117
|
+
"indexmap",
|
|
2118
|
+
"semver",
|
|
2119
|
+
]
|
|
2120
|
+
|
|
2121
|
+
[[package]]
|
|
2122
|
+
name = "web-time"
|
|
2123
|
+
version = "1.1.0"
|
|
2124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
2126
|
+
dependencies = [
|
|
2127
|
+
"js-sys",
|
|
2128
|
+
"wasm-bindgen",
|
|
2129
|
+
]
|
|
2130
|
+
|
|
2131
|
+
[[package]]
|
|
2132
|
+
name = "winapi"
|
|
2133
|
+
version = "0.3.9"
|
|
2134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2135
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2136
|
+
dependencies = [
|
|
2137
|
+
"winapi-i686-pc-windows-gnu",
|
|
2138
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2139
|
+
]
|
|
2140
|
+
|
|
2141
|
+
[[package]]
|
|
2142
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2143
|
+
version = "0.4.0"
|
|
2144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2145
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2146
|
+
|
|
2147
|
+
[[package]]
|
|
2148
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2149
|
+
version = "0.4.0"
|
|
2150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2152
|
+
|
|
2153
|
+
[[package]]
|
|
2154
|
+
name = "windows-core"
|
|
2155
|
+
version = "0.62.2"
|
|
2156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2157
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2158
|
+
dependencies = [
|
|
2159
|
+
"windows-implement",
|
|
2160
|
+
"windows-interface",
|
|
2161
|
+
"windows-link",
|
|
2162
|
+
"windows-result",
|
|
2163
|
+
"windows-strings",
|
|
2164
|
+
]
|
|
2165
|
+
|
|
2166
|
+
[[package]]
|
|
2167
|
+
name = "windows-implement"
|
|
2168
|
+
version = "0.60.2"
|
|
2169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2170
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2171
|
+
dependencies = [
|
|
2172
|
+
"proc-macro2",
|
|
2173
|
+
"quote",
|
|
2174
|
+
"syn",
|
|
2175
|
+
]
|
|
2176
|
+
|
|
2177
|
+
[[package]]
|
|
2178
|
+
name = "windows-interface"
|
|
2179
|
+
version = "0.59.3"
|
|
2180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2181
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2182
|
+
dependencies = [
|
|
2183
|
+
"proc-macro2",
|
|
2184
|
+
"quote",
|
|
2185
|
+
"syn",
|
|
2186
|
+
]
|
|
2187
|
+
|
|
2188
|
+
[[package]]
|
|
2189
|
+
name = "windows-link"
|
|
2190
|
+
version = "0.2.1"
|
|
2191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2192
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2193
|
+
|
|
2194
|
+
[[package]]
|
|
2195
|
+
name = "windows-result"
|
|
2196
|
+
version = "0.4.1"
|
|
2197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2198
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2199
|
+
dependencies = [
|
|
2200
|
+
"windows-link",
|
|
2201
|
+
]
|
|
2202
|
+
|
|
2203
|
+
[[package]]
|
|
2204
|
+
name = "windows-strings"
|
|
2205
|
+
version = "0.5.1"
|
|
2206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2208
|
+
dependencies = [
|
|
2209
|
+
"windows-link",
|
|
2210
|
+
]
|
|
2211
|
+
|
|
2212
|
+
[[package]]
|
|
2213
|
+
name = "windows-sys"
|
|
2214
|
+
version = "0.59.0"
|
|
2215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2216
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
2217
|
+
dependencies = [
|
|
2218
|
+
"windows-targets",
|
|
2219
|
+
]
|
|
2220
|
+
|
|
2221
|
+
[[package]]
|
|
2222
|
+
name = "windows-sys"
|
|
2223
|
+
version = "0.61.2"
|
|
2224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2225
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2226
|
+
dependencies = [
|
|
2227
|
+
"windows-link",
|
|
2228
|
+
]
|
|
2229
|
+
|
|
2230
|
+
[[package]]
|
|
2231
|
+
name = "windows-targets"
|
|
2232
|
+
version = "0.52.6"
|
|
2233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2234
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2235
|
+
dependencies = [
|
|
2236
|
+
"windows_aarch64_gnullvm",
|
|
2237
|
+
"windows_aarch64_msvc",
|
|
2238
|
+
"windows_i686_gnu",
|
|
2239
|
+
"windows_i686_gnullvm",
|
|
2240
|
+
"windows_i686_msvc",
|
|
2241
|
+
"windows_x86_64_gnu",
|
|
2242
|
+
"windows_x86_64_gnullvm",
|
|
2243
|
+
"windows_x86_64_msvc",
|
|
2244
|
+
]
|
|
2245
|
+
|
|
2246
|
+
[[package]]
|
|
2247
|
+
name = "windows_aarch64_gnullvm"
|
|
2248
|
+
version = "0.52.6"
|
|
2249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2250
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2251
|
+
|
|
2252
|
+
[[package]]
|
|
2253
|
+
name = "windows_aarch64_msvc"
|
|
2254
|
+
version = "0.52.6"
|
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2257
|
+
|
|
2258
|
+
[[package]]
|
|
2259
|
+
name = "windows_i686_gnu"
|
|
2260
|
+
version = "0.52.6"
|
|
2261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2262
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2263
|
+
|
|
2264
|
+
[[package]]
|
|
2265
|
+
name = "windows_i686_gnullvm"
|
|
2266
|
+
version = "0.52.6"
|
|
2267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2268
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2269
|
+
|
|
2270
|
+
[[package]]
|
|
2271
|
+
name = "windows_i686_msvc"
|
|
2272
|
+
version = "0.52.6"
|
|
2273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2274
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2275
|
+
|
|
2276
|
+
[[package]]
|
|
2277
|
+
name = "windows_x86_64_gnu"
|
|
2278
|
+
version = "0.52.6"
|
|
2279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2281
|
+
|
|
2282
|
+
[[package]]
|
|
2283
|
+
name = "windows_x86_64_gnullvm"
|
|
2284
|
+
version = "0.52.6"
|
|
2285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2286
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2287
|
+
|
|
2288
|
+
[[package]]
|
|
2289
|
+
name = "windows_x86_64_msvc"
|
|
2290
|
+
version = "0.52.6"
|
|
2291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2292
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2293
|
+
|
|
2294
|
+
[[package]]
|
|
2295
|
+
name = "winnow"
|
|
2296
|
+
version = "1.0.1"
|
|
2297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2298
|
+
checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
|
|
2299
|
+
|
|
2300
|
+
[[package]]
|
|
2301
|
+
name = "wit-bindgen"
|
|
2302
|
+
version = "0.51.0"
|
|
2303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2304
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
2305
|
+
dependencies = [
|
|
2306
|
+
"wit-bindgen-rust-macro",
|
|
2307
|
+
]
|
|
2308
|
+
|
|
2309
|
+
[[package]]
|
|
2310
|
+
name = "wit-bindgen-core"
|
|
2311
|
+
version = "0.51.0"
|
|
2312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2313
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
2314
|
+
dependencies = [
|
|
2315
|
+
"anyhow",
|
|
2316
|
+
"heck",
|
|
2317
|
+
"wit-parser",
|
|
2318
|
+
]
|
|
2319
|
+
|
|
2320
|
+
[[package]]
|
|
2321
|
+
name = "wit-bindgen-rust"
|
|
2322
|
+
version = "0.51.0"
|
|
2323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2324
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
2325
|
+
dependencies = [
|
|
2326
|
+
"anyhow",
|
|
2327
|
+
"heck",
|
|
2328
|
+
"indexmap",
|
|
2329
|
+
"prettyplease",
|
|
2330
|
+
"syn",
|
|
2331
|
+
"wasm-metadata",
|
|
2332
|
+
"wit-bindgen-core",
|
|
2333
|
+
"wit-component",
|
|
2334
|
+
]
|
|
2335
|
+
|
|
2336
|
+
[[package]]
|
|
2337
|
+
name = "wit-bindgen-rust-macro"
|
|
2338
|
+
version = "0.51.0"
|
|
2339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2340
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
2341
|
+
dependencies = [
|
|
2342
|
+
"anyhow",
|
|
2343
|
+
"prettyplease",
|
|
2344
|
+
"proc-macro2",
|
|
2345
|
+
"quote",
|
|
2346
|
+
"syn",
|
|
2347
|
+
"wit-bindgen-core",
|
|
2348
|
+
"wit-bindgen-rust",
|
|
2349
|
+
]
|
|
2350
|
+
|
|
2351
|
+
[[package]]
|
|
2352
|
+
name = "wit-component"
|
|
2353
|
+
version = "0.244.0"
|
|
2354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2355
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
2356
|
+
dependencies = [
|
|
2357
|
+
"anyhow",
|
|
2358
|
+
"bitflags",
|
|
2359
|
+
"indexmap",
|
|
2360
|
+
"log",
|
|
2361
|
+
"serde",
|
|
2362
|
+
"serde_derive",
|
|
2363
|
+
"serde_json",
|
|
2364
|
+
"wasm-encoder",
|
|
2365
|
+
"wasm-metadata",
|
|
2366
|
+
"wasmparser",
|
|
2367
|
+
"wit-parser",
|
|
2368
|
+
]
|
|
2369
|
+
|
|
2370
|
+
[[package]]
|
|
2371
|
+
name = "wit-parser"
|
|
2372
|
+
version = "0.244.0"
|
|
2373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2374
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
2375
|
+
dependencies = [
|
|
2376
|
+
"anyhow",
|
|
2377
|
+
"id-arena",
|
|
2378
|
+
"indexmap",
|
|
2379
|
+
"log",
|
|
2380
|
+
"semver",
|
|
2381
|
+
"serde",
|
|
2382
|
+
"serde_derive",
|
|
2383
|
+
"serde_json",
|
|
2384
|
+
"unicode-xid",
|
|
2385
|
+
"wasmparser",
|
|
2386
|
+
]
|
|
2387
|
+
|
|
2388
|
+
[[package]]
|
|
2389
|
+
name = "zerocopy"
|
|
2390
|
+
version = "0.8.48"
|
|
2391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
2393
|
+
dependencies = [
|
|
2394
|
+
"zerocopy-derive",
|
|
2395
|
+
]
|
|
2396
|
+
|
|
2397
|
+
[[package]]
|
|
2398
|
+
name = "zerocopy-derive"
|
|
2399
|
+
version = "0.8.48"
|
|
2400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
2402
|
+
dependencies = [
|
|
2403
|
+
"proc-macro2",
|
|
2404
|
+
"quote",
|
|
2405
|
+
"syn",
|
|
2406
|
+
]
|
|
2407
|
+
|
|
2408
|
+
[[package]]
|
|
2409
|
+
name = "zmij"
|
|
2410
|
+
version = "1.0.21"
|
|
2411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2412
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|