nucleide 0.1.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.
- nucleide-0.1.0/Cargo.lock +1373 -0
- nucleide-0.1.0/Cargo.toml +35 -0
- nucleide-0.1.0/LICENSE +24 -0
- nucleide-0.1.0/PKG-INFO +158 -0
- nucleide-0.1.0/README.md +141 -0
- nucleide-0.1.0/bindings/python/Cargo.toml +23 -0
- nucleide-0.1.0/bindings/python/src/lib.rs +1681 -0
- nucleide-0.1.0/crates/depletion/Cargo.toml +26 -0
- nucleide-0.1.0/crates/depletion/benches/depletion_bench.rs +220 -0
- nucleide-0.1.0/crates/depletion/src/chain.rs +361 -0
- nucleide-0.1.0/crates/depletion/src/cram.rs +291 -0
- nucleide-0.1.0/crates/depletion/src/lib.rs +578 -0
- nucleide-0.1.0/crates/depletion/src/matrix.rs +297 -0
- nucleide-0.1.0/crates/enrichment/Cargo.toml +18 -0
- nucleide-0.1.0/crates/enrichment/benches/enrichment_bench.rs +53 -0
- nucleide-0.1.0/crates/enrichment/src/cascade.rs +1684 -0
- nucleide-0.1.0/crates/enrichment/src/lib.rs +104 -0
- nucleide-0.1.0/crates/enrichment/src/swu.rs +129 -0
- nucleide-0.1.0/crates/fluka-io/Cargo.toml +11 -0
- nucleide-0.1.0/crates/fluka-io/src/lib.rs +11 -0
- nucleide-0.1.0/crates/fluka-io/src/material.rs +755 -0
- nucleide-0.1.0/crates/fluka-io/src/usrbin.rs +618 -0
- nucleide-0.1.0/crates/linalg/Cargo.toml +18 -0
- nucleide-0.1.0/crates/linalg/src/lib.rs +337 -0
- nucleide-0.1.0/crates/material/Cargo.toml +15 -0
- nucleide-0.1.0/crates/material/src/compendium.rs +326 -0
- nucleide-0.1.0/crates/material/src/expansion.rs +655 -0
- nucleide-0.1.0/crates/material/src/lib.rs +78 -0
- nucleide-0.1.0/crates/material/src/material.rs +941 -0
- nucleide-0.1.0/crates/material/src/xml.rs +280 -0
- nucleide-0.1.0/crates/mcnp-io/Cargo.toml +20 -0
- nucleide-0.1.0/crates/mcnp-io/benches/mcnp_io_bench.rs +42 -0
- nucleide-0.1.0/crates/mcnp-io/src/deck.rs +419 -0
- nucleide-0.1.0/crates/mcnp-io/src/inp.rs +852 -0
- nucleide-0.1.0/crates/mcnp-io/src/lib.rs +14 -0
- nucleide-0.1.0/crates/mcnp-io/src/mctal.rs +335 -0
- nucleide-0.1.0/crates/mcnp-io/src/meshtal.rs +543 -0
- nucleide-0.1.0/crates/mcnp-io/src/ptrac.rs +689 -0
- nucleide-0.1.0/crates/mcnp-io/src/surfsrc.rs +1137 -0
- nucleide-0.1.0/crates/mcnp-io/src/wwinp.rs +465 -0
- nucleide-0.1.0/crates/mcnp-io/src/xsdir.rs +531 -0
- nucleide-0.1.0/crates/nuclei/Cargo.toml +17 -0
- nucleide-0.1.0/crates/nuclei/benches/nuclei_bench.rs +119 -0
- nucleide-0.1.0/crates/nuclei/src/data/ame2020.tsv +3558 -0
- nucleide-0.1.0/crates/nuclei/src/data/half_life.tsv +3563 -0
- nucleide-0.1.0/crates/nuclei/src/data/natural_abundance.tsv +290 -0
- nucleide-0.1.0/crates/nuclei/src/data.rs +577 -0
- nucleide-0.1.0/crates/nuclei/src/dialects.rs +855 -0
- nucleide-0.1.0/crates/nuclei/src/lib.rs +318 -0
- nucleide-0.1.0/crates/nuclei/src/particles.rs +746 -0
- nucleide-0.1.0/crates/nuclei/src/rxname.rs +5494 -0
- nucleide-0.1.0/crates/serpent-io/Cargo.toml +10 -0
- nucleide-0.1.0/crates/serpent-io/src/dep.rs +185 -0
- nucleide-0.1.0/crates/serpent-io/src/det.rs +208 -0
- nucleide-0.1.0/crates/serpent-io/src/lib.rs +557 -0
- nucleide-0.1.0/crates/serpent-io/src/matlab.rs +648 -0
- nucleide-0.1.0/crates/serpent-io/src/res.rs +232 -0
- nucleide-0.1.0/crates/vr-tools/Cargo.toml +18 -0
- nucleide-0.1.0/crates/vr-tools/benches/vr_tools_bench.rs +156 -0
- nucleide-0.1.0/crates/vr-tools/src/lib.rs +68 -0
- nucleide-0.1.0/crates/vr-tools/src/magic.rs +519 -0
- nucleide-0.1.0/crates/vr-tools/src/sampling.rs +762 -0
- nucleide-0.1.0/pyproject.toml +70 -0
- nucleide-0.1.0/python/nucleide/__init__.py +36 -0
- nucleide-0.1.0/python/nucleide/_internal.pyi +385 -0
- nucleide-0.1.0/python/nucleide/data.py +56 -0
- nucleide-0.1.0/python/nucleide/depletion.py +17 -0
- nucleide-0.1.0/python/nucleide/enrichment.py +5 -0
- nucleide-0.1.0/python/nucleide/fluka.py +5 -0
- nucleide-0.1.0/python/nucleide/material.py +15 -0
- nucleide-0.1.0/python/nucleide/mcnp.py +41 -0
- nucleide-0.1.0/python/nucleide/nuclei.py +31 -0
- nucleide-0.1.0/python/nucleide/py.typed +0 -0
- nucleide-0.1.0/python/nucleide/serpent.py +5 -0
- nucleide-0.1.0/python/nucleide/vr.py +15 -0
|
@@ -0,0 +1,1373 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.5"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "anes"
|
|
16
|
+
version = "0.1.6"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstyle"
|
|
22
|
+
version = "1.0.14"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "array-init"
|
|
28
|
+
version = "2.1.0"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "autocfg"
|
|
34
|
+
version = "1.5.1"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "binrw"
|
|
40
|
+
version = "0.14.2"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "2f4b52fe7fbd9e207b879c52c5af7efd861c2f4e234ab4f744b0bdc04a863623"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"array-init",
|
|
45
|
+
"binrw_derive",
|
|
46
|
+
"bytemuck",
|
|
47
|
+
]
|
|
48
|
+
|
|
49
|
+
[[package]]
|
|
50
|
+
name = "binrw_derive"
|
|
51
|
+
version = "0.14.2"
|
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
53
|
+
checksum = "a7196f6935a944081728167ce6e3a599bd38d6d80d21afe4ca17be2097a6682f"
|
|
54
|
+
dependencies = [
|
|
55
|
+
"either",
|
|
56
|
+
"owo-colors",
|
|
57
|
+
"proc-macro2",
|
|
58
|
+
"quote",
|
|
59
|
+
"syn 1.0.109",
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "bitflags"
|
|
64
|
+
version = "2.13.1"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "bumpalo"
|
|
70
|
+
version = "3.20.3"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "bytemuck"
|
|
76
|
+
version = "1.25.2"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"bytemuck_derive",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "bytemuck_derive"
|
|
85
|
+
version = "1.12.0"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"proc-macro2",
|
|
90
|
+
"quote",
|
|
91
|
+
"syn 3.0.4",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "byteorder"
|
|
96
|
+
version = "1.5.0"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "cast"
|
|
102
|
+
version = "0.3.0"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
105
|
+
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "cfg-if"
|
|
108
|
+
version = "1.0.4"
|
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "ciborium"
|
|
114
|
+
version = "0.2.2"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
117
|
+
dependencies = [
|
|
118
|
+
"ciborium-io",
|
|
119
|
+
"ciborium-ll",
|
|
120
|
+
"serde",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "ciborium-io"
|
|
125
|
+
version = "0.2.2"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "ciborium-ll"
|
|
131
|
+
version = "0.2.2"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
134
|
+
dependencies = [
|
|
135
|
+
"ciborium-io",
|
|
136
|
+
"half",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "clap"
|
|
141
|
+
version = "4.6.6"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"clap_builder",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "clap_builder"
|
|
150
|
+
version = "4.6.6"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"anstyle",
|
|
155
|
+
"clap_lex",
|
|
156
|
+
]
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "clap_lex"
|
|
160
|
+
version = "1.1.0"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "coe-rs"
|
|
166
|
+
version = "0.1.2"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "7e8f1e641542c07631228b1e0dc04b69ae3c1d58ef65d5691a439711d805c698"
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "criterion"
|
|
172
|
+
version = "0.5.1"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"anes",
|
|
177
|
+
"cast",
|
|
178
|
+
"ciborium",
|
|
179
|
+
"clap",
|
|
180
|
+
"criterion-plot",
|
|
181
|
+
"is-terminal",
|
|
182
|
+
"itertools",
|
|
183
|
+
"num-traits",
|
|
184
|
+
"once_cell",
|
|
185
|
+
"oorandom",
|
|
186
|
+
"plotters",
|
|
187
|
+
"rayon",
|
|
188
|
+
"regex",
|
|
189
|
+
"serde",
|
|
190
|
+
"serde_derive",
|
|
191
|
+
"serde_json",
|
|
192
|
+
"tinytemplate",
|
|
193
|
+
"walkdir",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "criterion-plot"
|
|
198
|
+
version = "0.5.0"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"cast",
|
|
203
|
+
"itertools",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "crossbeam-deque"
|
|
208
|
+
version = "0.8.7"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"crossbeam-epoch",
|
|
213
|
+
"crossbeam-utils",
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "crossbeam-epoch"
|
|
218
|
+
version = "0.9.20"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"crossbeam-utils",
|
|
223
|
+
]
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "crossbeam-utils"
|
|
227
|
+
version = "0.8.22"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "crunchy"
|
|
233
|
+
version = "0.2.4"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "dbgf"
|
|
239
|
+
version = "0.1.2"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "e6ca96b45ca70b8045e0462f191bd209fcb3c3bfe8dbfb1257ada54c4dd59169"
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "depletion"
|
|
245
|
+
version = "0.1.0"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"criterion",
|
|
248
|
+
"linalg",
|
|
249
|
+
"nuclei",
|
|
250
|
+
"num-complex",
|
|
251
|
+
"roxmltree",
|
|
252
|
+
"serde_json",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "dyn-stack"
|
|
257
|
+
version = "0.11.0"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "bf6fa63092e3ca9f602f6500fddd05502412b748c4c4682938565b44eb9e0066"
|
|
260
|
+
dependencies = [
|
|
261
|
+
"bytemuck",
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "dyn-stack"
|
|
266
|
+
version = "0.13.2"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "1c4713e43e2886ba72b8271aa66c93d722116acf7a75555cce11dcde84388fe8"
|
|
269
|
+
dependencies = [
|
|
270
|
+
"bytemuck",
|
|
271
|
+
"dyn-stack-macros",
|
|
272
|
+
]
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "dyn-stack-macros"
|
|
276
|
+
version = "0.1.3"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "e1d926b4d407d372f141f93bb444696142c29d32962ccbd3531117cf3aa0bfa9"
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "either"
|
|
282
|
+
version = "1.18.0"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "enrichment"
|
|
288
|
+
version = "0.1.0"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"criterion",
|
|
291
|
+
"nuclei",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "enum-as-inner"
|
|
296
|
+
version = "0.6.1"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"heck",
|
|
301
|
+
"proc-macro2",
|
|
302
|
+
"quote",
|
|
303
|
+
"syn 2.0.119",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "equator"
|
|
308
|
+
version = "0.2.2"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "c35da53b5a021d2484a7cc49b2ac7f2d840f8236a286f84202369bd338d761ea"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"equator-macro 0.2.1",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "equator"
|
|
317
|
+
version = "0.4.2"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"equator-macro 0.4.2",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "equator-macro"
|
|
326
|
+
version = "0.2.1"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"proc-macro2",
|
|
331
|
+
"quote",
|
|
332
|
+
"syn 2.0.119",
|
|
333
|
+
]
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "equator-macro"
|
|
337
|
+
version = "0.4.2"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"proc-macro2",
|
|
342
|
+
"quote",
|
|
343
|
+
"syn 2.0.119",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "faer"
|
|
348
|
+
version = "0.20.2"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "c2b19b8c3570ea226e507fe3dbae2aa9d7e0f16676abd35ea3adeeb9f90f7b5d"
|
|
351
|
+
dependencies = [
|
|
352
|
+
"bytemuck",
|
|
353
|
+
"coe-rs",
|
|
354
|
+
"dbgf",
|
|
355
|
+
"dyn-stack 0.11.0",
|
|
356
|
+
"equator 0.4.2",
|
|
357
|
+
"faer-entity",
|
|
358
|
+
"gemm",
|
|
359
|
+
"generativity",
|
|
360
|
+
"libm",
|
|
361
|
+
"matrixcompare",
|
|
362
|
+
"matrixcompare-core",
|
|
363
|
+
"nano-gemm",
|
|
364
|
+
"num-complex",
|
|
365
|
+
"num-traits",
|
|
366
|
+
"paste",
|
|
367
|
+
"rayon",
|
|
368
|
+
"reborrow",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "faer-entity"
|
|
373
|
+
version = "0.20.1"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "072f96f1bc8b2b30dfc26c086baeadb63aae08019b1ed84721809b9fd2006685"
|
|
376
|
+
dependencies = [
|
|
377
|
+
"bytemuck",
|
|
378
|
+
"coe-rs",
|
|
379
|
+
"libm",
|
|
380
|
+
"num-complex",
|
|
381
|
+
"num-traits",
|
|
382
|
+
"pulp 0.18.22",
|
|
383
|
+
"reborrow",
|
|
384
|
+
]
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "fluka-io"
|
|
388
|
+
version = "0.1.0"
|
|
389
|
+
dependencies = [
|
|
390
|
+
"nuclei",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "futures-core"
|
|
395
|
+
version = "0.3.34"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "futures-task"
|
|
401
|
+
version = "0.3.34"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "futures-util"
|
|
407
|
+
version = "0.3.34"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"futures-core",
|
|
412
|
+
"futures-task",
|
|
413
|
+
"pin-project-lite",
|
|
414
|
+
"slab",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "gemm"
|
|
419
|
+
version = "0.18.2"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "ab96b703d31950f1aeddded248bc95543c9efc7ac9c4a21fda8703a83ee35451"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"dyn-stack 0.13.2",
|
|
424
|
+
"gemm-c32",
|
|
425
|
+
"gemm-c64",
|
|
426
|
+
"gemm-common",
|
|
427
|
+
"gemm-f16",
|
|
428
|
+
"gemm-f32",
|
|
429
|
+
"gemm-f64",
|
|
430
|
+
"num-complex",
|
|
431
|
+
"num-traits",
|
|
432
|
+
"paste",
|
|
433
|
+
"raw-cpuid",
|
|
434
|
+
"seq-macro",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "gemm-c32"
|
|
439
|
+
version = "0.18.2"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "f6db9fd9f40421d00eea9dd0770045a5603b8d684654816637732463f4073847"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"dyn-stack 0.13.2",
|
|
444
|
+
"gemm-common",
|
|
445
|
+
"num-complex",
|
|
446
|
+
"num-traits",
|
|
447
|
+
"paste",
|
|
448
|
+
"raw-cpuid",
|
|
449
|
+
"seq-macro",
|
|
450
|
+
]
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "gemm-c64"
|
|
454
|
+
version = "0.18.2"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "dfcad8a3d35a43758330b635d02edad980c1e143dc2f21e6fd25f9e4eada8edf"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"dyn-stack 0.13.2",
|
|
459
|
+
"gemm-common",
|
|
460
|
+
"num-complex",
|
|
461
|
+
"num-traits",
|
|
462
|
+
"paste",
|
|
463
|
+
"raw-cpuid",
|
|
464
|
+
"seq-macro",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "gemm-common"
|
|
469
|
+
version = "0.18.2"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "a352d4a69cbe938b9e2a9cb7a3a63b7e72f9349174a2752a558a8a563510d0f3"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"bytemuck",
|
|
474
|
+
"dyn-stack 0.13.2",
|
|
475
|
+
"half",
|
|
476
|
+
"libm",
|
|
477
|
+
"num-complex",
|
|
478
|
+
"num-traits",
|
|
479
|
+
"once_cell",
|
|
480
|
+
"paste",
|
|
481
|
+
"pulp 0.21.5",
|
|
482
|
+
"raw-cpuid",
|
|
483
|
+
"rayon",
|
|
484
|
+
"seq-macro",
|
|
485
|
+
"sysctl",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "gemm-f16"
|
|
490
|
+
version = "0.18.2"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "cff95ae3259432f3c3410eaa919033cd03791d81cebd18018393dc147952e109"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"dyn-stack 0.13.2",
|
|
495
|
+
"gemm-common",
|
|
496
|
+
"gemm-f32",
|
|
497
|
+
"half",
|
|
498
|
+
"num-complex",
|
|
499
|
+
"num-traits",
|
|
500
|
+
"paste",
|
|
501
|
+
"raw-cpuid",
|
|
502
|
+
"rayon",
|
|
503
|
+
"seq-macro",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "gemm-f32"
|
|
508
|
+
version = "0.18.2"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "bc8d3d4385393304f407392f754cd2dc4b315d05063f62cf09f47b58de276864"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"dyn-stack 0.13.2",
|
|
513
|
+
"gemm-common",
|
|
514
|
+
"num-complex",
|
|
515
|
+
"num-traits",
|
|
516
|
+
"paste",
|
|
517
|
+
"raw-cpuid",
|
|
518
|
+
"seq-macro",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "gemm-f64"
|
|
523
|
+
version = "0.18.2"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "35b2a4f76ce4b8b16eadc11ccf2e083252d8237c1b589558a49b0183545015bd"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"dyn-stack 0.13.2",
|
|
528
|
+
"gemm-common",
|
|
529
|
+
"num-complex",
|
|
530
|
+
"num-traits",
|
|
531
|
+
"paste",
|
|
532
|
+
"raw-cpuid",
|
|
533
|
+
"seq-macro",
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "generativity"
|
|
538
|
+
version = "1.1.0"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "5881e4c3c2433fe4905bb19cfd2b5d49d4248274862b68c27c33d9ba4e13f9ec"
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "half"
|
|
544
|
+
version = "2.7.1"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"bytemuck",
|
|
549
|
+
"cfg-if",
|
|
550
|
+
"crunchy",
|
|
551
|
+
"num-traits",
|
|
552
|
+
"zerocopy",
|
|
553
|
+
]
|
|
554
|
+
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "heck"
|
|
557
|
+
version = "0.5.0"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "hermit-abi"
|
|
563
|
+
version = "0.5.2"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
566
|
+
|
|
567
|
+
[[package]]
|
|
568
|
+
name = "is-terminal"
|
|
569
|
+
version = "0.4.17"
|
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
572
|
+
dependencies = [
|
|
573
|
+
"hermit-abi",
|
|
574
|
+
"libc",
|
|
575
|
+
"windows-sys",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "itertools"
|
|
580
|
+
version = "0.10.5"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"either",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "itoa"
|
|
589
|
+
version = "1.0.18"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "js-sys"
|
|
595
|
+
version = "0.3.104"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"cfg-if",
|
|
600
|
+
"futures-util",
|
|
601
|
+
"wasm-bindgen",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "libc"
|
|
606
|
+
version = "0.2.189"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "libm"
|
|
612
|
+
version = "0.2.16"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "linalg"
|
|
618
|
+
version = "0.1.0"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"faer",
|
|
621
|
+
"num-complex",
|
|
622
|
+
"roxmltree",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "material"
|
|
627
|
+
version = "0.1.0"
|
|
628
|
+
dependencies = [
|
|
629
|
+
"nuclei",
|
|
630
|
+
"quick-xml",
|
|
631
|
+
"serde",
|
|
632
|
+
"serde_json",
|
|
633
|
+
"thiserror 2.0.20",
|
|
634
|
+
]
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "matrixcompare"
|
|
638
|
+
version = "0.3.0"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "37832ba820e47c93d66b4360198dccb004b43c74abc3ac1ce1fed54e65a80445"
|
|
641
|
+
dependencies = [
|
|
642
|
+
"matrixcompare-core",
|
|
643
|
+
"num-traits",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "matrixcompare-core"
|
|
648
|
+
version = "0.1.0"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "b0bdabb30db18805d5290b3da7ceaccbddba795620b86c02145d688e04900a73"
|
|
651
|
+
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "mcnp-io"
|
|
654
|
+
version = "0.1.0"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"binrw",
|
|
657
|
+
"criterion",
|
|
658
|
+
"nuclei",
|
|
659
|
+
"winnow",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "memchr"
|
|
664
|
+
version = "2.8.3"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "nano-gemm"
|
|
670
|
+
version = "0.1.3"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "bb5ba2bea1c00e53de11f6ab5bd0761ba87dc0045d63b0c87ee471d2d3061376"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"equator 0.2.2",
|
|
675
|
+
"nano-gemm-c32",
|
|
676
|
+
"nano-gemm-c64",
|
|
677
|
+
"nano-gemm-codegen",
|
|
678
|
+
"nano-gemm-core",
|
|
679
|
+
"nano-gemm-f32",
|
|
680
|
+
"nano-gemm-f64",
|
|
681
|
+
"num-complex",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "nano-gemm-c32"
|
|
686
|
+
version = "0.1.0"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "a40449e57a5713464c3a1208c4c3301c8d29ee1344711822cf022bc91373a91b"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"nano-gemm-codegen",
|
|
691
|
+
"nano-gemm-core",
|
|
692
|
+
"num-complex",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "nano-gemm-c64"
|
|
697
|
+
version = "0.1.0"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "743a6e6211358fba85d1009616751e4107da86f4c95b24e684ce85f25c25b3bf"
|
|
700
|
+
dependencies = [
|
|
701
|
+
"nano-gemm-codegen",
|
|
702
|
+
"nano-gemm-core",
|
|
703
|
+
"num-complex",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "nano-gemm-codegen"
|
|
708
|
+
version = "0.1.0"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "963bf7c7110d55430169dc74c67096375491ed580cd2ef84842550ac72e781fa"
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "nano-gemm-core"
|
|
714
|
+
version = "0.1.0"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "fe3fc4f83ae8861bad79dc3c016bd6b0220da5f9de302e07d3112d16efc24aa6"
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "nano-gemm-f32"
|
|
720
|
+
version = "0.1.0"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "4e3681b7ce35658f79da94b7f62c60a005e29c373c7111ed070e3bf64546a8bb"
|
|
723
|
+
dependencies = [
|
|
724
|
+
"nano-gemm-codegen",
|
|
725
|
+
"nano-gemm-core",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "nano-gemm-f64"
|
|
730
|
+
version = "0.1.0"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "bc1e619ed04d801809e1f63e61b669d380c4119e8b0cdd6ed184c6b111f046d8"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"nano-gemm-codegen",
|
|
735
|
+
"nano-gemm-core",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "nuclei"
|
|
740
|
+
version = "0.1.0"
|
|
741
|
+
dependencies = [
|
|
742
|
+
"criterion",
|
|
743
|
+
]
|
|
744
|
+
|
|
745
|
+
[[package]]
|
|
746
|
+
name = "nucleide-bindings"
|
|
747
|
+
version = "0.1.0"
|
|
748
|
+
dependencies = [
|
|
749
|
+
"depletion",
|
|
750
|
+
"enrichment",
|
|
751
|
+
"fluka-io",
|
|
752
|
+
"material",
|
|
753
|
+
"mcnp-io",
|
|
754
|
+
"nuclei",
|
|
755
|
+
"pyo3",
|
|
756
|
+
"serpent-io",
|
|
757
|
+
"vr-tools",
|
|
758
|
+
]
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "nucleide-wasm"
|
|
762
|
+
version = "0.1.0"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"depletion",
|
|
765
|
+
"enrichment",
|
|
766
|
+
"js-sys",
|
|
767
|
+
"linalg",
|
|
768
|
+
"material",
|
|
769
|
+
"mcnp-io",
|
|
770
|
+
"nuclei",
|
|
771
|
+
"serde",
|
|
772
|
+
"serde-wasm-bindgen",
|
|
773
|
+
"serde_json",
|
|
774
|
+
"vr-tools",
|
|
775
|
+
"wasm-bindgen",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "num-complex"
|
|
780
|
+
version = "0.4.6"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"bytemuck",
|
|
785
|
+
"num-traits",
|
|
786
|
+
]
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "num-traits"
|
|
790
|
+
version = "0.2.19"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
793
|
+
dependencies = [
|
|
794
|
+
"autocfg",
|
|
795
|
+
"libm",
|
|
796
|
+
]
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "once_cell"
|
|
800
|
+
version = "1.21.4"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "oorandom"
|
|
806
|
+
version = "11.1.5"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "owo-colors"
|
|
812
|
+
version = "3.5.0"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "paste"
|
|
818
|
+
version = "1.0.15"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "pin-project-lite"
|
|
824
|
+
version = "0.2.17"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "plotters"
|
|
830
|
+
version = "0.3.7"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
833
|
+
dependencies = [
|
|
834
|
+
"num-traits",
|
|
835
|
+
"plotters-backend",
|
|
836
|
+
"plotters-svg",
|
|
837
|
+
"wasm-bindgen",
|
|
838
|
+
"web-sys",
|
|
839
|
+
]
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "plotters-backend"
|
|
843
|
+
version = "0.3.7"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "plotters-svg"
|
|
849
|
+
version = "0.3.7"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
852
|
+
dependencies = [
|
|
853
|
+
"plotters-backend",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "portable-atomic"
|
|
858
|
+
version = "1.15.0"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "proc-macro2"
|
|
864
|
+
version = "1.0.107"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
867
|
+
dependencies = [
|
|
868
|
+
"unicode-ident",
|
|
869
|
+
]
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "pulp"
|
|
873
|
+
version = "0.18.22"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "a0a01a0dc67cf4558d279f0c25b0962bd08fc6dec0137699eae304103e882fe6"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"bytemuck",
|
|
878
|
+
"libm",
|
|
879
|
+
"num-complex",
|
|
880
|
+
"reborrow",
|
|
881
|
+
]
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "pulp"
|
|
885
|
+
version = "0.21.5"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "96b86df24f0a7ddd5e4b95c94fc9ed8a98f1ca94d3b01bdce2824097e7835907"
|
|
888
|
+
dependencies = [
|
|
889
|
+
"bytemuck",
|
|
890
|
+
"cfg-if",
|
|
891
|
+
"libm",
|
|
892
|
+
"num-complex",
|
|
893
|
+
"reborrow",
|
|
894
|
+
"version_check",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "pyo3"
|
|
899
|
+
version = "0.28.3"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"libc",
|
|
904
|
+
"once_cell",
|
|
905
|
+
"portable-atomic",
|
|
906
|
+
"pyo3-build-config",
|
|
907
|
+
"pyo3-ffi",
|
|
908
|
+
"pyo3-macros",
|
|
909
|
+
]
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "pyo3-build-config"
|
|
913
|
+
version = "0.28.3"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
|
|
916
|
+
dependencies = [
|
|
917
|
+
"target-lexicon",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "pyo3-ffi"
|
|
922
|
+
version = "0.28.3"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"libc",
|
|
927
|
+
"pyo3-build-config",
|
|
928
|
+
]
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "pyo3-macros"
|
|
932
|
+
version = "0.28.3"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"proc-macro2",
|
|
937
|
+
"pyo3-macros-backend",
|
|
938
|
+
"quote",
|
|
939
|
+
"syn 2.0.119",
|
|
940
|
+
]
|
|
941
|
+
|
|
942
|
+
[[package]]
|
|
943
|
+
name = "pyo3-macros-backend"
|
|
944
|
+
version = "0.28.3"
|
|
945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
+
checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
|
|
947
|
+
dependencies = [
|
|
948
|
+
"heck",
|
|
949
|
+
"proc-macro2",
|
|
950
|
+
"pyo3-build-config",
|
|
951
|
+
"quote",
|
|
952
|
+
"syn 2.0.119",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "quick-xml"
|
|
957
|
+
version = "0.37.5"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
|
960
|
+
dependencies = [
|
|
961
|
+
"memchr",
|
|
962
|
+
]
|
|
963
|
+
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "quote"
|
|
966
|
+
version = "1.0.47"
|
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
969
|
+
dependencies = [
|
|
970
|
+
"proc-macro2",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "raw-cpuid"
|
|
975
|
+
version = "11.6.0"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"bitflags",
|
|
980
|
+
]
|
|
981
|
+
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "rayon"
|
|
984
|
+
version = "1.12.0"
|
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
987
|
+
dependencies = [
|
|
988
|
+
"either",
|
|
989
|
+
"rayon-core",
|
|
990
|
+
]
|
|
991
|
+
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "rayon-core"
|
|
994
|
+
version = "1.13.0"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
997
|
+
dependencies = [
|
|
998
|
+
"crossbeam-deque",
|
|
999
|
+
"crossbeam-utils",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "reborrow"
|
|
1004
|
+
version = "0.5.5"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "regex"
|
|
1010
|
+
version = "1.13.1"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1013
|
+
dependencies = [
|
|
1014
|
+
"aho-corasick",
|
|
1015
|
+
"memchr",
|
|
1016
|
+
"regex-automata",
|
|
1017
|
+
"regex-syntax",
|
|
1018
|
+
]
|
|
1019
|
+
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "regex-automata"
|
|
1022
|
+
version = "0.4.18"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
1025
|
+
dependencies = [
|
|
1026
|
+
"aho-corasick",
|
|
1027
|
+
"memchr",
|
|
1028
|
+
"regex-syntax",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "regex-syntax"
|
|
1033
|
+
version = "0.8.11"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1036
|
+
|
|
1037
|
+
[[package]]
|
|
1038
|
+
name = "roxmltree"
|
|
1039
|
+
version = "0.20.0"
|
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
+
checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
1042
|
+
|
|
1043
|
+
[[package]]
|
|
1044
|
+
name = "rustversion"
|
|
1045
|
+
version = "1.0.23"
|
|
1046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1047
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "same-file"
|
|
1051
|
+
version = "1.0.6"
|
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1054
|
+
dependencies = [
|
|
1055
|
+
"winapi-util",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "seq-macro"
|
|
1060
|
+
version = "0.3.6"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "serde"
|
|
1066
|
+
version = "1.0.229"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"serde_core",
|
|
1071
|
+
"serde_derive",
|
|
1072
|
+
]
|
|
1073
|
+
|
|
1074
|
+
[[package]]
|
|
1075
|
+
name = "serde-wasm-bindgen"
|
|
1076
|
+
version = "0.6.5"
|
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
+
checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
|
|
1079
|
+
dependencies = [
|
|
1080
|
+
"js-sys",
|
|
1081
|
+
"serde",
|
|
1082
|
+
"wasm-bindgen",
|
|
1083
|
+
]
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "serde_core"
|
|
1087
|
+
version = "1.0.229"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1090
|
+
dependencies = [
|
|
1091
|
+
"serde_derive",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "serde_derive"
|
|
1096
|
+
version = "1.0.229"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1099
|
+
dependencies = [
|
|
1100
|
+
"proc-macro2",
|
|
1101
|
+
"quote",
|
|
1102
|
+
"syn 3.0.4",
|
|
1103
|
+
]
|
|
1104
|
+
|
|
1105
|
+
[[package]]
|
|
1106
|
+
name = "serde_json"
|
|
1107
|
+
version = "1.0.151"
|
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
1110
|
+
dependencies = [
|
|
1111
|
+
"itoa",
|
|
1112
|
+
"memchr",
|
|
1113
|
+
"serde",
|
|
1114
|
+
"serde_core",
|
|
1115
|
+
"zmij",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "serpent-io"
|
|
1120
|
+
version = "0.1.0"
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "slab"
|
|
1124
|
+
version = "0.4.12"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1127
|
+
|
|
1128
|
+
[[package]]
|
|
1129
|
+
name = "syn"
|
|
1130
|
+
version = "1.0.109"
|
|
1131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1133
|
+
dependencies = [
|
|
1134
|
+
"proc-macro2",
|
|
1135
|
+
"quote",
|
|
1136
|
+
"unicode-ident",
|
|
1137
|
+
]
|
|
1138
|
+
|
|
1139
|
+
[[package]]
|
|
1140
|
+
name = "syn"
|
|
1141
|
+
version = "2.0.119"
|
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1144
|
+
dependencies = [
|
|
1145
|
+
"proc-macro2",
|
|
1146
|
+
"quote",
|
|
1147
|
+
"unicode-ident",
|
|
1148
|
+
]
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "syn"
|
|
1152
|
+
version = "3.0.4"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
|
|
1155
|
+
dependencies = [
|
|
1156
|
+
"proc-macro2",
|
|
1157
|
+
"quote",
|
|
1158
|
+
"unicode-ident",
|
|
1159
|
+
]
|
|
1160
|
+
|
|
1161
|
+
[[package]]
|
|
1162
|
+
name = "sysctl"
|
|
1163
|
+
version = "0.6.0"
|
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
+
checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
|
|
1166
|
+
dependencies = [
|
|
1167
|
+
"bitflags",
|
|
1168
|
+
"byteorder",
|
|
1169
|
+
"enum-as-inner",
|
|
1170
|
+
"libc",
|
|
1171
|
+
"thiserror 1.0.69",
|
|
1172
|
+
"walkdir",
|
|
1173
|
+
]
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "target-lexicon"
|
|
1177
|
+
version = "0.13.5"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1180
|
+
|
|
1181
|
+
[[package]]
|
|
1182
|
+
name = "thiserror"
|
|
1183
|
+
version = "1.0.69"
|
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1186
|
+
dependencies = [
|
|
1187
|
+
"thiserror-impl 1.0.69",
|
|
1188
|
+
]
|
|
1189
|
+
|
|
1190
|
+
[[package]]
|
|
1191
|
+
name = "thiserror"
|
|
1192
|
+
version = "2.0.20"
|
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1194
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
1195
|
+
dependencies = [
|
|
1196
|
+
"thiserror-impl 2.0.20",
|
|
1197
|
+
]
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "thiserror-impl"
|
|
1201
|
+
version = "1.0.69"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1204
|
+
dependencies = [
|
|
1205
|
+
"proc-macro2",
|
|
1206
|
+
"quote",
|
|
1207
|
+
"syn 2.0.119",
|
|
1208
|
+
]
|
|
1209
|
+
|
|
1210
|
+
[[package]]
|
|
1211
|
+
name = "thiserror-impl"
|
|
1212
|
+
version = "2.0.20"
|
|
1213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
1215
|
+
dependencies = [
|
|
1216
|
+
"proc-macro2",
|
|
1217
|
+
"quote",
|
|
1218
|
+
"syn 3.0.4",
|
|
1219
|
+
]
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "tinytemplate"
|
|
1223
|
+
version = "1.2.1"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
1226
|
+
dependencies = [
|
|
1227
|
+
"serde",
|
|
1228
|
+
"serde_json",
|
|
1229
|
+
]
|
|
1230
|
+
|
|
1231
|
+
[[package]]
|
|
1232
|
+
name = "unicode-ident"
|
|
1233
|
+
version = "1.0.24"
|
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1236
|
+
|
|
1237
|
+
[[package]]
|
|
1238
|
+
name = "version_check"
|
|
1239
|
+
version = "0.9.5"
|
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1241
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1242
|
+
|
|
1243
|
+
[[package]]
|
|
1244
|
+
name = "vr-tools"
|
|
1245
|
+
version = "0.1.0"
|
|
1246
|
+
dependencies = [
|
|
1247
|
+
"criterion",
|
|
1248
|
+
"mcnp-io",
|
|
1249
|
+
]
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "walkdir"
|
|
1253
|
+
version = "2.5.0"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1256
|
+
dependencies = [
|
|
1257
|
+
"same-file",
|
|
1258
|
+
"winapi-util",
|
|
1259
|
+
]
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "wasm-bindgen"
|
|
1263
|
+
version = "0.2.127"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
|
|
1266
|
+
dependencies = [
|
|
1267
|
+
"cfg-if",
|
|
1268
|
+
"once_cell",
|
|
1269
|
+
"rustversion",
|
|
1270
|
+
"wasm-bindgen-macro",
|
|
1271
|
+
"wasm-bindgen-shared",
|
|
1272
|
+
]
|
|
1273
|
+
|
|
1274
|
+
[[package]]
|
|
1275
|
+
name = "wasm-bindgen-macro"
|
|
1276
|
+
version = "0.2.127"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
|
|
1279
|
+
dependencies = [
|
|
1280
|
+
"quote",
|
|
1281
|
+
"wasm-bindgen-macro-support",
|
|
1282
|
+
]
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "wasm-bindgen-macro-support"
|
|
1286
|
+
version = "0.2.127"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
|
|
1289
|
+
dependencies = [
|
|
1290
|
+
"bumpalo",
|
|
1291
|
+
"proc-macro2",
|
|
1292
|
+
"quote",
|
|
1293
|
+
"syn 2.0.119",
|
|
1294
|
+
"wasm-bindgen-shared",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "wasm-bindgen-shared"
|
|
1299
|
+
version = "0.2.127"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
|
|
1302
|
+
dependencies = [
|
|
1303
|
+
"unicode-ident",
|
|
1304
|
+
]
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "web-sys"
|
|
1308
|
+
version = "0.3.104"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
|
|
1311
|
+
dependencies = [
|
|
1312
|
+
"js-sys",
|
|
1313
|
+
"wasm-bindgen",
|
|
1314
|
+
]
|
|
1315
|
+
|
|
1316
|
+
[[package]]
|
|
1317
|
+
name = "winapi-util"
|
|
1318
|
+
version = "0.1.11"
|
|
1319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1321
|
+
dependencies = [
|
|
1322
|
+
"windows-sys",
|
|
1323
|
+
]
|
|
1324
|
+
|
|
1325
|
+
[[package]]
|
|
1326
|
+
name = "windows-link"
|
|
1327
|
+
version = "0.2.1"
|
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1330
|
+
|
|
1331
|
+
[[package]]
|
|
1332
|
+
name = "windows-sys"
|
|
1333
|
+
version = "0.61.2"
|
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1336
|
+
dependencies = [
|
|
1337
|
+
"windows-link",
|
|
1338
|
+
]
|
|
1339
|
+
|
|
1340
|
+
[[package]]
|
|
1341
|
+
name = "winnow"
|
|
1342
|
+
version = "0.7.15"
|
|
1343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
1345
|
+
dependencies = [
|
|
1346
|
+
"memchr",
|
|
1347
|
+
]
|
|
1348
|
+
|
|
1349
|
+
[[package]]
|
|
1350
|
+
name = "zerocopy"
|
|
1351
|
+
version = "0.8.56"
|
|
1352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1353
|
+
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
|
|
1354
|
+
dependencies = [
|
|
1355
|
+
"zerocopy-derive",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "zerocopy-derive"
|
|
1360
|
+
version = "0.8.56"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
|
|
1363
|
+
dependencies = [
|
|
1364
|
+
"proc-macro2",
|
|
1365
|
+
"quote",
|
|
1366
|
+
"syn 2.0.119",
|
|
1367
|
+
]
|
|
1368
|
+
|
|
1369
|
+
[[package]]
|
|
1370
|
+
name = "zmij"
|
|
1371
|
+
version = "1.0.23"
|
|
1372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1373
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|