hiq-quantum 1.0.1__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 (46) hide show
  1. hiq_quantum-1.0.1/Cargo.lock +3889 -0
  2. hiq_quantum-1.0.1/Cargo.toml +82 -0
  3. hiq_quantum-1.0.1/PKG-INFO +88 -0
  4. hiq_quantum-1.0.1/README.md +60 -0
  5. hiq_quantum-1.0.1/crates/hiq-compile/Cargo.toml +23 -0
  6. hiq_quantum-1.0.1/crates/hiq-compile/src/error.rs +47 -0
  7. hiq_quantum-1.0.1/crates/hiq-compile/src/lib.rs +117 -0
  8. hiq_quantum-1.0.1/crates/hiq-compile/src/manager.rs +194 -0
  9. hiq_quantum-1.0.1/crates/hiq-compile/src/pass.rs +105 -0
  10. hiq_quantum-1.0.1/crates/hiq-compile/src/passes/layout.rs +88 -0
  11. hiq_quantum-1.0.1/crates/hiq-compile/src/passes/mod.rs +11 -0
  12. hiq_quantum-1.0.1/crates/hiq-compile/src/passes/optimization.rs +831 -0
  13. hiq_quantum-1.0.1/crates/hiq-compile/src/passes/routing.rs +193 -0
  14. hiq_quantum-1.0.1/crates/hiq-compile/src/passes/translation.rs +353 -0
  15. hiq_quantum-1.0.1/crates/hiq-compile/src/property.rs +516 -0
  16. hiq_quantum-1.0.1/crates/hiq-compile/src/unitary.rs +430 -0
  17. hiq_quantum-1.0.1/crates/hiq-ir/Cargo.toml +26 -0
  18. hiq_quantum-1.0.1/crates/hiq-ir/benches/circuit_bench.rs +134 -0
  19. hiq_quantum-1.0.1/crates/hiq-ir/src/circuit.rs +645 -0
  20. hiq_quantum-1.0.1/crates/hiq-ir/src/dag.rs +549 -0
  21. hiq_quantum-1.0.1/crates/hiq-ir/src/error.rs +74 -0
  22. hiq_quantum-1.0.1/crates/hiq-ir/src/gate.rs +409 -0
  23. hiq_quantum-1.0.1/crates/hiq-ir/src/instruction.rs +179 -0
  24. hiq_quantum-1.0.1/crates/hiq-ir/src/lib.rs +90 -0
  25. hiq_quantum-1.0.1/crates/hiq-ir/src/parameter.rs +286 -0
  26. hiq_quantum-1.0.1/crates/hiq-ir/src/qubit.rs +151 -0
  27. hiq_quantum-1.0.1/crates/hiq-python/Cargo.toml +19 -0
  28. hiq_quantum-1.0.1/crates/hiq-python/README.md +60 -0
  29. hiq_quantum-1.0.1/crates/hiq-python/python/hiq/__init__.py +39 -0
  30. hiq_quantum-1.0.1/crates/hiq-python/python/hiq/__init__.pyi +173 -0
  31. hiq_quantum-1.0.1/crates/hiq-python/src/circuit.rs +625 -0
  32. hiq_quantum-1.0.1/crates/hiq-python/src/compile.rs +314 -0
  33. hiq_quantum-1.0.1/crates/hiq-python/src/error.rs +14 -0
  34. hiq_quantum-1.0.1/crates/hiq-python/src/lib.rs +56 -0
  35. hiq_quantum-1.0.1/crates/hiq-python/src/qasm.rs +54 -0
  36. hiq_quantum-1.0.1/crates/hiq-python/src/qubits.rs +150 -0
  37. hiq_quantum-1.0.1/crates/hiq-python/tests/test_circuit.py +235 -0
  38. hiq_quantum-1.0.1/crates/hiq-python/tests/test_compile.py +187 -0
  39. hiq_quantum-1.0.1/crates/hiq-qasm3/Cargo.toml +19 -0
  40. hiq_quantum-1.0.1/crates/hiq-qasm3/src/ast.rs +308 -0
  41. hiq_quantum-1.0.1/crates/hiq-qasm3/src/emitter.rs +278 -0
  42. hiq_quantum-1.0.1/crates/hiq-qasm3/src/error.rs +75 -0
  43. hiq_quantum-1.0.1/crates/hiq-qasm3/src/lexer.rs +427 -0
  44. hiq_quantum-1.0.1/crates/hiq-qasm3/src/lib.rs +100 -0
  45. hiq_quantum-1.0.1/crates/hiq-qasm3/src/parser.rs +1232 -0
  46. hiq_quantum-1.0.1/pyproject.toml +38 -0
@@ -0,0 +1,3889 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "once_cell",
19
+ "version_check",
20
+ "zerocopy",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "aho-corasick"
25
+ version = "1.1.4"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
28
+ dependencies = [
29
+ "memchr",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "android_system_properties"
34
+ version = "0.1.5"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
37
+ dependencies = [
38
+ "libc",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anes"
43
+ version = "0.1.6"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
46
+
47
+ [[package]]
48
+ name = "anstream"
49
+ version = "0.6.21"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
52
+ dependencies = [
53
+ "anstyle",
54
+ "anstyle-parse",
55
+ "anstyle-query",
56
+ "anstyle-wincon",
57
+ "colorchoice",
58
+ "is_terminal_polyfill",
59
+ "utf8parse",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "anstyle"
64
+ version = "1.0.13"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
67
+
68
+ [[package]]
69
+ name = "anstyle-parse"
70
+ version = "0.2.7"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
73
+ dependencies = [
74
+ "utf8parse",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "anstyle-query"
79
+ version = "1.1.5"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
82
+ dependencies = [
83
+ "windows-sys 0.61.2",
84
+ ]
85
+
86
+ [[package]]
87
+ name = "anstyle-wincon"
88
+ version = "3.0.11"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
91
+ dependencies = [
92
+ "anstyle",
93
+ "once_cell_polyfill",
94
+ "windows-sys 0.61.2",
95
+ ]
96
+
97
+ [[package]]
98
+ name = "anyhow"
99
+ version = "1.0.101"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
102
+
103
+ [[package]]
104
+ name = "approx"
105
+ version = "0.5.1"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
108
+ dependencies = [
109
+ "num-traits",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "async-compression"
114
+ version = "0.4.37"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "d10e4f991a553474232bc0a31799f6d24b034a84c0971d80d2e2f78b2e576e40"
117
+ dependencies = [
118
+ "compression-codecs",
119
+ "compression-core",
120
+ "pin-project-lite",
121
+ "tokio",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "async-trait"
126
+ version = "0.1.89"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
129
+ dependencies = [
130
+ "proc-macro2",
131
+ "quote",
132
+ "syn",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "atomic-waker"
137
+ version = "1.1.2"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
140
+
141
+ [[package]]
142
+ name = "autocfg"
143
+ version = "1.5.0"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
146
+
147
+ [[package]]
148
+ name = "axum"
149
+ version = "0.8.8"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
152
+ dependencies = [
153
+ "axum-core",
154
+ "axum-macros",
155
+ "base64",
156
+ "bytes",
157
+ "form_urlencoded",
158
+ "futures-util",
159
+ "http",
160
+ "http-body",
161
+ "http-body-util",
162
+ "hyper",
163
+ "hyper-util",
164
+ "itoa",
165
+ "matchit",
166
+ "memchr",
167
+ "mime",
168
+ "percent-encoding",
169
+ "pin-project-lite",
170
+ "serde_core",
171
+ "serde_json",
172
+ "serde_path_to_error",
173
+ "serde_urlencoded",
174
+ "sha1",
175
+ "sync_wrapper",
176
+ "tokio",
177
+ "tokio-tungstenite",
178
+ "tower",
179
+ "tower-layer",
180
+ "tower-service",
181
+ "tracing",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "axum-core"
186
+ version = "0.5.6"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
189
+ dependencies = [
190
+ "bytes",
191
+ "futures-core",
192
+ "http",
193
+ "http-body",
194
+ "http-body-util",
195
+ "mime",
196
+ "pin-project-lite",
197
+ "sync_wrapper",
198
+ "tower-layer",
199
+ "tower-service",
200
+ "tracing",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "axum-macros"
205
+ version = "0.5.0"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c"
208
+ dependencies = [
209
+ "proc-macro2",
210
+ "quote",
211
+ "syn",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "axum-test"
216
+ version = "18.7.0"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "0ce2a8627e8d8851f894696b39f2b67807d6375c177361d376173ace306a21e2"
219
+ dependencies = [
220
+ "anyhow",
221
+ "axum",
222
+ "bytes",
223
+ "bytesize",
224
+ "cookie",
225
+ "expect-json",
226
+ "http",
227
+ "http-body-util",
228
+ "hyper",
229
+ "hyper-util",
230
+ "mime",
231
+ "pretty_assertions",
232
+ "reserve-port",
233
+ "rust-multipart-rfc7578_2",
234
+ "serde",
235
+ "serde_json",
236
+ "serde_urlencoded",
237
+ "smallvec",
238
+ "tokio",
239
+ "tower",
240
+ "url",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "base64"
245
+ version = "0.22.1"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
248
+
249
+ [[package]]
250
+ name = "beef"
251
+ version = "0.5.2"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
254
+
255
+ [[package]]
256
+ name = "bit-set"
257
+ version = "0.8.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
260
+ dependencies = [
261
+ "bit-vec",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "bit-vec"
266
+ version = "0.8.0"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
269
+
270
+ [[package]]
271
+ name = "bitflags"
272
+ version = "2.10.0"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
275
+
276
+ [[package]]
277
+ name = "block-buffer"
278
+ version = "0.10.4"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
281
+ dependencies = [
282
+ "generic-array",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "bumpalo"
287
+ version = "3.19.1"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
290
+
291
+ [[package]]
292
+ name = "bytes"
293
+ version = "1.11.1"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
296
+
297
+ [[package]]
298
+ name = "bytesize"
299
+ version = "2.3.1"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "6bd91ee7b2422bcb158d90ef4d14f75ef67f340943fc4149891dcce8f8b972a3"
302
+
303
+ [[package]]
304
+ name = "cast"
305
+ version = "0.3.0"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
308
+
309
+ [[package]]
310
+ name = "cc"
311
+ version = "1.2.55"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
314
+ dependencies = [
315
+ "find-msvc-tools",
316
+ "shlex",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "cfg-if"
321
+ version = "1.0.4"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
324
+
325
+ [[package]]
326
+ name = "cfg_aliases"
327
+ version = "0.2.1"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
330
+
331
+ [[package]]
332
+ name = "chrono"
333
+ version = "0.4.43"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
336
+ dependencies = [
337
+ "iana-time-zone",
338
+ "js-sys",
339
+ "num-traits",
340
+ "serde",
341
+ "wasm-bindgen",
342
+ "windows-link",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "ciborium"
347
+ version = "0.2.2"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
350
+ dependencies = [
351
+ "ciborium-io",
352
+ "ciborium-ll",
353
+ "serde",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "ciborium-io"
358
+ version = "0.2.2"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
361
+
362
+ [[package]]
363
+ name = "ciborium-ll"
364
+ version = "0.2.2"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
367
+ dependencies = [
368
+ "ciborium-io",
369
+ "half",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "clap"
374
+ version = "4.5.57"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "6899ea499e3fb9305a65d5ebf6e3d2248c5fab291f300ad0a704fbe142eae31a"
377
+ dependencies = [
378
+ "clap_builder",
379
+ "clap_derive",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "clap_builder"
384
+ version = "4.5.57"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "7b12c8b680195a62a8364d16b8447b01b6c2c8f9aaf68bee653be34d4245e238"
387
+ dependencies = [
388
+ "anstream",
389
+ "anstyle",
390
+ "clap_lex",
391
+ "strsim",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "clap_derive"
396
+ version = "4.5.55"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
399
+ dependencies = [
400
+ "heck",
401
+ "proc-macro2",
402
+ "quote",
403
+ "syn",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "clap_lex"
408
+ version = "0.7.7"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
411
+
412
+ [[package]]
413
+ name = "colorchoice"
414
+ version = "1.0.4"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
417
+
418
+ [[package]]
419
+ name = "compression-codecs"
420
+ version = "0.4.36"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "00828ba6fd27b45a448e57dbfe84f1029d4c9f26b368157e9a448a5f49a2ec2a"
423
+ dependencies = [
424
+ "compression-core",
425
+ "flate2",
426
+ "memchr",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "compression-core"
431
+ version = "0.4.31"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
434
+
435
+ [[package]]
436
+ name = "console"
437
+ version = "0.15.11"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
440
+ dependencies = [
441
+ "encode_unicode",
442
+ "libc",
443
+ "once_cell",
444
+ "unicode-width",
445
+ "windows-sys 0.59.0",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "cookie"
450
+ version = "0.18.1"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
453
+ dependencies = [
454
+ "time",
455
+ "version_check",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "core-foundation"
460
+ version = "0.9.4"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
463
+ dependencies = [
464
+ "core-foundation-sys",
465
+ "libc",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "core-foundation-sys"
470
+ version = "0.8.7"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
473
+
474
+ [[package]]
475
+ name = "cpufeatures"
476
+ version = "0.2.17"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
479
+ dependencies = [
480
+ "libc",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "crc32fast"
485
+ version = "1.5.0"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
488
+ dependencies = [
489
+ "cfg-if",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "criterion"
494
+ version = "0.5.1"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
497
+ dependencies = [
498
+ "anes",
499
+ "cast",
500
+ "ciborium",
501
+ "clap",
502
+ "criterion-plot",
503
+ "is-terminal",
504
+ "itertools",
505
+ "num-traits",
506
+ "once_cell",
507
+ "oorandom",
508
+ "plotters",
509
+ "rayon",
510
+ "regex",
511
+ "serde",
512
+ "serde_derive",
513
+ "serde_json",
514
+ "tinytemplate",
515
+ "walkdir",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "criterion-plot"
520
+ version = "0.5.0"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
523
+ dependencies = [
524
+ "cast",
525
+ "itertools",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "crossbeam-deque"
530
+ version = "0.8.6"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
533
+ dependencies = [
534
+ "crossbeam-epoch",
535
+ "crossbeam-utils",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "crossbeam-epoch"
540
+ version = "0.9.18"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
543
+ dependencies = [
544
+ "crossbeam-utils",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "crossbeam-utils"
549
+ version = "0.8.21"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
552
+
553
+ [[package]]
554
+ name = "crunchy"
555
+ version = "0.2.4"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
558
+
559
+ [[package]]
560
+ name = "crypto-common"
561
+ version = "0.1.7"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
564
+ dependencies = [
565
+ "generic-array",
566
+ "typenum",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "data-encoding"
571
+ version = "2.10.0"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
574
+
575
+ [[package]]
576
+ name = "deranged"
577
+ version = "0.5.5"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
580
+ dependencies = [
581
+ "powerfmt",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "diff"
586
+ version = "0.1.13"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
589
+
590
+ [[package]]
591
+ name = "digest"
592
+ version = "0.10.7"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
595
+ dependencies = [
596
+ "block-buffer",
597
+ "crypto-common",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "dirs"
602
+ version = "5.0.1"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
605
+ dependencies = [
606
+ "dirs-sys",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "dirs-sys"
611
+ version = "0.4.1"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
614
+ dependencies = [
615
+ "libc",
616
+ "option-ext",
617
+ "redox_users",
618
+ "windows-sys 0.48.0",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "displaydoc"
623
+ version = "0.2.5"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
626
+ dependencies = [
627
+ "proc-macro2",
628
+ "quote",
629
+ "syn",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "either"
634
+ version = "1.15.0"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
637
+
638
+ [[package]]
639
+ name = "email_address"
640
+ version = "0.2.9"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
643
+ dependencies = [
644
+ "serde",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "encode_unicode"
649
+ version = "1.0.0"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
652
+
653
+ [[package]]
654
+ name = "encoding_rs"
655
+ version = "0.8.35"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
658
+ dependencies = [
659
+ "cfg-if",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "equivalent"
664
+ version = "1.0.2"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
667
+
668
+ [[package]]
669
+ name = "erased-serde"
670
+ version = "0.4.9"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3"
673
+ dependencies = [
674
+ "serde",
675
+ "serde_core",
676
+ "typeid",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "errno"
681
+ version = "0.3.14"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
684
+ dependencies = [
685
+ "libc",
686
+ "windows-sys 0.61.2",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "expect-json"
691
+ version = "1.9.0"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "5325e3924286c2263a3f01ddd09ddae9ded098fffffe4182dad3b140243119f3"
694
+ dependencies = [
695
+ "chrono",
696
+ "email_address",
697
+ "expect-json-macros",
698
+ "num",
699
+ "regex",
700
+ "serde",
701
+ "serde_json",
702
+ "thiserror 2.0.18",
703
+ "typetag",
704
+ "uuid",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "expect-json-macros"
709
+ version = "1.9.0"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "f464e1e518bc97a6749590758411784df7dda4f36384e1fb11a58f040c1d0459"
712
+ dependencies = [
713
+ "proc-macro2",
714
+ "quote",
715
+ "syn",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "fallible-iterator"
720
+ version = "0.3.0"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
723
+
724
+ [[package]]
725
+ name = "fallible-streaming-iterator"
726
+ version = "0.1.9"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
729
+
730
+ [[package]]
731
+ name = "fastrand"
732
+ version = "2.3.0"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
735
+
736
+ [[package]]
737
+ name = "find-msvc-tools"
738
+ version = "0.1.9"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
741
+
742
+ [[package]]
743
+ name = "fixedbitset"
744
+ version = "0.5.7"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
747
+
748
+ [[package]]
749
+ name = "flate2"
750
+ version = "1.1.9"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
753
+ dependencies = [
754
+ "crc32fast",
755
+ "miniz_oxide",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "fnv"
760
+ version = "1.0.7"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
763
+
764
+ [[package]]
765
+ name = "foreign-types"
766
+ version = "0.3.2"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
769
+ dependencies = [
770
+ "foreign-types-shared",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "foreign-types-shared"
775
+ version = "0.1.1"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
778
+
779
+ [[package]]
780
+ name = "form_urlencoded"
781
+ version = "1.2.2"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
784
+ dependencies = [
785
+ "percent-encoding",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "futures"
790
+ version = "0.3.31"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
793
+ dependencies = [
794
+ "futures-channel",
795
+ "futures-core",
796
+ "futures-executor",
797
+ "futures-io",
798
+ "futures-sink",
799
+ "futures-task",
800
+ "futures-util",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "futures-channel"
805
+ version = "0.3.31"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
808
+ dependencies = [
809
+ "futures-core",
810
+ "futures-sink",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "futures-core"
815
+ version = "0.3.31"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
818
+
819
+ [[package]]
820
+ name = "futures-executor"
821
+ version = "0.3.31"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
824
+ dependencies = [
825
+ "futures-core",
826
+ "futures-task",
827
+ "futures-util",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "futures-io"
832
+ version = "0.3.31"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
835
+
836
+ [[package]]
837
+ name = "futures-macro"
838
+ version = "0.3.31"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
841
+ dependencies = [
842
+ "proc-macro2",
843
+ "quote",
844
+ "syn",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "futures-sink"
849
+ version = "0.3.31"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
852
+
853
+ [[package]]
854
+ name = "futures-task"
855
+ version = "0.3.31"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
858
+
859
+ [[package]]
860
+ name = "futures-util"
861
+ version = "0.3.31"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
864
+ dependencies = [
865
+ "futures-channel",
866
+ "futures-core",
867
+ "futures-io",
868
+ "futures-macro",
869
+ "futures-sink",
870
+ "futures-task",
871
+ "memchr",
872
+ "pin-project-lite",
873
+ "pin-utils",
874
+ "slab",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "generic-array"
879
+ version = "0.14.7"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
882
+ dependencies = [
883
+ "typenum",
884
+ "version_check",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "getrandom"
889
+ version = "0.2.17"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
892
+ dependencies = [
893
+ "cfg-if",
894
+ "js-sys",
895
+ "libc",
896
+ "wasi",
897
+ "wasm-bindgen",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "getrandom"
902
+ version = "0.3.4"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
905
+ dependencies = [
906
+ "cfg-if",
907
+ "js-sys",
908
+ "libc",
909
+ "r-efi",
910
+ "wasip2",
911
+ "wasm-bindgen",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "h2"
916
+ version = "0.4.13"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
919
+ dependencies = [
920
+ "atomic-waker",
921
+ "bytes",
922
+ "fnv",
923
+ "futures-core",
924
+ "futures-sink",
925
+ "http",
926
+ "indexmap",
927
+ "slab",
928
+ "tokio",
929
+ "tokio-util",
930
+ "tracing",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "half"
935
+ version = "2.7.1"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
938
+ dependencies = [
939
+ "cfg-if",
940
+ "crunchy",
941
+ "zerocopy",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "hashbrown"
946
+ version = "0.14.5"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
949
+ dependencies = [
950
+ "ahash",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "hashbrown"
955
+ version = "0.16.1"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
958
+
959
+ [[package]]
960
+ name = "hashlink"
961
+ version = "0.9.1"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
964
+ dependencies = [
965
+ "hashbrown 0.14.5",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "heck"
970
+ version = "0.5.0"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
973
+
974
+ [[package]]
975
+ name = "hermit-abi"
976
+ version = "0.5.2"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
979
+
980
+ [[package]]
981
+ name = "hiq-adapter-ibm"
982
+ version = "1.0.1"
983
+ dependencies = [
984
+ "async-trait",
985
+ "chrono",
986
+ "hiq-hal",
987
+ "hiq-ir",
988
+ "hiq-qasm3",
989
+ "reqwest",
990
+ "serde",
991
+ "serde_json",
992
+ "thiserror 2.0.18",
993
+ "tokio",
994
+ "tracing",
995
+ "uuid",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "hiq-adapter-iqm"
1000
+ version = "1.0.1"
1001
+ dependencies = [
1002
+ "async-trait",
1003
+ "chrono",
1004
+ "hiq-hal",
1005
+ "hiq-ir",
1006
+ "hiq-qasm3",
1007
+ "reqwest",
1008
+ "rustc-hash",
1009
+ "serde",
1010
+ "serde_json",
1011
+ "thiserror 2.0.18",
1012
+ "tokio",
1013
+ "tracing",
1014
+ "uuid",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "hiq-adapter-qdmi"
1019
+ version = "1.0.1"
1020
+ dependencies = [
1021
+ "async-trait",
1022
+ "chrono",
1023
+ "hiq-hal",
1024
+ "hiq-ir",
1025
+ "hiq-qasm3",
1026
+ "rustc-hash",
1027
+ "serde",
1028
+ "serde_json",
1029
+ "thiserror 2.0.18",
1030
+ "tokio",
1031
+ "tracing",
1032
+ "uuid",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "hiq-adapter-sim"
1037
+ version = "1.0.1"
1038
+ dependencies = [
1039
+ "async-trait",
1040
+ "hiq-hal",
1041
+ "hiq-ir",
1042
+ "ndarray",
1043
+ "num-complex",
1044
+ "rand 0.8.5",
1045
+ "rustc-hash",
1046
+ "serde",
1047
+ "serde_json",
1048
+ "thiserror 2.0.18",
1049
+ "tokio",
1050
+ "tracing",
1051
+ "uuid",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "hiq-auto"
1056
+ version = "1.0.1"
1057
+ dependencies = [
1058
+ "hiq-ir",
1059
+ "petgraph",
1060
+ "proptest",
1061
+ "rustc-hash",
1062
+ "thiserror 2.0.18",
1063
+ "tracing",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "hiq-cli"
1068
+ version = "1.0.1"
1069
+ dependencies = [
1070
+ "anyhow",
1071
+ "clap",
1072
+ "console",
1073
+ "hiq-adapter-ibm",
1074
+ "hiq-adapter-iqm",
1075
+ "hiq-adapter-sim",
1076
+ "hiq-compile",
1077
+ "hiq-hal",
1078
+ "hiq-ir",
1079
+ "hiq-qasm3",
1080
+ "indicatif",
1081
+ "serde",
1082
+ "serde_json",
1083
+ "serde_yaml",
1084
+ "tokio",
1085
+ "tracing",
1086
+ "tracing-subscriber",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "hiq-compile"
1091
+ version = "1.0.1"
1092
+ dependencies = [
1093
+ "hiq-ir",
1094
+ "num-complex",
1095
+ "petgraph",
1096
+ "proptest",
1097
+ "rustc-hash",
1098
+ "serde",
1099
+ "serde_json",
1100
+ "thiserror 2.0.18",
1101
+ "tracing",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "hiq-dashboard"
1106
+ version = "1.0.1"
1107
+ dependencies = [
1108
+ "anyhow",
1109
+ "axum",
1110
+ "axum-test",
1111
+ "chrono",
1112
+ "futures",
1113
+ "hiq-adapter-sim",
1114
+ "hiq-compile",
1115
+ "hiq-hal",
1116
+ "hiq-ir",
1117
+ "hiq-qasm3",
1118
+ "hiq-sched",
1119
+ "rustc-hash",
1120
+ "serde",
1121
+ "serde_json",
1122
+ "thiserror 2.0.18",
1123
+ "tokio",
1124
+ "tower",
1125
+ "tower-http",
1126
+ "tracing",
1127
+ "tracing-subscriber",
1128
+ "uuid",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "hiq-demos"
1133
+ version = "1.0.1"
1134
+ dependencies = [
1135
+ "async-trait",
1136
+ "clap",
1137
+ "console",
1138
+ "hiq-hal",
1139
+ "hiq-ir",
1140
+ "hiq-qasm3",
1141
+ "hiq-sched",
1142
+ "indicatif",
1143
+ "num-complex",
1144
+ "rand 0.8.5",
1145
+ "serde",
1146
+ "serde_json",
1147
+ "tokio",
1148
+ "tracing",
1149
+ "tracing-subscriber",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "hiq-hal"
1154
+ version = "1.0.1"
1155
+ dependencies = [
1156
+ "async-trait",
1157
+ "chrono",
1158
+ "dirs",
1159
+ "hiq-ir",
1160
+ "reqwest",
1161
+ "rustc-hash",
1162
+ "serde",
1163
+ "serde_json",
1164
+ "thiserror 2.0.18",
1165
+ "tokio",
1166
+ "tracing",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "hiq-ir"
1171
+ version = "1.0.1"
1172
+ dependencies = [
1173
+ "criterion",
1174
+ "num-complex",
1175
+ "petgraph",
1176
+ "proptest",
1177
+ "rustc-hash",
1178
+ "serde",
1179
+ "serde_json",
1180
+ "thiserror 2.0.18",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "hiq-python"
1185
+ version = "1.0.1"
1186
+ dependencies = [
1187
+ "hiq-compile",
1188
+ "hiq-ir",
1189
+ "hiq-qasm3",
1190
+ "num-complex",
1191
+ "pyo3",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "hiq-qasm3"
1196
+ version = "1.0.1"
1197
+ dependencies = [
1198
+ "hiq-ir",
1199
+ "logos",
1200
+ "proptest",
1201
+ "serde",
1202
+ "thiserror 2.0.18",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "hiq-sched"
1207
+ version = "1.0.1"
1208
+ dependencies = [
1209
+ "async-trait",
1210
+ "chrono",
1211
+ "futures",
1212
+ "hiq-hal",
1213
+ "hiq-ir",
1214
+ "hiq-qasm3",
1215
+ "petgraph",
1216
+ "rusqlite",
1217
+ "rustc-hash",
1218
+ "serde",
1219
+ "serde_json",
1220
+ "tempfile",
1221
+ "thiserror 2.0.18",
1222
+ "tokio",
1223
+ "tracing",
1224
+ "uuid",
1225
+ ]
1226
+
1227
+ [[package]]
1228
+ name = "hiq-types"
1229
+ version = "1.0.1"
1230
+ dependencies = [
1231
+ "hiq-ir",
1232
+ "proptest",
1233
+ "serde",
1234
+ "thiserror 2.0.18",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "http"
1239
+ version = "1.4.0"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1242
+ dependencies = [
1243
+ "bytes",
1244
+ "itoa",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "http-body"
1249
+ version = "1.0.1"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1252
+ dependencies = [
1253
+ "bytes",
1254
+ "http",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "http-body-util"
1259
+ version = "0.1.3"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1262
+ dependencies = [
1263
+ "bytes",
1264
+ "futures-core",
1265
+ "http",
1266
+ "http-body",
1267
+ "pin-project-lite",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "httparse"
1272
+ version = "1.10.1"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1275
+
1276
+ [[package]]
1277
+ name = "httpdate"
1278
+ version = "1.0.3"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1281
+
1282
+ [[package]]
1283
+ name = "hyper"
1284
+ version = "1.8.1"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1287
+ dependencies = [
1288
+ "atomic-waker",
1289
+ "bytes",
1290
+ "futures-channel",
1291
+ "futures-core",
1292
+ "h2",
1293
+ "http",
1294
+ "http-body",
1295
+ "httparse",
1296
+ "httpdate",
1297
+ "itoa",
1298
+ "pin-project-lite",
1299
+ "pin-utils",
1300
+ "smallvec",
1301
+ "tokio",
1302
+ "want",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "hyper-rustls"
1307
+ version = "0.27.7"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1310
+ dependencies = [
1311
+ "http",
1312
+ "hyper",
1313
+ "hyper-util",
1314
+ "rustls",
1315
+ "rustls-pki-types",
1316
+ "tokio",
1317
+ "tokio-rustls",
1318
+ "tower-service",
1319
+ "webpki-roots",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "hyper-tls"
1324
+ version = "0.6.0"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
1327
+ dependencies = [
1328
+ "bytes",
1329
+ "http-body-util",
1330
+ "hyper",
1331
+ "hyper-util",
1332
+ "native-tls",
1333
+ "tokio",
1334
+ "tokio-native-tls",
1335
+ "tower-service",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "hyper-util"
1340
+ version = "0.1.20"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1343
+ dependencies = [
1344
+ "base64",
1345
+ "bytes",
1346
+ "futures-channel",
1347
+ "futures-util",
1348
+ "http",
1349
+ "http-body",
1350
+ "hyper",
1351
+ "ipnet",
1352
+ "libc",
1353
+ "percent-encoding",
1354
+ "pin-project-lite",
1355
+ "socket2",
1356
+ "system-configuration",
1357
+ "tokio",
1358
+ "tower-service",
1359
+ "tracing",
1360
+ "windows-registry",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "iana-time-zone"
1365
+ version = "0.1.65"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1368
+ dependencies = [
1369
+ "android_system_properties",
1370
+ "core-foundation-sys",
1371
+ "iana-time-zone-haiku",
1372
+ "js-sys",
1373
+ "log",
1374
+ "wasm-bindgen",
1375
+ "windows-core",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "iana-time-zone-haiku"
1380
+ version = "0.1.2"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1383
+ dependencies = [
1384
+ "cc",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "icu_collections"
1389
+ version = "2.1.1"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1392
+ dependencies = [
1393
+ "displaydoc",
1394
+ "potential_utf",
1395
+ "yoke",
1396
+ "zerofrom",
1397
+ "zerovec",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "icu_locale_core"
1402
+ version = "2.1.1"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1405
+ dependencies = [
1406
+ "displaydoc",
1407
+ "litemap",
1408
+ "tinystr",
1409
+ "writeable",
1410
+ "zerovec",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "icu_normalizer"
1415
+ version = "2.1.1"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1418
+ dependencies = [
1419
+ "icu_collections",
1420
+ "icu_normalizer_data",
1421
+ "icu_properties",
1422
+ "icu_provider",
1423
+ "smallvec",
1424
+ "zerovec",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "icu_normalizer_data"
1429
+ version = "2.1.1"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1432
+
1433
+ [[package]]
1434
+ name = "icu_properties"
1435
+ version = "2.1.2"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1438
+ dependencies = [
1439
+ "icu_collections",
1440
+ "icu_locale_core",
1441
+ "icu_properties_data",
1442
+ "icu_provider",
1443
+ "zerotrie",
1444
+ "zerovec",
1445
+ ]
1446
+
1447
+ [[package]]
1448
+ name = "icu_properties_data"
1449
+ version = "2.1.2"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1452
+
1453
+ [[package]]
1454
+ name = "icu_provider"
1455
+ version = "2.1.1"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1458
+ dependencies = [
1459
+ "displaydoc",
1460
+ "icu_locale_core",
1461
+ "writeable",
1462
+ "yoke",
1463
+ "zerofrom",
1464
+ "zerotrie",
1465
+ "zerovec",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "idna"
1470
+ version = "1.1.0"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1473
+ dependencies = [
1474
+ "idna_adapter",
1475
+ "smallvec",
1476
+ "utf8_iter",
1477
+ ]
1478
+
1479
+ [[package]]
1480
+ name = "idna_adapter"
1481
+ version = "1.2.1"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1484
+ dependencies = [
1485
+ "icu_normalizer",
1486
+ "icu_properties",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "indexmap"
1491
+ version = "2.13.0"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1494
+ dependencies = [
1495
+ "equivalent",
1496
+ "hashbrown 0.16.1",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "indicatif"
1501
+ version = "0.17.11"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1504
+ dependencies = [
1505
+ "console",
1506
+ "number_prefix",
1507
+ "portable-atomic",
1508
+ "unicode-width",
1509
+ "web-time",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "indoc"
1514
+ version = "2.0.7"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1517
+ dependencies = [
1518
+ "rustversion",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "inventory"
1523
+ version = "0.3.21"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
1526
+ dependencies = [
1527
+ "rustversion",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "ipnet"
1532
+ version = "2.11.0"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1535
+
1536
+ [[package]]
1537
+ name = "iri-string"
1538
+ version = "0.7.10"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1541
+ dependencies = [
1542
+ "memchr",
1543
+ "serde",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "is-terminal"
1548
+ version = "0.4.17"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1551
+ dependencies = [
1552
+ "hermit-abi",
1553
+ "libc",
1554
+ "windows-sys 0.61.2",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "is_terminal_polyfill"
1559
+ version = "1.70.2"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1562
+
1563
+ [[package]]
1564
+ name = "itertools"
1565
+ version = "0.10.5"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1568
+ dependencies = [
1569
+ "either",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "itoa"
1574
+ version = "1.0.17"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1577
+
1578
+ [[package]]
1579
+ name = "js-sys"
1580
+ version = "0.3.85"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
1583
+ dependencies = [
1584
+ "once_cell",
1585
+ "wasm-bindgen",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "lazy_static"
1590
+ version = "1.5.0"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1593
+
1594
+ [[package]]
1595
+ name = "libc"
1596
+ version = "0.2.180"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
1599
+
1600
+ [[package]]
1601
+ name = "libredox"
1602
+ version = "0.1.12"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
1605
+ dependencies = [
1606
+ "bitflags",
1607
+ "libc",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "libsqlite3-sys"
1612
+ version = "0.28.0"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
1615
+ dependencies = [
1616
+ "cc",
1617
+ "pkg-config",
1618
+ "vcpkg",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "linux-raw-sys"
1623
+ version = "0.11.0"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1626
+
1627
+ [[package]]
1628
+ name = "litemap"
1629
+ version = "0.8.1"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1632
+
1633
+ [[package]]
1634
+ name = "lock_api"
1635
+ version = "0.4.14"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1638
+ dependencies = [
1639
+ "scopeguard",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "log"
1644
+ version = "0.4.29"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1647
+
1648
+ [[package]]
1649
+ name = "logos"
1650
+ version = "0.14.4"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "7251356ef8cb7aec833ddf598c6cb24d17b689d20b993f9d11a3d764e34e6458"
1653
+ dependencies = [
1654
+ "logos-derive",
1655
+ ]
1656
+
1657
+ [[package]]
1658
+ name = "logos-codegen"
1659
+ version = "0.14.4"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "59f80069600c0d66734f5ff52cc42f2dabd6b29d205f333d61fd7832e9e9963f"
1662
+ dependencies = [
1663
+ "beef",
1664
+ "fnv",
1665
+ "lazy_static",
1666
+ "proc-macro2",
1667
+ "quote",
1668
+ "regex-syntax",
1669
+ "syn",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "logos-derive"
1674
+ version = "0.14.4"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "24fb722b06a9dc12adb0963ed585f19fc61dc5413e6a9be9422ef92c091e731d"
1677
+ dependencies = [
1678
+ "logos-codegen",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "lru-slab"
1683
+ version = "0.1.2"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1686
+
1687
+ [[package]]
1688
+ name = "lumi-hybrid"
1689
+ version = "1.0.0"
1690
+ dependencies = [
1691
+ "anyhow",
1692
+ "approx",
1693
+ "clap",
1694
+ "hiq-adapter-iqm",
1695
+ "hiq-adapter-sim",
1696
+ "hiq-compile",
1697
+ "hiq-hal",
1698
+ "hiq-ir",
1699
+ "hiq-qasm3",
1700
+ "hiq-sched",
1701
+ "serde",
1702
+ "serde_json",
1703
+ "tokio",
1704
+ "tracing",
1705
+ "tracing-subscriber",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "matchers"
1710
+ version = "0.2.0"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1713
+ dependencies = [
1714
+ "regex-automata",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "matchit"
1719
+ version = "0.8.4"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1722
+
1723
+ [[package]]
1724
+ name = "matrixmultiply"
1725
+ version = "0.3.10"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1728
+ dependencies = [
1729
+ "autocfg",
1730
+ "rawpointer",
1731
+ ]
1732
+
1733
+ [[package]]
1734
+ name = "memchr"
1735
+ version = "2.7.6"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1738
+
1739
+ [[package]]
1740
+ name = "memoffset"
1741
+ version = "0.9.1"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1744
+ dependencies = [
1745
+ "autocfg",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "mime"
1750
+ version = "0.3.17"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1753
+
1754
+ [[package]]
1755
+ name = "miniz_oxide"
1756
+ version = "0.8.9"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1759
+ dependencies = [
1760
+ "adler2",
1761
+ "simd-adler32",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "mio"
1766
+ version = "1.1.1"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1769
+ dependencies = [
1770
+ "libc",
1771
+ "wasi",
1772
+ "windows-sys 0.61.2",
1773
+ ]
1774
+
1775
+ [[package]]
1776
+ name = "native-tls"
1777
+ version = "0.2.14"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1780
+ dependencies = [
1781
+ "libc",
1782
+ "log",
1783
+ "openssl",
1784
+ "openssl-probe",
1785
+ "openssl-sys",
1786
+ "schannel",
1787
+ "security-framework",
1788
+ "security-framework-sys",
1789
+ "tempfile",
1790
+ ]
1791
+
1792
+ [[package]]
1793
+ name = "ndarray"
1794
+ version = "0.16.1"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
1797
+ dependencies = [
1798
+ "matrixmultiply",
1799
+ "num-complex",
1800
+ "num-integer",
1801
+ "num-traits",
1802
+ "portable-atomic",
1803
+ "portable-atomic-util",
1804
+ "rawpointer",
1805
+ ]
1806
+
1807
+ [[package]]
1808
+ name = "nu-ansi-term"
1809
+ version = "0.50.3"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1812
+ dependencies = [
1813
+ "windows-sys 0.61.2",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "num"
1818
+ version = "0.4.3"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1821
+ dependencies = [
1822
+ "num-bigint",
1823
+ "num-complex",
1824
+ "num-integer",
1825
+ "num-iter",
1826
+ "num-rational",
1827
+ "num-traits",
1828
+ ]
1829
+
1830
+ [[package]]
1831
+ name = "num-bigint"
1832
+ version = "0.4.6"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1835
+ dependencies = [
1836
+ "num-integer",
1837
+ "num-traits",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "num-complex"
1842
+ version = "0.4.6"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1845
+ dependencies = [
1846
+ "num-traits",
1847
+ "serde",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "num-conv"
1852
+ version = "0.2.0"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1855
+
1856
+ [[package]]
1857
+ name = "num-integer"
1858
+ version = "0.1.46"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1861
+ dependencies = [
1862
+ "num-traits",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "num-iter"
1867
+ version = "0.1.45"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1870
+ dependencies = [
1871
+ "autocfg",
1872
+ "num-integer",
1873
+ "num-traits",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "num-rational"
1878
+ version = "0.4.2"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1881
+ dependencies = [
1882
+ "num-bigint",
1883
+ "num-integer",
1884
+ "num-traits",
1885
+ ]
1886
+
1887
+ [[package]]
1888
+ name = "num-traits"
1889
+ version = "0.2.19"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1892
+ dependencies = [
1893
+ "autocfg",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "number_prefix"
1898
+ version = "0.4.0"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1901
+
1902
+ [[package]]
1903
+ name = "once_cell"
1904
+ version = "1.21.3"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1907
+
1908
+ [[package]]
1909
+ name = "once_cell_polyfill"
1910
+ version = "1.70.2"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1913
+
1914
+ [[package]]
1915
+ name = "oorandom"
1916
+ version = "11.1.5"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1919
+
1920
+ [[package]]
1921
+ name = "openssl"
1922
+ version = "0.10.75"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
1925
+ dependencies = [
1926
+ "bitflags",
1927
+ "cfg-if",
1928
+ "foreign-types",
1929
+ "libc",
1930
+ "once_cell",
1931
+ "openssl-macros",
1932
+ "openssl-sys",
1933
+ ]
1934
+
1935
+ [[package]]
1936
+ name = "openssl-macros"
1937
+ version = "0.1.1"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1940
+ dependencies = [
1941
+ "proc-macro2",
1942
+ "quote",
1943
+ "syn",
1944
+ ]
1945
+
1946
+ [[package]]
1947
+ name = "openssl-probe"
1948
+ version = "0.1.6"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1951
+
1952
+ [[package]]
1953
+ name = "openssl-sys"
1954
+ version = "0.9.111"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
1957
+ dependencies = [
1958
+ "cc",
1959
+ "libc",
1960
+ "pkg-config",
1961
+ "vcpkg",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "option-ext"
1966
+ version = "0.2.0"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1969
+
1970
+ [[package]]
1971
+ name = "parking_lot"
1972
+ version = "0.12.5"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1975
+ dependencies = [
1976
+ "lock_api",
1977
+ "parking_lot_core",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "parking_lot_core"
1982
+ version = "0.9.12"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1985
+ dependencies = [
1986
+ "cfg-if",
1987
+ "libc",
1988
+ "redox_syscall",
1989
+ "smallvec",
1990
+ "windows-link",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "percent-encoding"
1995
+ version = "2.3.2"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1998
+
1999
+ [[package]]
2000
+ name = "petgraph"
2001
+ version = "0.7.1"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
2004
+ dependencies = [
2005
+ "fixedbitset",
2006
+ "indexmap",
2007
+ ]
2008
+
2009
+ [[package]]
2010
+ name = "pin-project-lite"
2011
+ version = "0.2.16"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2014
+
2015
+ [[package]]
2016
+ name = "pin-utils"
2017
+ version = "0.1.0"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2020
+
2021
+ [[package]]
2022
+ name = "pkg-config"
2023
+ version = "0.3.32"
2024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2025
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2026
+
2027
+ [[package]]
2028
+ name = "plotters"
2029
+ version = "0.3.7"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2032
+ dependencies = [
2033
+ "num-traits",
2034
+ "plotters-backend",
2035
+ "plotters-svg",
2036
+ "wasm-bindgen",
2037
+ "web-sys",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "plotters-backend"
2042
+ version = "0.3.7"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2045
+
2046
+ [[package]]
2047
+ name = "plotters-svg"
2048
+ version = "0.3.7"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2051
+ dependencies = [
2052
+ "plotters-backend",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "portable-atomic"
2057
+ version = "1.13.1"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2060
+
2061
+ [[package]]
2062
+ name = "portable-atomic-util"
2063
+ version = "0.2.5"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
2066
+ dependencies = [
2067
+ "portable-atomic",
2068
+ ]
2069
+
2070
+ [[package]]
2071
+ name = "potential_utf"
2072
+ version = "0.1.4"
2073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2074
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2075
+ dependencies = [
2076
+ "zerovec",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "powerfmt"
2081
+ version = "0.2.0"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2084
+
2085
+ [[package]]
2086
+ name = "ppv-lite86"
2087
+ version = "0.2.21"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2090
+ dependencies = [
2091
+ "zerocopy",
2092
+ ]
2093
+
2094
+ [[package]]
2095
+ name = "pretty_assertions"
2096
+ version = "1.4.1"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
2099
+ dependencies = [
2100
+ "diff",
2101
+ "yansi",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "proc-macro2"
2106
+ version = "1.0.106"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2109
+ dependencies = [
2110
+ "unicode-ident",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "proptest"
2115
+ version = "1.10.0"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
2118
+ dependencies = [
2119
+ "bit-set",
2120
+ "bit-vec",
2121
+ "bitflags",
2122
+ "num-traits",
2123
+ "rand 0.9.2",
2124
+ "rand_chacha 0.9.0",
2125
+ "rand_xorshift",
2126
+ "regex-syntax",
2127
+ "rusty-fork",
2128
+ "tempfile",
2129
+ "unarray",
2130
+ ]
2131
+
2132
+ [[package]]
2133
+ name = "pyo3"
2134
+ version = "0.23.5"
2135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2136
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
2137
+ dependencies = [
2138
+ "cfg-if",
2139
+ "indoc",
2140
+ "libc",
2141
+ "memoffset",
2142
+ "once_cell",
2143
+ "portable-atomic",
2144
+ "pyo3-build-config",
2145
+ "pyo3-ffi",
2146
+ "pyo3-macros",
2147
+ "unindent",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "pyo3-build-config"
2152
+ version = "0.23.5"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
2155
+ dependencies = [
2156
+ "once_cell",
2157
+ "target-lexicon",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "pyo3-ffi"
2162
+ version = "0.23.5"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
2165
+ dependencies = [
2166
+ "libc",
2167
+ "pyo3-build-config",
2168
+ ]
2169
+
2170
+ [[package]]
2171
+ name = "pyo3-macros"
2172
+ version = "0.23.5"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
2175
+ dependencies = [
2176
+ "proc-macro2",
2177
+ "pyo3-macros-backend",
2178
+ "quote",
2179
+ "syn",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "pyo3-macros-backend"
2184
+ version = "0.23.5"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
2187
+ dependencies = [
2188
+ "heck",
2189
+ "proc-macro2",
2190
+ "pyo3-build-config",
2191
+ "quote",
2192
+ "syn",
2193
+ ]
2194
+
2195
+ [[package]]
2196
+ name = "quick-error"
2197
+ version = "1.2.3"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2200
+
2201
+ [[package]]
2202
+ name = "quinn"
2203
+ version = "0.11.9"
2204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2205
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2206
+ dependencies = [
2207
+ "bytes",
2208
+ "cfg_aliases",
2209
+ "pin-project-lite",
2210
+ "quinn-proto",
2211
+ "quinn-udp",
2212
+ "rustc-hash",
2213
+ "rustls",
2214
+ "socket2",
2215
+ "thiserror 2.0.18",
2216
+ "tokio",
2217
+ "tracing",
2218
+ "web-time",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "quinn-proto"
2223
+ version = "0.11.13"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2226
+ dependencies = [
2227
+ "bytes",
2228
+ "getrandom 0.3.4",
2229
+ "lru-slab",
2230
+ "rand 0.9.2",
2231
+ "ring",
2232
+ "rustc-hash",
2233
+ "rustls",
2234
+ "rustls-pki-types",
2235
+ "slab",
2236
+ "thiserror 2.0.18",
2237
+ "tinyvec",
2238
+ "tracing",
2239
+ "web-time",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "quinn-udp"
2244
+ version = "0.5.14"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2247
+ dependencies = [
2248
+ "cfg_aliases",
2249
+ "libc",
2250
+ "once_cell",
2251
+ "socket2",
2252
+ "tracing",
2253
+ "windows-sys 0.60.2",
2254
+ ]
2255
+
2256
+ [[package]]
2257
+ name = "quote"
2258
+ version = "1.0.44"
2259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2260
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
2261
+ dependencies = [
2262
+ "proc-macro2",
2263
+ ]
2264
+
2265
+ [[package]]
2266
+ name = "r-efi"
2267
+ version = "5.3.0"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2270
+
2271
+ [[package]]
2272
+ name = "rand"
2273
+ version = "0.8.5"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2276
+ dependencies = [
2277
+ "libc",
2278
+ "rand_chacha 0.3.1",
2279
+ "rand_core 0.6.4",
2280
+ ]
2281
+
2282
+ [[package]]
2283
+ name = "rand"
2284
+ version = "0.9.2"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2287
+ dependencies = [
2288
+ "rand_chacha 0.9.0",
2289
+ "rand_core 0.9.5",
2290
+ ]
2291
+
2292
+ [[package]]
2293
+ name = "rand_chacha"
2294
+ version = "0.3.1"
2295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2296
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2297
+ dependencies = [
2298
+ "ppv-lite86",
2299
+ "rand_core 0.6.4",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "rand_chacha"
2304
+ version = "0.9.0"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2307
+ dependencies = [
2308
+ "ppv-lite86",
2309
+ "rand_core 0.9.5",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "rand_core"
2314
+ version = "0.6.4"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2317
+ dependencies = [
2318
+ "getrandom 0.2.17",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "rand_core"
2323
+ version = "0.9.5"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2326
+ dependencies = [
2327
+ "getrandom 0.3.4",
2328
+ ]
2329
+
2330
+ [[package]]
2331
+ name = "rand_xorshift"
2332
+ version = "0.4.0"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2335
+ dependencies = [
2336
+ "rand_core 0.9.5",
2337
+ ]
2338
+
2339
+ [[package]]
2340
+ name = "rawpointer"
2341
+ version = "0.2.1"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2344
+
2345
+ [[package]]
2346
+ name = "rayon"
2347
+ version = "1.11.0"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2350
+ dependencies = [
2351
+ "either",
2352
+ "rayon-core",
2353
+ ]
2354
+
2355
+ [[package]]
2356
+ name = "rayon-core"
2357
+ version = "1.13.0"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2360
+ dependencies = [
2361
+ "crossbeam-deque",
2362
+ "crossbeam-utils",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "redox_syscall"
2367
+ version = "0.5.18"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2370
+ dependencies = [
2371
+ "bitflags",
2372
+ ]
2373
+
2374
+ [[package]]
2375
+ name = "redox_users"
2376
+ version = "0.4.6"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2379
+ dependencies = [
2380
+ "getrandom 0.2.17",
2381
+ "libredox",
2382
+ "thiserror 1.0.69",
2383
+ ]
2384
+
2385
+ [[package]]
2386
+ name = "regex"
2387
+ version = "1.12.3"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2390
+ dependencies = [
2391
+ "aho-corasick",
2392
+ "memchr",
2393
+ "regex-automata",
2394
+ "regex-syntax",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "regex-automata"
2399
+ version = "0.4.14"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2402
+ dependencies = [
2403
+ "aho-corasick",
2404
+ "memchr",
2405
+ "regex-syntax",
2406
+ ]
2407
+
2408
+ [[package]]
2409
+ name = "regex-syntax"
2410
+ version = "0.8.9"
2411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2412
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
2413
+
2414
+ [[package]]
2415
+ name = "reqwest"
2416
+ version = "0.12.28"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2419
+ dependencies = [
2420
+ "base64",
2421
+ "bytes",
2422
+ "encoding_rs",
2423
+ "futures-core",
2424
+ "h2",
2425
+ "http",
2426
+ "http-body",
2427
+ "http-body-util",
2428
+ "hyper",
2429
+ "hyper-rustls",
2430
+ "hyper-tls",
2431
+ "hyper-util",
2432
+ "js-sys",
2433
+ "log",
2434
+ "mime",
2435
+ "native-tls",
2436
+ "percent-encoding",
2437
+ "pin-project-lite",
2438
+ "quinn",
2439
+ "rustls",
2440
+ "rustls-pki-types",
2441
+ "serde",
2442
+ "serde_json",
2443
+ "serde_urlencoded",
2444
+ "sync_wrapper",
2445
+ "tokio",
2446
+ "tokio-native-tls",
2447
+ "tokio-rustls",
2448
+ "tower",
2449
+ "tower-http",
2450
+ "tower-service",
2451
+ "url",
2452
+ "wasm-bindgen",
2453
+ "wasm-bindgen-futures",
2454
+ "web-sys",
2455
+ "webpki-roots",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "reserve-port"
2460
+ version = "2.3.0"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "21918d6644020c6f6ef1993242989bf6d4952d2e025617744f184c02df51c356"
2463
+ dependencies = [
2464
+ "thiserror 2.0.18",
2465
+ ]
2466
+
2467
+ [[package]]
2468
+ name = "ring"
2469
+ version = "0.17.14"
2470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2471
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2472
+ dependencies = [
2473
+ "cc",
2474
+ "cfg-if",
2475
+ "getrandom 0.2.17",
2476
+ "libc",
2477
+ "untrusted",
2478
+ "windows-sys 0.52.0",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "rusqlite"
2483
+ version = "0.31.0"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
2486
+ dependencies = [
2487
+ "bitflags",
2488
+ "fallible-iterator",
2489
+ "fallible-streaming-iterator",
2490
+ "hashlink",
2491
+ "libsqlite3-sys",
2492
+ "smallvec",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "rust-multipart-rfc7578_2"
2497
+ version = "0.8.0"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "c839d037155ebc06a571e305af66ff9fd9063a6e662447051737e1ac75beea41"
2500
+ dependencies = [
2501
+ "bytes",
2502
+ "futures-core",
2503
+ "futures-util",
2504
+ "http",
2505
+ "mime",
2506
+ "rand 0.9.2",
2507
+ "thiserror 2.0.18",
2508
+ ]
2509
+
2510
+ [[package]]
2511
+ name = "rustc-hash"
2512
+ version = "2.1.1"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2515
+
2516
+ [[package]]
2517
+ name = "rustix"
2518
+ version = "1.1.3"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
2521
+ dependencies = [
2522
+ "bitflags",
2523
+ "errno",
2524
+ "libc",
2525
+ "linux-raw-sys",
2526
+ "windows-sys 0.61.2",
2527
+ ]
2528
+
2529
+ [[package]]
2530
+ name = "rustls"
2531
+ version = "0.23.36"
2532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2533
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
2534
+ dependencies = [
2535
+ "once_cell",
2536
+ "ring",
2537
+ "rustls-pki-types",
2538
+ "rustls-webpki",
2539
+ "subtle",
2540
+ "zeroize",
2541
+ ]
2542
+
2543
+ [[package]]
2544
+ name = "rustls-pki-types"
2545
+ version = "1.14.0"
2546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2547
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2548
+ dependencies = [
2549
+ "web-time",
2550
+ "zeroize",
2551
+ ]
2552
+
2553
+ [[package]]
2554
+ name = "rustls-webpki"
2555
+ version = "0.103.9"
2556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2557
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
2558
+ dependencies = [
2559
+ "ring",
2560
+ "rustls-pki-types",
2561
+ "untrusted",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "rustversion"
2566
+ version = "1.0.22"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2569
+
2570
+ [[package]]
2571
+ name = "rusty-fork"
2572
+ version = "0.3.1"
2573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2574
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2575
+ dependencies = [
2576
+ "fnv",
2577
+ "quick-error",
2578
+ "tempfile",
2579
+ "wait-timeout",
2580
+ ]
2581
+
2582
+ [[package]]
2583
+ name = "ryu"
2584
+ version = "1.0.22"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
2587
+
2588
+ [[package]]
2589
+ name = "same-file"
2590
+ version = "1.0.6"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2593
+ dependencies = [
2594
+ "winapi-util",
2595
+ ]
2596
+
2597
+ [[package]]
2598
+ name = "schannel"
2599
+ version = "0.1.28"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2602
+ dependencies = [
2603
+ "windows-sys 0.61.2",
2604
+ ]
2605
+
2606
+ [[package]]
2607
+ name = "scopeguard"
2608
+ version = "1.2.0"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2611
+
2612
+ [[package]]
2613
+ name = "security-framework"
2614
+ version = "2.11.1"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2617
+ dependencies = [
2618
+ "bitflags",
2619
+ "core-foundation",
2620
+ "core-foundation-sys",
2621
+ "libc",
2622
+ "security-framework-sys",
2623
+ ]
2624
+
2625
+ [[package]]
2626
+ name = "security-framework-sys"
2627
+ version = "2.15.0"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
2630
+ dependencies = [
2631
+ "core-foundation-sys",
2632
+ "libc",
2633
+ ]
2634
+
2635
+ [[package]]
2636
+ name = "serde"
2637
+ version = "1.0.228"
2638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2639
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2640
+ dependencies = [
2641
+ "serde_core",
2642
+ "serde_derive",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "serde_core"
2647
+ version = "1.0.228"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2650
+ dependencies = [
2651
+ "serde_derive",
2652
+ ]
2653
+
2654
+ [[package]]
2655
+ name = "serde_derive"
2656
+ version = "1.0.228"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2659
+ dependencies = [
2660
+ "proc-macro2",
2661
+ "quote",
2662
+ "syn",
2663
+ ]
2664
+
2665
+ [[package]]
2666
+ name = "serde_json"
2667
+ version = "1.0.149"
2668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2669
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2670
+ dependencies = [
2671
+ "itoa",
2672
+ "memchr",
2673
+ "serde",
2674
+ "serde_core",
2675
+ "zmij",
2676
+ ]
2677
+
2678
+ [[package]]
2679
+ name = "serde_path_to_error"
2680
+ version = "0.1.20"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2683
+ dependencies = [
2684
+ "itoa",
2685
+ "serde",
2686
+ "serde_core",
2687
+ ]
2688
+
2689
+ [[package]]
2690
+ name = "serde_urlencoded"
2691
+ version = "0.7.1"
2692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2693
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2694
+ dependencies = [
2695
+ "form_urlencoded",
2696
+ "itoa",
2697
+ "ryu",
2698
+ "serde",
2699
+ ]
2700
+
2701
+ [[package]]
2702
+ name = "serde_yaml"
2703
+ version = "0.9.34+deprecated"
2704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2705
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2706
+ dependencies = [
2707
+ "indexmap",
2708
+ "itoa",
2709
+ "ryu",
2710
+ "serde",
2711
+ "unsafe-libyaml",
2712
+ ]
2713
+
2714
+ [[package]]
2715
+ name = "sha1"
2716
+ version = "0.10.6"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2719
+ dependencies = [
2720
+ "cfg-if",
2721
+ "cpufeatures",
2722
+ "digest",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "sharded-slab"
2727
+ version = "0.1.7"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2730
+ dependencies = [
2731
+ "lazy_static",
2732
+ ]
2733
+
2734
+ [[package]]
2735
+ name = "shlex"
2736
+ version = "1.3.0"
2737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2738
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2739
+
2740
+ [[package]]
2741
+ name = "signal-hook-registry"
2742
+ version = "1.4.8"
2743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2744
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2745
+ dependencies = [
2746
+ "errno",
2747
+ "libc",
2748
+ ]
2749
+
2750
+ [[package]]
2751
+ name = "simd-adler32"
2752
+ version = "0.3.8"
2753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2754
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
2755
+
2756
+ [[package]]
2757
+ name = "slab"
2758
+ version = "0.4.12"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2761
+
2762
+ [[package]]
2763
+ name = "smallvec"
2764
+ version = "1.15.1"
2765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2766
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2767
+
2768
+ [[package]]
2769
+ name = "socket2"
2770
+ version = "0.6.2"
2771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2772
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
2773
+ dependencies = [
2774
+ "libc",
2775
+ "windows-sys 0.60.2",
2776
+ ]
2777
+
2778
+ [[package]]
2779
+ name = "stable_deref_trait"
2780
+ version = "1.2.1"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2783
+
2784
+ [[package]]
2785
+ name = "strsim"
2786
+ version = "0.11.1"
2787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2788
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2789
+
2790
+ [[package]]
2791
+ name = "subtle"
2792
+ version = "2.6.1"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2795
+
2796
+ [[package]]
2797
+ name = "syn"
2798
+ version = "2.0.114"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
2801
+ dependencies = [
2802
+ "proc-macro2",
2803
+ "quote",
2804
+ "unicode-ident",
2805
+ ]
2806
+
2807
+ [[package]]
2808
+ name = "sync_wrapper"
2809
+ version = "1.0.2"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2812
+ dependencies = [
2813
+ "futures-core",
2814
+ ]
2815
+
2816
+ [[package]]
2817
+ name = "synstructure"
2818
+ version = "0.13.2"
2819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2820
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2821
+ dependencies = [
2822
+ "proc-macro2",
2823
+ "quote",
2824
+ "syn",
2825
+ ]
2826
+
2827
+ [[package]]
2828
+ name = "system-configuration"
2829
+ version = "0.7.0"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2832
+ dependencies = [
2833
+ "bitflags",
2834
+ "core-foundation",
2835
+ "system-configuration-sys",
2836
+ ]
2837
+
2838
+ [[package]]
2839
+ name = "system-configuration-sys"
2840
+ version = "0.6.0"
2841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2842
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2843
+ dependencies = [
2844
+ "core-foundation-sys",
2845
+ "libc",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "target-lexicon"
2850
+ version = "0.12.16"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2853
+
2854
+ [[package]]
2855
+ name = "tempfile"
2856
+ version = "3.24.0"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
2859
+ dependencies = [
2860
+ "fastrand",
2861
+ "getrandom 0.3.4",
2862
+ "once_cell",
2863
+ "rustix",
2864
+ "windows-sys 0.61.2",
2865
+ ]
2866
+
2867
+ [[package]]
2868
+ name = "thiserror"
2869
+ version = "1.0.69"
2870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2871
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2872
+ dependencies = [
2873
+ "thiserror-impl 1.0.69",
2874
+ ]
2875
+
2876
+ [[package]]
2877
+ name = "thiserror"
2878
+ version = "2.0.18"
2879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2880
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2881
+ dependencies = [
2882
+ "thiserror-impl 2.0.18",
2883
+ ]
2884
+
2885
+ [[package]]
2886
+ name = "thiserror-impl"
2887
+ version = "1.0.69"
2888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2889
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2890
+ dependencies = [
2891
+ "proc-macro2",
2892
+ "quote",
2893
+ "syn",
2894
+ ]
2895
+
2896
+ [[package]]
2897
+ name = "thiserror-impl"
2898
+ version = "2.0.18"
2899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2900
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2901
+ dependencies = [
2902
+ "proc-macro2",
2903
+ "quote",
2904
+ "syn",
2905
+ ]
2906
+
2907
+ [[package]]
2908
+ name = "thread_local"
2909
+ version = "1.1.9"
2910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2911
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2912
+ dependencies = [
2913
+ "cfg-if",
2914
+ ]
2915
+
2916
+ [[package]]
2917
+ name = "time"
2918
+ version = "0.3.47"
2919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2920
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2921
+ dependencies = [
2922
+ "deranged",
2923
+ "itoa",
2924
+ "num-conv",
2925
+ "powerfmt",
2926
+ "serde_core",
2927
+ "time-core",
2928
+ "time-macros",
2929
+ ]
2930
+
2931
+ [[package]]
2932
+ name = "time-core"
2933
+ version = "0.1.8"
2934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2935
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2936
+
2937
+ [[package]]
2938
+ name = "time-macros"
2939
+ version = "0.2.27"
2940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2941
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2942
+ dependencies = [
2943
+ "num-conv",
2944
+ "time-core",
2945
+ ]
2946
+
2947
+ [[package]]
2948
+ name = "tinystr"
2949
+ version = "0.8.2"
2950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2951
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2952
+ dependencies = [
2953
+ "displaydoc",
2954
+ "zerovec",
2955
+ ]
2956
+
2957
+ [[package]]
2958
+ name = "tinytemplate"
2959
+ version = "1.2.1"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2962
+ dependencies = [
2963
+ "serde",
2964
+ "serde_json",
2965
+ ]
2966
+
2967
+ [[package]]
2968
+ name = "tinyvec"
2969
+ version = "1.10.0"
2970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2971
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
2972
+ dependencies = [
2973
+ "tinyvec_macros",
2974
+ ]
2975
+
2976
+ [[package]]
2977
+ name = "tinyvec_macros"
2978
+ version = "0.1.1"
2979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2980
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2981
+
2982
+ [[package]]
2983
+ name = "tokio"
2984
+ version = "1.49.0"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2987
+ dependencies = [
2988
+ "bytes",
2989
+ "libc",
2990
+ "mio",
2991
+ "parking_lot",
2992
+ "pin-project-lite",
2993
+ "signal-hook-registry",
2994
+ "socket2",
2995
+ "tokio-macros",
2996
+ "windows-sys 0.61.2",
2997
+ ]
2998
+
2999
+ [[package]]
3000
+ name = "tokio-macros"
3001
+ version = "2.6.0"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
3004
+ dependencies = [
3005
+ "proc-macro2",
3006
+ "quote",
3007
+ "syn",
3008
+ ]
3009
+
3010
+ [[package]]
3011
+ name = "tokio-native-tls"
3012
+ version = "0.3.1"
3013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3014
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3015
+ dependencies = [
3016
+ "native-tls",
3017
+ "tokio",
3018
+ ]
3019
+
3020
+ [[package]]
3021
+ name = "tokio-rustls"
3022
+ version = "0.26.4"
3023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3024
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3025
+ dependencies = [
3026
+ "rustls",
3027
+ "tokio",
3028
+ ]
3029
+
3030
+ [[package]]
3031
+ name = "tokio-tungstenite"
3032
+ version = "0.28.0"
3033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3034
+ checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857"
3035
+ dependencies = [
3036
+ "futures-util",
3037
+ "log",
3038
+ "tokio",
3039
+ "tungstenite",
3040
+ ]
3041
+
3042
+ [[package]]
3043
+ name = "tokio-util"
3044
+ version = "0.7.18"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3047
+ dependencies = [
3048
+ "bytes",
3049
+ "futures-core",
3050
+ "futures-sink",
3051
+ "pin-project-lite",
3052
+ "tokio",
3053
+ ]
3054
+
3055
+ [[package]]
3056
+ name = "tower"
3057
+ version = "0.5.3"
3058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3059
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3060
+ dependencies = [
3061
+ "futures-core",
3062
+ "futures-util",
3063
+ "pin-project-lite",
3064
+ "sync_wrapper",
3065
+ "tokio",
3066
+ "tower-layer",
3067
+ "tower-service",
3068
+ "tracing",
3069
+ ]
3070
+
3071
+ [[package]]
3072
+ name = "tower-http"
3073
+ version = "0.6.8"
3074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3075
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3076
+ dependencies = [
3077
+ "async-compression",
3078
+ "bitflags",
3079
+ "bytes",
3080
+ "futures-core",
3081
+ "futures-util",
3082
+ "http",
3083
+ "http-body",
3084
+ "iri-string",
3085
+ "pin-project-lite",
3086
+ "tokio",
3087
+ "tokio-util",
3088
+ "tower",
3089
+ "tower-layer",
3090
+ "tower-service",
3091
+ "tracing",
3092
+ ]
3093
+
3094
+ [[package]]
3095
+ name = "tower-layer"
3096
+ version = "0.3.3"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3099
+
3100
+ [[package]]
3101
+ name = "tower-service"
3102
+ version = "0.3.3"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3105
+
3106
+ [[package]]
3107
+ name = "tracing"
3108
+ version = "0.1.44"
3109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3110
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3111
+ dependencies = [
3112
+ "log",
3113
+ "pin-project-lite",
3114
+ "tracing-attributes",
3115
+ "tracing-core",
3116
+ ]
3117
+
3118
+ [[package]]
3119
+ name = "tracing-attributes"
3120
+ version = "0.1.31"
3121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3122
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3123
+ dependencies = [
3124
+ "proc-macro2",
3125
+ "quote",
3126
+ "syn",
3127
+ ]
3128
+
3129
+ [[package]]
3130
+ name = "tracing-core"
3131
+ version = "0.1.36"
3132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3133
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3134
+ dependencies = [
3135
+ "once_cell",
3136
+ "valuable",
3137
+ ]
3138
+
3139
+ [[package]]
3140
+ name = "tracing-log"
3141
+ version = "0.2.0"
3142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3143
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3144
+ dependencies = [
3145
+ "log",
3146
+ "once_cell",
3147
+ "tracing-core",
3148
+ ]
3149
+
3150
+ [[package]]
3151
+ name = "tracing-subscriber"
3152
+ version = "0.3.22"
3153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3154
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
3155
+ dependencies = [
3156
+ "matchers",
3157
+ "nu-ansi-term",
3158
+ "once_cell",
3159
+ "regex-automata",
3160
+ "sharded-slab",
3161
+ "smallvec",
3162
+ "thread_local",
3163
+ "tracing",
3164
+ "tracing-core",
3165
+ "tracing-log",
3166
+ ]
3167
+
3168
+ [[package]]
3169
+ name = "try-lock"
3170
+ version = "0.2.5"
3171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3172
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3173
+
3174
+ [[package]]
3175
+ name = "tungstenite"
3176
+ version = "0.28.0"
3177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3178
+ checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
3179
+ dependencies = [
3180
+ "bytes",
3181
+ "data-encoding",
3182
+ "http",
3183
+ "httparse",
3184
+ "log",
3185
+ "rand 0.9.2",
3186
+ "sha1",
3187
+ "thiserror 2.0.18",
3188
+ "utf-8",
3189
+ ]
3190
+
3191
+ [[package]]
3192
+ name = "typeid"
3193
+ version = "1.0.3"
3194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3195
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
3196
+
3197
+ [[package]]
3198
+ name = "typenum"
3199
+ version = "1.19.0"
3200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3201
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3202
+
3203
+ [[package]]
3204
+ name = "typetag"
3205
+ version = "0.2.21"
3206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3207
+ checksum = "be2212c8a9b9bcfca32024de14998494cf9a5dfa59ea1b829de98bac374b86bf"
3208
+ dependencies = [
3209
+ "erased-serde",
3210
+ "inventory",
3211
+ "once_cell",
3212
+ "serde",
3213
+ "typetag-impl",
3214
+ ]
3215
+
3216
+ [[package]]
3217
+ name = "typetag-impl"
3218
+ version = "0.2.21"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "27a7a9b72ba121f6f1f6c3632b85604cac41aedb5ddc70accbebb6cac83de846"
3221
+ dependencies = [
3222
+ "proc-macro2",
3223
+ "quote",
3224
+ "syn",
3225
+ ]
3226
+
3227
+ [[package]]
3228
+ name = "unarray"
3229
+ version = "0.1.4"
3230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3231
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
3232
+
3233
+ [[package]]
3234
+ name = "unicode-ident"
3235
+ version = "1.0.22"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
3238
+
3239
+ [[package]]
3240
+ name = "unicode-width"
3241
+ version = "0.2.2"
3242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3243
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3244
+
3245
+ [[package]]
3246
+ name = "unindent"
3247
+ version = "0.2.4"
3248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3249
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3250
+
3251
+ [[package]]
3252
+ name = "unsafe-libyaml"
3253
+ version = "0.2.11"
3254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3255
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3256
+
3257
+ [[package]]
3258
+ name = "untrusted"
3259
+ version = "0.9.0"
3260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3261
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3262
+
3263
+ [[package]]
3264
+ name = "url"
3265
+ version = "2.5.8"
3266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3267
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3268
+ dependencies = [
3269
+ "form_urlencoded",
3270
+ "idna",
3271
+ "percent-encoding",
3272
+ "serde",
3273
+ ]
3274
+
3275
+ [[package]]
3276
+ name = "utf-8"
3277
+ version = "0.7.6"
3278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3279
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3280
+
3281
+ [[package]]
3282
+ name = "utf8_iter"
3283
+ version = "1.0.4"
3284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3285
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3286
+
3287
+ [[package]]
3288
+ name = "utf8parse"
3289
+ version = "0.2.2"
3290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3291
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3292
+
3293
+ [[package]]
3294
+ name = "uuid"
3295
+ version = "1.20.0"
3296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3297
+ checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
3298
+ dependencies = [
3299
+ "getrandom 0.3.4",
3300
+ "js-sys",
3301
+ "serde_core",
3302
+ "wasm-bindgen",
3303
+ ]
3304
+
3305
+ [[package]]
3306
+ name = "valuable"
3307
+ version = "0.1.1"
3308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3309
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3310
+
3311
+ [[package]]
3312
+ name = "vcpkg"
3313
+ version = "0.2.15"
3314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3315
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3316
+
3317
+ [[package]]
3318
+ name = "version_check"
3319
+ version = "0.9.5"
3320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3321
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3322
+
3323
+ [[package]]
3324
+ name = "wait-timeout"
3325
+ version = "0.2.1"
3326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3327
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3328
+ dependencies = [
3329
+ "libc",
3330
+ ]
3331
+
3332
+ [[package]]
3333
+ name = "walkdir"
3334
+ version = "2.5.0"
3335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3336
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3337
+ dependencies = [
3338
+ "same-file",
3339
+ "winapi-util",
3340
+ ]
3341
+
3342
+ [[package]]
3343
+ name = "want"
3344
+ version = "0.3.1"
3345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3346
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3347
+ dependencies = [
3348
+ "try-lock",
3349
+ ]
3350
+
3351
+ [[package]]
3352
+ name = "wasi"
3353
+ version = "0.11.1+wasi-snapshot-preview1"
3354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3355
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3356
+
3357
+ [[package]]
3358
+ name = "wasip2"
3359
+ version = "1.0.2+wasi-0.2.9"
3360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3361
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3362
+ dependencies = [
3363
+ "wit-bindgen",
3364
+ ]
3365
+
3366
+ [[package]]
3367
+ name = "wasm-bindgen"
3368
+ version = "0.2.108"
3369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3370
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
3371
+ dependencies = [
3372
+ "cfg-if",
3373
+ "once_cell",
3374
+ "rustversion",
3375
+ "wasm-bindgen-macro",
3376
+ "wasm-bindgen-shared",
3377
+ ]
3378
+
3379
+ [[package]]
3380
+ name = "wasm-bindgen-futures"
3381
+ version = "0.4.58"
3382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3383
+ checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
3384
+ dependencies = [
3385
+ "cfg-if",
3386
+ "futures-util",
3387
+ "js-sys",
3388
+ "once_cell",
3389
+ "wasm-bindgen",
3390
+ "web-sys",
3391
+ ]
3392
+
3393
+ [[package]]
3394
+ name = "wasm-bindgen-macro"
3395
+ version = "0.2.108"
3396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3397
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
3398
+ dependencies = [
3399
+ "quote",
3400
+ "wasm-bindgen-macro-support",
3401
+ ]
3402
+
3403
+ [[package]]
3404
+ name = "wasm-bindgen-macro-support"
3405
+ version = "0.2.108"
3406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3407
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
3408
+ dependencies = [
3409
+ "bumpalo",
3410
+ "proc-macro2",
3411
+ "quote",
3412
+ "syn",
3413
+ "wasm-bindgen-shared",
3414
+ ]
3415
+
3416
+ [[package]]
3417
+ name = "wasm-bindgen-shared"
3418
+ version = "0.2.108"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
3421
+ dependencies = [
3422
+ "unicode-ident",
3423
+ ]
3424
+
3425
+ [[package]]
3426
+ name = "web-sys"
3427
+ version = "0.3.85"
3428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3429
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
3430
+ dependencies = [
3431
+ "js-sys",
3432
+ "wasm-bindgen",
3433
+ ]
3434
+
3435
+ [[package]]
3436
+ name = "web-time"
3437
+ version = "1.1.0"
3438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3439
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3440
+ dependencies = [
3441
+ "js-sys",
3442
+ "wasm-bindgen",
3443
+ ]
3444
+
3445
+ [[package]]
3446
+ name = "webpki-roots"
3447
+ version = "1.0.6"
3448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3449
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
3450
+ dependencies = [
3451
+ "rustls-pki-types",
3452
+ ]
3453
+
3454
+ [[package]]
3455
+ name = "winapi-util"
3456
+ version = "0.1.11"
3457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3459
+ dependencies = [
3460
+ "windows-sys 0.61.2",
3461
+ ]
3462
+
3463
+ [[package]]
3464
+ name = "windows-core"
3465
+ version = "0.62.2"
3466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3467
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3468
+ dependencies = [
3469
+ "windows-implement",
3470
+ "windows-interface",
3471
+ "windows-link",
3472
+ "windows-result",
3473
+ "windows-strings",
3474
+ ]
3475
+
3476
+ [[package]]
3477
+ name = "windows-implement"
3478
+ version = "0.60.2"
3479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3480
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3481
+ dependencies = [
3482
+ "proc-macro2",
3483
+ "quote",
3484
+ "syn",
3485
+ ]
3486
+
3487
+ [[package]]
3488
+ name = "windows-interface"
3489
+ version = "0.59.3"
3490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3491
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3492
+ dependencies = [
3493
+ "proc-macro2",
3494
+ "quote",
3495
+ "syn",
3496
+ ]
3497
+
3498
+ [[package]]
3499
+ name = "windows-link"
3500
+ version = "0.2.1"
3501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3502
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3503
+
3504
+ [[package]]
3505
+ name = "windows-registry"
3506
+ version = "0.6.1"
3507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3508
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
3509
+ dependencies = [
3510
+ "windows-link",
3511
+ "windows-result",
3512
+ "windows-strings",
3513
+ ]
3514
+
3515
+ [[package]]
3516
+ name = "windows-result"
3517
+ version = "0.4.1"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3520
+ dependencies = [
3521
+ "windows-link",
3522
+ ]
3523
+
3524
+ [[package]]
3525
+ name = "windows-strings"
3526
+ version = "0.5.1"
3527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3528
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3529
+ dependencies = [
3530
+ "windows-link",
3531
+ ]
3532
+
3533
+ [[package]]
3534
+ name = "windows-sys"
3535
+ version = "0.48.0"
3536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3537
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3538
+ dependencies = [
3539
+ "windows-targets 0.48.5",
3540
+ ]
3541
+
3542
+ [[package]]
3543
+ name = "windows-sys"
3544
+ version = "0.52.0"
3545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3546
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3547
+ dependencies = [
3548
+ "windows-targets 0.52.6",
3549
+ ]
3550
+
3551
+ [[package]]
3552
+ name = "windows-sys"
3553
+ version = "0.59.0"
3554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3555
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3556
+ dependencies = [
3557
+ "windows-targets 0.52.6",
3558
+ ]
3559
+
3560
+ [[package]]
3561
+ name = "windows-sys"
3562
+ version = "0.60.2"
3563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3564
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3565
+ dependencies = [
3566
+ "windows-targets 0.53.5",
3567
+ ]
3568
+
3569
+ [[package]]
3570
+ name = "windows-sys"
3571
+ version = "0.61.2"
3572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3573
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3574
+ dependencies = [
3575
+ "windows-link",
3576
+ ]
3577
+
3578
+ [[package]]
3579
+ name = "windows-targets"
3580
+ version = "0.48.5"
3581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3582
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3583
+ dependencies = [
3584
+ "windows_aarch64_gnullvm 0.48.5",
3585
+ "windows_aarch64_msvc 0.48.5",
3586
+ "windows_i686_gnu 0.48.5",
3587
+ "windows_i686_msvc 0.48.5",
3588
+ "windows_x86_64_gnu 0.48.5",
3589
+ "windows_x86_64_gnullvm 0.48.5",
3590
+ "windows_x86_64_msvc 0.48.5",
3591
+ ]
3592
+
3593
+ [[package]]
3594
+ name = "windows-targets"
3595
+ version = "0.52.6"
3596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3597
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3598
+ dependencies = [
3599
+ "windows_aarch64_gnullvm 0.52.6",
3600
+ "windows_aarch64_msvc 0.52.6",
3601
+ "windows_i686_gnu 0.52.6",
3602
+ "windows_i686_gnullvm 0.52.6",
3603
+ "windows_i686_msvc 0.52.6",
3604
+ "windows_x86_64_gnu 0.52.6",
3605
+ "windows_x86_64_gnullvm 0.52.6",
3606
+ "windows_x86_64_msvc 0.52.6",
3607
+ ]
3608
+
3609
+ [[package]]
3610
+ name = "windows-targets"
3611
+ version = "0.53.5"
3612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3613
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3614
+ dependencies = [
3615
+ "windows-link",
3616
+ "windows_aarch64_gnullvm 0.53.1",
3617
+ "windows_aarch64_msvc 0.53.1",
3618
+ "windows_i686_gnu 0.53.1",
3619
+ "windows_i686_gnullvm 0.53.1",
3620
+ "windows_i686_msvc 0.53.1",
3621
+ "windows_x86_64_gnu 0.53.1",
3622
+ "windows_x86_64_gnullvm 0.53.1",
3623
+ "windows_x86_64_msvc 0.53.1",
3624
+ ]
3625
+
3626
+ [[package]]
3627
+ name = "windows_aarch64_gnullvm"
3628
+ version = "0.48.5"
3629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3630
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3631
+
3632
+ [[package]]
3633
+ name = "windows_aarch64_gnullvm"
3634
+ version = "0.52.6"
3635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3636
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3637
+
3638
+ [[package]]
3639
+ name = "windows_aarch64_gnullvm"
3640
+ version = "0.53.1"
3641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3642
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3643
+
3644
+ [[package]]
3645
+ name = "windows_aarch64_msvc"
3646
+ version = "0.48.5"
3647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3648
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3649
+
3650
+ [[package]]
3651
+ name = "windows_aarch64_msvc"
3652
+ version = "0.52.6"
3653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3654
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3655
+
3656
+ [[package]]
3657
+ name = "windows_aarch64_msvc"
3658
+ version = "0.53.1"
3659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3660
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3661
+
3662
+ [[package]]
3663
+ name = "windows_i686_gnu"
3664
+ version = "0.48.5"
3665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3666
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3667
+
3668
+ [[package]]
3669
+ name = "windows_i686_gnu"
3670
+ version = "0.52.6"
3671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3672
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3673
+
3674
+ [[package]]
3675
+ name = "windows_i686_gnu"
3676
+ version = "0.53.1"
3677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3678
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3679
+
3680
+ [[package]]
3681
+ name = "windows_i686_gnullvm"
3682
+ version = "0.52.6"
3683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3684
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3685
+
3686
+ [[package]]
3687
+ name = "windows_i686_gnullvm"
3688
+ version = "0.53.1"
3689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3690
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3691
+
3692
+ [[package]]
3693
+ name = "windows_i686_msvc"
3694
+ version = "0.48.5"
3695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3696
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3697
+
3698
+ [[package]]
3699
+ name = "windows_i686_msvc"
3700
+ version = "0.52.6"
3701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3702
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3703
+
3704
+ [[package]]
3705
+ name = "windows_i686_msvc"
3706
+ version = "0.53.1"
3707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3708
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3709
+
3710
+ [[package]]
3711
+ name = "windows_x86_64_gnu"
3712
+ version = "0.48.5"
3713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3714
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3715
+
3716
+ [[package]]
3717
+ name = "windows_x86_64_gnu"
3718
+ version = "0.52.6"
3719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3720
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3721
+
3722
+ [[package]]
3723
+ name = "windows_x86_64_gnu"
3724
+ version = "0.53.1"
3725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3726
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3727
+
3728
+ [[package]]
3729
+ name = "windows_x86_64_gnullvm"
3730
+ version = "0.48.5"
3731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3732
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3733
+
3734
+ [[package]]
3735
+ name = "windows_x86_64_gnullvm"
3736
+ version = "0.52.6"
3737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3738
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3739
+
3740
+ [[package]]
3741
+ name = "windows_x86_64_gnullvm"
3742
+ version = "0.53.1"
3743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3744
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3745
+
3746
+ [[package]]
3747
+ name = "windows_x86_64_msvc"
3748
+ version = "0.48.5"
3749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3750
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3751
+
3752
+ [[package]]
3753
+ name = "windows_x86_64_msvc"
3754
+ version = "0.52.6"
3755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3756
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3757
+
3758
+ [[package]]
3759
+ name = "windows_x86_64_msvc"
3760
+ version = "0.53.1"
3761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3762
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3763
+
3764
+ [[package]]
3765
+ name = "wit-bindgen"
3766
+ version = "0.51.0"
3767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3768
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3769
+
3770
+ [[package]]
3771
+ name = "writeable"
3772
+ version = "0.6.2"
3773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3774
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3775
+
3776
+ [[package]]
3777
+ name = "yansi"
3778
+ version = "1.0.1"
3779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3780
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
3781
+
3782
+ [[package]]
3783
+ name = "yoke"
3784
+ version = "0.8.1"
3785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3786
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3787
+ dependencies = [
3788
+ "stable_deref_trait",
3789
+ "yoke-derive",
3790
+ "zerofrom",
3791
+ ]
3792
+
3793
+ [[package]]
3794
+ name = "yoke-derive"
3795
+ version = "0.8.1"
3796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3797
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3798
+ dependencies = [
3799
+ "proc-macro2",
3800
+ "quote",
3801
+ "syn",
3802
+ "synstructure",
3803
+ ]
3804
+
3805
+ [[package]]
3806
+ name = "zerocopy"
3807
+ version = "0.8.39"
3808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3809
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
3810
+ dependencies = [
3811
+ "zerocopy-derive",
3812
+ ]
3813
+
3814
+ [[package]]
3815
+ name = "zerocopy-derive"
3816
+ version = "0.8.39"
3817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3818
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
3819
+ dependencies = [
3820
+ "proc-macro2",
3821
+ "quote",
3822
+ "syn",
3823
+ ]
3824
+
3825
+ [[package]]
3826
+ name = "zerofrom"
3827
+ version = "0.1.6"
3828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3829
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3830
+ dependencies = [
3831
+ "zerofrom-derive",
3832
+ ]
3833
+
3834
+ [[package]]
3835
+ name = "zerofrom-derive"
3836
+ version = "0.1.6"
3837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3838
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3839
+ dependencies = [
3840
+ "proc-macro2",
3841
+ "quote",
3842
+ "syn",
3843
+ "synstructure",
3844
+ ]
3845
+
3846
+ [[package]]
3847
+ name = "zeroize"
3848
+ version = "1.8.2"
3849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3850
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3851
+
3852
+ [[package]]
3853
+ name = "zerotrie"
3854
+ version = "0.2.3"
3855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3856
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3857
+ dependencies = [
3858
+ "displaydoc",
3859
+ "yoke",
3860
+ "zerofrom",
3861
+ ]
3862
+
3863
+ [[package]]
3864
+ name = "zerovec"
3865
+ version = "0.11.5"
3866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3867
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3868
+ dependencies = [
3869
+ "yoke",
3870
+ "zerofrom",
3871
+ "zerovec-derive",
3872
+ ]
3873
+
3874
+ [[package]]
3875
+ name = "zerovec-derive"
3876
+ version = "0.11.2"
3877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3878
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3879
+ dependencies = [
3880
+ "proc-macro2",
3881
+ "quote",
3882
+ "syn",
3883
+ ]
3884
+
3885
+ [[package]]
3886
+ name = "zmij"
3887
+ version = "1.0.19"
3888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3889
+ checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"