flowproof 0.0.1__tar.gz → 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 (55) hide show
  1. flowproof-0.1.0/Cargo.lock +3085 -0
  2. flowproof-0.1.0/Cargo.toml +34 -0
  3. flowproof-0.1.0/PKG-INFO +62 -0
  4. flowproof-0.1.0/README.md +43 -0
  5. flowproof-0.1.0/crates/flowproof-adapters/Cargo.toml +23 -0
  6. flowproof-0.1.0/crates/flowproof-adapters/src/lib.rs +46 -0
  7. flowproof-0.1.0/crates/flowproof-adapters/src/sap_com.rs +31 -0
  8. flowproof-0.1.0/crates/flowproof-adapters/src/web.rs +497 -0
  9. flowproof-0.1.0/crates/flowproof-agent/Cargo.toml +22 -0
  10. flowproof-0.1.0/crates/flowproof-agent/src/author.rs +271 -0
  11. flowproof-0.1.0/crates/flowproof-agent/src/heal.rs +440 -0
  12. flowproof-0.1.0/crates/flowproof-agent/src/lib.rs +136 -0
  13. flowproof-0.1.0/crates/flowproof-agent/src/llm.rs +144 -0
  14. flowproof-0.1.0/crates/flowproof-agent/src/recorder.rs +1094 -0
  15. flowproof-0.1.0/crates/flowproof-agent/src/rules.rs +1342 -0
  16. flowproof-0.1.0/crates/flowproof-agent/src/spec.rs +170 -0
  17. flowproof-0.1.0/crates/flowproof-cli/Cargo.toml +32 -0
  18. flowproof-0.1.0/crates/flowproof-cli/src/lib.rs +480 -0
  19. flowproof-0.1.0/crates/flowproof-cli/src/main.rs +9 -0
  20. flowproof-0.1.0/crates/flowproof-cli/tests/calc_e2e.rs +45 -0
  21. flowproof-0.1.0/crates/flowproof-cli/tests/llm_author_e2e.rs +169 -0
  22. flowproof-0.1.0/crates/flowproof-cli/tests/notepad_e2e.rs +96 -0
  23. flowproof-0.1.0/crates/flowproof-cli/tests/web_e2e.rs +746 -0
  24. flowproof-0.1.0/crates/flowproof-driver/Cargo.toml +31 -0
  25. flowproof-0.1.0/crates/flowproof-driver/src/app.rs +729 -0
  26. flowproof-0.1.0/crates/flowproof-driver/src/backend.rs +64 -0
  27. flowproof-0.1.0/crates/flowproof-driver/src/gdi.rs +91 -0
  28. flowproof-0.1.0/crates/flowproof-driver/src/lib.rs +111 -0
  29. flowproof-0.1.0/crates/flowproof-driver/src/mock.rs +247 -0
  30. flowproof-0.1.0/crates/flowproof-driver/src/oob.rs +214 -0
  31. flowproof-0.1.0/crates/flowproof-driver/src/recording.rs +395 -0
  32. flowproof-0.1.0/crates/flowproof-driver/src/redact.rs +135 -0
  33. flowproof-0.1.0/crates/flowproof-python/Cargo.toml +27 -0
  34. flowproof-0.1.0/crates/flowproof-python/src/lib.rs +124 -0
  35. flowproof-0.1.0/crates/flowproof-replay/Cargo.toml +22 -0
  36. flowproof-0.1.0/crates/flowproof-replay/src/lib.rs +667 -0
  37. flowproof-0.1.0/crates/flowproof-replay/src/report.rs +575 -0
  38. flowproof-0.1.0/crates/flowproof-replay/tests/replay_calc.rs +783 -0
  39. flowproof-0.1.0/crates/flowproof-trace/Cargo.toml +19 -0
  40. flowproof-0.1.0/crates/flowproof-trace/schema/trace-v1.schema.json +391 -0
  41. flowproof-0.1.0/crates/flowproof-trace/src/format.rs +376 -0
  42. flowproof-0.1.0/crates/flowproof-trace/src/lib.rs +87 -0
  43. flowproof-0.1.0/crates/flowproof-trace/src/secret.rs +112 -0
  44. flowproof-0.1.0/crates/flowproof-trace/tests/fixtures/sample.trace.jsonl +3 -0
  45. flowproof-0.1.0/crates/flowproof-trace/tests/schema_conformance.rs +61 -0
  46. flowproof-0.1.0/flowproof/__init__.py +38 -0
  47. flowproof-0.1.0/flowproof/cli.py +16 -0
  48. flowproof-0.1.0/flowproof/flow.py +190 -0
  49. flowproof-0.1.0/flowproof/mcp_server.py +68 -0
  50. flowproof-0.1.0/flowproof/py.typed +0 -0
  51. flowproof-0.1.0/pyproject.toml +68 -0
  52. flowproof-0.0.1/PKG-INFO +0 -25
  53. flowproof-0.0.1/README.md +0 -10
  54. flowproof-0.0.1/flowproof/__init__.py +0 -10
  55. flowproof-0.0.1/pyproject.toml +0 -27
@@ -0,0 +1,3085 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "getrandom 0.3.4",
19
+ "once_cell",
20
+ "serde",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "android_system_properties"
36
+ version = "0.1.5"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
39
+ dependencies = [
40
+ "libc",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "anstream"
45
+ version = "1.0.0"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
48
+ dependencies = [
49
+ "anstyle",
50
+ "anstyle-parse",
51
+ "anstyle-query",
52
+ "anstyle-wincon",
53
+ "colorchoice",
54
+ "is_terminal_polyfill",
55
+ "utf8parse",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "anstyle"
60
+ version = "1.0.14"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
63
+
64
+ [[package]]
65
+ name = "anstyle-parse"
66
+ version = "1.0.0"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
69
+ dependencies = [
70
+ "utf8parse",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "anstyle-query"
75
+ version = "1.1.5"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
78
+ dependencies = [
79
+ "windows-sys 0.61.2",
80
+ ]
81
+
82
+ [[package]]
83
+ name = "anstyle-wincon"
84
+ version = "3.0.11"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
87
+ dependencies = [
88
+ "anstyle",
89
+ "once_cell_polyfill",
90
+ "windows-sys 0.61.2",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "anyhow"
95
+ version = "1.0.103"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
98
+
99
+ [[package]]
100
+ name = "ascii"
101
+ version = "1.1.0"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
104
+
105
+ [[package]]
106
+ name = "async-trait"
107
+ version = "0.1.91"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
110
+ dependencies = [
111
+ "proc-macro2",
112
+ "quote",
113
+ "syn 3.0.0",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "auto_generate_cdp"
118
+ version = "0.4.6"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "359220d0b9360b79d17d648d0a3ba1e792ec36bdbc227c8fd0351df3a0415704"
121
+ dependencies = [
122
+ "convert_case",
123
+ "proc-macro2",
124
+ "quote",
125
+ "serde",
126
+ "serde_json",
127
+ "ureq",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "autocfg"
132
+ version = "1.5.1"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
135
+
136
+ [[package]]
137
+ name = "base64"
138
+ version = "0.22.1"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
141
+
142
+ [[package]]
143
+ name = "bit-set"
144
+ version = "0.8.0"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
147
+ dependencies = [
148
+ "bit-vec",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "bit-vec"
153
+ version = "0.8.0"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
156
+
157
+ [[package]]
158
+ name = "bitflags"
159
+ version = "2.13.1"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
162
+
163
+ [[package]]
164
+ name = "block-buffer"
165
+ version = "0.10.4"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
168
+ dependencies = [
169
+ "generic-array",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "block-buffer"
174
+ version = "0.12.1"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
177
+ dependencies = [
178
+ "hybrid-array",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "borrow-or-share"
183
+ version = "0.2.4"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c"
186
+
187
+ [[package]]
188
+ name = "bumpalo"
189
+ version = "3.20.3"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
192
+
193
+ [[package]]
194
+ name = "bytecount"
195
+ version = "0.6.9"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
198
+
199
+ [[package]]
200
+ name = "bytemuck"
201
+ version = "1.25.1"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "d6aedf8ae72766347502cf3cb4f41cf5e9cc37d28bee90f1fdaaae15f9cf9424"
204
+
205
+ [[package]]
206
+ name = "byteorder"
207
+ version = "1.5.0"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
210
+
211
+ [[package]]
212
+ name = "byteorder-lite"
213
+ version = "0.1.0"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
216
+
217
+ [[package]]
218
+ name = "bytes"
219
+ version = "1.12.1"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
222
+
223
+ [[package]]
224
+ name = "cc"
225
+ version = "1.2.67"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
228
+ dependencies = [
229
+ "find-msvc-tools",
230
+ "shlex",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "cesu8"
235
+ version = "1.1.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
238
+
239
+ [[package]]
240
+ name = "cfg-if"
241
+ version = "1.0.4"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
244
+
245
+ [[package]]
246
+ name = "chacha20"
247
+ version = "0.10.1"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
250
+ dependencies = [
251
+ "cfg-if",
252
+ "cpufeatures 0.3.0",
253
+ "rand_core 0.10.1",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "chrono"
258
+ version = "0.4.45"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
261
+ dependencies = [
262
+ "iana-time-zone",
263
+ "js-sys",
264
+ "num-traits",
265
+ "wasm-bindgen",
266
+ "windows-link",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "chunked_transfer"
271
+ version = "1.5.0"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901"
274
+
275
+ [[package]]
276
+ name = "clap"
277
+ version = "4.6.2"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011"
280
+ dependencies = [
281
+ "clap_builder",
282
+ "clap_derive",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "clap_builder"
287
+ version = "4.6.2"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
290
+ dependencies = [
291
+ "anstream",
292
+ "anstyle",
293
+ "clap_lex",
294
+ "strsim",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "clap_derive"
299
+ version = "4.6.1"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
302
+ dependencies = [
303
+ "heck",
304
+ "proc-macro2",
305
+ "quote",
306
+ "syn 2.0.119",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "clap_lex"
311
+ version = "1.1.0"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
314
+
315
+ [[package]]
316
+ name = "cmov"
317
+ version = "0.5.4"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
320
+
321
+ [[package]]
322
+ name = "color_quant"
323
+ version = "1.1.0"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
326
+
327
+ [[package]]
328
+ name = "colorchoice"
329
+ version = "1.0.5"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
332
+
333
+ [[package]]
334
+ name = "combine"
335
+ version = "4.6.7"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
338
+ dependencies = [
339
+ "bytes",
340
+ "memchr",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "const-oid"
345
+ version = "0.10.2"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
348
+
349
+ [[package]]
350
+ name = "convert_case"
351
+ version = "0.8.0"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
354
+ dependencies = [
355
+ "unicode-segmentation",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "cookie"
360
+ version = "0.18.1"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
363
+ dependencies = [
364
+ "percent-encoding",
365
+ "time",
366
+ "version_check",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "cookie_store"
371
+ version = "0.22.1"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
374
+ dependencies = [
375
+ "cookie",
376
+ "document-features",
377
+ "idna",
378
+ "indexmap",
379
+ "log",
380
+ "serde",
381
+ "serde_derive",
382
+ "serde_json",
383
+ "time",
384
+ "url",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "core-foundation"
389
+ version = "0.10.1"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
392
+ dependencies = [
393
+ "core-foundation-sys",
394
+ "libc",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "core-foundation-sys"
399
+ version = "0.8.7"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
402
+
403
+ [[package]]
404
+ name = "cpufeatures"
405
+ version = "0.2.17"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
408
+ dependencies = [
409
+ "libc",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "cpufeatures"
414
+ version = "0.3.0"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
417
+ dependencies = [
418
+ "libc",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "crc32fast"
423
+ version = "1.5.0"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
426
+ dependencies = [
427
+ "cfg-if",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "crypto-common"
432
+ version = "0.1.7"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
435
+ dependencies = [
436
+ "generic-array",
437
+ "typenum",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "crypto-common"
442
+ version = "0.2.2"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
445
+ dependencies = [
446
+ "hybrid-array",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "ctutils"
451
+ version = "0.4.2"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
454
+ dependencies = [
455
+ "cmov",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "darling"
460
+ version = "0.20.11"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
463
+ dependencies = [
464
+ "darling_core",
465
+ "darling_macro",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "darling_core"
470
+ version = "0.20.11"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
473
+ dependencies = [
474
+ "fnv",
475
+ "ident_case",
476
+ "proc-macro2",
477
+ "quote",
478
+ "strsim",
479
+ "syn 2.0.119",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "darling_macro"
484
+ version = "0.20.11"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
487
+ dependencies = [
488
+ "darling_core",
489
+ "quote",
490
+ "syn 2.0.119",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "data-encoding"
495
+ version = "2.11.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
498
+
499
+ [[package]]
500
+ name = "deranged"
501
+ version = "0.5.8"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
504
+
505
+ [[package]]
506
+ name = "derive_builder"
507
+ version = "0.20.2"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
510
+ dependencies = [
511
+ "derive_builder_macro",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "derive_builder_core"
516
+ version = "0.20.2"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
519
+ dependencies = [
520
+ "darling",
521
+ "proc-macro2",
522
+ "quote",
523
+ "syn 2.0.119",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "derive_builder_macro"
528
+ version = "0.20.2"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
531
+ dependencies = [
532
+ "derive_builder_core",
533
+ "syn 2.0.119",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "digest"
538
+ version = "0.10.7"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
541
+ dependencies = [
542
+ "block-buffer 0.10.4",
543
+ "crypto-common 0.1.7",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "digest"
548
+ version = "0.11.3"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
551
+ dependencies = [
552
+ "block-buffer 0.12.1",
553
+ "const-oid",
554
+ "crypto-common 0.2.2",
555
+ "ctutils",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "displaydoc"
560
+ version = "0.2.6"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
563
+ dependencies = [
564
+ "proc-macro2",
565
+ "quote",
566
+ "syn 2.0.119",
567
+ ]
568
+
569
+ [[package]]
570
+ name = "document-features"
571
+ version = "0.2.12"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
574
+ dependencies = [
575
+ "litrs",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "email_address"
580
+ version = "0.2.9"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
583
+ dependencies = [
584
+ "serde",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "equivalent"
589
+ version = "1.0.2"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
592
+
593
+ [[package]]
594
+ name = "errno"
595
+ version = "0.3.14"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
598
+ dependencies = [
599
+ "libc",
600
+ "windows-sys 0.61.2",
601
+ ]
602
+
603
+ [[package]]
604
+ name = "fallible-iterator"
605
+ version = "0.2.0"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
608
+
609
+ [[package]]
610
+ name = "fancy-regex"
611
+ version = "0.16.2"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f"
614
+ dependencies = [
615
+ "bit-set",
616
+ "regex-automata",
617
+ "regex-syntax",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "fastrand"
622
+ version = "2.4.1"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
625
+
626
+ [[package]]
627
+ name = "fdeflate"
628
+ version = "0.3.7"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
631
+ dependencies = [
632
+ "simd-adler32",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "find-msvc-tools"
637
+ version = "0.1.9"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
640
+
641
+ [[package]]
642
+ name = "flate2"
643
+ version = "1.1.9"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
646
+ dependencies = [
647
+ "crc32fast",
648
+ "miniz_oxide",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "flowproof-adapters"
653
+ version = "0.1.0"
654
+ dependencies = [
655
+ "flowproof-driver",
656
+ "headless_chrome",
657
+ "image",
658
+ "serde_json",
659
+ "thiserror 2.0.18",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "flowproof-agent"
664
+ version = "0.1.0"
665
+ dependencies = [
666
+ "chrono",
667
+ "flowproof-driver",
668
+ "flowproof-trace",
669
+ "serde",
670
+ "serde_json",
671
+ "serde_yaml",
672
+ "thiserror 2.0.18",
673
+ "ureq",
674
+ "uuid",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "flowproof-cli"
679
+ version = "0.1.0"
680
+ dependencies = [
681
+ "clap",
682
+ "flowproof-adapters",
683
+ "flowproof-agent",
684
+ "flowproof-driver",
685
+ "flowproof-replay",
686
+ "flowproof-trace",
687
+ "image",
688
+ "serde_json",
689
+ "tiny_http",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "flowproof-driver"
694
+ version = "0.1.0"
695
+ dependencies = [
696
+ "image",
697
+ "postgres",
698
+ "serde",
699
+ "serde_json",
700
+ "thiserror 2.0.18",
701
+ "uiautomation",
702
+ "ureq",
703
+ "windows",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "flowproof-python"
708
+ version = "0.1.0"
709
+ dependencies = [
710
+ "flowproof-agent",
711
+ "flowproof-cli",
712
+ "flowproof-driver",
713
+ "flowproof-replay",
714
+ "pyo3",
715
+ "serde_json",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "flowproof-replay"
720
+ version = "0.1.0"
721
+ dependencies = [
722
+ "chrono",
723
+ "flowproof-agent",
724
+ "flowproof-driver",
725
+ "flowproof-trace",
726
+ "serde",
727
+ "serde_json",
728
+ "thiserror 2.0.18",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "flowproof-trace"
733
+ version = "0.1.0"
734
+ dependencies = [
735
+ "jsonschema",
736
+ "serde",
737
+ "serde_json",
738
+ "thiserror 2.0.18",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "fluent-uri"
743
+ version = "0.3.2"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "1918b65d96df47d3591bed19c5cca17e3fa5d0707318e4b5ef2eae01764df7e5"
746
+ dependencies = [
747
+ "borrow-or-share",
748
+ "ref-cast",
749
+ "serde",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "fnv"
754
+ version = "1.0.7"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
757
+
758
+ [[package]]
759
+ name = "form_urlencoded"
760
+ version = "1.2.2"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
763
+ dependencies = [
764
+ "percent-encoding",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "fraction"
769
+ version = "0.15.4"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "e076045bb43dac435333ed5f04caf35c7463631d0dae2deb2638d94dd0a5b872"
772
+ dependencies = [
773
+ "lazy_static",
774
+ "num",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "futures-channel"
779
+ version = "0.3.32"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
782
+ dependencies = [
783
+ "futures-core",
784
+ "futures-sink",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "futures-core"
789
+ version = "0.3.32"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
792
+
793
+ [[package]]
794
+ name = "futures-sink"
795
+ version = "0.3.33"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
798
+
799
+ [[package]]
800
+ name = "futures-task"
801
+ version = "0.3.32"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
804
+
805
+ [[package]]
806
+ name = "futures-util"
807
+ version = "0.3.32"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
810
+ dependencies = [
811
+ "futures-core",
812
+ "futures-sink",
813
+ "futures-task",
814
+ "pin-project-lite",
815
+ "slab",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "generic-array"
820
+ version = "0.14.7"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
823
+ dependencies = [
824
+ "typenum",
825
+ "version_check",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "getrandom"
830
+ version = "0.2.17"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
833
+ dependencies = [
834
+ "cfg-if",
835
+ "libc",
836
+ "wasi 0.11.1+wasi-snapshot-preview1",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "getrandom"
841
+ version = "0.3.4"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
844
+ dependencies = [
845
+ "cfg-if",
846
+ "libc",
847
+ "r-efi 5.3.0",
848
+ "wasip2",
849
+ ]
850
+
851
+ [[package]]
852
+ name = "getrandom"
853
+ version = "0.4.3"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
856
+ dependencies = [
857
+ "cfg-if",
858
+ "libc",
859
+ "r-efi 6.0.0",
860
+ "rand_core 0.10.1",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "gif"
865
+ version = "0.14.2"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
868
+ dependencies = [
869
+ "color_quant",
870
+ "weezl",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "hashbrown"
875
+ version = "0.17.1"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
878
+
879
+ [[package]]
880
+ name = "headless_chrome"
881
+ version = "1.0.22"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "5754ca220578ad74a5d5174c8ca2ff956fd3b94025f870844de1e910b47dfee5"
884
+ dependencies = [
885
+ "anyhow",
886
+ "auto_generate_cdp",
887
+ "base64",
888
+ "derive_builder",
889
+ "log",
890
+ "rand 0.10.2",
891
+ "regex",
892
+ "serde",
893
+ "serde_json",
894
+ "tempfile",
895
+ "thiserror 2.0.18",
896
+ "tungstenite",
897
+ "url",
898
+ "which",
899
+ "winreg",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "heck"
904
+ version = "0.5.0"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
907
+
908
+ [[package]]
909
+ name = "hmac"
910
+ version = "0.13.0"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
913
+ dependencies = [
914
+ "digest 0.11.3",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "http"
919
+ version = "1.4.2"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
922
+ dependencies = [
923
+ "bytes",
924
+ "itoa",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "httparse"
929
+ version = "1.10.1"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
932
+
933
+ [[package]]
934
+ name = "httpdate"
935
+ version = "1.0.3"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
938
+
939
+ [[package]]
940
+ name = "hybrid-array"
941
+ version = "0.4.13"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c"
944
+ dependencies = [
945
+ "typenum",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "iana-time-zone"
950
+ version = "0.1.65"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
953
+ dependencies = [
954
+ "android_system_properties",
955
+ "core-foundation-sys",
956
+ "iana-time-zone-haiku",
957
+ "js-sys",
958
+ "log",
959
+ "wasm-bindgen",
960
+ "windows-core",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "iana-time-zone-haiku"
965
+ version = "0.1.2"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
968
+ dependencies = [
969
+ "cc",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "icu_collections"
974
+ version = "2.2.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
977
+ dependencies = [
978
+ "displaydoc",
979
+ "potential_utf",
980
+ "utf8_iter",
981
+ "yoke",
982
+ "zerofrom",
983
+ "zerovec",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "icu_locale_core"
988
+ version = "2.2.0"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
991
+ dependencies = [
992
+ "displaydoc",
993
+ "litemap",
994
+ "tinystr",
995
+ "writeable",
996
+ "zerovec",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "icu_normalizer"
1001
+ version = "2.2.0"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1004
+ dependencies = [
1005
+ "icu_collections",
1006
+ "icu_normalizer_data",
1007
+ "icu_properties",
1008
+ "icu_provider",
1009
+ "smallvec",
1010
+ "zerovec",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "icu_normalizer_data"
1015
+ version = "2.2.0"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1018
+
1019
+ [[package]]
1020
+ name = "icu_properties"
1021
+ version = "2.2.0"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1024
+ dependencies = [
1025
+ "icu_collections",
1026
+ "icu_locale_core",
1027
+ "icu_properties_data",
1028
+ "icu_provider",
1029
+ "zerotrie",
1030
+ "zerovec",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "icu_properties_data"
1035
+ version = "2.2.0"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1038
+
1039
+ [[package]]
1040
+ name = "icu_provider"
1041
+ version = "2.2.0"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1044
+ dependencies = [
1045
+ "displaydoc",
1046
+ "icu_locale_core",
1047
+ "writeable",
1048
+ "yoke",
1049
+ "zerofrom",
1050
+ "zerotrie",
1051
+ "zerovec",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "ident_case"
1056
+ version = "1.0.1"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1059
+
1060
+ [[package]]
1061
+ name = "idna"
1062
+ version = "1.1.0"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1065
+ dependencies = [
1066
+ "idna_adapter",
1067
+ "smallvec",
1068
+ "utf8_iter",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "idna_adapter"
1073
+ version = "1.2.2"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1076
+ dependencies = [
1077
+ "icu_normalizer",
1078
+ "icu_properties",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "image"
1083
+ version = "0.25.10"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
1086
+ dependencies = [
1087
+ "bytemuck",
1088
+ "byteorder-lite",
1089
+ "color_quant",
1090
+ "gif",
1091
+ "moxcms",
1092
+ "num-traits",
1093
+ "png",
1094
+ ]
1095
+
1096
+ [[package]]
1097
+ name = "indexmap"
1098
+ version = "2.14.0"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1101
+ dependencies = [
1102
+ "equivalent",
1103
+ "hashbrown",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "indoc"
1108
+ version = "2.0.7"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1111
+ dependencies = [
1112
+ "rustversion",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "is_terminal_polyfill"
1117
+ version = "1.70.2"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1120
+
1121
+ [[package]]
1122
+ name = "itoa"
1123
+ version = "1.0.18"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1126
+
1127
+ [[package]]
1128
+ name = "jni"
1129
+ version = "0.21.1"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1132
+ dependencies = [
1133
+ "cesu8",
1134
+ "cfg-if",
1135
+ "combine",
1136
+ "jni-sys 0.3.1",
1137
+ "log",
1138
+ "thiserror 1.0.69",
1139
+ "walkdir",
1140
+ "windows-sys 0.45.0",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "jni-sys"
1145
+ version = "0.3.1"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
1148
+ dependencies = [
1149
+ "jni-sys 0.4.1",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "jni-sys"
1154
+ version = "0.4.1"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1157
+ dependencies = [
1158
+ "jni-sys-macros",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "jni-sys-macros"
1163
+ version = "0.4.1"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1166
+ dependencies = [
1167
+ "quote",
1168
+ "syn 2.0.119",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "js-sys"
1173
+ version = "0.3.103"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1176
+ dependencies = [
1177
+ "cfg-if",
1178
+ "futures-util",
1179
+ "wasm-bindgen",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "jsonschema"
1184
+ version = "0.33.0"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "d46662859bc5f60a145b75f4632fbadc84e829e45df6c5de74cfc8e05acb96b5"
1187
+ dependencies = [
1188
+ "ahash",
1189
+ "base64",
1190
+ "bytecount",
1191
+ "email_address",
1192
+ "fancy-regex",
1193
+ "fraction",
1194
+ "idna",
1195
+ "itoa",
1196
+ "num-cmp",
1197
+ "num-traits",
1198
+ "once_cell",
1199
+ "percent-encoding",
1200
+ "referencing",
1201
+ "regex",
1202
+ "regex-syntax",
1203
+ "serde",
1204
+ "serde_json",
1205
+ "uuid-simd",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "lazy_static"
1210
+ version = "1.5.0"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1213
+
1214
+ [[package]]
1215
+ name = "libc"
1216
+ version = "0.2.186"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1219
+
1220
+ [[package]]
1221
+ name = "libredox"
1222
+ version = "0.1.18"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
1225
+ dependencies = [
1226
+ "libc",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "linux-raw-sys"
1231
+ version = "0.12.1"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1234
+
1235
+ [[package]]
1236
+ name = "litemap"
1237
+ version = "0.8.2"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1240
+
1241
+ [[package]]
1242
+ name = "litrs"
1243
+ version = "1.0.0"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1246
+
1247
+ [[package]]
1248
+ name = "lock_api"
1249
+ version = "0.4.14"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1252
+ dependencies = [
1253
+ "scopeguard",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "log"
1258
+ version = "0.4.33"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1261
+
1262
+ [[package]]
1263
+ name = "md-5"
1264
+ version = "0.11.0"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
1267
+ dependencies = [
1268
+ "cfg-if",
1269
+ "digest 0.11.3",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "memchr"
1274
+ version = "2.8.3"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1277
+
1278
+ [[package]]
1279
+ name = "memoffset"
1280
+ version = "0.9.1"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1283
+ dependencies = [
1284
+ "autocfg",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "miniz_oxide"
1289
+ version = "0.8.9"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1292
+ dependencies = [
1293
+ "adler2",
1294
+ "simd-adler32",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "mio"
1299
+ version = "1.2.2"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
1302
+ dependencies = [
1303
+ "libc",
1304
+ "wasi 0.11.1+wasi-snapshot-preview1",
1305
+ "windows-sys 0.61.2",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "moxcms"
1310
+ version = "0.8.1"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
1313
+ dependencies = [
1314
+ "num-traits",
1315
+ "pxfm",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "num"
1320
+ version = "0.4.3"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1323
+ dependencies = [
1324
+ "num-bigint",
1325
+ "num-complex",
1326
+ "num-integer",
1327
+ "num-iter",
1328
+ "num-rational",
1329
+ "num-traits",
1330
+ ]
1331
+
1332
+ [[package]]
1333
+ name = "num-bigint"
1334
+ version = "0.4.8"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
1337
+ dependencies = [
1338
+ "num-integer",
1339
+ "num-traits",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "num-cmp"
1344
+ version = "0.1.0"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
1347
+
1348
+ [[package]]
1349
+ name = "num-complex"
1350
+ version = "0.4.6"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1353
+ dependencies = [
1354
+ "num-traits",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "num-conv"
1359
+ version = "0.2.2"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1362
+
1363
+ [[package]]
1364
+ name = "num-integer"
1365
+ version = "0.1.46"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1368
+ dependencies = [
1369
+ "num-traits",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "num-iter"
1374
+ version = "0.1.46"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
1377
+ dependencies = [
1378
+ "num-integer",
1379
+ "num-traits",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "num-rational"
1384
+ version = "0.4.2"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1387
+ dependencies = [
1388
+ "num-bigint",
1389
+ "num-integer",
1390
+ "num-traits",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "num-traits"
1395
+ version = "0.2.19"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1398
+ dependencies = [
1399
+ "autocfg",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "objc2-core-foundation"
1404
+ version = "0.3.2"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1407
+ dependencies = [
1408
+ "bitflags",
1409
+ ]
1410
+
1411
+ [[package]]
1412
+ name = "objc2-system-configuration"
1413
+ version = "0.3.2"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
1416
+ dependencies = [
1417
+ "objc2-core-foundation",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "once_cell"
1422
+ version = "1.21.4"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1425
+
1426
+ [[package]]
1427
+ name = "once_cell_polyfill"
1428
+ version = "1.70.2"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1431
+
1432
+ [[package]]
1433
+ name = "openssl-probe"
1434
+ version = "0.2.1"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1437
+
1438
+ [[package]]
1439
+ name = "outref"
1440
+ version = "0.5.2"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1443
+
1444
+ [[package]]
1445
+ name = "parking_lot"
1446
+ version = "0.12.5"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1449
+ dependencies = [
1450
+ "lock_api",
1451
+ "parking_lot_core",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "parking_lot_core"
1456
+ version = "0.9.12"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1459
+ dependencies = [
1460
+ "cfg-if",
1461
+ "libc",
1462
+ "redox_syscall",
1463
+ "smallvec",
1464
+ "windows-link",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "percent-encoding"
1469
+ version = "2.3.2"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1472
+
1473
+ [[package]]
1474
+ name = "phf"
1475
+ version = "0.13.1"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
1478
+ dependencies = [
1479
+ "phf_shared",
1480
+ "serde",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "phf_shared"
1485
+ version = "0.13.1"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
1488
+ dependencies = [
1489
+ "siphasher",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "pin-project-lite"
1494
+ version = "0.2.17"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1497
+
1498
+ [[package]]
1499
+ name = "png"
1500
+ version = "0.18.1"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
1503
+ dependencies = [
1504
+ "bitflags",
1505
+ "crc32fast",
1506
+ "fdeflate",
1507
+ "flate2",
1508
+ "miniz_oxide",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "portable-atomic"
1513
+ version = "1.14.0"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
1516
+
1517
+ [[package]]
1518
+ name = "postgres"
1519
+ version = "0.19.14"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "33ad20e0aa0b24f5a394eab4f78c781d248982b22b25cecc7e3aa46a681605bd"
1522
+ dependencies = [
1523
+ "bytes",
1524
+ "fallible-iterator",
1525
+ "futures-util",
1526
+ "log",
1527
+ "tokio",
1528
+ "tokio-postgres",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "postgres-protocol"
1533
+ version = "0.6.12"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "08808e3c483c46e999108051c78334f473d5adb59d78bb80a1268c7e6aa6c514"
1536
+ dependencies = [
1537
+ "base64",
1538
+ "byteorder",
1539
+ "bytes",
1540
+ "fallible-iterator",
1541
+ "hmac",
1542
+ "md-5",
1543
+ "memchr",
1544
+ "rand 0.10.2",
1545
+ "sha2",
1546
+ "stringprep",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "postgres-types"
1551
+ version = "0.2.14"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "851ca9db4932932d69f3ea811b1abe63087a0f740a47692619dd40d4899b68be"
1554
+ dependencies = [
1555
+ "bytes",
1556
+ "fallible-iterator",
1557
+ "postgres-protocol",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "potential_utf"
1562
+ version = "0.1.5"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1565
+ dependencies = [
1566
+ "zerovec",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "powerfmt"
1571
+ version = "0.2.0"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1574
+
1575
+ [[package]]
1576
+ name = "ppv-lite86"
1577
+ version = "0.2.21"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1580
+ dependencies = [
1581
+ "zerocopy",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "proc-macro2"
1586
+ version = "1.0.106"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1589
+ dependencies = [
1590
+ "unicode-ident",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "pxfm"
1595
+ version = "0.1.30"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "d55d956fa96f5ec02be2e13af0e20391a5aa83d6a074e3ad368959d0fab299ea"
1598
+
1599
+ [[package]]
1600
+ name = "pyo3"
1601
+ version = "0.26.0"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
1604
+ dependencies = [
1605
+ "indoc",
1606
+ "libc",
1607
+ "memoffset",
1608
+ "once_cell",
1609
+ "portable-atomic",
1610
+ "pyo3-build-config",
1611
+ "pyo3-ffi",
1612
+ "pyo3-macros",
1613
+ "unindent",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "pyo3-build-config"
1618
+ version = "0.26.0"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
1621
+ dependencies = [
1622
+ "target-lexicon",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "pyo3-ffi"
1627
+ version = "0.26.0"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
1630
+ dependencies = [
1631
+ "libc",
1632
+ "pyo3-build-config",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "pyo3-macros"
1637
+ version = "0.26.0"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
1640
+ dependencies = [
1641
+ "proc-macro2",
1642
+ "pyo3-macros-backend",
1643
+ "quote",
1644
+ "syn 2.0.119",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "pyo3-macros-backend"
1649
+ version = "0.26.0"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
1652
+ dependencies = [
1653
+ "heck",
1654
+ "proc-macro2",
1655
+ "pyo3-build-config",
1656
+ "quote",
1657
+ "syn 2.0.119",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "quote"
1662
+ version = "1.0.46"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1665
+ dependencies = [
1666
+ "proc-macro2",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "r-efi"
1671
+ version = "5.3.0"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1674
+
1675
+ [[package]]
1676
+ name = "r-efi"
1677
+ version = "6.0.0"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1680
+
1681
+ [[package]]
1682
+ name = "rand"
1683
+ version = "0.9.5"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
1686
+ dependencies = [
1687
+ "rand_chacha",
1688
+ "rand_core 0.9.5",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "rand"
1693
+ version = "0.10.2"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
1696
+ dependencies = [
1697
+ "chacha20",
1698
+ "getrandom 0.4.3",
1699
+ "rand_core 0.10.1",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "rand_chacha"
1704
+ version = "0.9.0"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1707
+ dependencies = [
1708
+ "ppv-lite86",
1709
+ "rand_core 0.9.5",
1710
+ ]
1711
+
1712
+ [[package]]
1713
+ name = "rand_core"
1714
+ version = "0.9.5"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1717
+ dependencies = [
1718
+ "getrandom 0.3.4",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "rand_core"
1723
+ version = "0.10.1"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1726
+
1727
+ [[package]]
1728
+ name = "redox_syscall"
1729
+ version = "0.5.18"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1732
+ dependencies = [
1733
+ "bitflags",
1734
+ ]
1735
+
1736
+ [[package]]
1737
+ name = "ref-cast"
1738
+ version = "1.0.25"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
1741
+ dependencies = [
1742
+ "ref-cast-impl",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "ref-cast-impl"
1747
+ version = "1.0.25"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
1750
+ dependencies = [
1751
+ "proc-macro2",
1752
+ "quote",
1753
+ "syn 2.0.119",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "referencing"
1758
+ version = "0.33.0"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "9e9c261f7ce75418b3beadfb3f0eb1299fe8eb9640deba45ffa2cb783098697d"
1761
+ dependencies = [
1762
+ "ahash",
1763
+ "fluent-uri",
1764
+ "once_cell",
1765
+ "parking_lot",
1766
+ "percent-encoding",
1767
+ "serde_json",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "regex"
1772
+ version = "1.13.1"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1775
+ dependencies = [
1776
+ "aho-corasick",
1777
+ "memchr",
1778
+ "regex-automata",
1779
+ "regex-syntax",
1780
+ ]
1781
+
1782
+ [[package]]
1783
+ name = "regex-automata"
1784
+ version = "0.4.16"
1785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1786
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1787
+ dependencies = [
1788
+ "aho-corasick",
1789
+ "memchr",
1790
+ "regex-syntax",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "regex-syntax"
1795
+ version = "0.8.11"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1798
+
1799
+ [[package]]
1800
+ name = "ring"
1801
+ version = "0.17.14"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1804
+ dependencies = [
1805
+ "cc",
1806
+ "cfg-if",
1807
+ "getrandom 0.2.17",
1808
+ "libc",
1809
+ "untrusted",
1810
+ "windows-sys 0.52.0",
1811
+ ]
1812
+
1813
+ [[package]]
1814
+ name = "rustix"
1815
+ version = "1.1.4"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1818
+ dependencies = [
1819
+ "bitflags",
1820
+ "errno",
1821
+ "libc",
1822
+ "linux-raw-sys",
1823
+ "windows-sys 0.61.2",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "rustls"
1828
+ version = "0.23.42"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
1831
+ dependencies = [
1832
+ "log",
1833
+ "once_cell",
1834
+ "ring",
1835
+ "rustls-pki-types",
1836
+ "rustls-webpki",
1837
+ "subtle",
1838
+ "zeroize",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "rustls-native-certs"
1843
+ version = "0.8.4"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
1846
+ dependencies = [
1847
+ "openssl-probe",
1848
+ "rustls-pki-types",
1849
+ "schannel",
1850
+ "security-framework",
1851
+ ]
1852
+
1853
+ [[package]]
1854
+ name = "rustls-pki-types"
1855
+ version = "1.15.0"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
1858
+ dependencies = [
1859
+ "zeroize",
1860
+ ]
1861
+
1862
+ [[package]]
1863
+ name = "rustls-platform-verifier"
1864
+ version = "0.6.2"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
1867
+ dependencies = [
1868
+ "core-foundation",
1869
+ "core-foundation-sys",
1870
+ "jni",
1871
+ "log",
1872
+ "once_cell",
1873
+ "rustls",
1874
+ "rustls-native-certs",
1875
+ "rustls-platform-verifier-android",
1876
+ "rustls-webpki",
1877
+ "security-framework",
1878
+ "security-framework-sys",
1879
+ "webpki-root-certs",
1880
+ "windows-sys 0.61.2",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "rustls-platform-verifier-android"
1885
+ version = "0.1.1"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
1888
+
1889
+ [[package]]
1890
+ name = "rustls-webpki"
1891
+ version = "0.103.13"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1894
+ dependencies = [
1895
+ "ring",
1896
+ "rustls-pki-types",
1897
+ "untrusted",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "rustversion"
1902
+ version = "1.0.23"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1905
+
1906
+ [[package]]
1907
+ name = "ryu"
1908
+ version = "1.0.23"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1911
+
1912
+ [[package]]
1913
+ name = "same-file"
1914
+ version = "1.0.6"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1917
+ dependencies = [
1918
+ "winapi-util",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "schannel"
1923
+ version = "0.1.29"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1926
+ dependencies = [
1927
+ "windows-sys 0.61.2",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "scopeguard"
1932
+ version = "1.2.0"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1935
+
1936
+ [[package]]
1937
+ name = "security-framework"
1938
+ version = "3.7.0"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1941
+ dependencies = [
1942
+ "bitflags",
1943
+ "core-foundation",
1944
+ "core-foundation-sys",
1945
+ "libc",
1946
+ "security-framework-sys",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "security-framework-sys"
1951
+ version = "2.17.0"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1954
+ dependencies = [
1955
+ "core-foundation-sys",
1956
+ "libc",
1957
+ ]
1958
+
1959
+ [[package]]
1960
+ name = "serde"
1961
+ version = "1.0.228"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1964
+ dependencies = [
1965
+ "serde_core",
1966
+ "serde_derive",
1967
+ ]
1968
+
1969
+ [[package]]
1970
+ name = "serde_core"
1971
+ version = "1.0.228"
1972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1974
+ dependencies = [
1975
+ "serde_derive",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "serde_derive"
1980
+ version = "1.0.228"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1983
+ dependencies = [
1984
+ "proc-macro2",
1985
+ "quote",
1986
+ "syn 2.0.119",
1987
+ ]
1988
+
1989
+ [[package]]
1990
+ name = "serde_json"
1991
+ version = "1.0.150"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1994
+ dependencies = [
1995
+ "itoa",
1996
+ "memchr",
1997
+ "serde",
1998
+ "serde_core",
1999
+ "zmij",
2000
+ ]
2001
+
2002
+ [[package]]
2003
+ name = "serde_yaml"
2004
+ version = "0.9.34+deprecated"
2005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2007
+ dependencies = [
2008
+ "indexmap",
2009
+ "itoa",
2010
+ "ryu",
2011
+ "serde",
2012
+ "unsafe-libyaml",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "sha1"
2017
+ version = "0.10.7"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
2020
+ dependencies = [
2021
+ "cfg-if",
2022
+ "cpufeatures 0.2.17",
2023
+ "digest 0.10.7",
2024
+ ]
2025
+
2026
+ [[package]]
2027
+ name = "sha2"
2028
+ version = "0.11.0"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
2031
+ dependencies = [
2032
+ "cfg-if",
2033
+ "cpufeatures 0.3.0",
2034
+ "digest 0.11.3",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "shlex"
2039
+ version = "2.0.1"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2042
+
2043
+ [[package]]
2044
+ name = "simd-adler32"
2045
+ version = "0.3.10"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
2048
+
2049
+ [[package]]
2050
+ name = "siphasher"
2051
+ version = "1.0.3"
2052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2053
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
2054
+
2055
+ [[package]]
2056
+ name = "slab"
2057
+ version = "0.4.12"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2060
+
2061
+ [[package]]
2062
+ name = "smallvec"
2063
+ version = "1.15.2"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
2066
+
2067
+ [[package]]
2068
+ name = "socket2"
2069
+ version = "0.6.5"
2070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2071
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
2072
+ dependencies = [
2073
+ "libc",
2074
+ "windows-sys 0.61.2",
2075
+ ]
2076
+
2077
+ [[package]]
2078
+ name = "socks"
2079
+ version = "0.3.4"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
2082
+ dependencies = [
2083
+ "byteorder",
2084
+ "libc",
2085
+ "winapi",
2086
+ ]
2087
+
2088
+ [[package]]
2089
+ name = "stable_deref_trait"
2090
+ version = "1.2.1"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2093
+
2094
+ [[package]]
2095
+ name = "stringprep"
2096
+ version = "0.1.5"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2099
+ dependencies = [
2100
+ "unicode-bidi",
2101
+ "unicode-normalization",
2102
+ "unicode-properties",
2103
+ ]
2104
+
2105
+ [[package]]
2106
+ name = "strsim"
2107
+ version = "0.11.1"
2108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2109
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2110
+
2111
+ [[package]]
2112
+ name = "subtle"
2113
+ version = "2.6.1"
2114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2115
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2116
+
2117
+ [[package]]
2118
+ name = "syn"
2119
+ version = "2.0.119"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
2122
+ dependencies = [
2123
+ "proc-macro2",
2124
+ "quote",
2125
+ "unicode-ident",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "syn"
2130
+ version = "3.0.0"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "f2fac314a64dc9a36e61a9eb4261a5e9bbfbc922b27e518af97bc32b926cf967"
2133
+ dependencies = [
2134
+ "proc-macro2",
2135
+ "quote",
2136
+ "unicode-ident",
2137
+ ]
2138
+
2139
+ [[package]]
2140
+ name = "synstructure"
2141
+ version = "0.13.2"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2144
+ dependencies = [
2145
+ "proc-macro2",
2146
+ "quote",
2147
+ "syn 2.0.119",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "target-lexicon"
2152
+ version = "0.13.5"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2155
+
2156
+ [[package]]
2157
+ name = "tempfile"
2158
+ version = "3.27.0"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2161
+ dependencies = [
2162
+ "fastrand",
2163
+ "getrandom 0.4.3",
2164
+ "once_cell",
2165
+ "rustix",
2166
+ "windows-sys 0.61.2",
2167
+ ]
2168
+
2169
+ [[package]]
2170
+ name = "thiserror"
2171
+ version = "1.0.69"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2174
+ dependencies = [
2175
+ "thiserror-impl 1.0.69",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "thiserror"
2180
+ version = "2.0.18"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2183
+ dependencies = [
2184
+ "thiserror-impl 2.0.18",
2185
+ ]
2186
+
2187
+ [[package]]
2188
+ name = "thiserror-impl"
2189
+ version = "1.0.69"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2192
+ dependencies = [
2193
+ "proc-macro2",
2194
+ "quote",
2195
+ "syn 2.0.119",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "thiserror-impl"
2200
+ version = "2.0.18"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2203
+ dependencies = [
2204
+ "proc-macro2",
2205
+ "quote",
2206
+ "syn 2.0.119",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "time"
2211
+ version = "0.3.53"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "18dfaaeddcb932337b5e7866ee7d0ce9b76d2fd092997146f187ec09b4558a50"
2214
+ dependencies = [
2215
+ "deranged",
2216
+ "num-conv",
2217
+ "powerfmt",
2218
+ "serde_core",
2219
+ "time-core",
2220
+ "time-macros",
2221
+ ]
2222
+
2223
+ [[package]]
2224
+ name = "time-core"
2225
+ version = "0.1.9"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
2228
+
2229
+ [[package]]
2230
+ name = "time-macros"
2231
+ version = "0.2.31"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "c431b87111666e491a90baa837f914fb45cd5dc3c268591b0220ff5057f2085f"
2234
+ dependencies = [
2235
+ "num-conv",
2236
+ "time-core",
2237
+ ]
2238
+
2239
+ [[package]]
2240
+ name = "tiny_http"
2241
+ version = "0.12.0"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82"
2244
+ dependencies = [
2245
+ "ascii",
2246
+ "chunked_transfer",
2247
+ "httpdate",
2248
+ "log",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "tinystr"
2253
+ version = "0.8.3"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2256
+ dependencies = [
2257
+ "displaydoc",
2258
+ "zerovec",
2259
+ ]
2260
+
2261
+ [[package]]
2262
+ name = "tinyvec"
2263
+ version = "1.12.0"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
2266
+ dependencies = [
2267
+ "tinyvec_macros",
2268
+ ]
2269
+
2270
+ [[package]]
2271
+ name = "tinyvec_macros"
2272
+ version = "0.1.1"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2275
+
2276
+ [[package]]
2277
+ name = "tokio"
2278
+ version = "1.53.0"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee"
2281
+ dependencies = [
2282
+ "bytes",
2283
+ "libc",
2284
+ "mio",
2285
+ "pin-project-lite",
2286
+ "socket2",
2287
+ "windows-sys 0.61.2",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "tokio-postgres"
2292
+ version = "0.7.18"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "a528f7d280f6d5b9cd149635c8705b0dd049754bc67d81d31fa25169a93809d3"
2295
+ dependencies = [
2296
+ "async-trait",
2297
+ "byteorder",
2298
+ "bytes",
2299
+ "fallible-iterator",
2300
+ "futures-channel",
2301
+ "futures-util",
2302
+ "log",
2303
+ "parking_lot",
2304
+ "percent-encoding",
2305
+ "phf",
2306
+ "pin-project-lite",
2307
+ "postgres-protocol",
2308
+ "postgres-types",
2309
+ "rand 0.10.2",
2310
+ "socket2",
2311
+ "tokio",
2312
+ "tokio-util",
2313
+ "whoami",
2314
+ ]
2315
+
2316
+ [[package]]
2317
+ name = "tokio-util"
2318
+ version = "0.7.18"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2321
+ dependencies = [
2322
+ "bytes",
2323
+ "futures-core",
2324
+ "futures-sink",
2325
+ "pin-project-lite",
2326
+ "tokio",
2327
+ ]
2328
+
2329
+ [[package]]
2330
+ name = "tungstenite"
2331
+ version = "0.29.0"
2332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2333
+ checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
2334
+ dependencies = [
2335
+ "bytes",
2336
+ "data-encoding",
2337
+ "http",
2338
+ "httparse",
2339
+ "log",
2340
+ "rand 0.9.5",
2341
+ "sha1",
2342
+ "thiserror 2.0.18",
2343
+ ]
2344
+
2345
+ [[package]]
2346
+ name = "typenum"
2347
+ version = "1.20.1"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2350
+
2351
+ [[package]]
2352
+ name = "uiautomation"
2353
+ version = "0.24.4"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "ffe4eddc6ccbe9fc8ac98dffc2ceff8ca475843283a090979bbafe2b832b7b19"
2356
+ dependencies = [
2357
+ "chrono",
2358
+ "uiautomation_derive",
2359
+ "windows",
2360
+ "windows-core",
2361
+ ]
2362
+
2363
+ [[package]]
2364
+ name = "uiautomation_derive"
2365
+ version = "0.7.8"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "ffcc4d404aa1c03a848f95cf5feadc3e63946d7f095bf388770b85550093d388"
2368
+ dependencies = [
2369
+ "proc-macro2",
2370
+ "quote",
2371
+ "syn 2.0.119",
2372
+ ]
2373
+
2374
+ [[package]]
2375
+ name = "unicode-bidi"
2376
+ version = "0.3.18"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
2379
+
2380
+ [[package]]
2381
+ name = "unicode-ident"
2382
+ version = "1.0.24"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2385
+
2386
+ [[package]]
2387
+ name = "unicode-normalization"
2388
+ version = "0.1.25"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2391
+ dependencies = [
2392
+ "tinyvec",
2393
+ ]
2394
+
2395
+ [[package]]
2396
+ name = "unicode-properties"
2397
+ version = "0.1.4"
2398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2399
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
2400
+
2401
+ [[package]]
2402
+ name = "unicode-segmentation"
2403
+ version = "1.13.3"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
2406
+
2407
+ [[package]]
2408
+ name = "unindent"
2409
+ version = "0.2.4"
2410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2411
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2412
+
2413
+ [[package]]
2414
+ name = "unsafe-libyaml"
2415
+ version = "0.2.11"
2416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2418
+
2419
+ [[package]]
2420
+ name = "untrusted"
2421
+ version = "0.9.0"
2422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2423
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2424
+
2425
+ [[package]]
2426
+ name = "ureq"
2427
+ version = "3.3.0"
2428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2429
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
2430
+ dependencies = [
2431
+ "base64",
2432
+ "cookie_store",
2433
+ "flate2",
2434
+ "log",
2435
+ "percent-encoding",
2436
+ "rustls",
2437
+ "rustls-pki-types",
2438
+ "rustls-platform-verifier",
2439
+ "serde",
2440
+ "serde_json",
2441
+ "socks",
2442
+ "ureq-proto",
2443
+ "utf8-zero",
2444
+ "webpki-roots",
2445
+ ]
2446
+
2447
+ [[package]]
2448
+ name = "ureq-proto"
2449
+ version = "0.6.0"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
2452
+ dependencies = [
2453
+ "base64",
2454
+ "http",
2455
+ "httparse",
2456
+ "log",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "url"
2461
+ version = "2.5.8"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2464
+ dependencies = [
2465
+ "form_urlencoded",
2466
+ "idna",
2467
+ "percent-encoding",
2468
+ "serde",
2469
+ ]
2470
+
2471
+ [[package]]
2472
+ name = "utf8-zero"
2473
+ version = "0.8.1"
2474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2475
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
2476
+
2477
+ [[package]]
2478
+ name = "utf8_iter"
2479
+ version = "1.0.4"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2482
+
2483
+ [[package]]
2484
+ name = "utf8parse"
2485
+ version = "0.2.2"
2486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2487
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2488
+
2489
+ [[package]]
2490
+ name = "uuid"
2491
+ version = "1.24.0"
2492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2493
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
2494
+ dependencies = [
2495
+ "getrandom 0.4.3",
2496
+ "js-sys",
2497
+ "wasm-bindgen",
2498
+ ]
2499
+
2500
+ [[package]]
2501
+ name = "uuid-simd"
2502
+ version = "0.8.0"
2503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2504
+ checksum = "23b082222b4f6619906941c17eb2297fff4c2fb96cb60164170522942a200bd8"
2505
+ dependencies = [
2506
+ "outref",
2507
+ "uuid",
2508
+ "vsimd",
2509
+ ]
2510
+
2511
+ [[package]]
2512
+ name = "version_check"
2513
+ version = "0.9.5"
2514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2515
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2516
+
2517
+ [[package]]
2518
+ name = "vsimd"
2519
+ version = "0.8.0"
2520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2521
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
2522
+
2523
+ [[package]]
2524
+ name = "walkdir"
2525
+ version = "2.5.0"
2526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2527
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2528
+ dependencies = [
2529
+ "same-file",
2530
+ "winapi-util",
2531
+ ]
2532
+
2533
+ [[package]]
2534
+ name = "wasi"
2535
+ version = "0.11.1+wasi-snapshot-preview1"
2536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2537
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2538
+
2539
+ [[package]]
2540
+ name = "wasi"
2541
+ version = "0.14.7+wasi-0.2.4"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
2544
+ dependencies = [
2545
+ "wasip2",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "wasip2"
2550
+ version = "1.0.4+wasi-0.2.12"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
2553
+ dependencies = [
2554
+ "wit-bindgen",
2555
+ ]
2556
+
2557
+ [[package]]
2558
+ name = "wasite"
2559
+ version = "1.0.2"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "66fe902b4a6b8028a753d5424909b764ccf79b7a209eac9bf97e59cda9f71a42"
2562
+ dependencies = [
2563
+ "wasi 0.14.7+wasi-0.2.4",
2564
+ ]
2565
+
2566
+ [[package]]
2567
+ name = "wasm-bindgen"
2568
+ version = "0.2.126"
2569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2570
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2571
+ dependencies = [
2572
+ "cfg-if",
2573
+ "once_cell",
2574
+ "rustversion",
2575
+ "wasm-bindgen-macro",
2576
+ "wasm-bindgen-shared",
2577
+ ]
2578
+
2579
+ [[package]]
2580
+ name = "wasm-bindgen-macro"
2581
+ version = "0.2.126"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2584
+ dependencies = [
2585
+ "quote",
2586
+ "wasm-bindgen-macro-support",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "wasm-bindgen-macro-support"
2591
+ version = "0.2.126"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2594
+ dependencies = [
2595
+ "bumpalo",
2596
+ "proc-macro2",
2597
+ "quote",
2598
+ "syn 2.0.119",
2599
+ "wasm-bindgen-shared",
2600
+ ]
2601
+
2602
+ [[package]]
2603
+ name = "wasm-bindgen-shared"
2604
+ version = "0.2.126"
2605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2606
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2607
+ dependencies = [
2608
+ "unicode-ident",
2609
+ ]
2610
+
2611
+ [[package]]
2612
+ name = "web-sys"
2613
+ version = "0.3.103"
2614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2615
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
2616
+ dependencies = [
2617
+ "js-sys",
2618
+ "wasm-bindgen",
2619
+ ]
2620
+
2621
+ [[package]]
2622
+ name = "webpki-root-certs"
2623
+ version = "1.0.9"
2624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2625
+ checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b"
2626
+ dependencies = [
2627
+ "rustls-pki-types",
2628
+ ]
2629
+
2630
+ [[package]]
2631
+ name = "webpki-roots"
2632
+ version = "1.0.9"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
2635
+ dependencies = [
2636
+ "rustls-pki-types",
2637
+ ]
2638
+
2639
+ [[package]]
2640
+ name = "weezl"
2641
+ version = "0.1.12"
2642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2643
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
2644
+
2645
+ [[package]]
2646
+ name = "which"
2647
+ version = "8.0.5"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "8f3ef584124b911bcc3875c2f1472e80f24361ceb789bd1c62b3e9a3df9ff43c"
2650
+ dependencies = [
2651
+ "libc",
2652
+ ]
2653
+
2654
+ [[package]]
2655
+ name = "whoami"
2656
+ version = "2.1.2"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "998767ef88740d1f5b0682a9c53c24431453923962269c2db68ee43788c5a40d"
2659
+ dependencies = [
2660
+ "libc",
2661
+ "libredox",
2662
+ "objc2-system-configuration",
2663
+ "wasite",
2664
+ "web-sys",
2665
+ ]
2666
+
2667
+ [[package]]
2668
+ name = "winapi"
2669
+ version = "0.3.9"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2672
+ dependencies = [
2673
+ "winapi-i686-pc-windows-gnu",
2674
+ "winapi-x86_64-pc-windows-gnu",
2675
+ ]
2676
+
2677
+ [[package]]
2678
+ name = "winapi-i686-pc-windows-gnu"
2679
+ version = "0.4.0"
2680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2681
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2682
+
2683
+ [[package]]
2684
+ name = "winapi-util"
2685
+ version = "0.1.11"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2688
+ dependencies = [
2689
+ "windows-sys 0.61.2",
2690
+ ]
2691
+
2692
+ [[package]]
2693
+ name = "winapi-x86_64-pc-windows-gnu"
2694
+ version = "0.4.0"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2697
+
2698
+ [[package]]
2699
+ name = "windows"
2700
+ version = "0.62.2"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
2703
+ dependencies = [
2704
+ "windows-collections",
2705
+ "windows-core",
2706
+ "windows-future",
2707
+ "windows-numerics",
2708
+ ]
2709
+
2710
+ [[package]]
2711
+ name = "windows-collections"
2712
+ version = "0.3.2"
2713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2714
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
2715
+ dependencies = [
2716
+ "windows-core",
2717
+ ]
2718
+
2719
+ [[package]]
2720
+ name = "windows-core"
2721
+ version = "0.62.2"
2722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2723
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2724
+ dependencies = [
2725
+ "windows-implement",
2726
+ "windows-interface",
2727
+ "windows-link",
2728
+ "windows-result",
2729
+ "windows-strings",
2730
+ ]
2731
+
2732
+ [[package]]
2733
+ name = "windows-future"
2734
+ version = "0.3.2"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
2737
+ dependencies = [
2738
+ "windows-core",
2739
+ "windows-link",
2740
+ "windows-threading",
2741
+ ]
2742
+
2743
+ [[package]]
2744
+ name = "windows-implement"
2745
+ version = "0.60.2"
2746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2747
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2748
+ dependencies = [
2749
+ "proc-macro2",
2750
+ "quote",
2751
+ "syn 2.0.119",
2752
+ ]
2753
+
2754
+ [[package]]
2755
+ name = "windows-interface"
2756
+ version = "0.59.3"
2757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2758
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2759
+ dependencies = [
2760
+ "proc-macro2",
2761
+ "quote",
2762
+ "syn 2.0.119",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "windows-link"
2767
+ version = "0.2.1"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2770
+
2771
+ [[package]]
2772
+ name = "windows-numerics"
2773
+ version = "0.3.1"
2774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2775
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
2776
+ dependencies = [
2777
+ "windows-core",
2778
+ "windows-link",
2779
+ ]
2780
+
2781
+ [[package]]
2782
+ name = "windows-result"
2783
+ version = "0.4.1"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2786
+ dependencies = [
2787
+ "windows-link",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "windows-strings"
2792
+ version = "0.5.1"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2795
+ dependencies = [
2796
+ "windows-link",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "windows-sys"
2801
+ version = "0.45.0"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2804
+ dependencies = [
2805
+ "windows-targets 0.42.2",
2806
+ ]
2807
+
2808
+ [[package]]
2809
+ name = "windows-sys"
2810
+ version = "0.52.0"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2813
+ dependencies = [
2814
+ "windows-targets 0.52.6",
2815
+ ]
2816
+
2817
+ [[package]]
2818
+ name = "windows-sys"
2819
+ version = "0.61.2"
2820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2821
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2822
+ dependencies = [
2823
+ "windows-link",
2824
+ ]
2825
+
2826
+ [[package]]
2827
+ name = "windows-targets"
2828
+ version = "0.42.2"
2829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2830
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2831
+ dependencies = [
2832
+ "windows_aarch64_gnullvm 0.42.2",
2833
+ "windows_aarch64_msvc 0.42.2",
2834
+ "windows_i686_gnu 0.42.2",
2835
+ "windows_i686_msvc 0.42.2",
2836
+ "windows_x86_64_gnu 0.42.2",
2837
+ "windows_x86_64_gnullvm 0.42.2",
2838
+ "windows_x86_64_msvc 0.42.2",
2839
+ ]
2840
+
2841
+ [[package]]
2842
+ name = "windows-targets"
2843
+ version = "0.52.6"
2844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2845
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2846
+ dependencies = [
2847
+ "windows_aarch64_gnullvm 0.52.6",
2848
+ "windows_aarch64_msvc 0.52.6",
2849
+ "windows_i686_gnu 0.52.6",
2850
+ "windows_i686_gnullvm",
2851
+ "windows_i686_msvc 0.52.6",
2852
+ "windows_x86_64_gnu 0.52.6",
2853
+ "windows_x86_64_gnullvm 0.52.6",
2854
+ "windows_x86_64_msvc 0.52.6",
2855
+ ]
2856
+
2857
+ [[package]]
2858
+ name = "windows-threading"
2859
+ version = "0.2.1"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
2862
+ dependencies = [
2863
+ "windows-link",
2864
+ ]
2865
+
2866
+ [[package]]
2867
+ name = "windows_aarch64_gnullvm"
2868
+ version = "0.42.2"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2871
+
2872
+ [[package]]
2873
+ name = "windows_aarch64_gnullvm"
2874
+ version = "0.52.6"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2877
+
2878
+ [[package]]
2879
+ name = "windows_aarch64_msvc"
2880
+ version = "0.42.2"
2881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2882
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2883
+
2884
+ [[package]]
2885
+ name = "windows_aarch64_msvc"
2886
+ version = "0.52.6"
2887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2888
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2889
+
2890
+ [[package]]
2891
+ name = "windows_i686_gnu"
2892
+ version = "0.42.2"
2893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2894
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2895
+
2896
+ [[package]]
2897
+ name = "windows_i686_gnu"
2898
+ version = "0.52.6"
2899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2900
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2901
+
2902
+ [[package]]
2903
+ name = "windows_i686_gnullvm"
2904
+ version = "0.52.6"
2905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2906
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2907
+
2908
+ [[package]]
2909
+ name = "windows_i686_msvc"
2910
+ version = "0.42.2"
2911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2912
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2913
+
2914
+ [[package]]
2915
+ name = "windows_i686_msvc"
2916
+ version = "0.52.6"
2917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2918
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2919
+
2920
+ [[package]]
2921
+ name = "windows_x86_64_gnu"
2922
+ version = "0.42.2"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2925
+
2926
+ [[package]]
2927
+ name = "windows_x86_64_gnu"
2928
+ version = "0.52.6"
2929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2930
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2931
+
2932
+ [[package]]
2933
+ name = "windows_x86_64_gnullvm"
2934
+ version = "0.42.2"
2935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2936
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2937
+
2938
+ [[package]]
2939
+ name = "windows_x86_64_gnullvm"
2940
+ version = "0.52.6"
2941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2942
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2943
+
2944
+ [[package]]
2945
+ name = "windows_x86_64_msvc"
2946
+ version = "0.42.2"
2947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2948
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2949
+
2950
+ [[package]]
2951
+ name = "windows_x86_64_msvc"
2952
+ version = "0.52.6"
2953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2954
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2955
+
2956
+ [[package]]
2957
+ name = "winreg"
2958
+ version = "0.56.0"
2959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2960
+ checksum = "7d6f32a0ff4a9f6f01231eb2059cc85479330739333e0e58cadf03b6af2cca10"
2961
+ dependencies = [
2962
+ "cfg-if",
2963
+ "windows-sys 0.61.2",
2964
+ ]
2965
+
2966
+ [[package]]
2967
+ name = "wit-bindgen"
2968
+ version = "0.57.1"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2971
+
2972
+ [[package]]
2973
+ name = "writeable"
2974
+ version = "0.6.3"
2975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2977
+
2978
+ [[package]]
2979
+ name = "yoke"
2980
+ version = "0.8.3"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2983
+ dependencies = [
2984
+ "stable_deref_trait",
2985
+ "yoke-derive",
2986
+ "zerofrom",
2987
+ ]
2988
+
2989
+ [[package]]
2990
+ name = "yoke-derive"
2991
+ version = "0.8.2"
2992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2993
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2994
+ dependencies = [
2995
+ "proc-macro2",
2996
+ "quote",
2997
+ "syn 2.0.119",
2998
+ "synstructure",
2999
+ ]
3000
+
3001
+ [[package]]
3002
+ name = "zerocopy"
3003
+ version = "0.8.54"
3004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3005
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
3006
+ dependencies = [
3007
+ "zerocopy-derive",
3008
+ ]
3009
+
3010
+ [[package]]
3011
+ name = "zerocopy-derive"
3012
+ version = "0.8.54"
3013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3014
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
3015
+ dependencies = [
3016
+ "proc-macro2",
3017
+ "quote",
3018
+ "syn 2.0.119",
3019
+ ]
3020
+
3021
+ [[package]]
3022
+ name = "zerofrom"
3023
+ version = "0.1.8"
3024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3025
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3026
+ dependencies = [
3027
+ "zerofrom-derive",
3028
+ ]
3029
+
3030
+ [[package]]
3031
+ name = "zerofrom-derive"
3032
+ version = "0.1.7"
3033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3034
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3035
+ dependencies = [
3036
+ "proc-macro2",
3037
+ "quote",
3038
+ "syn 2.0.119",
3039
+ "synstructure",
3040
+ ]
3041
+
3042
+ [[package]]
3043
+ name = "zeroize"
3044
+ version = "1.9.0"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
3047
+
3048
+ [[package]]
3049
+ name = "zerotrie"
3050
+ version = "0.2.4"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3053
+ dependencies = [
3054
+ "displaydoc",
3055
+ "yoke",
3056
+ "zerofrom",
3057
+ ]
3058
+
3059
+ [[package]]
3060
+ name = "zerovec"
3061
+ version = "0.11.6"
3062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3063
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3064
+ dependencies = [
3065
+ "yoke",
3066
+ "zerofrom",
3067
+ "zerovec-derive",
3068
+ ]
3069
+
3070
+ [[package]]
3071
+ name = "zerovec-derive"
3072
+ version = "0.11.3"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3075
+ dependencies = [
3076
+ "proc-macro2",
3077
+ "quote",
3078
+ "syn 2.0.119",
3079
+ ]
3080
+
3081
+ [[package]]
3082
+ name = "zmij"
3083
+ version = "1.0.23"
3084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3085
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"