aegis-verifier 0.1.2__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.
Files changed (83) hide show
  1. aegis_verifier-0.1.2/Cargo.lock +2051 -0
  2. aegis_verifier-0.1.2/Cargo.toml +46 -0
  3. aegis_verifier-0.1.2/PKG-INFO +96 -0
  4. aegis_verifier-0.1.2/README.md +81 -0
  5. aegis_verifier-0.1.2/aegis-ca/Cargo.toml +22 -0
  6. aegis_verifier-0.1.2/aegis-ca/src/ca.rs +639 -0
  7. aegis_verifier-0.1.2/aegis-ca/src/lib.rs +39 -0
  8. aegis_verifier-0.1.2/aegis-ca/tests/_probe_latency.rs +58 -0
  9. aegis_verifier-0.1.2/aegis-ca/tests/ca_commit.rs +153 -0
  10. aegis_verifier-0.1.2/aegis-ca/tests/ca_construct.rs +36 -0
  11. aegis_verifier-0.1.2/aegis-ca/tests/ca_lookup.rs +124 -0
  12. aegis_verifier-0.1.2/aegis-ca/tests/ca_register.rs +95 -0
  13. aegis_verifier-0.1.2/aegis-ca/tests/concurrent_register.rs +150 -0
  14. aegis_verifier-0.1.2/aegis-ca/tests/demo_e2e.rs +123 -0
  15. aegis_verifier-0.1.2/aegis-ca/tests/types_serde.rs +68 -0
  16. aegis_verifier-0.1.2/aegis-core/Cargo.toml +37 -0
  17. aegis_verifier-0.1.2/aegis-core/benches/merkle_inclusion.rs +23 -0
  18. aegis_verifier-0.1.2/aegis-core/src/error.rs +42 -0
  19. aegis_verifier-0.1.2/aegis-core/src/issuance.rs +45 -0
  20. aegis_verifier-0.1.2/aegis-core/src/leaf.rs +438 -0
  21. aegis_verifier-0.1.2/aegis-core/src/lib.rs +23 -0
  22. aegis_verifier-0.1.2/aegis-core/src/merkle.rs +698 -0
  23. aegis_verifier-0.1.2/aegis-core/src/serialization.rs +570 -0
  24. aegis_verifier-0.1.2/aegis-core/src/signing.rs +342 -0
  25. aegis_verifier-0.1.2/aegis-core/tests/concurrent_sign.rs +93 -0
  26. aegis_verifier-0.1.2/aegis-core/tests/extension_serialization.rs +302 -0
  27. aegis_verifier-0.1.2/aegis-core/tests/fixture_roundtrip.rs +51 -0
  28. aegis_verifier-0.1.2/aegis-core/tests/fixtures/leaves/01_minimal.cbor +0 -0
  29. aegis_verifier-0.1.2/aegis-core/tests/fixtures/leaves/02_empty_scopes.cbor +0 -0
  30. aegis_verifier-0.1.2/aegis-core/tests/fixtures/leaves/03_max_length_agent_id.cbor +0 -0
  31. aegis_verifier-0.1.2/aegis-core/tests/fixtures/leaves/04_zero_duration.cbor +0 -0
  32. aegis_verifier-0.1.2/aegis-core/tests/fixtures/leaves/05_inverted_window.cbor +0 -0
  33. aegis_verifier-0.1.2/aegis-core/tests/fixtures/leaves/06_many_scopes.cbor +0 -0
  34. aegis_verifier-0.1.2/aegis-core/tests/fixtures/leaves/07_unicode_agent_id.cbor +0 -0
  35. aegis_verifier-0.1.2/aegis-core/tests/fixtures/leaves/08_unicode_scope.cbor +0 -0
  36. aegis_verifier-0.1.2/aegis-core/tests/fixtures/leaves/09_past_dated.cbor +0 -0
  37. aegis_verifier-0.1.2/aegis-core/tests/fixtures/leaves/10_far_future.cbor +0 -0
  38. aegis_verifier-0.1.2/aegis-core/tests/fixtures/merkle/generate_reference.py +188 -0
  39. aegis_verifier-0.1.2/aegis-core/tests/fixtures/merkle/rfc9162_7leaf_vectors.json +61 -0
  40. aegis_verifier-0.1.2/aegis-core/tests/issuance_serde.rs +58 -0
  41. aegis_verifier-0.1.2/aegis-core/tests/log_id.rs +35 -0
  42. aegis_verifier-0.1.2/aegis-core/tests/merkle_conformance.rs +173 -0
  43. aegis_verifier-0.1.2/aegis-core/tests/merkle_perf.rs +79 -0
  44. aegis_verifier-0.1.2/aegis-core/tests/oqs_features.rs +49 -0
  45. aegis_verifier-0.1.2/aegis-core/tests/serialization_envelope.rs +222 -0
  46. aegis_verifier-0.1.2/aegis-core/tests/serialization_kat.rs +332 -0
  47. aegis_verifier-0.1.2/aegis-core/tests/serialization_proptest.rs +345 -0
  48. aegis_verifier-0.1.2/aegis-core/tests/sig_error.rs +65 -0
  49. aegis_verifier-0.1.2/aegis-core/tests/sign.rs +63 -0
  50. aegis_verifier-0.1.2/aegis-core/tests/signer_invariants.rs +29 -0
  51. aegis_verifier-0.1.2/aegis-core/tests/signer_smoke.rs +54 -0
  52. aegis_verifier-0.1.2/aegis-core/tests/sth_roundtrip.rs +113 -0
  53. aegis_verifier-0.1.2/aegis-core/tests/tls_pl.rs +66 -0
  54. aegis_verifier-0.1.2/aegis-core/tests/zeroize_check.rs +23 -0
  55. aegis_verifier-0.1.2/aegis-verifier/Cargo.toml +19 -0
  56. aegis_verifier-0.1.2/aegis-verifier/src/context.rs +134 -0
  57. aegis_verifier-0.1.2/aegis-verifier/src/lib.rs +336 -0
  58. aegis_verifier-0.1.2/aegis-verifier/tests/common/mod.rs +126 -0
  59. aegis_verifier-0.1.2/aegis-verifier/tests/e2e.rs +40 -0
  60. aegis_verifier-0.1.2/aegis-verifier/tests/proptest_roundtrip.rs +218 -0
  61. aegis_verifier-0.1.2/aegis-verifier/tests/reexport.rs +24 -0
  62. aegis_verifier-0.1.2/aegis-verifier/tests/verifier_context_freshness.rs +255 -0
  63. aegis_verifier-0.1.2/aegis-verifier/tests/verifier_context_replay.rs +254 -0
  64. aegis_verifier-0.1.2/aegis-verifier/tests/verify_dual_domain_separation.rs +298 -0
  65. aegis_verifier-0.1.2/aegis-verifier/tests/verify_error.rs +17 -0
  66. aegis_verifier-0.1.2/aegis-verifier/tests/verify_mtac_happy.rs +19 -0
  67. aegis_verifier-0.1.2/aegis-verifier/tests/verify_mtac_tamper.rs +108 -0
  68. aegis_verifier-0.1.2/aegis-verifier/tests/verify_mtac_with_ctx.rs +233 -0
  69. aegis_verifier-0.1.2/aegis-verifier/tests/verify_sth.rs +220 -0
  70. aegis_verifier-0.1.2/aegis-verifier-py/Cargo.toml +86 -0
  71. aegis_verifier-0.1.2/aegis-verifier-py/README.md +81 -0
  72. aegis_verifier-0.1.2/aegis-verifier-py/src/lib.rs +292 -0
  73. aegis_verifier-0.1.2/aegis-verifier-py/tests/fixtures/SCHEMA.md +58 -0
  74. aegis_verifier-0.1.2/aegis-verifier-py/tests/fixtures/fixture_gen/main.rs +181 -0
  75. aegis_verifier-0.1.2/aegis-verifier-py/tests/py/conftest.py +94 -0
  76. aegis_verifier-0.1.2/aegis-verifier-py/tests/py/test_basic.py +115 -0
  77. aegis_verifier-0.1.2/aegis-verifier-py/tests/py/test_byte_equivalence.py +350 -0
  78. aegis_verifier-0.1.2/aegis-verifier-py/tests/py/test_exception_hierarchy.py +141 -0
  79. aegis_verifier-0.1.2/aegis-verifier-py/tests/py/test_interop.py +125 -0
  80. aegis_verifier-0.1.2/aegis-verifier-py/tests/py/test_kat.py +169 -0
  81. aegis_verifier-0.1.2/aegis-verifier-py/tests/py/test_perf.py +118 -0
  82. aegis_verifier-0.1.2/aegis-verifier-py/tests/py/test_tamper.py +147 -0
  83. aegis_verifier-0.1.2/pyproject.toml +30 -0
@@ -0,0 +1,2051 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aegis-ca"
7
+ version = "0.1.2"
8
+ dependencies = [
9
+ "aegis-core",
10
+ "aegis-verifier",
11
+ "oqs",
12
+ "parking_lot",
13
+ "serde",
14
+ "serde_json",
15
+ "thiserror",
16
+ "tracing",
17
+ "uuid",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "aegis-core"
22
+ version = "0.1.2"
23
+ dependencies = [
24
+ "criterion",
25
+ "dcbor",
26
+ "hex",
27
+ "oqs",
28
+ "proptest",
29
+ "serde",
30
+ "serde_json",
31
+ "sha2",
32
+ "static_assertions",
33
+ "thiserror",
34
+ "uuid",
35
+ "zeroize",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "aegis-gateway"
40
+ version = "0.1.2"
41
+ dependencies = [
42
+ "axum",
43
+ "tokio",
44
+ "tracing",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "aegis-log"
49
+ version = "0.1.2"
50
+ dependencies = [
51
+ "axum",
52
+ "tokio",
53
+ "tracing",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "aegis-verifier"
58
+ version = "0.1.2"
59
+ dependencies = [
60
+ "aegis-core",
61
+ "oqs",
62
+ "proptest",
63
+ "sha2",
64
+ "thiserror",
65
+ "tracing",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "aegis-verifier-py"
70
+ version = "0.1.2"
71
+ dependencies = [
72
+ "aegis-ca",
73
+ "aegis-core",
74
+ "aegis-verifier",
75
+ "hex",
76
+ "oqs",
77
+ "pyo3",
78
+ "rand",
79
+ "rand_chacha",
80
+ "serde_json",
81
+ "uuid",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "aho-corasick"
86
+ version = "1.1.4"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
89
+ dependencies = [
90
+ "memchr",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "android_system_properties"
95
+ version = "0.1.5"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
98
+ dependencies = [
99
+ "libc",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "anes"
104
+ version = "0.1.6"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
107
+
108
+ [[package]]
109
+ name = "anstyle"
110
+ version = "1.0.14"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
113
+
114
+ [[package]]
115
+ name = "anyhow"
116
+ version = "1.0.102"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
119
+
120
+ [[package]]
121
+ name = "async-trait"
122
+ version = "0.1.89"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
125
+ dependencies = [
126
+ "proc-macro2",
127
+ "quote",
128
+ "syn",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "atomic-waker"
133
+ version = "1.1.2"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
136
+
137
+ [[package]]
138
+ name = "autocfg"
139
+ version = "1.5.0"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
142
+
143
+ [[package]]
144
+ name = "axum"
145
+ version = "0.7.9"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
148
+ dependencies = [
149
+ "async-trait",
150
+ "axum-core",
151
+ "bytes",
152
+ "futures-util",
153
+ "http",
154
+ "http-body",
155
+ "http-body-util",
156
+ "hyper",
157
+ "hyper-util",
158
+ "itoa",
159
+ "matchit",
160
+ "memchr",
161
+ "mime",
162
+ "percent-encoding",
163
+ "pin-project-lite",
164
+ "rustversion",
165
+ "serde",
166
+ "serde_json",
167
+ "serde_path_to_error",
168
+ "serde_urlencoded",
169
+ "sync_wrapper",
170
+ "tokio",
171
+ "tower",
172
+ "tower-layer",
173
+ "tower-service",
174
+ "tracing",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "axum-core"
179
+ version = "0.4.5"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
182
+ dependencies = [
183
+ "async-trait",
184
+ "bytes",
185
+ "futures-util",
186
+ "http",
187
+ "http-body",
188
+ "http-body-util",
189
+ "mime",
190
+ "pin-project-lite",
191
+ "rustversion",
192
+ "sync_wrapper",
193
+ "tower-layer",
194
+ "tower-service",
195
+ "tracing",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "bindgen"
200
+ version = "0.71.1"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "5f58bf3d7db68cfbac37cfc485a8d711e87e064c3d0fe0435b92f7a407f9d6b3"
203
+ dependencies = [
204
+ "bitflags",
205
+ "cexpr",
206
+ "clang-sys",
207
+ "itertools 0.13.0",
208
+ "log",
209
+ "prettyplease",
210
+ "proc-macro2",
211
+ "quote",
212
+ "regex",
213
+ "rustc-hash",
214
+ "shlex",
215
+ "syn",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "bit-set"
220
+ version = "0.8.0"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
223
+ dependencies = [
224
+ "bit-vec",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "bit-vec"
229
+ version = "0.8.0"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
232
+
233
+ [[package]]
234
+ name = "bitflags"
235
+ version = "2.11.1"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
238
+
239
+ [[package]]
240
+ name = "block-buffer"
241
+ version = "0.10.4"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
244
+ dependencies = [
245
+ "generic-array",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "build-deps"
250
+ version = "0.1.4"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "64f14468960818ce4f3e3553c32d524446687884f8e7af5d3e252331d8a87e43"
253
+ dependencies = [
254
+ "glob",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "bumpalo"
259
+ version = "3.20.2"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
262
+
263
+ [[package]]
264
+ name = "bytes"
265
+ version = "1.11.1"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
268
+
269
+ [[package]]
270
+ name = "cast"
271
+ version = "0.3.0"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
274
+
275
+ [[package]]
276
+ name = "cc"
277
+ version = "1.2.60"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
280
+ dependencies = [
281
+ "find-msvc-tools",
282
+ "shlex",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "cexpr"
287
+ version = "0.6.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
290
+ dependencies = [
291
+ "nom",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "cfg-if"
296
+ version = "1.0.4"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
299
+
300
+ [[package]]
301
+ name = "chrono"
302
+ version = "0.4.44"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
305
+ dependencies = [
306
+ "iana-time-zone",
307
+ "js-sys",
308
+ "num-traits",
309
+ "wasm-bindgen",
310
+ "windows-link",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "ciborium"
315
+ version = "0.2.2"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
318
+ dependencies = [
319
+ "ciborium-io",
320
+ "ciborium-ll",
321
+ "serde",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "ciborium-io"
326
+ version = "0.2.2"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
329
+
330
+ [[package]]
331
+ name = "ciborium-ll"
332
+ version = "0.2.2"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
335
+ dependencies = [
336
+ "ciborium-io",
337
+ "half",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "clang-sys"
342
+ version = "1.8.1"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
345
+ dependencies = [
346
+ "glob",
347
+ "libc",
348
+ "libloading",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "clap"
353
+ version = "4.6.1"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
356
+ dependencies = [
357
+ "clap_builder",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "clap_builder"
362
+ version = "4.6.0"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
365
+ dependencies = [
366
+ "anstyle",
367
+ "clap_lex",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "clap_lex"
372
+ version = "1.1.0"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
375
+
376
+ [[package]]
377
+ name = "cmake"
378
+ version = "0.1.58"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
381
+ dependencies = [
382
+ "cc",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "core-foundation-sys"
387
+ version = "0.8.7"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
390
+
391
+ [[package]]
392
+ name = "cpufeatures"
393
+ version = "0.2.17"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
396
+ dependencies = [
397
+ "libc",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "criterion"
402
+ version = "0.5.1"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
405
+ dependencies = [
406
+ "anes",
407
+ "cast",
408
+ "ciborium",
409
+ "clap",
410
+ "criterion-plot",
411
+ "is-terminal",
412
+ "itertools 0.10.5",
413
+ "num-traits",
414
+ "once_cell",
415
+ "oorandom",
416
+ "plotters",
417
+ "rayon",
418
+ "regex",
419
+ "serde",
420
+ "serde_derive",
421
+ "serde_json",
422
+ "tinytemplate",
423
+ "walkdir",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "criterion-plot"
428
+ version = "0.5.0"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
431
+ dependencies = [
432
+ "cast",
433
+ "itertools 0.10.5",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "crossbeam-deque"
438
+ version = "0.8.6"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
441
+ dependencies = [
442
+ "crossbeam-epoch",
443
+ "crossbeam-utils",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "crossbeam-epoch"
448
+ version = "0.9.18"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
451
+ dependencies = [
452
+ "crossbeam-utils",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "crossbeam-utils"
457
+ version = "0.8.21"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
460
+
461
+ [[package]]
462
+ name = "crunchy"
463
+ version = "0.2.4"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
466
+
467
+ [[package]]
468
+ name = "crypto-common"
469
+ version = "0.1.7"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
472
+ dependencies = [
473
+ "generic-array",
474
+ "typenum",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "cstr_core"
479
+ version = "0.2.6"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "dd98742e4fdca832d40cab219dc2e3048de17d873248f83f17df47c1bea70956"
482
+ dependencies = [
483
+ "cty",
484
+ "memchr",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "cty"
489
+ version = "0.2.2"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35"
492
+
493
+ [[package]]
494
+ name = "dcbor"
495
+ version = "0.25.2"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "fcf662b6347d10dd5ab7370287b76923eb88818d46434de8c424b091523f5e54"
498
+ dependencies = [
499
+ "chrono",
500
+ "half",
501
+ "hex",
502
+ "paste",
503
+ "thiserror",
504
+ "unicode-normalization",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "digest"
509
+ version = "0.10.7"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
512
+ dependencies = [
513
+ "block-buffer",
514
+ "crypto-common",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "either"
519
+ version = "1.15.0"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
522
+
523
+ [[package]]
524
+ name = "equivalent"
525
+ version = "1.0.2"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
528
+
529
+ [[package]]
530
+ name = "errno"
531
+ version = "0.3.14"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
534
+ dependencies = [
535
+ "libc",
536
+ "windows-sys",
537
+ ]
538
+
539
+ [[package]]
540
+ name = "fastrand"
541
+ version = "2.4.1"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
544
+
545
+ [[package]]
546
+ name = "find-msvc-tools"
547
+ version = "0.1.9"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
550
+
551
+ [[package]]
552
+ name = "fnv"
553
+ version = "1.0.7"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
556
+
557
+ [[package]]
558
+ name = "foldhash"
559
+ version = "0.1.5"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
562
+
563
+ [[package]]
564
+ name = "form_urlencoded"
565
+ version = "1.2.2"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
568
+ dependencies = [
569
+ "percent-encoding",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "futures-channel"
574
+ version = "0.3.32"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
577
+ dependencies = [
578
+ "futures-core",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "futures-core"
583
+ version = "0.3.32"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
586
+
587
+ [[package]]
588
+ name = "futures-task"
589
+ version = "0.3.32"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
592
+
593
+ [[package]]
594
+ name = "futures-util"
595
+ version = "0.3.32"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
598
+ dependencies = [
599
+ "futures-core",
600
+ "futures-task",
601
+ "pin-project-lite",
602
+ "slab",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "generic-array"
607
+ version = "0.14.7"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
610
+ dependencies = [
611
+ "typenum",
612
+ "version_check",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "getrandom"
617
+ version = "0.3.4"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
620
+ dependencies = [
621
+ "cfg-if",
622
+ "libc",
623
+ "r-efi 5.3.0",
624
+ "wasip2",
625
+ ]
626
+
627
+ [[package]]
628
+ name = "getrandom"
629
+ version = "0.4.2"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
632
+ dependencies = [
633
+ "cfg-if",
634
+ "libc",
635
+ "r-efi 6.0.0",
636
+ "wasip2",
637
+ "wasip3",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "glob"
642
+ version = "0.3.3"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
645
+
646
+ [[package]]
647
+ name = "half"
648
+ version = "2.7.1"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
651
+ dependencies = [
652
+ "cfg-if",
653
+ "crunchy",
654
+ "zerocopy",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "hashbrown"
659
+ version = "0.15.5"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
662
+ dependencies = [
663
+ "foldhash",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "hashbrown"
668
+ version = "0.17.0"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
671
+
672
+ [[package]]
673
+ name = "heck"
674
+ version = "0.5.0"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
677
+
678
+ [[package]]
679
+ name = "hermit-abi"
680
+ version = "0.5.2"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
683
+
684
+ [[package]]
685
+ name = "hex"
686
+ version = "0.4.3"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
689
+
690
+ [[package]]
691
+ name = "http"
692
+ version = "1.4.0"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
695
+ dependencies = [
696
+ "bytes",
697
+ "itoa",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "http-body"
702
+ version = "1.0.1"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
705
+ dependencies = [
706
+ "bytes",
707
+ "http",
708
+ ]
709
+
710
+ [[package]]
711
+ name = "http-body-util"
712
+ version = "0.1.3"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
715
+ dependencies = [
716
+ "bytes",
717
+ "futures-core",
718
+ "http",
719
+ "http-body",
720
+ "pin-project-lite",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "httparse"
725
+ version = "1.10.1"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
728
+
729
+ [[package]]
730
+ name = "httpdate"
731
+ version = "1.0.3"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
734
+
735
+ [[package]]
736
+ name = "hyper"
737
+ version = "1.9.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
740
+ dependencies = [
741
+ "atomic-waker",
742
+ "bytes",
743
+ "futures-channel",
744
+ "futures-core",
745
+ "http",
746
+ "http-body",
747
+ "httparse",
748
+ "httpdate",
749
+ "itoa",
750
+ "pin-project-lite",
751
+ "smallvec",
752
+ "tokio",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "hyper-util"
757
+ version = "0.1.20"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
760
+ dependencies = [
761
+ "bytes",
762
+ "http",
763
+ "http-body",
764
+ "hyper",
765
+ "pin-project-lite",
766
+ "tokio",
767
+ "tower-service",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "iana-time-zone"
772
+ version = "0.1.65"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
775
+ dependencies = [
776
+ "android_system_properties",
777
+ "core-foundation-sys",
778
+ "iana-time-zone-haiku",
779
+ "js-sys",
780
+ "log",
781
+ "wasm-bindgen",
782
+ "windows-core",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "iana-time-zone-haiku"
787
+ version = "0.1.2"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
790
+ dependencies = [
791
+ "cc",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "id-arena"
796
+ version = "2.3.0"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
799
+
800
+ [[package]]
801
+ name = "indexmap"
802
+ version = "2.14.0"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
805
+ dependencies = [
806
+ "equivalent",
807
+ "hashbrown 0.17.0",
808
+ "serde",
809
+ "serde_core",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "is-terminal"
814
+ version = "0.4.17"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
817
+ dependencies = [
818
+ "hermit-abi",
819
+ "libc",
820
+ "windows-sys",
821
+ ]
822
+
823
+ [[package]]
824
+ name = "itertools"
825
+ version = "0.10.5"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
828
+ dependencies = [
829
+ "either",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "itertools"
834
+ version = "0.13.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
837
+ dependencies = [
838
+ "either",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "itoa"
843
+ version = "1.0.18"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
846
+
847
+ [[package]]
848
+ name = "js-sys"
849
+ version = "0.3.95"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
852
+ dependencies = [
853
+ "once_cell",
854
+ "wasm-bindgen",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "leb128fmt"
859
+ version = "0.1.0"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
862
+
863
+ [[package]]
864
+ name = "libc"
865
+ version = "0.2.185"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
868
+
869
+ [[package]]
870
+ name = "libloading"
871
+ version = "0.8.9"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
874
+ dependencies = [
875
+ "cfg-if",
876
+ "windows-link",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "linux-raw-sys"
881
+ version = "0.12.1"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
884
+
885
+ [[package]]
886
+ name = "lock_api"
887
+ version = "0.4.14"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
890
+ dependencies = [
891
+ "scopeguard",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "log"
896
+ version = "0.4.29"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
899
+
900
+ [[package]]
901
+ name = "matchit"
902
+ version = "0.7.3"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
905
+
906
+ [[package]]
907
+ name = "memchr"
908
+ version = "2.8.0"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
911
+
912
+ [[package]]
913
+ name = "mime"
914
+ version = "0.3.17"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
917
+
918
+ [[package]]
919
+ name = "minimal-lexical"
920
+ version = "0.2.1"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
923
+
924
+ [[package]]
925
+ name = "mio"
926
+ version = "1.2.0"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
929
+ dependencies = [
930
+ "libc",
931
+ "wasi",
932
+ "windows-sys",
933
+ ]
934
+
935
+ [[package]]
936
+ name = "nom"
937
+ version = "7.1.3"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
940
+ dependencies = [
941
+ "memchr",
942
+ "minimal-lexical",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "num-traits"
947
+ version = "0.2.19"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
950
+ dependencies = [
951
+ "autocfg",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "once_cell"
956
+ version = "1.21.4"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
959
+
960
+ [[package]]
961
+ name = "oorandom"
962
+ version = "11.1.5"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
965
+
966
+ [[package]]
967
+ name = "oqs"
968
+ version = "0.11.0"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "48caac02cf42ba00b865a747e332828a75341d97ae35ad1ae9785e56de212e78"
971
+ dependencies = [
972
+ "cstr_core",
973
+ "libc",
974
+ "oqs-sys",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "oqs-sys"
979
+ version = "0.11.0+liboqs-0.13.0"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "ac6d66ee528a895ce5cc08851698d109c5d7ee5d7a0b3b40d61550eda91e414f"
982
+ dependencies = [
983
+ "bindgen",
984
+ "build-deps",
985
+ "cmake",
986
+ "libc",
987
+ "pkg-config",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "parking_lot"
992
+ version = "0.12.5"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
995
+ dependencies = [
996
+ "lock_api",
997
+ "parking_lot_core",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "parking_lot_core"
1002
+ version = "0.9.12"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1005
+ dependencies = [
1006
+ "cfg-if",
1007
+ "libc",
1008
+ "redox_syscall",
1009
+ "smallvec",
1010
+ "windows-link",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "paste"
1015
+ version = "1.0.15"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1018
+
1019
+ [[package]]
1020
+ name = "percent-encoding"
1021
+ version = "2.3.2"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1024
+
1025
+ [[package]]
1026
+ name = "pin-project-lite"
1027
+ version = "0.2.17"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1030
+
1031
+ [[package]]
1032
+ name = "pkg-config"
1033
+ version = "0.3.33"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1036
+
1037
+ [[package]]
1038
+ name = "plotters"
1039
+ version = "0.3.7"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1042
+ dependencies = [
1043
+ "num-traits",
1044
+ "plotters-backend",
1045
+ "plotters-svg",
1046
+ "wasm-bindgen",
1047
+ "web-sys",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "plotters-backend"
1052
+ version = "0.3.7"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1055
+
1056
+ [[package]]
1057
+ name = "plotters-svg"
1058
+ version = "0.3.7"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1061
+ dependencies = [
1062
+ "plotters-backend",
1063
+ ]
1064
+
1065
+ [[package]]
1066
+ name = "portable-atomic"
1067
+ version = "1.13.1"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1070
+
1071
+ [[package]]
1072
+ name = "ppv-lite86"
1073
+ version = "0.2.21"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1076
+ dependencies = [
1077
+ "zerocopy",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "prettyplease"
1082
+ version = "0.2.37"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1085
+ dependencies = [
1086
+ "proc-macro2",
1087
+ "syn",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "proc-macro2"
1092
+ version = "1.0.106"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1095
+ dependencies = [
1096
+ "unicode-ident",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "proptest"
1101
+ version = "1.11.0"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1104
+ dependencies = [
1105
+ "bit-set",
1106
+ "bit-vec",
1107
+ "bitflags",
1108
+ "num-traits",
1109
+ "rand",
1110
+ "rand_chacha",
1111
+ "rand_xorshift",
1112
+ "regex-syntax",
1113
+ "rusty-fork",
1114
+ "tempfile",
1115
+ "unarray",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "pyo3"
1120
+ version = "0.28.3"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
1123
+ dependencies = [
1124
+ "libc",
1125
+ "once_cell",
1126
+ "portable-atomic",
1127
+ "pyo3-build-config",
1128
+ "pyo3-ffi",
1129
+ "pyo3-macros",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "pyo3-build-config"
1134
+ version = "0.28.3"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
1137
+ dependencies = [
1138
+ "target-lexicon",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "pyo3-ffi"
1143
+ version = "0.28.3"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
1146
+ dependencies = [
1147
+ "libc",
1148
+ "pyo3-build-config",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "pyo3-macros"
1153
+ version = "0.28.3"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
1156
+ dependencies = [
1157
+ "proc-macro2",
1158
+ "pyo3-macros-backend",
1159
+ "quote",
1160
+ "syn",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "pyo3-macros-backend"
1165
+ version = "0.28.3"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
1168
+ dependencies = [
1169
+ "heck",
1170
+ "proc-macro2",
1171
+ "pyo3-build-config",
1172
+ "quote",
1173
+ "syn",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "quick-error"
1178
+ version = "1.2.3"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1181
+
1182
+ [[package]]
1183
+ name = "quote"
1184
+ version = "1.0.45"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1187
+ dependencies = [
1188
+ "proc-macro2",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "r-efi"
1193
+ version = "5.3.0"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1196
+
1197
+ [[package]]
1198
+ name = "r-efi"
1199
+ version = "6.0.0"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1202
+
1203
+ [[package]]
1204
+ name = "rand"
1205
+ version = "0.9.4"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1208
+ dependencies = [
1209
+ "rand_chacha",
1210
+ "rand_core",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "rand_chacha"
1215
+ version = "0.9.0"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1218
+ dependencies = [
1219
+ "ppv-lite86",
1220
+ "rand_core",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "rand_core"
1225
+ version = "0.9.5"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1228
+ dependencies = [
1229
+ "getrandom 0.3.4",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "rand_xorshift"
1234
+ version = "0.4.0"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1237
+ dependencies = [
1238
+ "rand_core",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "rayon"
1243
+ version = "1.12.0"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1246
+ dependencies = [
1247
+ "either",
1248
+ "rayon-core",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "rayon-core"
1253
+ version = "1.13.0"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1256
+ dependencies = [
1257
+ "crossbeam-deque",
1258
+ "crossbeam-utils",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "redox_syscall"
1263
+ version = "0.5.18"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1266
+ dependencies = [
1267
+ "bitflags",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "regex"
1272
+ version = "1.12.3"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1275
+ dependencies = [
1276
+ "aho-corasick",
1277
+ "memchr",
1278
+ "regex-automata",
1279
+ "regex-syntax",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "regex-automata"
1284
+ version = "0.4.14"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1287
+ dependencies = [
1288
+ "aho-corasick",
1289
+ "memchr",
1290
+ "regex-syntax",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "regex-syntax"
1295
+ version = "0.8.10"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1298
+
1299
+ [[package]]
1300
+ name = "rustc-hash"
1301
+ version = "2.1.2"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1304
+
1305
+ [[package]]
1306
+ name = "rustix"
1307
+ version = "1.1.4"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1310
+ dependencies = [
1311
+ "bitflags",
1312
+ "errno",
1313
+ "libc",
1314
+ "linux-raw-sys",
1315
+ "windows-sys",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "rustversion"
1320
+ version = "1.0.22"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1323
+
1324
+ [[package]]
1325
+ name = "rusty-fork"
1326
+ version = "0.3.1"
1327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1328
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1329
+ dependencies = [
1330
+ "fnv",
1331
+ "quick-error",
1332
+ "tempfile",
1333
+ "wait-timeout",
1334
+ ]
1335
+
1336
+ [[package]]
1337
+ name = "ryu"
1338
+ version = "1.0.23"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1341
+
1342
+ [[package]]
1343
+ name = "same-file"
1344
+ version = "1.0.6"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1347
+ dependencies = [
1348
+ "winapi-util",
1349
+ ]
1350
+
1351
+ [[package]]
1352
+ name = "scopeguard"
1353
+ version = "1.2.0"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1356
+
1357
+ [[package]]
1358
+ name = "semver"
1359
+ version = "1.0.28"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1362
+
1363
+ [[package]]
1364
+ name = "serde"
1365
+ version = "1.0.228"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1368
+ dependencies = [
1369
+ "serde_core",
1370
+ "serde_derive",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "serde_core"
1375
+ version = "1.0.228"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1378
+ dependencies = [
1379
+ "serde_derive",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "serde_derive"
1384
+ version = "1.0.228"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1387
+ dependencies = [
1388
+ "proc-macro2",
1389
+ "quote",
1390
+ "syn",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "serde_json"
1395
+ version = "1.0.149"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1398
+ dependencies = [
1399
+ "itoa",
1400
+ "memchr",
1401
+ "serde",
1402
+ "serde_core",
1403
+ "zmij",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "serde_path_to_error"
1408
+ version = "0.1.20"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
1411
+ dependencies = [
1412
+ "itoa",
1413
+ "serde",
1414
+ "serde_core",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "serde_urlencoded"
1419
+ version = "0.7.1"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1422
+ dependencies = [
1423
+ "form_urlencoded",
1424
+ "itoa",
1425
+ "ryu",
1426
+ "serde",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "sha2"
1431
+ version = "0.10.9"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1434
+ dependencies = [
1435
+ "cfg-if",
1436
+ "cpufeatures",
1437
+ "digest",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "shlex"
1442
+ version = "1.3.0"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1445
+
1446
+ [[package]]
1447
+ name = "signal-hook-registry"
1448
+ version = "1.4.8"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1451
+ dependencies = [
1452
+ "errno",
1453
+ "libc",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "slab"
1458
+ version = "0.4.12"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1461
+
1462
+ [[package]]
1463
+ name = "smallvec"
1464
+ version = "1.15.1"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1467
+
1468
+ [[package]]
1469
+ name = "socket2"
1470
+ version = "0.6.3"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1473
+ dependencies = [
1474
+ "libc",
1475
+ "windows-sys",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "static_assertions"
1480
+ version = "1.1.0"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1483
+
1484
+ [[package]]
1485
+ name = "syn"
1486
+ version = "2.0.117"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1489
+ dependencies = [
1490
+ "proc-macro2",
1491
+ "quote",
1492
+ "unicode-ident",
1493
+ ]
1494
+
1495
+ [[package]]
1496
+ name = "sync_wrapper"
1497
+ version = "1.0.2"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1500
+
1501
+ [[package]]
1502
+ name = "target-lexicon"
1503
+ version = "0.13.5"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1506
+
1507
+ [[package]]
1508
+ name = "tempfile"
1509
+ version = "3.27.0"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1512
+ dependencies = [
1513
+ "fastrand",
1514
+ "getrandom 0.4.2",
1515
+ "once_cell",
1516
+ "rustix",
1517
+ "windows-sys",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "thiserror"
1522
+ version = "2.0.18"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1525
+ dependencies = [
1526
+ "thiserror-impl",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "thiserror-impl"
1531
+ version = "2.0.18"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1534
+ dependencies = [
1535
+ "proc-macro2",
1536
+ "quote",
1537
+ "syn",
1538
+ ]
1539
+
1540
+ [[package]]
1541
+ name = "tinytemplate"
1542
+ version = "1.2.1"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1545
+ dependencies = [
1546
+ "serde",
1547
+ "serde_json",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "tinyvec"
1552
+ version = "1.11.0"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1555
+ dependencies = [
1556
+ "tinyvec_macros",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "tinyvec_macros"
1561
+ version = "0.1.1"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1564
+
1565
+ [[package]]
1566
+ name = "tokio"
1567
+ version = "1.52.1"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
1570
+ dependencies = [
1571
+ "bytes",
1572
+ "libc",
1573
+ "mio",
1574
+ "parking_lot",
1575
+ "pin-project-lite",
1576
+ "signal-hook-registry",
1577
+ "socket2",
1578
+ "tokio-macros",
1579
+ "windows-sys",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "tokio-macros"
1584
+ version = "2.7.0"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1587
+ dependencies = [
1588
+ "proc-macro2",
1589
+ "quote",
1590
+ "syn",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "tower"
1595
+ version = "0.5.3"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1598
+ dependencies = [
1599
+ "futures-core",
1600
+ "futures-util",
1601
+ "pin-project-lite",
1602
+ "sync_wrapper",
1603
+ "tokio",
1604
+ "tower-layer",
1605
+ "tower-service",
1606
+ "tracing",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "tower-layer"
1611
+ version = "0.3.3"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1614
+
1615
+ [[package]]
1616
+ name = "tower-service"
1617
+ version = "0.3.3"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1620
+
1621
+ [[package]]
1622
+ name = "tracing"
1623
+ version = "0.1.44"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1626
+ dependencies = [
1627
+ "log",
1628
+ "pin-project-lite",
1629
+ "tracing-attributes",
1630
+ "tracing-core",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "tracing-attributes"
1635
+ version = "0.1.31"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1638
+ dependencies = [
1639
+ "proc-macro2",
1640
+ "quote",
1641
+ "syn",
1642
+ ]
1643
+
1644
+ [[package]]
1645
+ name = "tracing-core"
1646
+ version = "0.1.36"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1649
+ dependencies = [
1650
+ "once_cell",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "typenum"
1655
+ version = "1.20.0"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
1658
+
1659
+ [[package]]
1660
+ name = "unarray"
1661
+ version = "0.1.4"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1664
+
1665
+ [[package]]
1666
+ name = "unicode-ident"
1667
+ version = "1.0.24"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1670
+
1671
+ [[package]]
1672
+ name = "unicode-normalization"
1673
+ version = "0.1.25"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
1676
+ dependencies = [
1677
+ "tinyvec",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "unicode-xid"
1682
+ version = "0.2.6"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1685
+
1686
+ [[package]]
1687
+ name = "uuid"
1688
+ version = "1.23.1"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
1691
+ dependencies = [
1692
+ "getrandom 0.4.2",
1693
+ "js-sys",
1694
+ "serde_core",
1695
+ "wasm-bindgen",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "version_check"
1700
+ version = "0.9.5"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1703
+
1704
+ [[package]]
1705
+ name = "wait-timeout"
1706
+ version = "0.2.1"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1709
+ dependencies = [
1710
+ "libc",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "walkdir"
1715
+ version = "2.5.0"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1718
+ dependencies = [
1719
+ "same-file",
1720
+ "winapi-util",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "wasi"
1725
+ version = "0.11.1+wasi-snapshot-preview1"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1728
+
1729
+ [[package]]
1730
+ name = "wasip2"
1731
+ version = "1.0.3+wasi-0.2.9"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1734
+ dependencies = [
1735
+ "wit-bindgen 0.57.1",
1736
+ ]
1737
+
1738
+ [[package]]
1739
+ name = "wasip3"
1740
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1742
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1743
+ dependencies = [
1744
+ "wit-bindgen 0.51.0",
1745
+ ]
1746
+
1747
+ [[package]]
1748
+ name = "wasm-bindgen"
1749
+ version = "0.2.118"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
1752
+ dependencies = [
1753
+ "cfg-if",
1754
+ "once_cell",
1755
+ "rustversion",
1756
+ "wasm-bindgen-macro",
1757
+ "wasm-bindgen-shared",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "wasm-bindgen-macro"
1762
+ version = "0.2.118"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
1765
+ dependencies = [
1766
+ "quote",
1767
+ "wasm-bindgen-macro-support",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "wasm-bindgen-macro-support"
1772
+ version = "0.2.118"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
1775
+ dependencies = [
1776
+ "bumpalo",
1777
+ "proc-macro2",
1778
+ "quote",
1779
+ "syn",
1780
+ "wasm-bindgen-shared",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "wasm-bindgen-shared"
1785
+ version = "0.2.118"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
1788
+ dependencies = [
1789
+ "unicode-ident",
1790
+ ]
1791
+
1792
+ [[package]]
1793
+ name = "wasm-encoder"
1794
+ version = "0.244.0"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1797
+ dependencies = [
1798
+ "leb128fmt",
1799
+ "wasmparser",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "wasm-metadata"
1804
+ version = "0.244.0"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1807
+ dependencies = [
1808
+ "anyhow",
1809
+ "indexmap",
1810
+ "wasm-encoder",
1811
+ "wasmparser",
1812
+ ]
1813
+
1814
+ [[package]]
1815
+ name = "wasmparser"
1816
+ version = "0.244.0"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1819
+ dependencies = [
1820
+ "bitflags",
1821
+ "hashbrown 0.15.5",
1822
+ "indexmap",
1823
+ "semver",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "web-sys"
1828
+ version = "0.3.95"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
1831
+ dependencies = [
1832
+ "js-sys",
1833
+ "wasm-bindgen",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "winapi-util"
1838
+ version = "0.1.11"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1841
+ dependencies = [
1842
+ "windows-sys",
1843
+ ]
1844
+
1845
+ [[package]]
1846
+ name = "windows-core"
1847
+ version = "0.62.2"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1850
+ dependencies = [
1851
+ "windows-implement",
1852
+ "windows-interface",
1853
+ "windows-link",
1854
+ "windows-result",
1855
+ "windows-strings",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "windows-implement"
1860
+ version = "0.60.2"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1863
+ dependencies = [
1864
+ "proc-macro2",
1865
+ "quote",
1866
+ "syn",
1867
+ ]
1868
+
1869
+ [[package]]
1870
+ name = "windows-interface"
1871
+ version = "0.59.3"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1874
+ dependencies = [
1875
+ "proc-macro2",
1876
+ "quote",
1877
+ "syn",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "windows-link"
1882
+ version = "0.2.1"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1885
+
1886
+ [[package]]
1887
+ name = "windows-result"
1888
+ version = "0.4.1"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1891
+ dependencies = [
1892
+ "windows-link",
1893
+ ]
1894
+
1895
+ [[package]]
1896
+ name = "windows-strings"
1897
+ version = "0.5.1"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1900
+ dependencies = [
1901
+ "windows-link",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "windows-sys"
1906
+ version = "0.61.2"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1909
+ dependencies = [
1910
+ "windows-link",
1911
+ ]
1912
+
1913
+ [[package]]
1914
+ name = "wit-bindgen"
1915
+ version = "0.51.0"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1918
+ dependencies = [
1919
+ "wit-bindgen-rust-macro",
1920
+ ]
1921
+
1922
+ [[package]]
1923
+ name = "wit-bindgen"
1924
+ version = "0.57.1"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1927
+
1928
+ [[package]]
1929
+ name = "wit-bindgen-core"
1930
+ version = "0.51.0"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1933
+ dependencies = [
1934
+ "anyhow",
1935
+ "heck",
1936
+ "wit-parser",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "wit-bindgen-rust"
1941
+ version = "0.51.0"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1944
+ dependencies = [
1945
+ "anyhow",
1946
+ "heck",
1947
+ "indexmap",
1948
+ "prettyplease",
1949
+ "syn",
1950
+ "wasm-metadata",
1951
+ "wit-bindgen-core",
1952
+ "wit-component",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "wit-bindgen-rust-macro"
1957
+ version = "0.51.0"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1960
+ dependencies = [
1961
+ "anyhow",
1962
+ "prettyplease",
1963
+ "proc-macro2",
1964
+ "quote",
1965
+ "syn",
1966
+ "wit-bindgen-core",
1967
+ "wit-bindgen-rust",
1968
+ ]
1969
+
1970
+ [[package]]
1971
+ name = "wit-component"
1972
+ version = "0.244.0"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1975
+ dependencies = [
1976
+ "anyhow",
1977
+ "bitflags",
1978
+ "indexmap",
1979
+ "log",
1980
+ "serde",
1981
+ "serde_derive",
1982
+ "serde_json",
1983
+ "wasm-encoder",
1984
+ "wasm-metadata",
1985
+ "wasmparser",
1986
+ "wit-parser",
1987
+ ]
1988
+
1989
+ [[package]]
1990
+ name = "wit-parser"
1991
+ version = "0.244.0"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1994
+ dependencies = [
1995
+ "anyhow",
1996
+ "id-arena",
1997
+ "indexmap",
1998
+ "log",
1999
+ "semver",
2000
+ "serde",
2001
+ "serde_derive",
2002
+ "serde_json",
2003
+ "unicode-xid",
2004
+ "wasmparser",
2005
+ ]
2006
+
2007
+ [[package]]
2008
+ name = "zerocopy"
2009
+ version = "0.8.48"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2012
+ dependencies = [
2013
+ "zerocopy-derive",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "zerocopy-derive"
2018
+ version = "0.8.48"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2021
+ dependencies = [
2022
+ "proc-macro2",
2023
+ "quote",
2024
+ "syn",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "zeroize"
2029
+ version = "1.8.2"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2032
+ dependencies = [
2033
+ "zeroize_derive",
2034
+ ]
2035
+
2036
+ [[package]]
2037
+ name = "zeroize_derive"
2038
+ version = "1.4.3"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
2041
+ dependencies = [
2042
+ "proc-macro2",
2043
+ "quote",
2044
+ "syn",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "zmij"
2049
+ version = "1.0.21"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"