waros 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.
- waros-0.1.0/Cargo.lock +1217 -0
- waros-0.1.0/Cargo.toml +10 -0
- waros-0.1.0/PKG-INFO +93 -0
- waros-0.1.0/README.md +71 -0
- waros-0.1.0/crates/waros-crypto/Cargo.toml +18 -0
- waros-0.1.0/crates/waros-crypto/examples/pqc_demo.rs +128 -0
- waros-0.1.0/crates/waros-crypto/src/error.rs +15 -0
- waros-0.1.0/crates/waros-crypto/src/hash.rs +42 -0
- waros-0.1.0/crates/waros-crypto/src/kem.rs +445 -0
- waros-0.1.0/crates/waros-crypto/src/lib.rs +9 -0
- waros-0.1.0/crates/waros-crypto/src/qrng.rs +61 -0
- waros-0.1.0/crates/waros-crypto/src/sign.rs +327 -0
- waros-0.1.0/crates/waros-crypto/tests/crypto.rs +217 -0
- waros-0.1.0/crates/waros-python/Cargo.toml +21 -0
- waros-0.1.0/crates/waros-python/README.md +71 -0
- waros-0.1.0/crates/waros-python/build.rs +3 -0
- waros-0.1.0/crates/waros-python/src/circuit.rs +267 -0
- waros-0.1.0/crates/waros-python/src/crypto.rs +185 -0
- waros-0.1.0/crates/waros-python/src/lib.rs +38 -0
- waros-0.1.0/crates/waros-python/src/noise.rs +86 -0
- waros-0.1.0/crates/waros-python/src/qasm.rs +18 -0
- waros-0.1.0/crates/waros-python/src/result.rs +89 -0
- waros-0.1.0/crates/waros-python/src/simulator.rs +80 -0
- waros-0.1.0/crates/waros-python/tests/test_waros.py +285 -0
- waros-0.1.0/crates/waros-quantum/Cargo.toml +34 -0
- waros-0.1.0/crates/waros-quantum/benches/statevector.rs +183 -0
- waros-0.1.0/crates/waros-quantum/examples/bell_state.rs +25 -0
- waros-0.1.0/crates/waros-quantum/examples/grover_2bit.rs +35 -0
- waros-0.1.0/crates/waros-quantum/examples/noise_simulation.rs +51 -0
- waros-0.1.0/crates/waros-quantum/examples/qasm/bell.qasm +10 -0
- waros-0.1.0/crates/waros-quantum/examples/qasm/ghz5.qasm +16 -0
- waros-0.1.0/crates/waros-quantum/examples/qasm/grover2.qasm +20 -0
- waros-0.1.0/crates/waros-quantum/examples/qasm/qft4.qasm +22 -0
- waros-0.1.0/crates/waros-quantum/examples/qasm/teleportation.qasm +13 -0
- waros-0.1.0/crates/waros-quantum/examples/quantum_teleportation.rs +58 -0
- waros-0.1.0/crates/waros-quantum/src/circuit/extensions.rs +208 -0
- waros-0.1.0/crates/waros-quantum/src/circuit.rs +479 -0
- waros-0.1.0/crates/waros-quantum/src/complex.rs +121 -0
- waros-0.1.0/crates/waros-quantum/src/error.rs +50 -0
- waros-0.1.0/crates/waros-quantum/src/gate.rs +235 -0
- waros-0.1.0/crates/waros-quantum/src/lib.rs +36 -0
- waros-0.1.0/crates/waros-quantum/src/noise.rs +177 -0
- waros-0.1.0/crates/waros-quantum/src/qasm/mod.rs +43 -0
- waros-0.1.0/crates/waros-quantum/src/qasm/parser.rs +511 -0
- waros-0.1.0/crates/waros-quantum/src/qasm/serializer.rs +72 -0
- waros-0.1.0/crates/waros-quantum/src/result.rs +121 -0
- waros-0.1.0/crates/waros-quantum/src/simulator/mod.rs +357 -0
- waros-0.1.0/crates/waros-quantum/src/simulator/statevector.rs +223 -0
- waros-0.1.0/crates/waros-quantum/src/simulator/trajectory.rs +218 -0
- waros-0.1.0/crates/waros-quantum/tests/gate_behavior.rs +377 -0
- waros-0.1.0/crates/waros-quantum/tests/gate_unitarity.rs +61 -0
- waros-0.1.0/crates/waros-quantum/tests/noise_model.rs +297 -0
- waros-0.1.0/crates/waros-quantum/tests/qasm.rs +237 -0
- waros-0.1.0/crates/waros-quantum/tests/result_and_statistics.rs +199 -0
- waros-0.1.0/crates/waros-quantum/tests/rotation_boundaries.rs +118 -0
- waros-0.1.0/pyproject.toml +33 -0
waros-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1217 @@
|
|
|
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.4"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
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 = "anstream"
|
|
22
|
+
version = "1.0.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"anstyle",
|
|
27
|
+
"anstyle-parse",
|
|
28
|
+
"anstyle-query",
|
|
29
|
+
"anstyle-wincon",
|
|
30
|
+
"colorchoice",
|
|
31
|
+
"is_terminal_polyfill",
|
|
32
|
+
"utf8parse",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "anstyle"
|
|
37
|
+
version = "1.0.14"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-parse"
|
|
43
|
+
version = "1.0.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-query"
|
|
52
|
+
version = "1.1.5"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"windows-sys",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-wincon"
|
|
61
|
+
version = "3.0.11"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"anstyle",
|
|
66
|
+
"once_cell_polyfill",
|
|
67
|
+
"windows-sys",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "autocfg"
|
|
72
|
+
version = "1.5.0"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "block-buffer"
|
|
78
|
+
version = "0.10.4"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
81
|
+
dependencies = [
|
|
82
|
+
"generic-array",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "bumpalo"
|
|
87
|
+
version = "3.20.2"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "cast"
|
|
93
|
+
version = "0.3.0"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "cc"
|
|
99
|
+
version = "1.2.57"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"find-msvc-tools",
|
|
104
|
+
"jobserver",
|
|
105
|
+
"libc",
|
|
106
|
+
"shlex",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "cfg-if"
|
|
111
|
+
version = "1.0.4"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "ciborium"
|
|
117
|
+
version = "0.2.2"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"ciborium-io",
|
|
122
|
+
"ciborium-ll",
|
|
123
|
+
"serde",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "ciborium-io"
|
|
128
|
+
version = "0.2.2"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "ciborium-ll"
|
|
134
|
+
version = "0.2.2"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"ciborium-io",
|
|
139
|
+
"half",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "clap"
|
|
144
|
+
version = "4.6.0"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"clap_builder",
|
|
149
|
+
"clap_derive",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "clap_builder"
|
|
154
|
+
version = "4.6.0"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"anstream",
|
|
159
|
+
"anstyle",
|
|
160
|
+
"clap_lex",
|
|
161
|
+
"strsim",
|
|
162
|
+
]
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "clap_derive"
|
|
166
|
+
version = "4.6.0"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"heck",
|
|
171
|
+
"proc-macro2",
|
|
172
|
+
"quote",
|
|
173
|
+
"syn",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "clap_lex"
|
|
178
|
+
version = "1.1.0"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "colorchoice"
|
|
184
|
+
version = "1.0.5"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "core-foundation-sys"
|
|
190
|
+
version = "0.8.7"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "cpufeatures"
|
|
196
|
+
version = "0.2.17"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"libc",
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "criterion"
|
|
205
|
+
version = "0.5.1"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
208
|
+
dependencies = [
|
|
209
|
+
"anes",
|
|
210
|
+
"cast",
|
|
211
|
+
"ciborium",
|
|
212
|
+
"clap",
|
|
213
|
+
"criterion-plot",
|
|
214
|
+
"is-terminal",
|
|
215
|
+
"itertools",
|
|
216
|
+
"num-traits",
|
|
217
|
+
"once_cell",
|
|
218
|
+
"oorandom",
|
|
219
|
+
"plotters",
|
|
220
|
+
"rayon",
|
|
221
|
+
"regex",
|
|
222
|
+
"serde",
|
|
223
|
+
"serde_derive",
|
|
224
|
+
"serde_json",
|
|
225
|
+
"tinytemplate",
|
|
226
|
+
"walkdir",
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "criterion-plot"
|
|
231
|
+
version = "0.5.0"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"cast",
|
|
236
|
+
"itertools",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "crossbeam-deque"
|
|
241
|
+
version = "0.8.6"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"crossbeam-epoch",
|
|
246
|
+
"crossbeam-utils",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "crossbeam-epoch"
|
|
251
|
+
version = "0.9.18"
|
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
253
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"crossbeam-utils",
|
|
256
|
+
]
|
|
257
|
+
|
|
258
|
+
[[package]]
|
|
259
|
+
name = "crossbeam-utils"
|
|
260
|
+
version = "0.8.21"
|
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "crunchy"
|
|
266
|
+
version = "0.2.4"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "crypto-common"
|
|
272
|
+
version = "0.1.7"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
275
|
+
dependencies = [
|
|
276
|
+
"generic-array",
|
|
277
|
+
"typenum",
|
|
278
|
+
]
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "digest"
|
|
282
|
+
version = "0.10.7"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"block-buffer",
|
|
287
|
+
"crypto-common",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "dunce"
|
|
292
|
+
version = "1.0.5"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "either"
|
|
298
|
+
version = "1.15.0"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "find-msvc-tools"
|
|
304
|
+
version = "0.1.9"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "generic-array"
|
|
310
|
+
version = "0.14.7"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
313
|
+
dependencies = [
|
|
314
|
+
"typenum",
|
|
315
|
+
"version_check",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "getrandom"
|
|
320
|
+
version = "0.2.17"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
323
|
+
dependencies = [
|
|
324
|
+
"cfg-if",
|
|
325
|
+
"libc",
|
|
326
|
+
"wasi",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "getrandom"
|
|
331
|
+
version = "0.3.4"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"cfg-if",
|
|
336
|
+
"libc",
|
|
337
|
+
"r-efi",
|
|
338
|
+
"wasip2",
|
|
339
|
+
]
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "glob"
|
|
343
|
+
version = "0.3.3"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "half"
|
|
349
|
+
version = "2.7.1"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
352
|
+
dependencies = [
|
|
353
|
+
"cfg-if",
|
|
354
|
+
"crunchy",
|
|
355
|
+
"zerocopy",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "heck"
|
|
360
|
+
version = "0.5.0"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "hermit-abi"
|
|
366
|
+
version = "0.5.2"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "indoc"
|
|
372
|
+
version = "2.0.7"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
375
|
+
dependencies = [
|
|
376
|
+
"rustversion",
|
|
377
|
+
]
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "is-terminal"
|
|
381
|
+
version = "0.4.17"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
384
|
+
dependencies = [
|
|
385
|
+
"hermit-abi",
|
|
386
|
+
"libc",
|
|
387
|
+
"windows-sys",
|
|
388
|
+
]
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "is_terminal_polyfill"
|
|
392
|
+
version = "1.70.2"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "itertools"
|
|
398
|
+
version = "0.10.5"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"either",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "itoa"
|
|
407
|
+
version = "1.0.18"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "jobserver"
|
|
413
|
+
version = "0.1.34"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
416
|
+
dependencies = [
|
|
417
|
+
"getrandom 0.3.4",
|
|
418
|
+
"libc",
|
|
419
|
+
]
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "js-sys"
|
|
423
|
+
version = "0.3.91"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"once_cell",
|
|
428
|
+
"wasm-bindgen",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "keccak"
|
|
433
|
+
version = "0.1.6"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
|
|
436
|
+
dependencies = [
|
|
437
|
+
"cpufeatures",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "libc"
|
|
442
|
+
version = "0.2.183"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "memchr"
|
|
448
|
+
version = "2.8.0"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "memoffset"
|
|
454
|
+
version = "0.9.1"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"autocfg",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "ntapi"
|
|
463
|
+
version = "0.4.3"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"winapi",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "num-traits"
|
|
472
|
+
version = "0.2.19"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"autocfg",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "once_cell"
|
|
481
|
+
version = "1.21.4"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "once_cell_polyfill"
|
|
487
|
+
version = "1.70.2"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
490
|
+
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "oorandom"
|
|
493
|
+
version = "11.1.5"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "plotters"
|
|
499
|
+
version = "0.3.7"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"num-traits",
|
|
504
|
+
"plotters-backend",
|
|
505
|
+
"plotters-svg",
|
|
506
|
+
"wasm-bindgen",
|
|
507
|
+
"web-sys",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "plotters-backend"
|
|
512
|
+
version = "0.3.7"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "plotters-svg"
|
|
518
|
+
version = "0.3.7"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"plotters-backend",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "portable-atomic"
|
|
527
|
+
version = "1.13.1"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "ppv-lite86"
|
|
533
|
+
version = "0.2.21"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"zerocopy",
|
|
538
|
+
]
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "pqcrypto-dilithium"
|
|
542
|
+
version = "0.5.0"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "685de0fa68c6786559d5fcdaa414f0cd68ef3f5d162f61823bd7424cd276726f"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"cc",
|
|
547
|
+
"glob",
|
|
548
|
+
"libc",
|
|
549
|
+
"pqcrypto-internals",
|
|
550
|
+
"pqcrypto-traits",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "pqcrypto-internals"
|
|
555
|
+
version = "0.2.11"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "b4a326caf27cbf2ac291ca7fd56300497ba9e76a8cc6a7d95b7a18b57f22b61d"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"cc",
|
|
560
|
+
"dunce",
|
|
561
|
+
"getrandom 0.3.4",
|
|
562
|
+
"libc",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "pqcrypto-mlkem"
|
|
567
|
+
version = "0.1.1"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "eb14d207f3749e8a59a026c22ceaa72d70fff931cfbf4c8d9b08f3fc56dc6e60"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"cc",
|
|
572
|
+
"glob",
|
|
573
|
+
"libc",
|
|
574
|
+
"pqcrypto-internals",
|
|
575
|
+
"pqcrypto-traits",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "pqcrypto-sphincsplus"
|
|
580
|
+
version = "0.7.2"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "4f6ff8925443869aab1332bb8b0fe3b75cf113516bccf05da4dc71bc33162252"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"cc",
|
|
585
|
+
"glob",
|
|
586
|
+
"libc",
|
|
587
|
+
"pqcrypto-internals",
|
|
588
|
+
"pqcrypto-traits",
|
|
589
|
+
]
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "pqcrypto-traits"
|
|
593
|
+
version = "0.3.5"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "94e851c7654eed9e68d7d27164c454961a616cf8c203d500607ef22c737b51bb"
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "proc-macro2"
|
|
599
|
+
version = "1.0.106"
|
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
602
|
+
dependencies = [
|
|
603
|
+
"unicode-ident",
|
|
604
|
+
]
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "pyo3"
|
|
608
|
+
version = "0.22.6"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
|
|
611
|
+
dependencies = [
|
|
612
|
+
"cfg-if",
|
|
613
|
+
"indoc",
|
|
614
|
+
"libc",
|
|
615
|
+
"memoffset",
|
|
616
|
+
"once_cell",
|
|
617
|
+
"portable-atomic",
|
|
618
|
+
"pyo3-build-config",
|
|
619
|
+
"pyo3-ffi",
|
|
620
|
+
"pyo3-macros",
|
|
621
|
+
"unindent",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "pyo3-build-config"
|
|
626
|
+
version = "0.22.6"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"once_cell",
|
|
631
|
+
"target-lexicon",
|
|
632
|
+
]
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "pyo3-ffi"
|
|
636
|
+
version = "0.22.6"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
|
|
639
|
+
dependencies = [
|
|
640
|
+
"libc",
|
|
641
|
+
"pyo3-build-config",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "pyo3-macros"
|
|
646
|
+
version = "0.22.6"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"proc-macro2",
|
|
651
|
+
"pyo3-macros-backend",
|
|
652
|
+
"quote",
|
|
653
|
+
"syn",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "pyo3-macros-backend"
|
|
658
|
+
version = "0.22.6"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"heck",
|
|
663
|
+
"proc-macro2",
|
|
664
|
+
"pyo3-build-config",
|
|
665
|
+
"quote",
|
|
666
|
+
"syn",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "quote"
|
|
671
|
+
version = "1.0.45"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"proc-macro2",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "r-efi"
|
|
680
|
+
version = "5.3.0"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "rand"
|
|
686
|
+
version = "0.8.5"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"libc",
|
|
691
|
+
"rand_chacha",
|
|
692
|
+
"rand_core",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "rand_chacha"
|
|
697
|
+
version = "0.3.1"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
700
|
+
dependencies = [
|
|
701
|
+
"ppv-lite86",
|
|
702
|
+
"rand_core",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "rand_core"
|
|
707
|
+
version = "0.6.4"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"getrandom 0.2.17",
|
|
712
|
+
]
|
|
713
|
+
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "rayon"
|
|
716
|
+
version = "1.11.0"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
719
|
+
dependencies = [
|
|
720
|
+
"either",
|
|
721
|
+
"rayon-core",
|
|
722
|
+
]
|
|
723
|
+
|
|
724
|
+
[[package]]
|
|
725
|
+
name = "rayon-core"
|
|
726
|
+
version = "1.13.0"
|
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
728
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
729
|
+
dependencies = [
|
|
730
|
+
"crossbeam-deque",
|
|
731
|
+
"crossbeam-utils",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "regex"
|
|
736
|
+
version = "1.12.3"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"aho-corasick",
|
|
741
|
+
"memchr",
|
|
742
|
+
"regex-automata",
|
|
743
|
+
"regex-syntax",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "regex-automata"
|
|
748
|
+
version = "0.4.14"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
751
|
+
dependencies = [
|
|
752
|
+
"aho-corasick",
|
|
753
|
+
"memchr",
|
|
754
|
+
"regex-syntax",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "regex-syntax"
|
|
759
|
+
version = "0.8.10"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "rustversion"
|
|
765
|
+
version = "1.0.22"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
768
|
+
|
|
769
|
+
[[package]]
|
|
770
|
+
name = "same-file"
|
|
771
|
+
version = "1.0.6"
|
|
772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
773
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
774
|
+
dependencies = [
|
|
775
|
+
"winapi-util",
|
|
776
|
+
]
|
|
777
|
+
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "serde"
|
|
780
|
+
version = "1.0.228"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
783
|
+
dependencies = [
|
|
784
|
+
"serde_core",
|
|
785
|
+
"serde_derive",
|
|
786
|
+
]
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "serde_core"
|
|
790
|
+
version = "1.0.228"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
793
|
+
dependencies = [
|
|
794
|
+
"serde_derive",
|
|
795
|
+
]
|
|
796
|
+
|
|
797
|
+
[[package]]
|
|
798
|
+
name = "serde_derive"
|
|
799
|
+
version = "1.0.228"
|
|
800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
802
|
+
dependencies = [
|
|
803
|
+
"proc-macro2",
|
|
804
|
+
"quote",
|
|
805
|
+
"syn",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "serde_json"
|
|
810
|
+
version = "1.0.149"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"itoa",
|
|
815
|
+
"memchr",
|
|
816
|
+
"serde",
|
|
817
|
+
"serde_core",
|
|
818
|
+
"zmij",
|
|
819
|
+
]
|
|
820
|
+
|
|
821
|
+
[[package]]
|
|
822
|
+
name = "sha3"
|
|
823
|
+
version = "0.10.8"
|
|
824
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
825
|
+
checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
|
|
826
|
+
dependencies = [
|
|
827
|
+
"digest",
|
|
828
|
+
"keccak",
|
|
829
|
+
]
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "shlex"
|
|
833
|
+
version = "1.3.0"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "strsim"
|
|
839
|
+
version = "0.11.1"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "syn"
|
|
845
|
+
version = "2.0.117"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
848
|
+
dependencies = [
|
|
849
|
+
"proc-macro2",
|
|
850
|
+
"quote",
|
|
851
|
+
"unicode-ident",
|
|
852
|
+
]
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "sysinfo"
|
|
856
|
+
version = "0.30.13"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"cfg-if",
|
|
861
|
+
"core-foundation-sys",
|
|
862
|
+
"libc",
|
|
863
|
+
"ntapi",
|
|
864
|
+
"once_cell",
|
|
865
|
+
"rayon",
|
|
866
|
+
"windows",
|
|
867
|
+
]
|
|
868
|
+
|
|
869
|
+
[[package]]
|
|
870
|
+
name = "target-lexicon"
|
|
871
|
+
version = "0.12.16"
|
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
874
|
+
|
|
875
|
+
[[package]]
|
|
876
|
+
name = "thiserror"
|
|
877
|
+
version = "1.0.69"
|
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
879
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
880
|
+
dependencies = [
|
|
881
|
+
"thiserror-impl",
|
|
882
|
+
]
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "thiserror-impl"
|
|
886
|
+
version = "1.0.69"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
889
|
+
dependencies = [
|
|
890
|
+
"proc-macro2",
|
|
891
|
+
"quote",
|
|
892
|
+
"syn",
|
|
893
|
+
]
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "tinytemplate"
|
|
897
|
+
version = "1.2.1"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"serde",
|
|
902
|
+
"serde_json",
|
|
903
|
+
]
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "typenum"
|
|
907
|
+
version = "1.19.0"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
910
|
+
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "unicode-ident"
|
|
913
|
+
version = "1.0.24"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
916
|
+
|
|
917
|
+
[[package]]
|
|
918
|
+
name = "unindent"
|
|
919
|
+
version = "0.2.4"
|
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
921
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "utf8parse"
|
|
925
|
+
version = "0.2.2"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "version_check"
|
|
931
|
+
version = "0.9.5"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
934
|
+
|
|
935
|
+
[[package]]
|
|
936
|
+
name = "walkdir"
|
|
937
|
+
version = "2.5.0"
|
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
940
|
+
dependencies = [
|
|
941
|
+
"same-file",
|
|
942
|
+
"winapi-util",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "waros-cli"
|
|
947
|
+
version = "0.1.0"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"clap",
|
|
950
|
+
"sysinfo",
|
|
951
|
+
"waros-quantum",
|
|
952
|
+
]
|
|
953
|
+
|
|
954
|
+
[[package]]
|
|
955
|
+
name = "waros-crypto"
|
|
956
|
+
version = "0.1.0"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"pqcrypto-dilithium",
|
|
959
|
+
"pqcrypto-mlkem",
|
|
960
|
+
"pqcrypto-sphincsplus",
|
|
961
|
+
"pqcrypto-traits",
|
|
962
|
+
"rand",
|
|
963
|
+
"sha3",
|
|
964
|
+
"thiserror",
|
|
965
|
+
"waros-quantum",
|
|
966
|
+
]
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "waros-python"
|
|
970
|
+
version = "0.1.0"
|
|
971
|
+
dependencies = [
|
|
972
|
+
"pyo3",
|
|
973
|
+
"pyo3-build-config",
|
|
974
|
+
"waros-crypto",
|
|
975
|
+
"waros-quantum",
|
|
976
|
+
]
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "waros-quantum"
|
|
980
|
+
version = "0.1.0"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"criterion",
|
|
983
|
+
"rand",
|
|
984
|
+
"rayon",
|
|
985
|
+
"thiserror",
|
|
986
|
+
]
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "wasi"
|
|
990
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "wasip2"
|
|
996
|
+
version = "1.0.2+wasi-0.2.9"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
999
|
+
dependencies = [
|
|
1000
|
+
"wit-bindgen",
|
|
1001
|
+
]
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "wasm-bindgen"
|
|
1005
|
+
version = "0.2.114"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"cfg-if",
|
|
1010
|
+
"once_cell",
|
|
1011
|
+
"rustversion",
|
|
1012
|
+
"wasm-bindgen-macro",
|
|
1013
|
+
"wasm-bindgen-shared",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "wasm-bindgen-macro"
|
|
1018
|
+
version = "0.2.114"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"quote",
|
|
1023
|
+
"wasm-bindgen-macro-support",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "wasm-bindgen-macro-support"
|
|
1028
|
+
version = "0.2.114"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"bumpalo",
|
|
1033
|
+
"proc-macro2",
|
|
1034
|
+
"quote",
|
|
1035
|
+
"syn",
|
|
1036
|
+
"wasm-bindgen-shared",
|
|
1037
|
+
]
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "wasm-bindgen-shared"
|
|
1041
|
+
version = "0.2.114"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
1044
|
+
dependencies = [
|
|
1045
|
+
"unicode-ident",
|
|
1046
|
+
]
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "web-sys"
|
|
1050
|
+
version = "0.3.91"
|
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
+
checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
|
|
1053
|
+
dependencies = [
|
|
1054
|
+
"js-sys",
|
|
1055
|
+
"wasm-bindgen",
|
|
1056
|
+
]
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "winapi"
|
|
1060
|
+
version = "0.3.9"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1063
|
+
dependencies = [
|
|
1064
|
+
"winapi-i686-pc-windows-gnu",
|
|
1065
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1066
|
+
]
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1070
|
+
version = "0.4.0"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1073
|
+
|
|
1074
|
+
[[package]]
|
|
1075
|
+
name = "winapi-util"
|
|
1076
|
+
version = "0.1.11"
|
|
1077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1079
|
+
dependencies = [
|
|
1080
|
+
"windows-sys",
|
|
1081
|
+
]
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1085
|
+
version = "0.4.0"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1088
|
+
|
|
1089
|
+
[[package]]
|
|
1090
|
+
name = "windows"
|
|
1091
|
+
version = "0.52.0"
|
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
+
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
|
|
1094
|
+
dependencies = [
|
|
1095
|
+
"windows-core",
|
|
1096
|
+
"windows-targets",
|
|
1097
|
+
]
|
|
1098
|
+
|
|
1099
|
+
[[package]]
|
|
1100
|
+
name = "windows-core"
|
|
1101
|
+
version = "0.52.0"
|
|
1102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1103
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
1104
|
+
dependencies = [
|
|
1105
|
+
"windows-targets",
|
|
1106
|
+
]
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "windows-link"
|
|
1110
|
+
version = "0.2.1"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "windows-sys"
|
|
1116
|
+
version = "0.61.2"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1119
|
+
dependencies = [
|
|
1120
|
+
"windows-link",
|
|
1121
|
+
]
|
|
1122
|
+
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "windows-targets"
|
|
1125
|
+
version = "0.52.6"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1128
|
+
dependencies = [
|
|
1129
|
+
"windows_aarch64_gnullvm",
|
|
1130
|
+
"windows_aarch64_msvc",
|
|
1131
|
+
"windows_i686_gnu",
|
|
1132
|
+
"windows_i686_gnullvm",
|
|
1133
|
+
"windows_i686_msvc",
|
|
1134
|
+
"windows_x86_64_gnu",
|
|
1135
|
+
"windows_x86_64_gnullvm",
|
|
1136
|
+
"windows_x86_64_msvc",
|
|
1137
|
+
]
|
|
1138
|
+
|
|
1139
|
+
[[package]]
|
|
1140
|
+
name = "windows_aarch64_gnullvm"
|
|
1141
|
+
version = "0.52.6"
|
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "windows_aarch64_msvc"
|
|
1147
|
+
version = "0.52.6"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "windows_i686_gnu"
|
|
1153
|
+
version = "0.52.6"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1156
|
+
|
|
1157
|
+
[[package]]
|
|
1158
|
+
name = "windows_i686_gnullvm"
|
|
1159
|
+
version = "0.52.6"
|
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "windows_i686_msvc"
|
|
1165
|
+
version = "0.52.6"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "windows_x86_64_gnu"
|
|
1171
|
+
version = "0.52.6"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "windows_x86_64_gnullvm"
|
|
1177
|
+
version = "0.52.6"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1180
|
+
|
|
1181
|
+
[[package]]
|
|
1182
|
+
name = "windows_x86_64_msvc"
|
|
1183
|
+
version = "0.52.6"
|
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1186
|
+
|
|
1187
|
+
[[package]]
|
|
1188
|
+
name = "wit-bindgen"
|
|
1189
|
+
version = "0.51.0"
|
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "zerocopy"
|
|
1195
|
+
version = "0.8.47"
|
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
+
checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
|
|
1198
|
+
dependencies = [
|
|
1199
|
+
"zerocopy-derive",
|
|
1200
|
+
]
|
|
1201
|
+
|
|
1202
|
+
[[package]]
|
|
1203
|
+
name = "zerocopy-derive"
|
|
1204
|
+
version = "0.8.47"
|
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
+
checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
|
|
1207
|
+
dependencies = [
|
|
1208
|
+
"proc-macro2",
|
|
1209
|
+
"quote",
|
|
1210
|
+
"syn",
|
|
1211
|
+
]
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "zmij"
|
|
1215
|
+
version = "1.0.21"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|