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