idprova 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. idprova-0.1.0/Cargo.lock +3378 -0
  2. idprova-0.1.0/Cargo.toml +88 -0
  3. idprova-0.1.0/PKG-INFO +66 -0
  4. idprova-0.1.0/README.md +35 -0
  5. idprova-0.1.0/crates/idprova-core/Cargo.toml +55 -0
  6. idprova-0.1.0/crates/idprova-core/README.md +27 -0
  7. idprova-0.1.0/crates/idprova-core/src/aid/builder.rs +242 -0
  8. idprova-0.1.0/crates/idprova-core/src/aid/document.rs +343 -0
  9. idprova-0.1.0/crates/idprova-core/src/aid/mod.rs +10 -0
  10. idprova-0.1.0/crates/idprova-core/src/crypto/hash.rs +77 -0
  11. idprova-0.1.0/crates/idprova-core/src/crypto/keys.rs +167 -0
  12. idprova-0.1.0/crates/idprova-core/src/crypto/mod.rs +10 -0
  13. idprova-0.1.0/crates/idprova-core/src/dat/chain.rs +217 -0
  14. idprova-0.1.0/crates/idprova-core/src/dat/constraints.rs +941 -0
  15. idprova-0.1.0/crates/idprova-core/src/dat/mod.rs +13 -0
  16. idprova-0.1.0/crates/idprova-core/src/dat/scope.rs +238 -0
  17. idprova-0.1.0/crates/idprova-core/src/dat/token.rs +565 -0
  18. idprova-0.1.0/crates/idprova-core/src/error.rs +76 -0
  19. idprova-0.1.0/crates/idprova-core/src/http.rs +267 -0
  20. idprova-0.1.0/crates/idprova-core/src/lib.rs +23 -0
  21. idprova-0.1.0/crates/idprova-core/src/policy/constraints.rs +931 -0
  22. idprova-0.1.0/crates/idprova-core/src/policy/context.rs +198 -0
  23. idprova-0.1.0/crates/idprova-core/src/policy/decision.rs +182 -0
  24. idprova-0.1.0/crates/idprova-core/src/policy/evaluator.rs +271 -0
  25. idprova-0.1.0/crates/idprova-core/src/policy/inheritance.rs +346 -0
  26. idprova-0.1.0/crates/idprova-core/src/policy/mod.rs +28 -0
  27. idprova-0.1.0/crates/idprova-core/src/policy/rate.rs +179 -0
  28. idprova-0.1.0/crates/idprova-core/src/receipt/entry.rs +223 -0
  29. idprova-0.1.0/crates/idprova-core/src/receipt/log.rs +207 -0
  30. idprova-0.1.0/crates/idprova-core/src/receipt/mod.rs +12 -0
  31. idprova-0.1.0/crates/idprova-core/src/trust/level.rs +101 -0
  32. idprova-0.1.0/crates/idprova-core/src/trust/mod.rs +5 -0
  33. idprova-0.1.0/pyproject.toml +44 -0
  34. idprova-0.1.0/sdks/python/Cargo.toml +23 -0
  35. idprova-0.1.0/sdks/python/README.md +35 -0
  36. idprova-0.1.0/sdks/python/idprova_http.py +49 -0
  37. idprova-0.1.0/sdks/python/idprova_langchain.py +73 -0
  38. idprova-0.1.0/sdks/python/src/lib.rs +914 -0
  39. idprova-0.1.0/sdks/python/tests/test_sdk.py +242 -0
  40. idprova-0.1.0/src/idprova/__init__.py +40 -0
  41. idprova-0.1.0/src/idprova/__init__.pyi +225 -0
  42. idprova-0.1.0/src/idprova/py.typed +0 -0
@@ -0,0 +1,3378 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "1.1.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "android_system_properties"
28
+ version = "0.1.5"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
31
+ dependencies = [
32
+ "libc",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstream"
37
+ version = "0.6.21"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
40
+ dependencies = [
41
+ "anstyle",
42
+ "anstyle-parse",
43
+ "anstyle-query",
44
+ "anstyle-wincon",
45
+ "colorchoice",
46
+ "is_terminal_polyfill",
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle"
52
+ version = "1.0.13"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
55
+
56
+ [[package]]
57
+ name = "anstyle-parse"
58
+ version = "0.2.7"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
61
+ dependencies = [
62
+ "utf8parse",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-query"
67
+ version = "1.1.5"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
70
+ dependencies = [
71
+ "windows-sys 0.61.2",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle-wincon"
76
+ version = "3.0.11"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
79
+ dependencies = [
80
+ "anstyle",
81
+ "once_cell_polyfill",
82
+ "windows-sys 0.61.2",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "anyhow"
87
+ version = "1.0.102"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
90
+
91
+ [[package]]
92
+ name = "arrayref"
93
+ version = "0.3.9"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
96
+
97
+ [[package]]
98
+ name = "arrayvec"
99
+ version = "0.7.6"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
102
+
103
+ [[package]]
104
+ name = "async-trait"
105
+ version = "0.1.89"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
108
+ dependencies = [
109
+ "proc-macro2",
110
+ "quote",
111
+ "syn",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "atomic-waker"
116
+ version = "1.1.2"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
119
+
120
+ [[package]]
121
+ name = "autocfg"
122
+ version = "1.5.0"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
125
+
126
+ [[package]]
127
+ name = "axum"
128
+ version = "0.7.9"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
131
+ dependencies = [
132
+ "async-trait",
133
+ "axum-core",
134
+ "bytes",
135
+ "futures-util",
136
+ "http",
137
+ "http-body",
138
+ "http-body-util",
139
+ "hyper",
140
+ "hyper-util",
141
+ "itoa",
142
+ "matchit",
143
+ "memchr",
144
+ "mime",
145
+ "percent-encoding",
146
+ "pin-project-lite",
147
+ "rustversion",
148
+ "serde",
149
+ "serde_json",
150
+ "serde_path_to_error",
151
+ "serde_urlencoded",
152
+ "sync_wrapper",
153
+ "tokio",
154
+ "tower 0.5.3",
155
+ "tower-layer",
156
+ "tower-service",
157
+ "tracing",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "axum-core"
162
+ version = "0.4.5"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
165
+ dependencies = [
166
+ "async-trait",
167
+ "bytes",
168
+ "futures-util",
169
+ "http",
170
+ "http-body",
171
+ "http-body-util",
172
+ "mime",
173
+ "pin-project-lite",
174
+ "rustversion",
175
+ "sync_wrapper",
176
+ "tower-layer",
177
+ "tower-service",
178
+ "tracing",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "base-x"
183
+ version = "0.2.11"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
186
+
187
+ [[package]]
188
+ name = "base256emoji"
189
+ version = "1.0.2"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c"
192
+ dependencies = [
193
+ "const-str",
194
+ "match-lookup",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "base64"
199
+ version = "0.22.1"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
202
+
203
+ [[package]]
204
+ name = "base64ct"
205
+ version = "1.8.3"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
208
+
209
+ [[package]]
210
+ name = "bit-set"
211
+ version = "0.8.0"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
214
+ dependencies = [
215
+ "bit-vec",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "bit-vec"
220
+ version = "0.8.0"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
223
+
224
+ [[package]]
225
+ name = "bitflags"
226
+ version = "2.11.0"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
229
+
230
+ [[package]]
231
+ name = "blake3"
232
+ version = "1.5.4"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "d82033247fd8e890df8f740e407ad4d038debb9eb1f40533fffb32e7d17dc6f7"
235
+ dependencies = [
236
+ "arrayref",
237
+ "arrayvec",
238
+ "cc",
239
+ "cfg-if",
240
+ "constant_time_eq",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "block-buffer"
245
+ version = "0.10.4"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
248
+ dependencies = [
249
+ "generic-array",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "bumpalo"
254
+ version = "3.20.2"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
257
+
258
+ [[package]]
259
+ name = "bytes"
260
+ version = "1.11.1"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
263
+
264
+ [[package]]
265
+ name = "cc"
266
+ version = "1.2.56"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
269
+ dependencies = [
270
+ "find-msvc-tools",
271
+ "shlex",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "cfg-if"
276
+ version = "1.0.4"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
279
+
280
+ [[package]]
281
+ name = "chacha20"
282
+ version = "0.10.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
285
+ dependencies = [
286
+ "cfg-if",
287
+ "cpufeatures 0.3.0",
288
+ "rand_core 0.10.0",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "chrono"
293
+ version = "0.4.44"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
296
+ dependencies = [
297
+ "iana-time-zone",
298
+ "js-sys",
299
+ "num-traits",
300
+ "serde",
301
+ "wasm-bindgen",
302
+ "windows-link",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "clap"
307
+ version = "4.5.60"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
310
+ dependencies = [
311
+ "clap_builder",
312
+ "clap_derive",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "clap_builder"
317
+ version = "4.5.60"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
320
+ dependencies = [
321
+ "anstream",
322
+ "anstyle",
323
+ "clap_lex",
324
+ "strsim",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "clap_derive"
329
+ version = "4.5.55"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
332
+ dependencies = [
333
+ "heck",
334
+ "proc-macro2",
335
+ "quote",
336
+ "syn",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "clap_lex"
341
+ version = "1.0.0"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
344
+
345
+ [[package]]
346
+ name = "colorchoice"
347
+ version = "1.0.4"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
350
+
351
+ [[package]]
352
+ name = "const-oid"
353
+ version = "0.9.6"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
356
+
357
+ [[package]]
358
+ name = "const-str"
359
+ version = "0.4.3"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3"
362
+
363
+ [[package]]
364
+ name = "constant_time_eq"
365
+ version = "0.3.1"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
368
+
369
+ [[package]]
370
+ name = "convert_case"
371
+ version = "0.6.0"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
374
+ dependencies = [
375
+ "unicode-segmentation",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "core-foundation"
380
+ version = "0.9.4"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
383
+ dependencies = [
384
+ "core-foundation-sys",
385
+ "libc",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "core-foundation"
390
+ version = "0.10.1"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
393
+ dependencies = [
394
+ "core-foundation-sys",
395
+ "libc",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "core-foundation-sys"
400
+ version = "0.8.7"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
403
+
404
+ [[package]]
405
+ name = "cpufeatures"
406
+ version = "0.2.17"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
409
+ dependencies = [
410
+ "libc",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "cpufeatures"
415
+ version = "0.3.0"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
418
+ dependencies = [
419
+ "libc",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "crypto-common"
424
+ version = "0.1.7"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
427
+ dependencies = [
428
+ "generic-array",
429
+ "typenum",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "ctor"
434
+ version = "0.2.9"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
437
+ dependencies = [
438
+ "quote",
439
+ "syn",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "curve25519-dalek"
444
+ version = "4.1.3"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
447
+ dependencies = [
448
+ "cfg-if",
449
+ "cpufeatures 0.2.17",
450
+ "curve25519-dalek-derive",
451
+ "digest",
452
+ "fiat-crypto",
453
+ "rustc_version",
454
+ "subtle",
455
+ "zeroize",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "curve25519-dalek-derive"
460
+ version = "0.1.1"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
463
+ dependencies = [
464
+ "proc-macro2",
465
+ "quote",
466
+ "syn",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "data-encoding"
471
+ version = "2.10.0"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
474
+
475
+ [[package]]
476
+ name = "data-encoding-macro"
477
+ version = "0.1.19"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "8142a83c17aa9461d637e649271eae18bf2edd00e91f2e105df36c3c16355bdb"
480
+ dependencies = [
481
+ "data-encoding",
482
+ "data-encoding-macro-internal",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "data-encoding-macro-internal"
487
+ version = "0.1.17"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de"
490
+ dependencies = [
491
+ "data-encoding",
492
+ "syn",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "der"
497
+ version = "0.7.10"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
500
+ dependencies = [
501
+ "const-oid",
502
+ "zeroize",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "digest"
507
+ version = "0.10.7"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
510
+ dependencies = [
511
+ "block-buffer",
512
+ "crypto-common",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "displaydoc"
517
+ version = "0.2.5"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
520
+ dependencies = [
521
+ "proc-macro2",
522
+ "quote",
523
+ "syn",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "ed25519"
528
+ version = "2.2.3"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
531
+ dependencies = [
532
+ "pkcs8",
533
+ "serde",
534
+ "signature",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "ed25519-dalek"
539
+ version = "2.1.1"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871"
542
+ dependencies = [
543
+ "curve25519-dalek",
544
+ "ed25519",
545
+ "rand_core 0.6.4",
546
+ "serde",
547
+ "sha2",
548
+ "subtle",
549
+ "zeroize",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "encoding_rs"
554
+ version = "0.8.35"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
557
+ dependencies = [
558
+ "cfg-if",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "equivalent"
563
+ version = "1.0.2"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
566
+
567
+ [[package]]
568
+ name = "errno"
569
+ version = "0.3.14"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
572
+ dependencies = [
573
+ "libc",
574
+ "windows-sys 0.61.2",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "evalexpr"
579
+ version = "11.3.1"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "b6aff27af350e7b53e82aac3e5ab6389abd8f280640ac034508dff0608c4c7e5"
582
+
583
+ [[package]]
584
+ name = "fallible-iterator"
585
+ version = "0.3.0"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
588
+
589
+ [[package]]
590
+ name = "fallible-streaming-iterator"
591
+ version = "0.1.9"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
594
+
595
+ [[package]]
596
+ name = "fastrand"
597
+ version = "2.3.0"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
600
+
601
+ [[package]]
602
+ name = "fiat-crypto"
603
+ version = "0.2.9"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
606
+
607
+ [[package]]
608
+ name = "find-msvc-tools"
609
+ version = "0.1.9"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
612
+
613
+ [[package]]
614
+ name = "fnv"
615
+ version = "1.0.7"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
618
+
619
+ [[package]]
620
+ name = "foldhash"
621
+ version = "0.1.5"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
624
+
625
+ [[package]]
626
+ name = "foreign-types"
627
+ version = "0.3.2"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
630
+ dependencies = [
631
+ "foreign-types-shared",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "foreign-types-shared"
636
+ version = "0.1.1"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
639
+
640
+ [[package]]
641
+ name = "form_urlencoded"
642
+ version = "1.2.2"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
645
+ dependencies = [
646
+ "percent-encoding",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "futures-channel"
651
+ version = "0.3.32"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
654
+ dependencies = [
655
+ "futures-core",
656
+ "futures-sink",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "futures-core"
661
+ version = "0.3.32"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
664
+
665
+ [[package]]
666
+ name = "futures-io"
667
+ version = "0.3.32"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
670
+
671
+ [[package]]
672
+ name = "futures-sink"
673
+ version = "0.3.32"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
676
+
677
+ [[package]]
678
+ name = "futures-task"
679
+ version = "0.3.32"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
682
+
683
+ [[package]]
684
+ name = "futures-util"
685
+ version = "0.3.32"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
688
+ dependencies = [
689
+ "futures-core",
690
+ "futures-io",
691
+ "futures-sink",
692
+ "futures-task",
693
+ "memchr",
694
+ "pin-project-lite",
695
+ "slab",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "generic-array"
700
+ version = "0.14.7"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
703
+ dependencies = [
704
+ "typenum",
705
+ "version_check",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "getrandom"
710
+ version = "0.2.17"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
713
+ dependencies = [
714
+ "cfg-if",
715
+ "libc",
716
+ "wasi",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "getrandom"
721
+ version = "0.3.4"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
724
+ dependencies = [
725
+ "cfg-if",
726
+ "libc",
727
+ "r-efi",
728
+ "wasip2",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "getrandom"
733
+ version = "0.4.1"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
736
+ dependencies = [
737
+ "cfg-if",
738
+ "libc",
739
+ "r-efi",
740
+ "rand_core 0.10.0",
741
+ "wasip2",
742
+ "wasip3",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "h2"
747
+ version = "0.4.13"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
750
+ dependencies = [
751
+ "atomic-waker",
752
+ "bytes",
753
+ "fnv",
754
+ "futures-core",
755
+ "futures-sink",
756
+ "http",
757
+ "indexmap",
758
+ "slab",
759
+ "tokio",
760
+ "tokio-util",
761
+ "tracing",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "hashbrown"
766
+ version = "0.14.5"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
769
+ dependencies = [
770
+ "ahash",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "hashbrown"
775
+ version = "0.15.5"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
778
+ dependencies = [
779
+ "foldhash",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "hashbrown"
784
+ version = "0.16.1"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
787
+
788
+ [[package]]
789
+ name = "hashlink"
790
+ version = "0.9.1"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
793
+ dependencies = [
794
+ "hashbrown 0.14.5",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "heck"
799
+ version = "0.5.0"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
802
+
803
+ [[package]]
804
+ name = "hex"
805
+ version = "0.4.3"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
808
+
809
+ [[package]]
810
+ name = "http"
811
+ version = "1.4.0"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
814
+ dependencies = [
815
+ "bytes",
816
+ "itoa",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "http-body"
821
+ version = "1.0.1"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
824
+ dependencies = [
825
+ "bytes",
826
+ "http",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "http-body-util"
831
+ version = "0.1.3"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
834
+ dependencies = [
835
+ "bytes",
836
+ "futures-core",
837
+ "http",
838
+ "http-body",
839
+ "pin-project-lite",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "httparse"
844
+ version = "1.10.1"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
847
+
848
+ [[package]]
849
+ name = "httpdate"
850
+ version = "1.0.3"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
853
+
854
+ [[package]]
855
+ name = "hyper"
856
+ version = "1.8.1"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
859
+ dependencies = [
860
+ "atomic-waker",
861
+ "bytes",
862
+ "futures-channel",
863
+ "futures-core",
864
+ "h2",
865
+ "http",
866
+ "http-body",
867
+ "httparse",
868
+ "httpdate",
869
+ "itoa",
870
+ "pin-project-lite",
871
+ "pin-utils",
872
+ "smallvec",
873
+ "tokio",
874
+ "want",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "hyper-rustls"
879
+ version = "0.27.7"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
882
+ dependencies = [
883
+ "http",
884
+ "hyper",
885
+ "hyper-util",
886
+ "rustls",
887
+ "rustls-pki-types",
888
+ "tokio",
889
+ "tokio-rustls",
890
+ "tower-service",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "hyper-tls"
895
+ version = "0.6.0"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
898
+ dependencies = [
899
+ "bytes",
900
+ "http-body-util",
901
+ "hyper",
902
+ "hyper-util",
903
+ "native-tls",
904
+ "tokio",
905
+ "tokio-native-tls",
906
+ "tower-service",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "hyper-util"
911
+ version = "0.1.20"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
914
+ dependencies = [
915
+ "base64",
916
+ "bytes",
917
+ "futures-channel",
918
+ "futures-util",
919
+ "http",
920
+ "http-body",
921
+ "hyper",
922
+ "ipnet",
923
+ "libc",
924
+ "percent-encoding",
925
+ "pin-project-lite",
926
+ "socket2",
927
+ "system-configuration",
928
+ "tokio",
929
+ "tower-service",
930
+ "tracing",
931
+ "windows-registry",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "iana-time-zone"
936
+ version = "0.1.65"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
939
+ dependencies = [
940
+ "android_system_properties",
941
+ "core-foundation-sys",
942
+ "iana-time-zone-haiku",
943
+ "js-sys",
944
+ "log",
945
+ "wasm-bindgen",
946
+ "windows-core",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "iana-time-zone-haiku"
951
+ version = "0.1.2"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
954
+ dependencies = [
955
+ "cc",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "icu_collections"
960
+ version = "2.1.1"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
963
+ dependencies = [
964
+ "displaydoc",
965
+ "potential_utf",
966
+ "yoke",
967
+ "zerofrom",
968
+ "zerovec",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "icu_locale_core"
973
+ version = "2.1.1"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
976
+ dependencies = [
977
+ "displaydoc",
978
+ "litemap",
979
+ "tinystr",
980
+ "writeable",
981
+ "zerovec",
982
+ ]
983
+
984
+ [[package]]
985
+ name = "icu_normalizer"
986
+ version = "2.1.1"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
989
+ dependencies = [
990
+ "icu_collections",
991
+ "icu_normalizer_data",
992
+ "icu_properties",
993
+ "icu_provider",
994
+ "smallvec",
995
+ "zerovec",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "icu_normalizer_data"
1000
+ version = "2.1.1"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1003
+
1004
+ [[package]]
1005
+ name = "icu_properties"
1006
+ version = "2.1.2"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1009
+ dependencies = [
1010
+ "icu_collections",
1011
+ "icu_locale_core",
1012
+ "icu_properties_data",
1013
+ "icu_provider",
1014
+ "zerotrie",
1015
+ "zerovec",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "icu_properties_data"
1020
+ version = "2.1.2"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1023
+
1024
+ [[package]]
1025
+ name = "icu_provider"
1026
+ version = "2.1.1"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1029
+ dependencies = [
1030
+ "displaydoc",
1031
+ "icu_locale_core",
1032
+ "writeable",
1033
+ "yoke",
1034
+ "zerofrom",
1035
+ "zerotrie",
1036
+ "zerovec",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "id-arena"
1041
+ version = "2.3.0"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1044
+
1045
+ [[package]]
1046
+ name = "idna"
1047
+ version = "1.1.0"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1050
+ dependencies = [
1051
+ "idna_adapter",
1052
+ "smallvec",
1053
+ "utf8_iter",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "idna_adapter"
1058
+ version = "1.2.1"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1061
+ dependencies = [
1062
+ "icu_normalizer",
1063
+ "icu_properties",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "idprova-cli"
1068
+ version = "0.1.0"
1069
+ dependencies = [
1070
+ "anyhow",
1071
+ "chrono",
1072
+ "clap",
1073
+ "hex",
1074
+ "idprova-core",
1075
+ "reqwest",
1076
+ "serde",
1077
+ "serde_json",
1078
+ "tokio",
1079
+ "toml",
1080
+ "tracing",
1081
+ "tracing-subscriber",
1082
+ "url",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "idprova-core"
1087
+ version = "0.1.0"
1088
+ dependencies = [
1089
+ "base64",
1090
+ "blake3",
1091
+ "chrono",
1092
+ "ed25519-dalek",
1093
+ "hex",
1094
+ "ipnet",
1095
+ "multibase",
1096
+ "proptest",
1097
+ "rand 0.8.5",
1098
+ "reqwest",
1099
+ "serde",
1100
+ "serde_json",
1101
+ "serde_json_canonicalizer",
1102
+ "sha2",
1103
+ "thiserror",
1104
+ "tokio",
1105
+ "tracing",
1106
+ "ulid",
1107
+ "url",
1108
+ "zeroize",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "idprova-mcp-demo"
1113
+ version = "0.1.0"
1114
+ dependencies = [
1115
+ "anyhow",
1116
+ "axum",
1117
+ "blake3",
1118
+ "chrono",
1119
+ "evalexpr",
1120
+ "reqwest",
1121
+ "serde",
1122
+ "serde_json",
1123
+ "tempfile",
1124
+ "tokio",
1125
+ "tracing",
1126
+ "tracing-subscriber",
1127
+ "ulid",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "idprova-middleware"
1132
+ version = "0.1.0"
1133
+ dependencies = [
1134
+ "axum",
1135
+ "chrono",
1136
+ "idprova-core",
1137
+ "idprova-verify",
1138
+ "reqwest",
1139
+ "serde",
1140
+ "serde_json",
1141
+ "tokio",
1142
+ "tower 0.4.13",
1143
+ "tracing",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "idprova-python"
1148
+ version = "0.1.0"
1149
+ dependencies = [
1150
+ "chrono",
1151
+ "hex",
1152
+ "idprova-core",
1153
+ "pyo3",
1154
+ "serde_json",
1155
+ "ulid",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "idprova-registry"
1160
+ version = "0.1.0"
1161
+ dependencies = [
1162
+ "anyhow",
1163
+ "axum",
1164
+ "chrono",
1165
+ "hex",
1166
+ "http-body-util",
1167
+ "idprova-core",
1168
+ "idprova-verify",
1169
+ "r2d2",
1170
+ "r2d2_sqlite",
1171
+ "reqwest",
1172
+ "rusqlite",
1173
+ "serde",
1174
+ "serde_json",
1175
+ "thiserror",
1176
+ "tokio",
1177
+ "tower 0.4.13",
1178
+ "tower-http 0.5.2",
1179
+ "tracing",
1180
+ "tracing-subscriber",
1181
+ "ulid",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "idprova-typescript"
1186
+ version = "0.1.0"
1187
+ dependencies = [
1188
+ "chrono",
1189
+ "hex",
1190
+ "idprova-core",
1191
+ "napi",
1192
+ "napi-build",
1193
+ "napi-derive",
1194
+ "serde_json",
1195
+ "ulid",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "idprova-verify"
1200
+ version = "0.1.0"
1201
+ dependencies = [
1202
+ "chrono",
1203
+ "idprova-core",
1204
+ "proptest",
1205
+ "thiserror",
1206
+ "ulid",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "indexmap"
1211
+ version = "2.13.0"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1214
+ dependencies = [
1215
+ "equivalent",
1216
+ "hashbrown 0.16.1",
1217
+ "serde",
1218
+ "serde_core",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "indoc"
1223
+ version = "2.0.7"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1226
+ dependencies = [
1227
+ "rustversion",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "ipnet"
1232
+ version = "2.11.0"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1235
+
1236
+ [[package]]
1237
+ name = "iri-string"
1238
+ version = "0.7.10"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1241
+ dependencies = [
1242
+ "memchr",
1243
+ "serde",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "is_terminal_polyfill"
1248
+ version = "1.70.2"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1251
+
1252
+ [[package]]
1253
+ name = "itoa"
1254
+ version = "1.0.17"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1257
+
1258
+ [[package]]
1259
+ name = "js-sys"
1260
+ version = "0.3.89"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "f4eacb0641a310445a4c513f2a5e23e19952e269c6a38887254d5f837a305506"
1263
+ dependencies = [
1264
+ "once_cell",
1265
+ "wasm-bindgen",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "lazy_static"
1270
+ version = "1.5.0"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1273
+
1274
+ [[package]]
1275
+ name = "leb128fmt"
1276
+ version = "0.1.0"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1279
+
1280
+ [[package]]
1281
+ name = "libc"
1282
+ version = "0.2.182"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
1285
+
1286
+ [[package]]
1287
+ name = "libloading"
1288
+ version = "0.8.9"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1291
+ dependencies = [
1292
+ "cfg-if",
1293
+ "windows-link",
1294
+ ]
1295
+
1296
+ [[package]]
1297
+ name = "libsqlite3-sys"
1298
+ version = "0.28.0"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f"
1301
+ dependencies = [
1302
+ "cc",
1303
+ "pkg-config",
1304
+ "vcpkg",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "linux-raw-sys"
1309
+ version = "0.12.1"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1312
+
1313
+ [[package]]
1314
+ name = "litemap"
1315
+ version = "0.8.1"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1318
+
1319
+ [[package]]
1320
+ name = "lock_api"
1321
+ version = "0.4.14"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1324
+ dependencies = [
1325
+ "scopeguard",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "log"
1330
+ version = "0.4.29"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1333
+
1334
+ [[package]]
1335
+ name = "match-lookup"
1336
+ version = "0.1.2"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771"
1339
+ dependencies = [
1340
+ "proc-macro2",
1341
+ "quote",
1342
+ "syn",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "matchers"
1347
+ version = "0.2.0"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1350
+ dependencies = [
1351
+ "regex-automata",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "matchit"
1356
+ version = "0.7.3"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1359
+
1360
+ [[package]]
1361
+ name = "memchr"
1362
+ version = "2.8.0"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1365
+
1366
+ [[package]]
1367
+ name = "memoffset"
1368
+ version = "0.9.1"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1371
+ dependencies = [
1372
+ "autocfg",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "mime"
1377
+ version = "0.3.17"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1380
+
1381
+ [[package]]
1382
+ name = "mio"
1383
+ version = "1.1.1"
1384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1385
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1386
+ dependencies = [
1387
+ "libc",
1388
+ "wasi",
1389
+ "windows-sys 0.61.2",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "multibase"
1394
+ version = "0.9.2"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77"
1397
+ dependencies = [
1398
+ "base-x",
1399
+ "base256emoji",
1400
+ "data-encoding",
1401
+ "data-encoding-macro",
1402
+ ]
1403
+
1404
+ [[package]]
1405
+ name = "napi"
1406
+ version = "2.16.17"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
1409
+ dependencies = [
1410
+ "bitflags",
1411
+ "ctor",
1412
+ "napi-derive",
1413
+ "napi-sys",
1414
+ "once_cell",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "napi-build"
1419
+ version = "2.3.1"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
1422
+
1423
+ [[package]]
1424
+ name = "napi-derive"
1425
+ version = "2.16.13"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
1428
+ dependencies = [
1429
+ "cfg-if",
1430
+ "convert_case",
1431
+ "napi-derive-backend",
1432
+ "proc-macro2",
1433
+ "quote",
1434
+ "syn",
1435
+ ]
1436
+
1437
+ [[package]]
1438
+ name = "napi-derive-backend"
1439
+ version = "1.0.75"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
1442
+ dependencies = [
1443
+ "convert_case",
1444
+ "once_cell",
1445
+ "proc-macro2",
1446
+ "quote",
1447
+ "regex",
1448
+ "semver",
1449
+ "syn",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "napi-sys"
1454
+ version = "2.4.0"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
1457
+ dependencies = [
1458
+ "libloading",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "native-tls"
1463
+ version = "0.2.18"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
1466
+ dependencies = [
1467
+ "libc",
1468
+ "log",
1469
+ "openssl",
1470
+ "openssl-probe",
1471
+ "openssl-sys",
1472
+ "schannel",
1473
+ "security-framework",
1474
+ "security-framework-sys",
1475
+ "tempfile",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "nu-ansi-term"
1480
+ version = "0.50.3"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1483
+ dependencies = [
1484
+ "windows-sys 0.61.2",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "num-traits"
1489
+ version = "0.2.19"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1492
+ dependencies = [
1493
+ "autocfg",
1494
+ ]
1495
+
1496
+ [[package]]
1497
+ name = "once_cell"
1498
+ version = "1.21.3"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1501
+
1502
+ [[package]]
1503
+ name = "once_cell_polyfill"
1504
+ version = "1.70.2"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1507
+
1508
+ [[package]]
1509
+ name = "openssl"
1510
+ version = "0.10.75"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
1513
+ dependencies = [
1514
+ "bitflags",
1515
+ "cfg-if",
1516
+ "foreign-types",
1517
+ "libc",
1518
+ "once_cell",
1519
+ "openssl-macros",
1520
+ "openssl-sys",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "openssl-macros"
1525
+ version = "0.1.1"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1528
+ dependencies = [
1529
+ "proc-macro2",
1530
+ "quote",
1531
+ "syn",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "openssl-probe"
1536
+ version = "0.2.1"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1539
+
1540
+ [[package]]
1541
+ name = "openssl-sys"
1542
+ version = "0.9.111"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
1545
+ dependencies = [
1546
+ "cc",
1547
+ "libc",
1548
+ "pkg-config",
1549
+ "vcpkg",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "parking_lot"
1554
+ version = "0.12.5"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1557
+ dependencies = [
1558
+ "lock_api",
1559
+ "parking_lot_core",
1560
+ ]
1561
+
1562
+ [[package]]
1563
+ name = "parking_lot_core"
1564
+ version = "0.9.12"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1567
+ dependencies = [
1568
+ "cfg-if",
1569
+ "libc",
1570
+ "redox_syscall",
1571
+ "smallvec",
1572
+ "windows-link",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "percent-encoding"
1577
+ version = "2.3.2"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1580
+
1581
+ [[package]]
1582
+ name = "pin-project"
1583
+ version = "1.1.11"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
1586
+ dependencies = [
1587
+ "pin-project-internal",
1588
+ ]
1589
+
1590
+ [[package]]
1591
+ name = "pin-project-internal"
1592
+ version = "1.1.11"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
1595
+ dependencies = [
1596
+ "proc-macro2",
1597
+ "quote",
1598
+ "syn",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "pin-project-lite"
1603
+ version = "0.2.16"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1606
+
1607
+ [[package]]
1608
+ name = "pin-utils"
1609
+ version = "0.1.0"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1612
+
1613
+ [[package]]
1614
+ name = "pkcs8"
1615
+ version = "0.10.2"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1618
+ dependencies = [
1619
+ "der",
1620
+ "spki",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "pkg-config"
1625
+ version = "0.3.32"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1628
+
1629
+ [[package]]
1630
+ name = "portable-atomic"
1631
+ version = "1.13.1"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1634
+
1635
+ [[package]]
1636
+ name = "potential_utf"
1637
+ version = "0.1.4"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1640
+ dependencies = [
1641
+ "zerovec",
1642
+ ]
1643
+
1644
+ [[package]]
1645
+ name = "ppv-lite86"
1646
+ version = "0.2.21"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1649
+ dependencies = [
1650
+ "zerocopy",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "prettyplease"
1655
+ version = "0.2.37"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1658
+ dependencies = [
1659
+ "proc-macro2",
1660
+ "syn",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "proc-macro2"
1665
+ version = "1.0.106"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1668
+ dependencies = [
1669
+ "unicode-ident",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "proptest"
1674
+ version = "1.10.0"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
1677
+ dependencies = [
1678
+ "bit-set",
1679
+ "bit-vec",
1680
+ "bitflags",
1681
+ "num-traits",
1682
+ "rand 0.9.2",
1683
+ "rand_chacha 0.9.0",
1684
+ "rand_xorshift",
1685
+ "regex-syntax",
1686
+ "rusty-fork",
1687
+ "tempfile",
1688
+ "unarray",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "pyo3"
1693
+ version = "0.24.2"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
1696
+ dependencies = [
1697
+ "cfg-if",
1698
+ "indoc",
1699
+ "libc",
1700
+ "memoffset",
1701
+ "once_cell",
1702
+ "portable-atomic",
1703
+ "pyo3-build-config",
1704
+ "pyo3-ffi",
1705
+ "pyo3-macros",
1706
+ "unindent",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "pyo3-build-config"
1711
+ version = "0.24.2"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
1714
+ dependencies = [
1715
+ "once_cell",
1716
+ "target-lexicon",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "pyo3-ffi"
1721
+ version = "0.24.2"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
1724
+ dependencies = [
1725
+ "libc",
1726
+ "pyo3-build-config",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "pyo3-macros"
1731
+ version = "0.24.2"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
1734
+ dependencies = [
1735
+ "proc-macro2",
1736
+ "pyo3-macros-backend",
1737
+ "quote",
1738
+ "syn",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "pyo3-macros-backend"
1743
+ version = "0.24.2"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
1746
+ dependencies = [
1747
+ "heck",
1748
+ "proc-macro2",
1749
+ "pyo3-build-config",
1750
+ "quote",
1751
+ "syn",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "quick-error"
1756
+ version = "1.2.3"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1759
+
1760
+ [[package]]
1761
+ name = "quote"
1762
+ version = "1.0.44"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1765
+ dependencies = [
1766
+ "proc-macro2",
1767
+ ]
1768
+
1769
+ [[package]]
1770
+ name = "r-efi"
1771
+ version = "5.3.0"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1774
+
1775
+ [[package]]
1776
+ name = "r2d2"
1777
+ version = "0.8.10"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
1780
+ dependencies = [
1781
+ "log",
1782
+ "parking_lot",
1783
+ "scheduled-thread-pool",
1784
+ ]
1785
+
1786
+ [[package]]
1787
+ name = "r2d2_sqlite"
1788
+ version = "0.24.0"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "6a982edf65c129796dba72f8775b292ef482b40d035e827a9825b3bc07ccc5f2"
1791
+ dependencies = [
1792
+ "r2d2",
1793
+ "rusqlite",
1794
+ "uuid",
1795
+ ]
1796
+
1797
+ [[package]]
1798
+ name = "rand"
1799
+ version = "0.8.5"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1802
+ dependencies = [
1803
+ "libc",
1804
+ "rand_chacha 0.3.1",
1805
+ "rand_core 0.6.4",
1806
+ ]
1807
+
1808
+ [[package]]
1809
+ name = "rand"
1810
+ version = "0.9.2"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1813
+ dependencies = [
1814
+ "rand_chacha 0.9.0",
1815
+ "rand_core 0.9.5",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "rand"
1820
+ version = "0.10.0"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
1823
+ dependencies = [
1824
+ "chacha20",
1825
+ "getrandom 0.4.1",
1826
+ "rand_core 0.10.0",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "rand_chacha"
1831
+ version = "0.3.1"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1834
+ dependencies = [
1835
+ "ppv-lite86",
1836
+ "rand_core 0.6.4",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "rand_chacha"
1841
+ version = "0.9.0"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1844
+ dependencies = [
1845
+ "ppv-lite86",
1846
+ "rand_core 0.9.5",
1847
+ ]
1848
+
1849
+ [[package]]
1850
+ name = "rand_core"
1851
+ version = "0.6.4"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1854
+ dependencies = [
1855
+ "getrandom 0.2.17",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "rand_core"
1860
+ version = "0.9.5"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1863
+ dependencies = [
1864
+ "getrandom 0.3.4",
1865
+ ]
1866
+
1867
+ [[package]]
1868
+ name = "rand_core"
1869
+ version = "0.10.0"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
1872
+
1873
+ [[package]]
1874
+ name = "rand_xorshift"
1875
+ version = "0.4.0"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1878
+ dependencies = [
1879
+ "rand_core 0.9.5",
1880
+ ]
1881
+
1882
+ [[package]]
1883
+ name = "redox_syscall"
1884
+ version = "0.5.18"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1887
+ dependencies = [
1888
+ "bitflags",
1889
+ ]
1890
+
1891
+ [[package]]
1892
+ name = "regex"
1893
+ version = "1.12.3"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1896
+ dependencies = [
1897
+ "aho-corasick",
1898
+ "memchr",
1899
+ "regex-automata",
1900
+ "regex-syntax",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "regex-automata"
1905
+ version = "0.4.14"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1908
+ dependencies = [
1909
+ "aho-corasick",
1910
+ "memchr",
1911
+ "regex-syntax",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "regex-syntax"
1916
+ version = "0.8.9"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
1919
+
1920
+ [[package]]
1921
+ name = "reqwest"
1922
+ version = "0.12.28"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1925
+ dependencies = [
1926
+ "base64",
1927
+ "bytes",
1928
+ "encoding_rs",
1929
+ "futures-channel",
1930
+ "futures-core",
1931
+ "futures-util",
1932
+ "h2",
1933
+ "http",
1934
+ "http-body",
1935
+ "http-body-util",
1936
+ "hyper",
1937
+ "hyper-rustls",
1938
+ "hyper-tls",
1939
+ "hyper-util",
1940
+ "js-sys",
1941
+ "log",
1942
+ "mime",
1943
+ "native-tls",
1944
+ "percent-encoding",
1945
+ "pin-project-lite",
1946
+ "rustls-pki-types",
1947
+ "serde",
1948
+ "serde_json",
1949
+ "serde_urlencoded",
1950
+ "sync_wrapper",
1951
+ "tokio",
1952
+ "tokio-native-tls",
1953
+ "tower 0.5.3",
1954
+ "tower-http 0.6.8",
1955
+ "tower-service",
1956
+ "url",
1957
+ "wasm-bindgen",
1958
+ "wasm-bindgen-futures",
1959
+ "web-sys",
1960
+ ]
1961
+
1962
+ [[package]]
1963
+ name = "ring"
1964
+ version = "0.17.14"
1965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1966
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1967
+ dependencies = [
1968
+ "cc",
1969
+ "cfg-if",
1970
+ "getrandom 0.2.17",
1971
+ "libc",
1972
+ "untrusted",
1973
+ "windows-sys 0.52.0",
1974
+ ]
1975
+
1976
+ [[package]]
1977
+ name = "rusqlite"
1978
+ version = "0.31.0"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae"
1981
+ dependencies = [
1982
+ "bitflags",
1983
+ "fallible-iterator",
1984
+ "fallible-streaming-iterator",
1985
+ "hashlink",
1986
+ "libsqlite3-sys",
1987
+ "smallvec",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "rustc_version"
1992
+ version = "0.4.1"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1995
+ dependencies = [
1996
+ "semver",
1997
+ ]
1998
+
1999
+ [[package]]
2000
+ name = "rustix"
2001
+ version = "1.1.4"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2004
+ dependencies = [
2005
+ "bitflags",
2006
+ "errno",
2007
+ "libc",
2008
+ "linux-raw-sys",
2009
+ "windows-sys 0.61.2",
2010
+ ]
2011
+
2012
+ [[package]]
2013
+ name = "rustls"
2014
+ version = "0.23.36"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
2017
+ dependencies = [
2018
+ "once_cell",
2019
+ "rustls-pki-types",
2020
+ "rustls-webpki",
2021
+ "subtle",
2022
+ "zeroize",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "rustls-pki-types"
2027
+ version = "1.14.0"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2030
+ dependencies = [
2031
+ "zeroize",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "rustls-webpki"
2036
+ version = "0.103.10"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
2039
+ dependencies = [
2040
+ "ring",
2041
+ "rustls-pki-types",
2042
+ "untrusted",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "rustversion"
2047
+ version = "1.0.22"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2050
+
2051
+ [[package]]
2052
+ name = "rusty-fork"
2053
+ version = "0.3.1"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2056
+ dependencies = [
2057
+ "fnv",
2058
+ "quick-error",
2059
+ "tempfile",
2060
+ "wait-timeout",
2061
+ ]
2062
+
2063
+ [[package]]
2064
+ name = "ryu"
2065
+ version = "1.0.23"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2068
+
2069
+ [[package]]
2070
+ name = "ryu-js"
2071
+ version = "1.0.2"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "dd29631678d6fb0903b69223673e122c32e9ae559d0960a38d574695ebc0ea15"
2074
+
2075
+ [[package]]
2076
+ name = "schannel"
2077
+ version = "0.1.28"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2080
+ dependencies = [
2081
+ "windows-sys 0.61.2",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "scheduled-thread-pool"
2086
+ version = "0.2.7"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
2089
+ dependencies = [
2090
+ "parking_lot",
2091
+ ]
2092
+
2093
+ [[package]]
2094
+ name = "scopeguard"
2095
+ version = "1.2.0"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2098
+
2099
+ [[package]]
2100
+ name = "security-framework"
2101
+ version = "3.7.0"
2102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2103
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2104
+ dependencies = [
2105
+ "bitflags",
2106
+ "core-foundation 0.10.1",
2107
+ "core-foundation-sys",
2108
+ "libc",
2109
+ "security-framework-sys",
2110
+ ]
2111
+
2112
+ [[package]]
2113
+ name = "security-framework-sys"
2114
+ version = "2.17.0"
2115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2116
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2117
+ dependencies = [
2118
+ "core-foundation-sys",
2119
+ "libc",
2120
+ ]
2121
+
2122
+ [[package]]
2123
+ name = "semver"
2124
+ version = "1.0.27"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2127
+
2128
+ [[package]]
2129
+ name = "serde"
2130
+ version = "1.0.228"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2133
+ dependencies = [
2134
+ "serde_core",
2135
+ "serde_derive",
2136
+ ]
2137
+
2138
+ [[package]]
2139
+ name = "serde_core"
2140
+ version = "1.0.228"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2143
+ dependencies = [
2144
+ "serde_derive",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "serde_derive"
2149
+ version = "1.0.228"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2152
+ dependencies = [
2153
+ "proc-macro2",
2154
+ "quote",
2155
+ "syn",
2156
+ ]
2157
+
2158
+ [[package]]
2159
+ name = "serde_json"
2160
+ version = "1.0.149"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2163
+ dependencies = [
2164
+ "itoa",
2165
+ "memchr",
2166
+ "serde",
2167
+ "serde_core",
2168
+ "zmij",
2169
+ ]
2170
+
2171
+ [[package]]
2172
+ name = "serde_json_canonicalizer"
2173
+ version = "0.3.2"
2174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2175
+ checksum = "fe52319a927259afbfa5180c5157cd8167edfd3e8c254f9558c7fef44c5649f2"
2176
+ dependencies = [
2177
+ "ryu-js",
2178
+ "serde",
2179
+ "serde_json",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "serde_path_to_error"
2184
+ version = "0.1.20"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2187
+ dependencies = [
2188
+ "itoa",
2189
+ "serde",
2190
+ "serde_core",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "serde_spanned"
2195
+ version = "0.6.9"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2198
+ dependencies = [
2199
+ "serde",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "serde_urlencoded"
2204
+ version = "0.7.1"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2207
+ dependencies = [
2208
+ "form_urlencoded",
2209
+ "itoa",
2210
+ "ryu",
2211
+ "serde",
2212
+ ]
2213
+
2214
+ [[package]]
2215
+ name = "sha2"
2216
+ version = "0.10.8"
2217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2218
+ checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
2219
+ dependencies = [
2220
+ "cfg-if",
2221
+ "cpufeatures 0.2.17",
2222
+ "digest",
2223
+ ]
2224
+
2225
+ [[package]]
2226
+ name = "sharded-slab"
2227
+ version = "0.1.7"
2228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2229
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2230
+ dependencies = [
2231
+ "lazy_static",
2232
+ ]
2233
+
2234
+ [[package]]
2235
+ name = "shlex"
2236
+ version = "1.3.0"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2239
+
2240
+ [[package]]
2241
+ name = "signal-hook-registry"
2242
+ version = "1.4.8"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2245
+ dependencies = [
2246
+ "errno",
2247
+ "libc",
2248
+ ]
2249
+
2250
+ [[package]]
2251
+ name = "signature"
2252
+ version = "2.2.0"
2253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2254
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2255
+ dependencies = [
2256
+ "rand_core 0.6.4",
2257
+ ]
2258
+
2259
+ [[package]]
2260
+ name = "slab"
2261
+ version = "0.4.12"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2264
+
2265
+ [[package]]
2266
+ name = "smallvec"
2267
+ version = "1.15.1"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2270
+
2271
+ [[package]]
2272
+ name = "socket2"
2273
+ version = "0.6.2"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
2276
+ dependencies = [
2277
+ "libc",
2278
+ "windows-sys 0.60.2",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "spki"
2283
+ version = "0.7.3"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2286
+ dependencies = [
2287
+ "base64ct",
2288
+ "der",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "stable_deref_trait"
2293
+ version = "1.2.1"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2296
+
2297
+ [[package]]
2298
+ name = "strsim"
2299
+ version = "0.11.1"
2300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2301
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2302
+
2303
+ [[package]]
2304
+ name = "subtle"
2305
+ version = "2.6.1"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2308
+
2309
+ [[package]]
2310
+ name = "syn"
2311
+ version = "2.0.117"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2314
+ dependencies = [
2315
+ "proc-macro2",
2316
+ "quote",
2317
+ "unicode-ident",
2318
+ ]
2319
+
2320
+ [[package]]
2321
+ name = "sync_wrapper"
2322
+ version = "1.0.2"
2323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2324
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2325
+ dependencies = [
2326
+ "futures-core",
2327
+ ]
2328
+
2329
+ [[package]]
2330
+ name = "synstructure"
2331
+ version = "0.13.2"
2332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2333
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2334
+ dependencies = [
2335
+ "proc-macro2",
2336
+ "quote",
2337
+ "syn",
2338
+ ]
2339
+
2340
+ [[package]]
2341
+ name = "system-configuration"
2342
+ version = "0.7.0"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2345
+ dependencies = [
2346
+ "bitflags",
2347
+ "core-foundation 0.9.4",
2348
+ "system-configuration-sys",
2349
+ ]
2350
+
2351
+ [[package]]
2352
+ name = "system-configuration-sys"
2353
+ version = "0.6.0"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2356
+ dependencies = [
2357
+ "core-foundation-sys",
2358
+ "libc",
2359
+ ]
2360
+
2361
+ [[package]]
2362
+ name = "target-lexicon"
2363
+ version = "0.13.5"
2364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2365
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2366
+
2367
+ [[package]]
2368
+ name = "tempfile"
2369
+ version = "3.26.0"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
2372
+ dependencies = [
2373
+ "fastrand",
2374
+ "getrandom 0.4.1",
2375
+ "once_cell",
2376
+ "rustix",
2377
+ "windows-sys 0.61.2",
2378
+ ]
2379
+
2380
+ [[package]]
2381
+ name = "thiserror"
2382
+ version = "1.0.69"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2385
+ dependencies = [
2386
+ "thiserror-impl",
2387
+ ]
2388
+
2389
+ [[package]]
2390
+ name = "thiserror-impl"
2391
+ version = "1.0.69"
2392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2393
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2394
+ dependencies = [
2395
+ "proc-macro2",
2396
+ "quote",
2397
+ "syn",
2398
+ ]
2399
+
2400
+ [[package]]
2401
+ name = "thread_local"
2402
+ version = "1.1.9"
2403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2404
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2405
+ dependencies = [
2406
+ "cfg-if",
2407
+ ]
2408
+
2409
+ [[package]]
2410
+ name = "tinystr"
2411
+ version = "0.8.2"
2412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2413
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2414
+ dependencies = [
2415
+ "displaydoc",
2416
+ "zerovec",
2417
+ ]
2418
+
2419
+ [[package]]
2420
+ name = "tokio"
2421
+ version = "1.49.0"
2422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2423
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2424
+ dependencies = [
2425
+ "bytes",
2426
+ "libc",
2427
+ "mio",
2428
+ "parking_lot",
2429
+ "pin-project-lite",
2430
+ "signal-hook-registry",
2431
+ "socket2",
2432
+ "tokio-macros",
2433
+ "windows-sys 0.61.2",
2434
+ ]
2435
+
2436
+ [[package]]
2437
+ name = "tokio-macros"
2438
+ version = "2.6.0"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2441
+ dependencies = [
2442
+ "proc-macro2",
2443
+ "quote",
2444
+ "syn",
2445
+ ]
2446
+
2447
+ [[package]]
2448
+ name = "tokio-native-tls"
2449
+ version = "0.3.1"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2452
+ dependencies = [
2453
+ "native-tls",
2454
+ "tokio",
2455
+ ]
2456
+
2457
+ [[package]]
2458
+ name = "tokio-rustls"
2459
+ version = "0.26.4"
2460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2461
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2462
+ dependencies = [
2463
+ "rustls",
2464
+ "tokio",
2465
+ ]
2466
+
2467
+ [[package]]
2468
+ name = "tokio-util"
2469
+ version = "0.7.18"
2470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2471
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2472
+ dependencies = [
2473
+ "bytes",
2474
+ "futures-core",
2475
+ "futures-sink",
2476
+ "pin-project-lite",
2477
+ "tokio",
2478
+ ]
2479
+
2480
+ [[package]]
2481
+ name = "toml"
2482
+ version = "0.8.23"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2485
+ dependencies = [
2486
+ "serde",
2487
+ "serde_spanned",
2488
+ "toml_datetime",
2489
+ "toml_edit",
2490
+ ]
2491
+
2492
+ [[package]]
2493
+ name = "toml_datetime"
2494
+ version = "0.6.11"
2495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2496
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2497
+ dependencies = [
2498
+ "serde",
2499
+ ]
2500
+
2501
+ [[package]]
2502
+ name = "toml_edit"
2503
+ version = "0.22.27"
2504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2506
+ dependencies = [
2507
+ "indexmap",
2508
+ "serde",
2509
+ "serde_spanned",
2510
+ "toml_datetime",
2511
+ "toml_write",
2512
+ "winnow",
2513
+ ]
2514
+
2515
+ [[package]]
2516
+ name = "toml_write"
2517
+ version = "0.1.2"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2520
+
2521
+ [[package]]
2522
+ name = "tower"
2523
+ version = "0.4.13"
2524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2525
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2526
+ dependencies = [
2527
+ "futures-core",
2528
+ "futures-util",
2529
+ "pin-project",
2530
+ "pin-project-lite",
2531
+ "tower-layer",
2532
+ "tower-service",
2533
+ "tracing",
2534
+ ]
2535
+
2536
+ [[package]]
2537
+ name = "tower"
2538
+ version = "0.5.3"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2541
+ dependencies = [
2542
+ "futures-core",
2543
+ "futures-util",
2544
+ "pin-project-lite",
2545
+ "sync_wrapper",
2546
+ "tokio",
2547
+ "tower-layer",
2548
+ "tower-service",
2549
+ "tracing",
2550
+ ]
2551
+
2552
+ [[package]]
2553
+ name = "tower-http"
2554
+ version = "0.5.2"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
2557
+ dependencies = [
2558
+ "bitflags",
2559
+ "bytes",
2560
+ "http",
2561
+ "http-body",
2562
+ "http-body-util",
2563
+ "pin-project-lite",
2564
+ "tower-layer",
2565
+ "tower-service",
2566
+ "tracing",
2567
+ ]
2568
+
2569
+ [[package]]
2570
+ name = "tower-http"
2571
+ version = "0.6.8"
2572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2573
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2574
+ dependencies = [
2575
+ "bitflags",
2576
+ "bytes",
2577
+ "futures-util",
2578
+ "http",
2579
+ "http-body",
2580
+ "iri-string",
2581
+ "pin-project-lite",
2582
+ "tower 0.5.3",
2583
+ "tower-layer",
2584
+ "tower-service",
2585
+ ]
2586
+
2587
+ [[package]]
2588
+ name = "tower-layer"
2589
+ version = "0.3.3"
2590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2591
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2592
+
2593
+ [[package]]
2594
+ name = "tower-service"
2595
+ version = "0.3.3"
2596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2597
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2598
+
2599
+ [[package]]
2600
+ name = "tracing"
2601
+ version = "0.1.44"
2602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2603
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2604
+ dependencies = [
2605
+ "log",
2606
+ "pin-project-lite",
2607
+ "tracing-attributes",
2608
+ "tracing-core",
2609
+ ]
2610
+
2611
+ [[package]]
2612
+ name = "tracing-attributes"
2613
+ version = "0.1.31"
2614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2615
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2616
+ dependencies = [
2617
+ "proc-macro2",
2618
+ "quote",
2619
+ "syn",
2620
+ ]
2621
+
2622
+ [[package]]
2623
+ name = "tracing-core"
2624
+ version = "0.1.36"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2627
+ dependencies = [
2628
+ "once_cell",
2629
+ "valuable",
2630
+ ]
2631
+
2632
+ [[package]]
2633
+ name = "tracing-log"
2634
+ version = "0.2.0"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2637
+ dependencies = [
2638
+ "log",
2639
+ "once_cell",
2640
+ "tracing-core",
2641
+ ]
2642
+
2643
+ [[package]]
2644
+ name = "tracing-subscriber"
2645
+ version = "0.3.22"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
2648
+ dependencies = [
2649
+ "matchers",
2650
+ "nu-ansi-term",
2651
+ "once_cell",
2652
+ "regex-automata",
2653
+ "sharded-slab",
2654
+ "smallvec",
2655
+ "thread_local",
2656
+ "tracing",
2657
+ "tracing-core",
2658
+ "tracing-log",
2659
+ ]
2660
+
2661
+ [[package]]
2662
+ name = "try-lock"
2663
+ version = "0.2.5"
2664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2665
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2666
+
2667
+ [[package]]
2668
+ name = "typenum"
2669
+ version = "1.19.0"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2672
+
2673
+ [[package]]
2674
+ name = "ulid"
2675
+ version = "1.2.1"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "470dbf6591da1b39d43c14523b2b469c86879a53e8b758c8e090a470fe7b1fbe"
2678
+ dependencies = [
2679
+ "rand 0.9.2",
2680
+ "web-time",
2681
+ ]
2682
+
2683
+ [[package]]
2684
+ name = "unarray"
2685
+ version = "0.1.4"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
2688
+
2689
+ [[package]]
2690
+ name = "unicode-ident"
2691
+ version = "1.0.24"
2692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2693
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2694
+
2695
+ [[package]]
2696
+ name = "unicode-segmentation"
2697
+ version = "1.12.0"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2700
+
2701
+ [[package]]
2702
+ name = "unicode-xid"
2703
+ version = "0.2.6"
2704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2705
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2706
+
2707
+ [[package]]
2708
+ name = "unindent"
2709
+ version = "0.2.4"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2712
+
2713
+ [[package]]
2714
+ name = "untrusted"
2715
+ version = "0.9.0"
2716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2717
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2718
+
2719
+ [[package]]
2720
+ name = "url"
2721
+ version = "2.5.8"
2722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2723
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2724
+ dependencies = [
2725
+ "form_urlencoded",
2726
+ "idna",
2727
+ "percent-encoding",
2728
+ "serde",
2729
+ ]
2730
+
2731
+ [[package]]
2732
+ name = "utf8_iter"
2733
+ version = "1.0.4"
2734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2735
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2736
+
2737
+ [[package]]
2738
+ name = "utf8parse"
2739
+ version = "0.2.2"
2740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2741
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2742
+
2743
+ [[package]]
2744
+ name = "uuid"
2745
+ version = "1.22.0"
2746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2747
+ checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
2748
+ dependencies = [
2749
+ "getrandom 0.4.1",
2750
+ "js-sys",
2751
+ "rand 0.10.0",
2752
+ "wasm-bindgen",
2753
+ ]
2754
+
2755
+ [[package]]
2756
+ name = "valuable"
2757
+ version = "0.1.1"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2760
+
2761
+ [[package]]
2762
+ name = "vcpkg"
2763
+ version = "0.2.15"
2764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2765
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2766
+
2767
+ [[package]]
2768
+ name = "version_check"
2769
+ version = "0.9.5"
2770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2771
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2772
+
2773
+ [[package]]
2774
+ name = "wait-timeout"
2775
+ version = "0.2.1"
2776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2777
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
2778
+ dependencies = [
2779
+ "libc",
2780
+ ]
2781
+
2782
+ [[package]]
2783
+ name = "want"
2784
+ version = "0.3.1"
2785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2786
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2787
+ dependencies = [
2788
+ "try-lock",
2789
+ ]
2790
+
2791
+ [[package]]
2792
+ name = "wasi"
2793
+ version = "0.11.1+wasi-snapshot-preview1"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2796
+
2797
+ [[package]]
2798
+ name = "wasip2"
2799
+ version = "1.0.2+wasi-0.2.9"
2800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2802
+ dependencies = [
2803
+ "wit-bindgen",
2804
+ ]
2805
+
2806
+ [[package]]
2807
+ name = "wasip3"
2808
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2811
+ dependencies = [
2812
+ "wit-bindgen",
2813
+ ]
2814
+
2815
+ [[package]]
2816
+ name = "wasm-bindgen"
2817
+ version = "0.2.112"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "05d7d0fce354c88b7982aec4400b3e7fcf723c32737cef571bd165f7613557ee"
2820
+ dependencies = [
2821
+ "cfg-if",
2822
+ "once_cell",
2823
+ "rustversion",
2824
+ "wasm-bindgen-macro",
2825
+ "wasm-bindgen-shared",
2826
+ ]
2827
+
2828
+ [[package]]
2829
+ name = "wasm-bindgen-futures"
2830
+ version = "0.4.62"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "ee85afca410ac4abba5b584b12e77ea225db6ee5471d0aebaae0861166f9378a"
2833
+ dependencies = [
2834
+ "cfg-if",
2835
+ "futures-util",
2836
+ "js-sys",
2837
+ "once_cell",
2838
+ "wasm-bindgen",
2839
+ "web-sys",
2840
+ ]
2841
+
2842
+ [[package]]
2843
+ name = "wasm-bindgen-macro"
2844
+ version = "0.2.112"
2845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2846
+ checksum = "55839b71ba921e4f75b674cb16f843f4b1f3b26ddfcb3454de1cf65cc021ec0f"
2847
+ dependencies = [
2848
+ "quote",
2849
+ "wasm-bindgen-macro-support",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "wasm-bindgen-macro-support"
2854
+ version = "0.2.112"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "caf2e969c2d60ff52e7e98b7392ff1588bffdd1ccd4769eba27222fd3d621571"
2857
+ dependencies = [
2858
+ "bumpalo",
2859
+ "proc-macro2",
2860
+ "quote",
2861
+ "syn",
2862
+ "wasm-bindgen-shared",
2863
+ ]
2864
+
2865
+ [[package]]
2866
+ name = "wasm-bindgen-shared"
2867
+ version = "0.2.112"
2868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2869
+ checksum = "0861f0dcdf46ea819407495634953cdcc8a8c7215ab799a7a7ce366be71c7b30"
2870
+ dependencies = [
2871
+ "unicode-ident",
2872
+ ]
2873
+
2874
+ [[package]]
2875
+ name = "wasm-encoder"
2876
+ version = "0.244.0"
2877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2878
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2879
+ dependencies = [
2880
+ "leb128fmt",
2881
+ "wasmparser",
2882
+ ]
2883
+
2884
+ [[package]]
2885
+ name = "wasm-metadata"
2886
+ version = "0.244.0"
2887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2888
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2889
+ dependencies = [
2890
+ "anyhow",
2891
+ "indexmap",
2892
+ "wasm-encoder",
2893
+ "wasmparser",
2894
+ ]
2895
+
2896
+ [[package]]
2897
+ name = "wasmparser"
2898
+ version = "0.244.0"
2899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2900
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2901
+ dependencies = [
2902
+ "bitflags",
2903
+ "hashbrown 0.15.5",
2904
+ "indexmap",
2905
+ "semver",
2906
+ ]
2907
+
2908
+ [[package]]
2909
+ name = "web-sys"
2910
+ version = "0.3.89"
2911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2912
+ checksum = "10053fbf9a374174094915bbce141e87a6bf32ecd9a002980db4b638405e8962"
2913
+ dependencies = [
2914
+ "js-sys",
2915
+ "wasm-bindgen",
2916
+ ]
2917
+
2918
+ [[package]]
2919
+ name = "web-time"
2920
+ version = "1.1.0"
2921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2922
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2923
+ dependencies = [
2924
+ "js-sys",
2925
+ "wasm-bindgen",
2926
+ ]
2927
+
2928
+ [[package]]
2929
+ name = "windows-core"
2930
+ version = "0.62.2"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2933
+ dependencies = [
2934
+ "windows-implement",
2935
+ "windows-interface",
2936
+ "windows-link",
2937
+ "windows-result",
2938
+ "windows-strings",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "windows-implement"
2943
+ version = "0.60.2"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2946
+ dependencies = [
2947
+ "proc-macro2",
2948
+ "quote",
2949
+ "syn",
2950
+ ]
2951
+
2952
+ [[package]]
2953
+ name = "windows-interface"
2954
+ version = "0.59.3"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2957
+ dependencies = [
2958
+ "proc-macro2",
2959
+ "quote",
2960
+ "syn",
2961
+ ]
2962
+
2963
+ [[package]]
2964
+ name = "windows-link"
2965
+ version = "0.2.1"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2968
+
2969
+ [[package]]
2970
+ name = "windows-registry"
2971
+ version = "0.6.1"
2972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2973
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
2974
+ dependencies = [
2975
+ "windows-link",
2976
+ "windows-result",
2977
+ "windows-strings",
2978
+ ]
2979
+
2980
+ [[package]]
2981
+ name = "windows-result"
2982
+ version = "0.4.1"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2985
+ dependencies = [
2986
+ "windows-link",
2987
+ ]
2988
+
2989
+ [[package]]
2990
+ name = "windows-strings"
2991
+ version = "0.5.1"
2992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2993
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2994
+ dependencies = [
2995
+ "windows-link",
2996
+ ]
2997
+
2998
+ [[package]]
2999
+ name = "windows-sys"
3000
+ version = "0.52.0"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3003
+ dependencies = [
3004
+ "windows-targets 0.52.6",
3005
+ ]
3006
+
3007
+ [[package]]
3008
+ name = "windows-sys"
3009
+ version = "0.60.2"
3010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3011
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3012
+ dependencies = [
3013
+ "windows-targets 0.53.5",
3014
+ ]
3015
+
3016
+ [[package]]
3017
+ name = "windows-sys"
3018
+ version = "0.61.2"
3019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3020
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3021
+ dependencies = [
3022
+ "windows-link",
3023
+ ]
3024
+
3025
+ [[package]]
3026
+ name = "windows-targets"
3027
+ version = "0.52.6"
3028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3029
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3030
+ dependencies = [
3031
+ "windows_aarch64_gnullvm 0.52.6",
3032
+ "windows_aarch64_msvc 0.52.6",
3033
+ "windows_i686_gnu 0.52.6",
3034
+ "windows_i686_gnullvm 0.52.6",
3035
+ "windows_i686_msvc 0.52.6",
3036
+ "windows_x86_64_gnu 0.52.6",
3037
+ "windows_x86_64_gnullvm 0.52.6",
3038
+ "windows_x86_64_msvc 0.52.6",
3039
+ ]
3040
+
3041
+ [[package]]
3042
+ name = "windows-targets"
3043
+ version = "0.53.5"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3046
+ dependencies = [
3047
+ "windows-link",
3048
+ "windows_aarch64_gnullvm 0.53.1",
3049
+ "windows_aarch64_msvc 0.53.1",
3050
+ "windows_i686_gnu 0.53.1",
3051
+ "windows_i686_gnullvm 0.53.1",
3052
+ "windows_i686_msvc 0.53.1",
3053
+ "windows_x86_64_gnu 0.53.1",
3054
+ "windows_x86_64_gnullvm 0.53.1",
3055
+ "windows_x86_64_msvc 0.53.1",
3056
+ ]
3057
+
3058
+ [[package]]
3059
+ name = "windows_aarch64_gnullvm"
3060
+ version = "0.52.6"
3061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3062
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3063
+
3064
+ [[package]]
3065
+ name = "windows_aarch64_gnullvm"
3066
+ version = "0.53.1"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3069
+
3070
+ [[package]]
3071
+ name = "windows_aarch64_msvc"
3072
+ version = "0.52.6"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3075
+
3076
+ [[package]]
3077
+ name = "windows_aarch64_msvc"
3078
+ version = "0.53.1"
3079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3080
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3081
+
3082
+ [[package]]
3083
+ name = "windows_i686_gnu"
3084
+ version = "0.52.6"
3085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3086
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3087
+
3088
+ [[package]]
3089
+ name = "windows_i686_gnu"
3090
+ version = "0.53.1"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3093
+
3094
+ [[package]]
3095
+ name = "windows_i686_gnullvm"
3096
+ version = "0.52.6"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3099
+
3100
+ [[package]]
3101
+ name = "windows_i686_gnullvm"
3102
+ version = "0.53.1"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3105
+
3106
+ [[package]]
3107
+ name = "windows_i686_msvc"
3108
+ version = "0.52.6"
3109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3110
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3111
+
3112
+ [[package]]
3113
+ name = "windows_i686_msvc"
3114
+ version = "0.53.1"
3115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3116
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3117
+
3118
+ [[package]]
3119
+ name = "windows_x86_64_gnu"
3120
+ version = "0.52.6"
3121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3122
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3123
+
3124
+ [[package]]
3125
+ name = "windows_x86_64_gnu"
3126
+ version = "0.53.1"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3129
+
3130
+ [[package]]
3131
+ name = "windows_x86_64_gnullvm"
3132
+ version = "0.52.6"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3135
+
3136
+ [[package]]
3137
+ name = "windows_x86_64_gnullvm"
3138
+ version = "0.53.1"
3139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3140
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3141
+
3142
+ [[package]]
3143
+ name = "windows_x86_64_msvc"
3144
+ version = "0.52.6"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3147
+
3148
+ [[package]]
3149
+ name = "windows_x86_64_msvc"
3150
+ version = "0.53.1"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3153
+
3154
+ [[package]]
3155
+ name = "winnow"
3156
+ version = "0.7.15"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
3159
+ dependencies = [
3160
+ "memchr",
3161
+ ]
3162
+
3163
+ [[package]]
3164
+ name = "wit-bindgen"
3165
+ version = "0.51.0"
3166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3167
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3168
+ dependencies = [
3169
+ "wit-bindgen-rust-macro",
3170
+ ]
3171
+
3172
+ [[package]]
3173
+ name = "wit-bindgen-core"
3174
+ version = "0.51.0"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3177
+ dependencies = [
3178
+ "anyhow",
3179
+ "heck",
3180
+ "wit-parser",
3181
+ ]
3182
+
3183
+ [[package]]
3184
+ name = "wit-bindgen-rust"
3185
+ version = "0.51.0"
3186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3187
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3188
+ dependencies = [
3189
+ "anyhow",
3190
+ "heck",
3191
+ "indexmap",
3192
+ "prettyplease",
3193
+ "syn",
3194
+ "wasm-metadata",
3195
+ "wit-bindgen-core",
3196
+ "wit-component",
3197
+ ]
3198
+
3199
+ [[package]]
3200
+ name = "wit-bindgen-rust-macro"
3201
+ version = "0.51.0"
3202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3203
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3204
+ dependencies = [
3205
+ "anyhow",
3206
+ "prettyplease",
3207
+ "proc-macro2",
3208
+ "quote",
3209
+ "syn",
3210
+ "wit-bindgen-core",
3211
+ "wit-bindgen-rust",
3212
+ ]
3213
+
3214
+ [[package]]
3215
+ name = "wit-component"
3216
+ version = "0.244.0"
3217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3218
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3219
+ dependencies = [
3220
+ "anyhow",
3221
+ "bitflags",
3222
+ "indexmap",
3223
+ "log",
3224
+ "serde",
3225
+ "serde_derive",
3226
+ "serde_json",
3227
+ "wasm-encoder",
3228
+ "wasm-metadata",
3229
+ "wasmparser",
3230
+ "wit-parser",
3231
+ ]
3232
+
3233
+ [[package]]
3234
+ name = "wit-parser"
3235
+ version = "0.244.0"
3236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3237
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3238
+ dependencies = [
3239
+ "anyhow",
3240
+ "id-arena",
3241
+ "indexmap",
3242
+ "log",
3243
+ "semver",
3244
+ "serde",
3245
+ "serde_derive",
3246
+ "serde_json",
3247
+ "unicode-xid",
3248
+ "wasmparser",
3249
+ ]
3250
+
3251
+ [[package]]
3252
+ name = "writeable"
3253
+ version = "0.6.2"
3254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3255
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3256
+
3257
+ [[package]]
3258
+ name = "yoke"
3259
+ version = "0.8.1"
3260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3261
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3262
+ dependencies = [
3263
+ "stable_deref_trait",
3264
+ "yoke-derive",
3265
+ "zerofrom",
3266
+ ]
3267
+
3268
+ [[package]]
3269
+ name = "yoke-derive"
3270
+ version = "0.8.1"
3271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3272
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3273
+ dependencies = [
3274
+ "proc-macro2",
3275
+ "quote",
3276
+ "syn",
3277
+ "synstructure",
3278
+ ]
3279
+
3280
+ [[package]]
3281
+ name = "zerocopy"
3282
+ version = "0.8.39"
3283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3284
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
3285
+ dependencies = [
3286
+ "zerocopy-derive",
3287
+ ]
3288
+
3289
+ [[package]]
3290
+ name = "zerocopy-derive"
3291
+ version = "0.8.39"
3292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3293
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
3294
+ dependencies = [
3295
+ "proc-macro2",
3296
+ "quote",
3297
+ "syn",
3298
+ ]
3299
+
3300
+ [[package]]
3301
+ name = "zerofrom"
3302
+ version = "0.1.6"
3303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3304
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3305
+ dependencies = [
3306
+ "zerofrom-derive",
3307
+ ]
3308
+
3309
+ [[package]]
3310
+ name = "zerofrom-derive"
3311
+ version = "0.1.6"
3312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3313
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3314
+ dependencies = [
3315
+ "proc-macro2",
3316
+ "quote",
3317
+ "syn",
3318
+ "synstructure",
3319
+ ]
3320
+
3321
+ [[package]]
3322
+ name = "zeroize"
3323
+ version = "1.8.2"
3324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3325
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3326
+ dependencies = [
3327
+ "zeroize_derive",
3328
+ ]
3329
+
3330
+ [[package]]
3331
+ name = "zeroize_derive"
3332
+ version = "1.4.3"
3333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3334
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
3335
+ dependencies = [
3336
+ "proc-macro2",
3337
+ "quote",
3338
+ "syn",
3339
+ ]
3340
+
3341
+ [[package]]
3342
+ name = "zerotrie"
3343
+ version = "0.2.3"
3344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3345
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3346
+ dependencies = [
3347
+ "displaydoc",
3348
+ "yoke",
3349
+ "zerofrom",
3350
+ ]
3351
+
3352
+ [[package]]
3353
+ name = "zerovec"
3354
+ version = "0.11.5"
3355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3356
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3357
+ dependencies = [
3358
+ "yoke",
3359
+ "zerofrom",
3360
+ "zerovec-derive",
3361
+ ]
3362
+
3363
+ [[package]]
3364
+ name = "zerovec-derive"
3365
+ version = "0.11.2"
3366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3367
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3368
+ dependencies = [
3369
+ "proc-macro2",
3370
+ "quote",
3371
+ "syn",
3372
+ ]
3373
+
3374
+ [[package]]
3375
+ name = "zmij"
3376
+ version = "1.0.21"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"