mondher 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. mondher-0.1.0/Cargo.lock +5043 -0
  2. mondher-0.1.0/Cargo.toml +99 -0
  3. mondher-0.1.0/PKG-INFO +82 -0
  4. mondher-0.1.0/README.md +55 -0
  5. mondher-0.1.0/crates/mondher-core/Cargo.toml +21 -0
  6. mondher-0.1.0/crates/mondher-core/src/concept.rs +279 -0
  7. mondher-0.1.0/crates/mondher-core/src/context.rs +346 -0
  8. mondher-0.1.0/crates/mondher-core/src/entities.rs +157 -0
  9. mondher-0.1.0/crates/mondher-core/src/ids.rs +38 -0
  10. mondher-0.1.0/crates/mondher-core/src/implication.rs +144 -0
  11. mondher-0.1.0/crates/mondher-core/src/labeling.rs +146 -0
  12. mondher-0.1.0/crates/mondher-core/src/lib.rs +27 -0
  13. mondher-0.1.0/crates/mondher-core/src/sets.rs +263 -0
  14. mondher-0.1.0/crates/mondher-core/tests/galois_connection.rs +146 -0
  15. mondher-0.1.0/crates/mondher-engine/Cargo.toml +28 -0
  16. mondher-0.1.0/crates/mondher-engine/benches/concept_generation.rs +260 -0
  17. mondher-0.1.0/crates/mondher-engine/src/add_intent.rs +159 -0
  18. mondher-0.1.0/crates/mondher-engine/src/association.rs +150 -0
  19. mondher-0.1.0/crates/mondher-engine/src/canonical_base.rs +174 -0
  20. mondher-0.1.0/crates/mondher-engine/src/fcbo.rs +231 -0
  21. mondher-0.1.0/crates/mondher-engine/src/in_close5.rs +230 -0
  22. mondher-0.1.0/crates/mondher-engine/src/lib.rs +56 -0
  23. mondher-0.1.0/crates/mondher-engine/src/next_closure.rs +142 -0
  24. mondher-0.1.0/crates/mondher-engine/src/options.rs +24 -0
  25. mondher-0.1.0/crates/mondher-engine/src/traits.rs +35 -0
  26. mondher-0.1.0/crates/mondher-engine/tests/common/mod.rs +282 -0
  27. mondher-0.1.0/crates/mondher-engine/tests/corpus/bird-fish-dog.cxt +14 -0
  28. mondher-0.1.0/crates/mondher-engine/tests/corpus/empty-3x3.cxt +14 -0
  29. mondher-0.1.0/crates/mondher-engine/tests/corpus/full-3x3.cxt +14 -0
  30. mondher-0.1.0/crates/mondher-engine/tests/corpus/identity-3x3.cxt +14 -0
  31. mondher-0.1.0/crates/mondher-engine/tests/corpus/living-beings.cxt +30 -0
  32. mondher-0.1.0/crates/mondher-engine/tests/corpus_association.rs +113 -0
  33. mondher-0.1.0/crates/mondher-engine/tests/corpus_canonical_base.rs +49 -0
  34. mondher-0.1.0/crates/mondher-engine/tests/corpus_next_closure.rs +131 -0
  35. mondher-0.1.0/crates/mondher-engine/tests/cross_validation.rs +134 -0
  36. mondher-0.1.0/crates/mondher-engine/tests/properties.rs +159 -0
  37. mondher-0.1.0/crates/mondher-engine/tests/reference/README.md +40 -0
  38. mondher-0.1.0/crates/mondher-engine/tests/reference/bird-fish-dog.cxt +14 -0
  39. mondher-0.1.0/crates/mondher-engine/tests/reference/corpus.json +47 -0
  40. mondher-0.1.0/crates/mondher-engine/tests/reference/empty-3x3.cxt +14 -0
  41. mondher-0.1.0/crates/mondher-engine/tests/reference/full-3x3.cxt +14 -0
  42. mondher-0.1.0/crates/mondher-engine/tests/reference/identity-3x3.cxt +14 -0
  43. mondher-0.1.0/crates/mondher-engine/tests/reference/living-beings.cxt +30 -0
  44. mondher-0.1.0/crates/mondher-engine/tests/smoke.rs +80 -0
  45. mondher-0.1.0/crates/mondher-formats/Cargo.toml +19 -0
  46. mondher-0.1.0/crates/mondher-formats/src/auto.rs +130 -0
  47. mondher-0.1.0/crates/mondher-formats/src/burmeister.rs +201 -0
  48. mondher-0.1.0/crates/mondher-formats/src/csv.rs +168 -0
  49. mondher-0.1.0/crates/mondher-formats/src/error.rs +49 -0
  50. mondher-0.1.0/crates/mondher-formats/src/fca_xml.rs +305 -0
  51. mondher-0.1.0/crates/mondher-formats/src/fimi.rs +143 -0
  52. mondher-0.1.0/crates/mondher-formats/src/json.rs +117 -0
  53. mondher-0.1.0/crates/mondher-formats/src/lib.rs +25 -0
  54. mondher-0.1.0/crates/mondher-formats/tests/auto_detection.rs +78 -0
  55. mondher-0.1.0/crates/mondher-formats/tests/burmeister_round_trip.rs +168 -0
  56. mondher-0.1.0/crates/mondher-formats/tests/csv_round_trip.rs +94 -0
  57. mondher-0.1.0/crates/mondher-formats/tests/fca_xml_round_trip.rs +109 -0
  58. mondher-0.1.0/crates/mondher-formats/tests/fimi_round_trip.rs +94 -0
  59. mondher-0.1.0/crates/mondher-formats/tests/format_consistency.rs +86 -0
  60. mondher-0.1.0/crates/mondher-formats/tests/json_round_trip.rs +73 -0
  61. mondher-0.1.0/crates/mondher-py/Cargo.toml +22 -0
  62. mondher-0.1.0/crates/mondher-py/README.md +55 -0
  63. mondher-0.1.0/crates/mondher-py/src/lib.rs +184 -0
  64. mondher-0.1.0/crates/mondher-py/tests/test_smoke.py +92 -0
  65. mondher-0.1.0/pyproject.toml +42 -0
@@ -0,0 +1,5043 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "allocator-api2"
22
+ version = "0.2.21"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
25
+
26
+ [[package]]
27
+ name = "android_system_properties"
28
+ version = "0.1.5"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
31
+ dependencies = [
32
+ "libc",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anes"
37
+ version = "0.1.6"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
40
+
41
+ [[package]]
42
+ name = "anstream"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
46
+ dependencies = [
47
+ "anstyle",
48
+ "anstyle-parse",
49
+ "anstyle-query",
50
+ "anstyle-wincon",
51
+ "colorchoice",
52
+ "is_terminal_polyfill",
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle"
58
+ version = "1.0.14"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
61
+
62
+ [[package]]
63
+ name = "anstyle-parse"
64
+ version = "1.0.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
67
+ dependencies = [
68
+ "utf8parse",
69
+ ]
70
+
71
+ [[package]]
72
+ name = "anstyle-query"
73
+ version = "1.1.5"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
76
+ dependencies = [
77
+ "windows-sys 0.61.2",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "anstyle-wincon"
82
+ version = "3.0.11"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
85
+ dependencies = [
86
+ "anstyle",
87
+ "once_cell_polyfill",
88
+ "windows-sys 0.61.2",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "anyhow"
93
+ version = "1.0.102"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
96
+
97
+ [[package]]
98
+ name = "arbitrary"
99
+ version = "1.4.2"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
102
+ dependencies = [
103
+ "derive_arbitrary",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "arc-swap"
108
+ version = "1.9.1"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
111
+ dependencies = [
112
+ "rustversion",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "argon2"
117
+ version = "0.5.3"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
120
+ dependencies = [
121
+ "base64ct",
122
+ "blake2",
123
+ "cpufeatures 0.2.17",
124
+ "password-hash",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "assert_cmd"
129
+ version = "2.2.2"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
132
+ dependencies = [
133
+ "anstyle",
134
+ "bstr",
135
+ "libc",
136
+ "predicates",
137
+ "predicates-core",
138
+ "predicates-tree",
139
+ "wait-timeout",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "async-trait"
144
+ version = "0.1.89"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
147
+ dependencies = [
148
+ "proc-macro2",
149
+ "quote",
150
+ "syn",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "atoi"
155
+ version = "2.0.0"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
158
+ dependencies = [
159
+ "num-traits",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "atomic"
164
+ version = "0.6.1"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340"
167
+ dependencies = [
168
+ "bytemuck",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "atomic-waker"
173
+ version = "1.1.2"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
176
+
177
+ [[package]]
178
+ name = "autocfg"
179
+ version = "1.5.0"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
182
+
183
+ [[package]]
184
+ name = "aws-config"
185
+ version = "1.8.16"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "50f156acdd2cf55f5aa53ee416c4ac851cf1222694506c0b1f78c85695e9ca9d"
188
+ dependencies = [
189
+ "aws-credential-types",
190
+ "aws-runtime",
191
+ "aws-sdk-sts",
192
+ "aws-smithy-async",
193
+ "aws-smithy-http",
194
+ "aws-smithy-json",
195
+ "aws-smithy-runtime",
196
+ "aws-smithy-runtime-api",
197
+ "aws-smithy-types",
198
+ "aws-types",
199
+ "bytes",
200
+ "fastrand",
201
+ "http 1.4.0",
202
+ "time",
203
+ "tokio",
204
+ "tracing",
205
+ "url",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "aws-credential-types"
210
+ version = "1.2.14"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "8f20799b373a1be121fe3005fba0c2090af9411573878f224df44b42727fcaf7"
213
+ dependencies = [
214
+ "aws-smithy-async",
215
+ "aws-smithy-runtime-api",
216
+ "aws-smithy-types",
217
+ "zeroize",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "aws-lc-rs"
222
+ version = "1.17.0"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
225
+ dependencies = [
226
+ "aws-lc-sys",
227
+ "zeroize",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "aws-lc-sys"
232
+ version = "0.41.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
235
+ dependencies = [
236
+ "cc",
237
+ "cmake",
238
+ "dunce",
239
+ "fs_extra",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "aws-runtime"
244
+ version = "1.7.3"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "5dcd93c82209ac7413532388067dce79be5a8780c1786e5fae3df22e4dee2864"
247
+ dependencies = [
248
+ "aws-credential-types",
249
+ "aws-sigv4",
250
+ "aws-smithy-async",
251
+ "aws-smithy-eventstream",
252
+ "aws-smithy-http",
253
+ "aws-smithy-runtime",
254
+ "aws-smithy-runtime-api",
255
+ "aws-smithy-types",
256
+ "aws-types",
257
+ "bytes",
258
+ "bytes-utils",
259
+ "fastrand",
260
+ "http 0.2.12",
261
+ "http 1.4.0",
262
+ "http-body 0.4.6",
263
+ "http-body 1.0.1",
264
+ "percent-encoding",
265
+ "pin-project-lite",
266
+ "tracing",
267
+ "uuid",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "aws-sdk-s3"
272
+ version = "1.132.0"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "5575840a3a6b11f6011463ebe359320dfe5b67babb5e9b06fed6ddf809a9ab40"
275
+ dependencies = [
276
+ "aws-credential-types",
277
+ "aws-runtime",
278
+ "aws-sigv4",
279
+ "aws-smithy-async",
280
+ "aws-smithy-checksums",
281
+ "aws-smithy-eventstream",
282
+ "aws-smithy-http",
283
+ "aws-smithy-json",
284
+ "aws-smithy-observability",
285
+ "aws-smithy-runtime",
286
+ "aws-smithy-runtime-api",
287
+ "aws-smithy-types",
288
+ "aws-smithy-xml",
289
+ "aws-types",
290
+ "bytes",
291
+ "fastrand",
292
+ "hex",
293
+ "hmac 0.13.0",
294
+ "http 0.2.12",
295
+ "http 1.4.0",
296
+ "http-body 1.0.1",
297
+ "lru",
298
+ "percent-encoding",
299
+ "regex-lite",
300
+ "sha2 0.11.0",
301
+ "tracing",
302
+ "url",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "aws-sdk-sts"
307
+ version = "1.103.0"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "c2249b81a2e73a8027c41c378463a81ec39b8510f184f2caab87de912af0f49b"
310
+ dependencies = [
311
+ "aws-credential-types",
312
+ "aws-runtime",
313
+ "aws-smithy-async",
314
+ "aws-smithy-http",
315
+ "aws-smithy-json",
316
+ "aws-smithy-observability",
317
+ "aws-smithy-query",
318
+ "aws-smithy-runtime",
319
+ "aws-smithy-runtime-api",
320
+ "aws-smithy-types",
321
+ "aws-smithy-xml",
322
+ "aws-types",
323
+ "fastrand",
324
+ "http 0.2.12",
325
+ "http 1.4.0",
326
+ "regex-lite",
327
+ "tracing",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "aws-sigv4"
332
+ version = "1.4.3"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "68dc0b907359b120170613b5c09ccc61304eac3998ff6274b97d93ee6490115a"
335
+ dependencies = [
336
+ "aws-credential-types",
337
+ "aws-smithy-eventstream",
338
+ "aws-smithy-http",
339
+ "aws-smithy-runtime-api",
340
+ "aws-smithy-types",
341
+ "bytes",
342
+ "form_urlencoded",
343
+ "hex",
344
+ "hmac 0.13.0",
345
+ "http 0.2.12",
346
+ "http 1.4.0",
347
+ "percent-encoding",
348
+ "sha2 0.11.0",
349
+ "time",
350
+ "tracing",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "aws-smithy-async"
355
+ version = "1.2.14"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "2ffcaf626bdda484571968400c326a244598634dc75fd451325a54ad1a59acfc"
358
+ dependencies = [
359
+ "futures-util",
360
+ "pin-project-lite",
361
+ "tokio",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "aws-smithy-checksums"
366
+ version = "0.64.8"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "e9e8e65f4f81fcccdeb6c3eca2af17ac21d421a1786a26a394aecf421d616d3a"
369
+ dependencies = [
370
+ "aws-smithy-http",
371
+ "aws-smithy-types",
372
+ "bytes",
373
+ "crc-fast",
374
+ "hex",
375
+ "http 1.4.0",
376
+ "http-body 1.0.1",
377
+ "http-body-util",
378
+ "md-5 0.11.0",
379
+ "pin-project-lite",
380
+ "sha1 0.11.0",
381
+ "sha2 0.11.0",
382
+ "tracing",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "aws-smithy-eventstream"
387
+ version = "0.60.20"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "faf09d74e5e32f76b8762da505a3cd59303e367a664ca67295387baa8c1d7548"
390
+ dependencies = [
391
+ "aws-smithy-types",
392
+ "bytes",
393
+ "crc32fast",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "aws-smithy-http"
398
+ version = "0.63.6"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "ba1ab2dc1c2c3749ead27180d333c42f11be8b0e934058fb4b2258ee8dbe5231"
401
+ dependencies = [
402
+ "aws-smithy-eventstream",
403
+ "aws-smithy-runtime-api",
404
+ "aws-smithy-types",
405
+ "bytes",
406
+ "bytes-utils",
407
+ "futures-core",
408
+ "futures-util",
409
+ "http 1.4.0",
410
+ "http-body 1.0.1",
411
+ "http-body-util",
412
+ "percent-encoding",
413
+ "pin-project-lite",
414
+ "pin-utils",
415
+ "tracing",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "aws-smithy-http-client"
420
+ version = "1.1.12"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "6a2f165a7feee6f263028b899d0a181987f4fa7179a6411a32a439fba7c5f769"
423
+ dependencies = [
424
+ "aws-smithy-async",
425
+ "aws-smithy-runtime-api",
426
+ "aws-smithy-types",
427
+ "h2 0.3.27",
428
+ "h2 0.4.14",
429
+ "http 0.2.12",
430
+ "http 1.4.0",
431
+ "http-body 0.4.6",
432
+ "hyper 0.14.32",
433
+ "hyper 1.9.0",
434
+ "hyper-rustls 0.24.2",
435
+ "hyper-rustls 0.27.9",
436
+ "hyper-util",
437
+ "pin-project-lite",
438
+ "rustls 0.21.12",
439
+ "rustls 0.23.40",
440
+ "rustls-native-certs",
441
+ "rustls-pki-types",
442
+ "tokio",
443
+ "tokio-rustls 0.26.4",
444
+ "tower",
445
+ "tracing",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "aws-smithy-json"
450
+ version = "0.62.6"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "517089205f18ab4adc5a3e02888cb139bbbbb2e168eac9f396216925d1fbeaf5"
453
+ dependencies = [
454
+ "aws-smithy-runtime-api",
455
+ "aws-smithy-schema",
456
+ "aws-smithy-types",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "aws-smithy-observability"
461
+ version = "0.2.6"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "a06c2315d173edbf1920da8ba3a7189695827002e4c0fc961973ab1c54abca9c"
464
+ dependencies = [
465
+ "aws-smithy-runtime-api",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "aws-smithy-query"
470
+ version = "0.60.15"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "1a56d79744fb3edb5d722ef79d86081e121d3b9422cb209eb03aea6aa4f21ebd"
473
+ dependencies = [
474
+ "aws-smithy-types",
475
+ "urlencoding",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "aws-smithy-runtime"
480
+ version = "1.11.3"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "b8e6f5caf6fea86f8c2206541ab5857cfcda9013426cdbe8fa0098b9e2d32182"
483
+ dependencies = [
484
+ "aws-smithy-async",
485
+ "aws-smithy-http",
486
+ "aws-smithy-http-client",
487
+ "aws-smithy-observability",
488
+ "aws-smithy-runtime-api",
489
+ "aws-smithy-schema",
490
+ "aws-smithy-types",
491
+ "bytes",
492
+ "fastrand",
493
+ "http 0.2.12",
494
+ "http 1.4.0",
495
+ "http-body 0.4.6",
496
+ "http-body 1.0.1",
497
+ "http-body-util",
498
+ "pin-project-lite",
499
+ "pin-utils",
500
+ "tokio",
501
+ "tracing",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "aws-smithy-runtime-api"
506
+ version = "1.12.1"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "dc117c179ecf39a62a0a3f49f600e9ac26a7ad7dd172177999f83933af776c32"
509
+ dependencies = [
510
+ "aws-smithy-async",
511
+ "aws-smithy-runtime-api-macros",
512
+ "aws-smithy-types",
513
+ "bytes",
514
+ "http 0.2.12",
515
+ "http 1.4.0",
516
+ "pin-project-lite",
517
+ "tokio",
518
+ "tracing",
519
+ "zeroize",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "aws-smithy-runtime-api-macros"
524
+ version = "1.0.0"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "8d7396fd9500589e62e460e987ecb671bad374934e55ec3b5f498cc7a8a8a7b7"
527
+ dependencies = [
528
+ "proc-macro2",
529
+ "quote",
530
+ "syn",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "aws-smithy-schema"
535
+ version = "0.1.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "7442cb268338f0eb8278140a107c046756aa01093d8ef5e99628d34ae09c94f5"
538
+ dependencies = [
539
+ "aws-smithy-runtime-api",
540
+ "aws-smithy-types",
541
+ "http 1.4.0",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "aws-smithy-types"
546
+ version = "1.4.8"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "056b66dbce2f81cc0c1e2b05bb402eb58f8a3530479d650efadd5bbae9a4050b"
549
+ dependencies = [
550
+ "base64-simd",
551
+ "bytes",
552
+ "bytes-utils",
553
+ "http 0.2.12",
554
+ "http 1.4.0",
555
+ "http-body 0.4.6",
556
+ "http-body 1.0.1",
557
+ "http-body-util",
558
+ "itoa",
559
+ "num-integer",
560
+ "pin-project-lite",
561
+ "pin-utils",
562
+ "ryu",
563
+ "serde",
564
+ "time",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "aws-smithy-xml"
569
+ version = "0.60.15"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "0ce02add1aa3677d022f8adf81dcbe3046a95f17a1b1e8979c145cd21d3d22b3"
572
+ dependencies = [
573
+ "xmlparser",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "aws-types"
578
+ version = "1.3.15"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "2f4bbcaa9304ea40902d3d5f42a0428d1bd895a2b0f6999436fb279ffddc58ac"
581
+ dependencies = [
582
+ "aws-credential-types",
583
+ "aws-smithy-async",
584
+ "aws-smithy-runtime-api",
585
+ "aws-smithy-types",
586
+ "rustc_version",
587
+ "tracing",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "axum"
592
+ version = "0.7.9"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
595
+ dependencies = [
596
+ "async-trait",
597
+ "axum-core",
598
+ "axum-macros",
599
+ "bytes",
600
+ "futures-util",
601
+ "http 1.4.0",
602
+ "http-body 1.0.1",
603
+ "http-body-util",
604
+ "hyper 1.9.0",
605
+ "hyper-util",
606
+ "itoa",
607
+ "matchit",
608
+ "memchr",
609
+ "mime",
610
+ "percent-encoding",
611
+ "pin-project-lite",
612
+ "rustversion",
613
+ "serde",
614
+ "serde_json",
615
+ "serde_path_to_error",
616
+ "serde_urlencoded",
617
+ "sync_wrapper",
618
+ "tokio",
619
+ "tower",
620
+ "tower-layer",
621
+ "tower-service",
622
+ "tracing",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "axum-core"
627
+ version = "0.4.5"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
630
+ dependencies = [
631
+ "async-trait",
632
+ "bytes",
633
+ "futures-util",
634
+ "http 1.4.0",
635
+ "http-body 1.0.1",
636
+ "http-body-util",
637
+ "mime",
638
+ "pin-project-lite",
639
+ "rustversion",
640
+ "sync_wrapper",
641
+ "tower-layer",
642
+ "tower-service",
643
+ "tracing",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "axum-macros"
648
+ version = "0.4.2"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce"
651
+ dependencies = [
652
+ "proc-macro2",
653
+ "quote",
654
+ "syn",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "backon"
659
+ version = "1.6.0"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef"
662
+ dependencies = [
663
+ "fastrand",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "base64"
668
+ version = "0.22.1"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
671
+
672
+ [[package]]
673
+ name = "base64-simd"
674
+ version = "0.8.0"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
677
+ dependencies = [
678
+ "outref",
679
+ "vsimd",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "base64ct"
684
+ version = "1.8.3"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
687
+
688
+ [[package]]
689
+ name = "bit-set"
690
+ version = "0.8.0"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
693
+ dependencies = [
694
+ "bit-vec",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "bit-vec"
699
+ version = "0.8.0"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
702
+
703
+ [[package]]
704
+ name = "bitflags"
705
+ version = "2.11.1"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
708
+ dependencies = [
709
+ "serde_core",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "blake2"
714
+ version = "0.10.6"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
717
+ dependencies = [
718
+ "digest 0.10.7",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "block-buffer"
723
+ version = "0.10.4"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
726
+ dependencies = [
727
+ "generic-array",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "block-buffer"
732
+ version = "0.12.0"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
735
+ dependencies = [
736
+ "hybrid-array",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "bstr"
741
+ version = "1.12.1"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
744
+ dependencies = [
745
+ "memchr",
746
+ "regex-automata",
747
+ "serde",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "bumpalo"
752
+ version = "3.20.2"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
755
+
756
+ [[package]]
757
+ name = "bytemuck"
758
+ version = "1.25.0"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
761
+
762
+ [[package]]
763
+ name = "byteorder"
764
+ version = "1.5.0"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
767
+
768
+ [[package]]
769
+ name = "bytes"
770
+ version = "1.11.1"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
773
+
774
+ [[package]]
775
+ name = "bytes-utils"
776
+ version = "0.1.4"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35"
779
+ dependencies = [
780
+ "bytes",
781
+ "either",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "cast"
786
+ version = "0.3.0"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
789
+
790
+ [[package]]
791
+ name = "cc"
792
+ version = "1.2.61"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
795
+ dependencies = [
796
+ "find-msvc-tools",
797
+ "jobserver",
798
+ "libc",
799
+ "shlex",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "cfg-if"
804
+ version = "1.0.4"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
807
+
808
+ [[package]]
809
+ name = "chrono"
810
+ version = "0.4.44"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
813
+ dependencies = [
814
+ "iana-time-zone",
815
+ "js-sys",
816
+ "num-traits",
817
+ "serde",
818
+ "wasm-bindgen",
819
+ "windows-link",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "ciborium"
824
+ version = "0.2.2"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
827
+ dependencies = [
828
+ "ciborium-io",
829
+ "ciborium-ll",
830
+ "serde",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "ciborium-io"
835
+ version = "0.2.2"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
838
+
839
+ [[package]]
840
+ name = "ciborium-ll"
841
+ version = "0.2.2"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
844
+ dependencies = [
845
+ "ciborium-io",
846
+ "half",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "clap"
851
+ version = "4.6.1"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
854
+ dependencies = [
855
+ "clap_builder",
856
+ "clap_derive",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "clap_builder"
861
+ version = "4.6.0"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
864
+ dependencies = [
865
+ "anstream",
866
+ "anstyle",
867
+ "clap_lex",
868
+ "strsim",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "clap_complete"
873
+ version = "4.6.5"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "e0a7a9bfdb35811f9e59832f0f05975114d2251b415fb534108e6f34060fd772"
876
+ dependencies = [
877
+ "clap",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "clap_derive"
882
+ version = "4.6.1"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
885
+ dependencies = [
886
+ "heck",
887
+ "proc-macro2",
888
+ "quote",
889
+ "syn",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "clap_lex"
894
+ version = "1.1.0"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
897
+
898
+ [[package]]
899
+ name = "cmake"
900
+ version = "0.1.58"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
903
+ dependencies = [
904
+ "cc",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "cmov"
909
+ version = "0.5.3"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "3f88a43d011fc4a6876cb7344703e297c71dda42494fee094d5f7c76bf13f746"
912
+
913
+ [[package]]
914
+ name = "colorchoice"
915
+ version = "1.0.5"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
918
+
919
+ [[package]]
920
+ name = "combine"
921
+ version = "4.6.7"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
924
+ dependencies = [
925
+ "bytes",
926
+ "futures-core",
927
+ "memchr",
928
+ "pin-project-lite",
929
+ "tokio",
930
+ "tokio-util",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "concurrent-queue"
935
+ version = "2.5.0"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
938
+ dependencies = [
939
+ "crossbeam-utils",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "const-oid"
944
+ version = "0.9.6"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
947
+
948
+ [[package]]
949
+ name = "const-oid"
950
+ version = "0.10.2"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
953
+
954
+ [[package]]
955
+ name = "core-foundation"
956
+ version = "0.10.1"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
959
+ dependencies = [
960
+ "core-foundation-sys",
961
+ "libc",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "core-foundation-sys"
966
+ version = "0.8.7"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
969
+
970
+ [[package]]
971
+ name = "cpufeatures"
972
+ version = "0.2.17"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
975
+ dependencies = [
976
+ "libc",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "cpufeatures"
981
+ version = "0.3.0"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
984
+ dependencies = [
985
+ "libc",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "crc"
990
+ version = "3.4.0"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
993
+ dependencies = [
994
+ "crc-catalog",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "crc-catalog"
999
+ version = "2.5.0"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
1002
+
1003
+ [[package]]
1004
+ name = "crc-fast"
1005
+ version = "1.10.0"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "e75b2483e97a5a7da73ac68a05b629f9c53cff58d8ed1c77866079e18b00dba5"
1008
+ dependencies = [
1009
+ "digest 0.10.7",
1010
+ "spin 0.10.0",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "crc32fast"
1015
+ version = "1.5.0"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
1018
+ dependencies = [
1019
+ "cfg-if",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "criterion"
1024
+ version = "0.5.1"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
1027
+ dependencies = [
1028
+ "anes",
1029
+ "cast",
1030
+ "ciborium",
1031
+ "clap",
1032
+ "criterion-plot",
1033
+ "futures",
1034
+ "is-terminal",
1035
+ "itertools 0.10.5",
1036
+ "num-traits",
1037
+ "once_cell",
1038
+ "oorandom",
1039
+ "plotters",
1040
+ "regex",
1041
+ "serde",
1042
+ "serde_derive",
1043
+ "serde_json",
1044
+ "tinytemplate",
1045
+ "tokio",
1046
+ "walkdir",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "criterion-plot"
1051
+ version = "0.5.0"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
1054
+ dependencies = [
1055
+ "cast",
1056
+ "itertools 0.10.5",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "crossbeam-queue"
1061
+ version = "0.3.12"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
1064
+ dependencies = [
1065
+ "crossbeam-utils",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "crossbeam-utils"
1070
+ version = "0.8.21"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
1073
+
1074
+ [[package]]
1075
+ name = "crunchy"
1076
+ version = "0.2.4"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1079
+
1080
+ [[package]]
1081
+ name = "crypto-common"
1082
+ version = "0.1.7"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
1085
+ dependencies = [
1086
+ "generic-array",
1087
+ "typenum",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "crypto-common"
1092
+ version = "0.2.2"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
1095
+ dependencies = [
1096
+ "hybrid-array",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "csv"
1101
+ version = "1.4.0"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
1104
+ dependencies = [
1105
+ "csv-core",
1106
+ "itoa",
1107
+ "ryu",
1108
+ "serde_core",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "csv-core"
1113
+ version = "0.1.13"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
1116
+ dependencies = [
1117
+ "memchr",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "ctutils"
1122
+ version = "0.4.2"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
1125
+ dependencies = [
1126
+ "cmov",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "der"
1131
+ version = "0.7.10"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
1134
+ dependencies = [
1135
+ "const-oid 0.9.6",
1136
+ "pem-rfc7468",
1137
+ "zeroize",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "deranged"
1142
+ version = "0.5.8"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
1145
+ dependencies = [
1146
+ "powerfmt",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "derive_arbitrary"
1151
+ version = "1.4.2"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
1154
+ dependencies = [
1155
+ "proc-macro2",
1156
+ "quote",
1157
+ "syn",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "difflib"
1162
+ version = "0.4.0"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
1165
+
1166
+ [[package]]
1167
+ name = "digest"
1168
+ version = "0.10.7"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1171
+ dependencies = [
1172
+ "block-buffer 0.10.4",
1173
+ "const-oid 0.9.6",
1174
+ "crypto-common 0.1.7",
1175
+ "subtle",
1176
+ ]
1177
+
1178
+ [[package]]
1179
+ name = "digest"
1180
+ version = "0.11.3"
1181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1182
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
1183
+ dependencies = [
1184
+ "block-buffer 0.12.0",
1185
+ "const-oid 0.10.2",
1186
+ "crypto-common 0.2.2",
1187
+ "ctutils",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "displaydoc"
1192
+ version = "0.2.5"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1195
+ dependencies = [
1196
+ "proc-macro2",
1197
+ "quote",
1198
+ "syn",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "dotenvy"
1203
+ version = "0.15.7"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
1206
+
1207
+ [[package]]
1208
+ name = "dunce"
1209
+ version = "1.0.5"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
1212
+
1213
+ [[package]]
1214
+ name = "either"
1215
+ version = "1.15.0"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1218
+ dependencies = [
1219
+ "serde",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "equivalent"
1224
+ version = "1.0.2"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
1227
+
1228
+ [[package]]
1229
+ name = "errno"
1230
+ version = "0.3.14"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
1233
+ dependencies = [
1234
+ "libc",
1235
+ "windows-sys 0.61.2",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "etcetera"
1240
+ version = "0.8.0"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
1243
+ dependencies = [
1244
+ "cfg-if",
1245
+ "home",
1246
+ "windows-sys 0.48.0",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "event-listener"
1251
+ version = "5.4.1"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
1254
+ dependencies = [
1255
+ "concurrent-queue",
1256
+ "parking",
1257
+ "pin-project-lite",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "fastrand"
1262
+ version = "2.4.1"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
1265
+
1266
+ [[package]]
1267
+ name = "figment"
1268
+ version = "0.10.19"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "8cb01cd46b0cf372153850f4c6c272d9cbea2da513e07538405148f95bd789f3"
1271
+ dependencies = [
1272
+ "atomic",
1273
+ "pear",
1274
+ "serde",
1275
+ "toml",
1276
+ "uncased",
1277
+ "version_check",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "find-msvc-tools"
1282
+ version = "0.1.9"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
1285
+
1286
+ [[package]]
1287
+ name = "fixedbitset"
1288
+ version = "0.5.7"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
1291
+
1292
+ [[package]]
1293
+ name = "flate2"
1294
+ version = "1.1.9"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
1297
+ dependencies = [
1298
+ "crc32fast",
1299
+ "miniz_oxide",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "float-cmp"
1304
+ version = "0.10.0"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
1307
+ dependencies = [
1308
+ "num-traits",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "flume"
1313
+ version = "0.11.1"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
1316
+ dependencies = [
1317
+ "futures-core",
1318
+ "futures-sink",
1319
+ "spin 0.9.8",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "fnv"
1324
+ version = "1.0.7"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1327
+
1328
+ [[package]]
1329
+ name = "foldhash"
1330
+ version = "0.1.5"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1333
+
1334
+ [[package]]
1335
+ name = "foldhash"
1336
+ version = "0.2.0"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1339
+
1340
+ [[package]]
1341
+ name = "form_urlencoded"
1342
+ version = "1.2.2"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1345
+ dependencies = [
1346
+ "percent-encoding",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "fs_extra"
1351
+ version = "1.3.0"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
1354
+
1355
+ [[package]]
1356
+ name = "futures"
1357
+ version = "0.3.32"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
1360
+ dependencies = [
1361
+ "futures-channel",
1362
+ "futures-core",
1363
+ "futures-executor",
1364
+ "futures-io",
1365
+ "futures-sink",
1366
+ "futures-task",
1367
+ "futures-util",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "futures-channel"
1372
+ version = "0.3.32"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1375
+ dependencies = [
1376
+ "futures-core",
1377
+ "futures-sink",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "futures-core"
1382
+ version = "0.3.32"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1385
+
1386
+ [[package]]
1387
+ name = "futures-executor"
1388
+ version = "0.3.32"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1391
+ dependencies = [
1392
+ "futures-core",
1393
+ "futures-task",
1394
+ "futures-util",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "futures-intrusive"
1399
+ version = "0.5.0"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
1402
+ dependencies = [
1403
+ "futures-core",
1404
+ "lock_api",
1405
+ "parking_lot",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "futures-io"
1410
+ version = "0.3.32"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1413
+
1414
+ [[package]]
1415
+ name = "futures-macro"
1416
+ version = "0.3.32"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
1419
+ dependencies = [
1420
+ "proc-macro2",
1421
+ "quote",
1422
+ "syn",
1423
+ ]
1424
+
1425
+ [[package]]
1426
+ name = "futures-sink"
1427
+ version = "0.3.32"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
1430
+
1431
+ [[package]]
1432
+ name = "futures-task"
1433
+ version = "0.3.32"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1436
+
1437
+ [[package]]
1438
+ name = "futures-util"
1439
+ version = "0.3.32"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1442
+ dependencies = [
1443
+ "futures-channel",
1444
+ "futures-core",
1445
+ "futures-io",
1446
+ "futures-macro",
1447
+ "futures-sink",
1448
+ "futures-task",
1449
+ "memchr",
1450
+ "pin-project-lite",
1451
+ "slab",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "generic-array"
1456
+ version = "0.14.7"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1459
+ dependencies = [
1460
+ "typenum",
1461
+ "version_check",
1462
+ ]
1463
+
1464
+ [[package]]
1465
+ name = "getrandom"
1466
+ version = "0.2.17"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1469
+ dependencies = [
1470
+ "cfg-if",
1471
+ "js-sys",
1472
+ "libc",
1473
+ "wasi",
1474
+ "wasm-bindgen",
1475
+ ]
1476
+
1477
+ [[package]]
1478
+ name = "getrandom"
1479
+ version = "0.3.4"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1482
+ dependencies = [
1483
+ "cfg-if",
1484
+ "libc",
1485
+ "r-efi 5.3.0",
1486
+ "wasip2",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "getrandom"
1491
+ version = "0.4.2"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1494
+ dependencies = [
1495
+ "cfg-if",
1496
+ "libc",
1497
+ "r-efi 6.0.0",
1498
+ "wasip2",
1499
+ "wasip3",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "h2"
1504
+ version = "0.3.27"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
1507
+ dependencies = [
1508
+ "bytes",
1509
+ "fnv",
1510
+ "futures-core",
1511
+ "futures-sink",
1512
+ "futures-util",
1513
+ "http 0.2.12",
1514
+ "indexmap",
1515
+ "slab",
1516
+ "tokio",
1517
+ "tokio-util",
1518
+ "tracing",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "h2"
1523
+ version = "0.4.14"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
1526
+ dependencies = [
1527
+ "atomic-waker",
1528
+ "bytes",
1529
+ "fnv",
1530
+ "futures-core",
1531
+ "futures-sink",
1532
+ "http 1.4.0",
1533
+ "indexmap",
1534
+ "slab",
1535
+ "tokio",
1536
+ "tokio-util",
1537
+ "tracing",
1538
+ ]
1539
+
1540
+ [[package]]
1541
+ name = "half"
1542
+ version = "2.7.1"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1545
+ dependencies = [
1546
+ "cfg-if",
1547
+ "crunchy",
1548
+ "zerocopy",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "hashbrown"
1553
+ version = "0.15.5"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1556
+ dependencies = [
1557
+ "allocator-api2",
1558
+ "equivalent",
1559
+ "foldhash 0.1.5",
1560
+ ]
1561
+
1562
+ [[package]]
1563
+ name = "hashbrown"
1564
+ version = "0.16.1"
1565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1566
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1567
+ dependencies = [
1568
+ "allocator-api2",
1569
+ "equivalent",
1570
+ "foldhash 0.2.0",
1571
+ ]
1572
+
1573
+ [[package]]
1574
+ name = "hashbrown"
1575
+ version = "0.17.0"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
1578
+
1579
+ [[package]]
1580
+ name = "hashlink"
1581
+ version = "0.10.0"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1584
+ dependencies = [
1585
+ "hashbrown 0.15.5",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "heck"
1590
+ version = "0.5.0"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1593
+
1594
+ [[package]]
1595
+ name = "hermit-abi"
1596
+ version = "0.5.2"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1599
+
1600
+ [[package]]
1601
+ name = "hex"
1602
+ version = "0.4.3"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1605
+
1606
+ [[package]]
1607
+ name = "hkdf"
1608
+ version = "0.12.4"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1611
+ dependencies = [
1612
+ "hmac 0.12.1",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "hmac"
1617
+ version = "0.12.1"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1620
+ dependencies = [
1621
+ "digest 0.10.7",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "hmac"
1626
+ version = "0.13.0"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
1629
+ dependencies = [
1630
+ "digest 0.11.3",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "home"
1635
+ version = "0.5.12"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
1638
+ dependencies = [
1639
+ "windows-sys 0.61.2",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "http"
1644
+ version = "0.2.12"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1647
+ dependencies = [
1648
+ "bytes",
1649
+ "fnv",
1650
+ "itoa",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "http"
1655
+ version = "1.4.0"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1658
+ dependencies = [
1659
+ "bytes",
1660
+ "itoa",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "http-body"
1665
+ version = "0.4.6"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
1668
+ dependencies = [
1669
+ "bytes",
1670
+ "http 0.2.12",
1671
+ "pin-project-lite",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "http-body"
1676
+ version = "1.0.1"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1679
+ dependencies = [
1680
+ "bytes",
1681
+ "http 1.4.0",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "http-body-util"
1686
+ version = "0.1.3"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1689
+ dependencies = [
1690
+ "bytes",
1691
+ "futures-core",
1692
+ "http 1.4.0",
1693
+ "http-body 1.0.1",
1694
+ "pin-project-lite",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "httparse"
1699
+ version = "1.10.1"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1702
+
1703
+ [[package]]
1704
+ name = "httpdate"
1705
+ version = "1.0.3"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1708
+
1709
+ [[package]]
1710
+ name = "hybrid-array"
1711
+ version = "0.4.12"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
1714
+ dependencies = [
1715
+ "typenum",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "hyper"
1720
+ version = "0.14.32"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
1723
+ dependencies = [
1724
+ "bytes",
1725
+ "futures-channel",
1726
+ "futures-core",
1727
+ "futures-util",
1728
+ "h2 0.3.27",
1729
+ "http 0.2.12",
1730
+ "http-body 0.4.6",
1731
+ "httparse",
1732
+ "httpdate",
1733
+ "itoa",
1734
+ "pin-project-lite",
1735
+ "socket2 0.5.10",
1736
+ "tokio",
1737
+ "tower-service",
1738
+ "tracing",
1739
+ "want",
1740
+ ]
1741
+
1742
+ [[package]]
1743
+ name = "hyper"
1744
+ version = "1.9.0"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
1747
+ dependencies = [
1748
+ "atomic-waker",
1749
+ "bytes",
1750
+ "futures-channel",
1751
+ "futures-core",
1752
+ "h2 0.4.14",
1753
+ "http 1.4.0",
1754
+ "http-body 1.0.1",
1755
+ "httparse",
1756
+ "httpdate",
1757
+ "itoa",
1758
+ "pin-project-lite",
1759
+ "smallvec",
1760
+ "tokio",
1761
+ "want",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "hyper-rustls"
1766
+ version = "0.24.2"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
1769
+ dependencies = [
1770
+ "futures-util",
1771
+ "http 0.2.12",
1772
+ "hyper 0.14.32",
1773
+ "log",
1774
+ "rustls 0.21.12",
1775
+ "tokio",
1776
+ "tokio-rustls 0.24.1",
1777
+ ]
1778
+
1779
+ [[package]]
1780
+ name = "hyper-rustls"
1781
+ version = "0.27.9"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
1784
+ dependencies = [
1785
+ "http 1.4.0",
1786
+ "hyper 1.9.0",
1787
+ "hyper-util",
1788
+ "rustls 0.23.40",
1789
+ "rustls-native-certs",
1790
+ "tokio",
1791
+ "tokio-rustls 0.26.4",
1792
+ "tower-service",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "hyper-util"
1797
+ version = "0.1.20"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1800
+ dependencies = [
1801
+ "base64",
1802
+ "bytes",
1803
+ "futures-channel",
1804
+ "futures-util",
1805
+ "http 1.4.0",
1806
+ "http-body 1.0.1",
1807
+ "hyper 1.9.0",
1808
+ "ipnet",
1809
+ "libc",
1810
+ "percent-encoding",
1811
+ "pin-project-lite",
1812
+ "socket2 0.6.3",
1813
+ "tokio",
1814
+ "tower-service",
1815
+ "tracing",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "iana-time-zone"
1820
+ version = "0.1.65"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1823
+ dependencies = [
1824
+ "android_system_properties",
1825
+ "core-foundation-sys",
1826
+ "iana-time-zone-haiku",
1827
+ "js-sys",
1828
+ "log",
1829
+ "wasm-bindgen",
1830
+ "windows-core",
1831
+ ]
1832
+
1833
+ [[package]]
1834
+ name = "iana-time-zone-haiku"
1835
+ version = "0.1.2"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1838
+ dependencies = [
1839
+ "cc",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "icu_collections"
1844
+ version = "2.2.0"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1847
+ dependencies = [
1848
+ "displaydoc",
1849
+ "potential_utf",
1850
+ "utf8_iter",
1851
+ "yoke",
1852
+ "zerofrom",
1853
+ "zerovec",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "icu_locale_core"
1858
+ version = "2.2.0"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1861
+ dependencies = [
1862
+ "displaydoc",
1863
+ "litemap",
1864
+ "tinystr",
1865
+ "writeable",
1866
+ "zerovec",
1867
+ ]
1868
+
1869
+ [[package]]
1870
+ name = "icu_normalizer"
1871
+ version = "2.2.0"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1874
+ dependencies = [
1875
+ "icu_collections",
1876
+ "icu_normalizer_data",
1877
+ "icu_properties",
1878
+ "icu_provider",
1879
+ "smallvec",
1880
+ "zerovec",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "icu_normalizer_data"
1885
+ version = "2.2.0"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1888
+
1889
+ [[package]]
1890
+ name = "icu_properties"
1891
+ version = "2.2.0"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1894
+ dependencies = [
1895
+ "icu_collections",
1896
+ "icu_locale_core",
1897
+ "icu_properties_data",
1898
+ "icu_provider",
1899
+ "zerotrie",
1900
+ "zerovec",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "icu_properties_data"
1905
+ version = "2.2.0"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1908
+
1909
+ [[package]]
1910
+ name = "icu_provider"
1911
+ version = "2.2.0"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1914
+ dependencies = [
1915
+ "displaydoc",
1916
+ "icu_locale_core",
1917
+ "writeable",
1918
+ "yoke",
1919
+ "zerofrom",
1920
+ "zerotrie",
1921
+ "zerovec",
1922
+ ]
1923
+
1924
+ [[package]]
1925
+ name = "id-arena"
1926
+ version = "2.3.0"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1929
+
1930
+ [[package]]
1931
+ name = "idna"
1932
+ version = "1.1.0"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1935
+ dependencies = [
1936
+ "idna_adapter",
1937
+ "smallvec",
1938
+ "utf8_iter",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "idna_adapter"
1943
+ version = "1.2.2"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1946
+ dependencies = [
1947
+ "icu_normalizer",
1948
+ "icu_properties",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "indexmap"
1953
+ version = "2.14.0"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1956
+ dependencies = [
1957
+ "equivalent",
1958
+ "hashbrown 0.17.0",
1959
+ "serde",
1960
+ "serde_core",
1961
+ ]
1962
+
1963
+ [[package]]
1964
+ name = "indoc"
1965
+ version = "2.0.7"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1968
+ dependencies = [
1969
+ "rustversion",
1970
+ ]
1971
+
1972
+ [[package]]
1973
+ name = "inlinable_string"
1974
+ version = "0.1.15"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb"
1977
+
1978
+ [[package]]
1979
+ name = "ipnet"
1980
+ version = "2.12.0"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1983
+
1984
+ [[package]]
1985
+ name = "is-terminal"
1986
+ version = "0.4.17"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1989
+ dependencies = [
1990
+ "hermit-abi",
1991
+ "libc",
1992
+ "windows-sys 0.61.2",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "is_terminal_polyfill"
1997
+ version = "1.70.2"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
2000
+
2001
+ [[package]]
2002
+ name = "itertools"
2003
+ version = "0.10.5"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2006
+ dependencies = [
2007
+ "either",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "itertools"
2012
+ version = "0.13.0"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
2015
+ dependencies = [
2016
+ "either",
2017
+ ]
2018
+
2019
+ [[package]]
2020
+ name = "itoa"
2021
+ version = "1.0.18"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
2024
+
2025
+ [[package]]
2026
+ name = "jobserver"
2027
+ version = "0.1.34"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
2030
+ dependencies = [
2031
+ "getrandom 0.3.4",
2032
+ "libc",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "js-sys"
2037
+ version = "0.3.98"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
2040
+ dependencies = [
2041
+ "cfg-if",
2042
+ "futures-util",
2043
+ "once_cell",
2044
+ "wasm-bindgen",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "jsonwebtoken"
2049
+ version = "9.3.1"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
2052
+ dependencies = [
2053
+ "base64",
2054
+ "js-sys",
2055
+ "pem",
2056
+ "ring",
2057
+ "serde",
2058
+ "serde_json",
2059
+ "simple_asn1",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "lazy_static"
2064
+ version = "1.5.0"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2067
+ dependencies = [
2068
+ "spin 0.9.8",
2069
+ ]
2070
+
2071
+ [[package]]
2072
+ name = "leb128fmt"
2073
+ version = "0.1.0"
2074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2075
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
2076
+
2077
+ [[package]]
2078
+ name = "libc"
2079
+ version = "0.2.186"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
2082
+
2083
+ [[package]]
2084
+ name = "libm"
2085
+ version = "0.2.16"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
2088
+
2089
+ [[package]]
2090
+ name = "libredox"
2091
+ version = "0.1.16"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
2094
+ dependencies = [
2095
+ "bitflags",
2096
+ "libc",
2097
+ "plain",
2098
+ "redox_syscall 0.7.5",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "libsqlite3-sys"
2103
+ version = "0.30.1"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
2106
+ dependencies = [
2107
+ "pkg-config",
2108
+ "vcpkg",
2109
+ ]
2110
+
2111
+ [[package]]
2112
+ name = "linux-raw-sys"
2113
+ version = "0.12.1"
2114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2115
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
2116
+
2117
+ [[package]]
2118
+ name = "litemap"
2119
+ version = "0.8.2"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
2122
+
2123
+ [[package]]
2124
+ name = "lock_api"
2125
+ version = "0.4.14"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
2128
+ dependencies = [
2129
+ "scopeguard",
2130
+ ]
2131
+
2132
+ [[package]]
2133
+ name = "log"
2134
+ version = "0.4.29"
2135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2136
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2137
+
2138
+ [[package]]
2139
+ name = "lru"
2140
+ version = "0.16.4"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "7f66e8d5d03f609abc3a39e6f08e4164ebf1447a732906d39eb9b99b7919ef39"
2143
+ dependencies = [
2144
+ "hashbrown 0.16.1",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "matchers"
2149
+ version = "0.2.0"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
2152
+ dependencies = [
2153
+ "regex-automata",
2154
+ ]
2155
+
2156
+ [[package]]
2157
+ name = "matchit"
2158
+ version = "0.7.3"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
2161
+
2162
+ [[package]]
2163
+ name = "md-5"
2164
+ version = "0.10.6"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
2167
+ dependencies = [
2168
+ "cfg-if",
2169
+ "digest 0.10.7",
2170
+ ]
2171
+
2172
+ [[package]]
2173
+ name = "md-5"
2174
+ version = "0.11.0"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
2177
+ dependencies = [
2178
+ "cfg-if",
2179
+ "digest 0.11.3",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "memchr"
2184
+ version = "2.8.0"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
2187
+
2188
+ [[package]]
2189
+ name = "memoffset"
2190
+ version = "0.9.1"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2193
+ dependencies = [
2194
+ "autocfg",
2195
+ ]
2196
+
2197
+ [[package]]
2198
+ name = "mime"
2199
+ version = "0.3.17"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2202
+
2203
+ [[package]]
2204
+ name = "mime_guess"
2205
+ version = "2.0.5"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2208
+ dependencies = [
2209
+ "mime",
2210
+ "unicase",
2211
+ ]
2212
+
2213
+ [[package]]
2214
+ name = "miniz_oxide"
2215
+ version = "0.8.9"
2216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2217
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2218
+ dependencies = [
2219
+ "adler2",
2220
+ "simd-adler32",
2221
+ ]
2222
+
2223
+ [[package]]
2224
+ name = "mio"
2225
+ version = "1.2.0"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
2228
+ dependencies = [
2229
+ "libc",
2230
+ "wasi",
2231
+ "windows-sys 0.61.2",
2232
+ ]
2233
+
2234
+ [[package]]
2235
+ name = "mondher-api"
2236
+ version = "0.1.0"
2237
+ dependencies = [
2238
+ "anyhow",
2239
+ "async-trait",
2240
+ "axum",
2241
+ "base64",
2242
+ "chrono",
2243
+ "futures-util",
2244
+ "hyper 1.9.0",
2245
+ "mondher-auth",
2246
+ "mondher-core",
2247
+ "mondher-engine",
2248
+ "mondher-formats",
2249
+ "mondher-jobs",
2250
+ "mondher-storage",
2251
+ "serde",
2252
+ "serde_json",
2253
+ "sha2 0.10.9",
2254
+ "thiserror 1.0.69",
2255
+ "tokio",
2256
+ "tokio-stream",
2257
+ "tower",
2258
+ "tower-http",
2259
+ "tracing",
2260
+ "tracing-subscriber",
2261
+ "utoipa",
2262
+ "utoipa-swagger-ui",
2263
+ "uuid",
2264
+ ]
2265
+
2266
+ [[package]]
2267
+ name = "mondher-auth"
2268
+ version = "0.1.0"
2269
+ dependencies = [
2270
+ "argon2",
2271
+ "chrono",
2272
+ "jsonwebtoken",
2273
+ "mondher-core",
2274
+ "password-hash",
2275
+ "rand 0.8.6",
2276
+ "serde",
2277
+ "serde_json",
2278
+ "thiserror 1.0.69",
2279
+ "uuid",
2280
+ "zeroize",
2281
+ ]
2282
+
2283
+ [[package]]
2284
+ name = "mondher-bin"
2285
+ version = "0.1.0"
2286
+ dependencies = [
2287
+ "anyhow",
2288
+ "assert_cmd",
2289
+ "dotenvy",
2290
+ "figment",
2291
+ "mondher-cli",
2292
+ "predicates",
2293
+ "serde",
2294
+ "tracing",
2295
+ "tracing-subscriber",
2296
+ ]
2297
+
2298
+ [[package]]
2299
+ name = "mondher-cli"
2300
+ version = "0.1.0"
2301
+ dependencies = [
2302
+ "anyhow",
2303
+ "clap",
2304
+ "clap_complete",
2305
+ "mondher-core",
2306
+ "mondher-engine",
2307
+ "mondher-formats",
2308
+ "mondher-layout",
2309
+ "tracing",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "mondher-core"
2314
+ version = "0.1.0"
2315
+ dependencies = [
2316
+ "chrono",
2317
+ "fixedbitset",
2318
+ "proptest",
2319
+ "serde",
2320
+ "thiserror 1.0.69",
2321
+ "uuid",
2322
+ ]
2323
+
2324
+ [[package]]
2325
+ name = "mondher-engine"
2326
+ version = "0.1.0"
2327
+ dependencies = [
2328
+ "criterion",
2329
+ "fixedbitset",
2330
+ "mondher-core",
2331
+ "mondher-formats",
2332
+ "proptest",
2333
+ "serde",
2334
+ "serde_json",
2335
+ "thiserror 1.0.69",
2336
+ "tracing",
2337
+ ]
2338
+
2339
+ [[package]]
2340
+ name = "mondher-explore"
2341
+ version = "0.1.0"
2342
+
2343
+ [[package]]
2344
+ name = "mondher-formats"
2345
+ version = "0.1.0"
2346
+ dependencies = [
2347
+ "csv",
2348
+ "mondher-core",
2349
+ "quick-xml",
2350
+ "serde",
2351
+ "serde_json",
2352
+ "thiserror 1.0.69",
2353
+ ]
2354
+
2355
+ [[package]]
2356
+ name = "mondher-jobs"
2357
+ version = "0.1.0"
2358
+ dependencies = [
2359
+ "async-trait",
2360
+ "chrono",
2361
+ "futures-util",
2362
+ "mondher-core",
2363
+ "mondher-engine",
2364
+ "mondher-formats",
2365
+ "mondher-storage",
2366
+ "serde",
2367
+ "serde_json",
2368
+ "thiserror 1.0.69",
2369
+ "tokio",
2370
+ "tokio-stream",
2371
+ "tracing",
2372
+ "uuid",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "mondher-layout"
2377
+ version = "0.1.0"
2378
+ dependencies = [
2379
+ "criterion",
2380
+ "mondher-core",
2381
+ "mondher-engine",
2382
+ "mondher-formats",
2383
+ "thiserror 1.0.69",
2384
+ "tracing",
2385
+ ]
2386
+
2387
+ [[package]]
2388
+ name = "mondher-metrics"
2389
+ version = "0.1.0"
2390
+
2391
+ [[package]]
2392
+ name = "mondher-patterns"
2393
+ version = "0.1.0"
2394
+
2395
+ [[package]]
2396
+ name = "mondher-plugins"
2397
+ version = "0.1.0"
2398
+
2399
+ [[package]]
2400
+ name = "mondher-py"
2401
+ version = "0.1.0"
2402
+ dependencies = [
2403
+ "mondher-core",
2404
+ "mondher-engine",
2405
+ "mondher-formats",
2406
+ "pyo3",
2407
+ ]
2408
+
2409
+ [[package]]
2410
+ name = "mondher-realtime"
2411
+ version = "0.1.0"
2412
+
2413
+ [[package]]
2414
+ name = "mondher-scaling"
2415
+ version = "0.1.0"
2416
+
2417
+ [[package]]
2418
+ name = "mondher-search"
2419
+ version = "0.1.0"
2420
+
2421
+ [[package]]
2422
+ name = "mondher-storage"
2423
+ version = "0.1.0"
2424
+ dependencies = [
2425
+ "anyhow",
2426
+ "async-trait",
2427
+ "aws-config",
2428
+ "aws-sdk-s3",
2429
+ "aws-smithy-async",
2430
+ "chrono",
2431
+ "criterion",
2432
+ "mondher-core",
2433
+ "rand 0.8.6",
2434
+ "redis",
2435
+ "serde",
2436
+ "serde_json",
2437
+ "sqlx",
2438
+ "thiserror 1.0.69",
2439
+ "tokio",
2440
+ "tracing",
2441
+ "uuid",
2442
+ ]
2443
+
2444
+ [[package]]
2445
+ name = "mondher-triadic"
2446
+ version = "0.1.0"
2447
+
2448
+ [[package]]
2449
+ name = "mondher-versioning"
2450
+ version = "0.1.0"
2451
+
2452
+ [[package]]
2453
+ name = "mondher-wasm"
2454
+ version = "0.1.0"
2455
+
2456
+ [[package]]
2457
+ name = "normalize-line-endings"
2458
+ version = "0.3.0"
2459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2460
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
2461
+
2462
+ [[package]]
2463
+ name = "nu-ansi-term"
2464
+ version = "0.50.3"
2465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2466
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2467
+ dependencies = [
2468
+ "windows-sys 0.61.2",
2469
+ ]
2470
+
2471
+ [[package]]
2472
+ name = "num-bigint"
2473
+ version = "0.4.6"
2474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2475
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2476
+ dependencies = [
2477
+ "num-integer",
2478
+ "num-traits",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "num-bigint-dig"
2483
+ version = "0.8.6"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
2486
+ dependencies = [
2487
+ "lazy_static",
2488
+ "libm",
2489
+ "num-integer",
2490
+ "num-iter",
2491
+ "num-traits",
2492
+ "rand 0.8.6",
2493
+ "smallvec",
2494
+ "zeroize",
2495
+ ]
2496
+
2497
+ [[package]]
2498
+ name = "num-conv"
2499
+ version = "0.2.2"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
2502
+
2503
+ [[package]]
2504
+ name = "num-integer"
2505
+ version = "0.1.46"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2508
+ dependencies = [
2509
+ "num-traits",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "num-iter"
2514
+ version = "0.1.45"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2517
+ dependencies = [
2518
+ "autocfg",
2519
+ "num-integer",
2520
+ "num-traits",
2521
+ ]
2522
+
2523
+ [[package]]
2524
+ name = "num-traits"
2525
+ version = "0.2.19"
2526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2527
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2528
+ dependencies = [
2529
+ "autocfg",
2530
+ "libm",
2531
+ ]
2532
+
2533
+ [[package]]
2534
+ name = "once_cell"
2535
+ version = "1.21.4"
2536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2537
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2538
+
2539
+ [[package]]
2540
+ name = "once_cell_polyfill"
2541
+ version = "1.70.2"
2542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2543
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2544
+
2545
+ [[package]]
2546
+ name = "oorandom"
2547
+ version = "11.1.5"
2548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2549
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
2550
+
2551
+ [[package]]
2552
+ name = "openssl-probe"
2553
+ version = "0.2.1"
2554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2555
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2556
+
2557
+ [[package]]
2558
+ name = "outref"
2559
+ version = "0.5.2"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
2562
+
2563
+ [[package]]
2564
+ name = "parking"
2565
+ version = "2.2.1"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2568
+
2569
+ [[package]]
2570
+ name = "parking_lot"
2571
+ version = "0.12.5"
2572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2573
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2574
+ dependencies = [
2575
+ "lock_api",
2576
+ "parking_lot_core",
2577
+ ]
2578
+
2579
+ [[package]]
2580
+ name = "parking_lot_core"
2581
+ version = "0.9.12"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2584
+ dependencies = [
2585
+ "cfg-if",
2586
+ "libc",
2587
+ "redox_syscall 0.5.18",
2588
+ "smallvec",
2589
+ "windows-link",
2590
+ ]
2591
+
2592
+ [[package]]
2593
+ name = "password-hash"
2594
+ version = "0.5.0"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
2597
+ dependencies = [
2598
+ "base64ct",
2599
+ "rand_core 0.6.4",
2600
+ "subtle",
2601
+ ]
2602
+
2603
+ [[package]]
2604
+ name = "pear"
2605
+ version = "0.2.9"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "bdeeaa00ce488657faba8ebf44ab9361f9365a97bd39ffb8a60663f57ff4b467"
2608
+ dependencies = [
2609
+ "inlinable_string",
2610
+ "pear_codegen",
2611
+ "yansi",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "pear_codegen"
2616
+ version = "0.2.9"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "4bab5b985dc082b345f812b7df84e1bef27e7207b39e448439ba8bd69c93f147"
2619
+ dependencies = [
2620
+ "proc-macro2",
2621
+ "proc-macro2-diagnostics",
2622
+ "quote",
2623
+ "syn",
2624
+ ]
2625
+
2626
+ [[package]]
2627
+ name = "pem"
2628
+ version = "3.0.6"
2629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2630
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
2631
+ dependencies = [
2632
+ "base64",
2633
+ "serde_core",
2634
+ ]
2635
+
2636
+ [[package]]
2637
+ name = "pem-rfc7468"
2638
+ version = "0.7.0"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2641
+ dependencies = [
2642
+ "base64ct",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "percent-encoding"
2647
+ version = "2.3.2"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2650
+
2651
+ [[package]]
2652
+ name = "pin-project-lite"
2653
+ version = "0.2.17"
2654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2655
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2656
+
2657
+ [[package]]
2658
+ name = "pin-utils"
2659
+ version = "0.1.0"
2660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2661
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2662
+
2663
+ [[package]]
2664
+ name = "pkcs1"
2665
+ version = "0.7.5"
2666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2667
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2668
+ dependencies = [
2669
+ "der",
2670
+ "pkcs8",
2671
+ "spki",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "pkcs8"
2676
+ version = "0.10.2"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2679
+ dependencies = [
2680
+ "der",
2681
+ "spki",
2682
+ ]
2683
+
2684
+ [[package]]
2685
+ name = "pkg-config"
2686
+ version = "0.3.33"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
2689
+
2690
+ [[package]]
2691
+ name = "plain"
2692
+ version = "0.2.3"
2693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2694
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
2695
+
2696
+ [[package]]
2697
+ name = "plotters"
2698
+ version = "0.3.7"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2701
+ dependencies = [
2702
+ "num-traits",
2703
+ "plotters-backend",
2704
+ "plotters-svg",
2705
+ "wasm-bindgen",
2706
+ "web-sys",
2707
+ ]
2708
+
2709
+ [[package]]
2710
+ name = "plotters-backend"
2711
+ version = "0.3.7"
2712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2713
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2714
+
2715
+ [[package]]
2716
+ name = "plotters-svg"
2717
+ version = "0.3.7"
2718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2719
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
2720
+ dependencies = [
2721
+ "plotters-backend",
2722
+ ]
2723
+
2724
+ [[package]]
2725
+ name = "portable-atomic"
2726
+ version = "1.13.1"
2727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2728
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2729
+
2730
+ [[package]]
2731
+ name = "potential_utf"
2732
+ version = "0.1.5"
2733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2734
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2735
+ dependencies = [
2736
+ "zerovec",
2737
+ ]
2738
+
2739
+ [[package]]
2740
+ name = "powerfmt"
2741
+ version = "0.2.0"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2744
+
2745
+ [[package]]
2746
+ name = "ppv-lite86"
2747
+ version = "0.2.21"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2750
+ dependencies = [
2751
+ "zerocopy",
2752
+ ]
2753
+
2754
+ [[package]]
2755
+ name = "predicates"
2756
+ version = "3.1.4"
2757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2758
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
2759
+ dependencies = [
2760
+ "anstyle",
2761
+ "difflib",
2762
+ "float-cmp",
2763
+ "normalize-line-endings",
2764
+ "predicates-core",
2765
+ "regex",
2766
+ ]
2767
+
2768
+ [[package]]
2769
+ name = "predicates-core"
2770
+ version = "1.0.10"
2771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2772
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
2773
+
2774
+ [[package]]
2775
+ name = "predicates-tree"
2776
+ version = "1.0.13"
2777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2778
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
2779
+ dependencies = [
2780
+ "predicates-core",
2781
+ "termtree",
2782
+ ]
2783
+
2784
+ [[package]]
2785
+ name = "prettyplease"
2786
+ version = "0.2.37"
2787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2788
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2789
+ dependencies = [
2790
+ "proc-macro2",
2791
+ "syn",
2792
+ ]
2793
+
2794
+ [[package]]
2795
+ name = "proc-macro2"
2796
+ version = "1.0.106"
2797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2798
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2799
+ dependencies = [
2800
+ "unicode-ident",
2801
+ ]
2802
+
2803
+ [[package]]
2804
+ name = "proc-macro2-diagnostics"
2805
+ version = "0.10.1"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
2808
+ dependencies = [
2809
+ "proc-macro2",
2810
+ "quote",
2811
+ "syn",
2812
+ "version_check",
2813
+ "yansi",
2814
+ ]
2815
+
2816
+ [[package]]
2817
+ name = "proptest"
2818
+ version = "1.11.0"
2819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2820
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
2821
+ dependencies = [
2822
+ "bit-set",
2823
+ "bit-vec",
2824
+ "bitflags",
2825
+ "num-traits",
2826
+ "rand 0.9.4",
2827
+ "rand_chacha 0.9.0",
2828
+ "rand_xorshift",
2829
+ "regex-syntax",
2830
+ "rusty-fork",
2831
+ "tempfile",
2832
+ "unarray",
2833
+ ]
2834
+
2835
+ [[package]]
2836
+ name = "pyo3"
2837
+ version = "0.24.2"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
2840
+ dependencies = [
2841
+ "cfg-if",
2842
+ "indoc",
2843
+ "libc",
2844
+ "memoffset",
2845
+ "once_cell",
2846
+ "portable-atomic",
2847
+ "pyo3-build-config",
2848
+ "pyo3-ffi",
2849
+ "pyo3-macros",
2850
+ "unindent",
2851
+ ]
2852
+
2853
+ [[package]]
2854
+ name = "pyo3-build-config"
2855
+ version = "0.24.2"
2856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2857
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
2858
+ dependencies = [
2859
+ "once_cell",
2860
+ "target-lexicon",
2861
+ ]
2862
+
2863
+ [[package]]
2864
+ name = "pyo3-ffi"
2865
+ version = "0.24.2"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
2868
+ dependencies = [
2869
+ "libc",
2870
+ "pyo3-build-config",
2871
+ ]
2872
+
2873
+ [[package]]
2874
+ name = "pyo3-macros"
2875
+ version = "0.24.2"
2876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2877
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
2878
+ dependencies = [
2879
+ "proc-macro2",
2880
+ "pyo3-macros-backend",
2881
+ "quote",
2882
+ "syn",
2883
+ ]
2884
+
2885
+ [[package]]
2886
+ name = "pyo3-macros-backend"
2887
+ version = "0.24.2"
2888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2889
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
2890
+ dependencies = [
2891
+ "heck",
2892
+ "proc-macro2",
2893
+ "pyo3-build-config",
2894
+ "quote",
2895
+ "syn",
2896
+ ]
2897
+
2898
+ [[package]]
2899
+ name = "quick-error"
2900
+ version = "1.2.3"
2901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2902
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2903
+
2904
+ [[package]]
2905
+ name = "quick-xml"
2906
+ version = "0.36.2"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
2909
+ dependencies = [
2910
+ "memchr",
2911
+ "serde",
2912
+ ]
2913
+
2914
+ [[package]]
2915
+ name = "quote"
2916
+ version = "1.0.45"
2917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2918
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2919
+ dependencies = [
2920
+ "proc-macro2",
2921
+ ]
2922
+
2923
+ [[package]]
2924
+ name = "r-efi"
2925
+ version = "5.3.0"
2926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2927
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2928
+
2929
+ [[package]]
2930
+ name = "r-efi"
2931
+ version = "6.0.0"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2934
+
2935
+ [[package]]
2936
+ name = "rand"
2937
+ version = "0.8.6"
2938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2939
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
2940
+ dependencies = [
2941
+ "libc",
2942
+ "rand_chacha 0.3.1",
2943
+ "rand_core 0.6.4",
2944
+ ]
2945
+
2946
+ [[package]]
2947
+ name = "rand"
2948
+ version = "0.9.4"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2951
+ dependencies = [
2952
+ "rand_chacha 0.9.0",
2953
+ "rand_core 0.9.5",
2954
+ ]
2955
+
2956
+ [[package]]
2957
+ name = "rand_chacha"
2958
+ version = "0.3.1"
2959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2960
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2961
+ dependencies = [
2962
+ "ppv-lite86",
2963
+ "rand_core 0.6.4",
2964
+ ]
2965
+
2966
+ [[package]]
2967
+ name = "rand_chacha"
2968
+ version = "0.9.0"
2969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2970
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2971
+ dependencies = [
2972
+ "ppv-lite86",
2973
+ "rand_core 0.9.5",
2974
+ ]
2975
+
2976
+ [[package]]
2977
+ name = "rand_core"
2978
+ version = "0.6.4"
2979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2980
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2981
+ dependencies = [
2982
+ "getrandom 0.2.17",
2983
+ ]
2984
+
2985
+ [[package]]
2986
+ name = "rand_core"
2987
+ version = "0.9.5"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2990
+ dependencies = [
2991
+ "getrandom 0.3.4",
2992
+ ]
2993
+
2994
+ [[package]]
2995
+ name = "rand_xorshift"
2996
+ version = "0.4.0"
2997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2998
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2999
+ dependencies = [
3000
+ "rand_core 0.9.5",
3001
+ ]
3002
+
3003
+ [[package]]
3004
+ name = "redis"
3005
+ version = "0.27.6"
3006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3007
+ checksum = "09d8f99a4090c89cc489a94833c901ead69bfbf3877b4867d5482e321ee875bc"
3008
+ dependencies = [
3009
+ "arc-swap",
3010
+ "async-trait",
3011
+ "backon",
3012
+ "bytes",
3013
+ "combine",
3014
+ "futures",
3015
+ "futures-util",
3016
+ "itertools 0.13.0",
3017
+ "itoa",
3018
+ "num-bigint",
3019
+ "percent-encoding",
3020
+ "pin-project-lite",
3021
+ "ryu",
3022
+ "tokio",
3023
+ "tokio-util",
3024
+ "url",
3025
+ ]
3026
+
3027
+ [[package]]
3028
+ name = "redox_syscall"
3029
+ version = "0.5.18"
3030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3031
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
3032
+ dependencies = [
3033
+ "bitflags",
3034
+ ]
3035
+
3036
+ [[package]]
3037
+ name = "redox_syscall"
3038
+ version = "0.7.5"
3039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3040
+ checksum = "4666a1a60d8412eab19d94f6d13dcc9cea0a5ef4fdf6a5db306537413c661b1b"
3041
+ dependencies = [
3042
+ "bitflags",
3043
+ ]
3044
+
3045
+ [[package]]
3046
+ name = "regex"
3047
+ version = "1.12.3"
3048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3049
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
3050
+ dependencies = [
3051
+ "aho-corasick",
3052
+ "memchr",
3053
+ "regex-automata",
3054
+ "regex-syntax",
3055
+ ]
3056
+
3057
+ [[package]]
3058
+ name = "regex-automata"
3059
+ version = "0.4.14"
3060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3061
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
3062
+ dependencies = [
3063
+ "aho-corasick",
3064
+ "memchr",
3065
+ "regex-syntax",
3066
+ ]
3067
+
3068
+ [[package]]
3069
+ name = "regex-lite"
3070
+ version = "0.1.9"
3071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3072
+ checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
3073
+
3074
+ [[package]]
3075
+ name = "regex-syntax"
3076
+ version = "0.8.10"
3077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3078
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
3079
+
3080
+ [[package]]
3081
+ name = "ring"
3082
+ version = "0.17.14"
3083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3084
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3085
+ dependencies = [
3086
+ "cc",
3087
+ "cfg-if",
3088
+ "getrandom 0.2.17",
3089
+ "libc",
3090
+ "untrusted",
3091
+ "windows-sys 0.52.0",
3092
+ ]
3093
+
3094
+ [[package]]
3095
+ name = "rsa"
3096
+ version = "0.9.10"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
3099
+ dependencies = [
3100
+ "const-oid 0.9.6",
3101
+ "digest 0.10.7",
3102
+ "num-bigint-dig",
3103
+ "num-integer",
3104
+ "num-traits",
3105
+ "pkcs1",
3106
+ "pkcs8",
3107
+ "rand_core 0.6.4",
3108
+ "signature",
3109
+ "spki",
3110
+ "subtle",
3111
+ "zeroize",
3112
+ ]
3113
+
3114
+ [[package]]
3115
+ name = "rust-embed"
3116
+ version = "8.11.0"
3117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3118
+ checksum = "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27"
3119
+ dependencies = [
3120
+ "rust-embed-impl",
3121
+ "rust-embed-utils",
3122
+ "walkdir",
3123
+ ]
3124
+
3125
+ [[package]]
3126
+ name = "rust-embed-impl"
3127
+ version = "8.11.0"
3128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3129
+ checksum = "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa"
3130
+ dependencies = [
3131
+ "proc-macro2",
3132
+ "quote",
3133
+ "rust-embed-utils",
3134
+ "syn",
3135
+ "walkdir",
3136
+ ]
3137
+
3138
+ [[package]]
3139
+ name = "rust-embed-utils"
3140
+ version = "8.11.0"
3141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3142
+ checksum = "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1"
3143
+ dependencies = [
3144
+ "sha2 0.10.9",
3145
+ "walkdir",
3146
+ ]
3147
+
3148
+ [[package]]
3149
+ name = "rustc_version"
3150
+ version = "0.4.1"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
3153
+ dependencies = [
3154
+ "semver",
3155
+ ]
3156
+
3157
+ [[package]]
3158
+ name = "rustix"
3159
+ version = "1.1.4"
3160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3161
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
3162
+ dependencies = [
3163
+ "bitflags",
3164
+ "errno",
3165
+ "libc",
3166
+ "linux-raw-sys",
3167
+ "windows-sys 0.61.2",
3168
+ ]
3169
+
3170
+ [[package]]
3171
+ name = "rustls"
3172
+ version = "0.21.12"
3173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3174
+ checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
3175
+ dependencies = [
3176
+ "log",
3177
+ "ring",
3178
+ "rustls-webpki 0.101.7",
3179
+ "sct",
3180
+ ]
3181
+
3182
+ [[package]]
3183
+ name = "rustls"
3184
+ version = "0.23.40"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
3187
+ dependencies = [
3188
+ "aws-lc-rs",
3189
+ "once_cell",
3190
+ "ring",
3191
+ "rustls-pki-types",
3192
+ "rustls-webpki 0.103.13",
3193
+ "subtle",
3194
+ "zeroize",
3195
+ ]
3196
+
3197
+ [[package]]
3198
+ name = "rustls-native-certs"
3199
+ version = "0.8.3"
3200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3201
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
3202
+ dependencies = [
3203
+ "openssl-probe",
3204
+ "rustls-pki-types",
3205
+ "schannel",
3206
+ "security-framework",
3207
+ ]
3208
+
3209
+ [[package]]
3210
+ name = "rustls-pki-types"
3211
+ version = "1.14.1"
3212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3213
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
3214
+ dependencies = [
3215
+ "zeroize",
3216
+ ]
3217
+
3218
+ [[package]]
3219
+ name = "rustls-webpki"
3220
+ version = "0.101.7"
3221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3222
+ checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
3223
+ dependencies = [
3224
+ "ring",
3225
+ "untrusted",
3226
+ ]
3227
+
3228
+ [[package]]
3229
+ name = "rustls-webpki"
3230
+ version = "0.103.13"
3231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3232
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
3233
+ dependencies = [
3234
+ "aws-lc-rs",
3235
+ "ring",
3236
+ "rustls-pki-types",
3237
+ "untrusted",
3238
+ ]
3239
+
3240
+ [[package]]
3241
+ name = "rustversion"
3242
+ version = "1.0.22"
3243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3244
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3245
+
3246
+ [[package]]
3247
+ name = "rusty-fork"
3248
+ version = "0.3.1"
3249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3250
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
3251
+ dependencies = [
3252
+ "fnv",
3253
+ "quick-error",
3254
+ "tempfile",
3255
+ "wait-timeout",
3256
+ ]
3257
+
3258
+ [[package]]
3259
+ name = "ryu"
3260
+ version = "1.0.23"
3261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3262
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
3263
+
3264
+ [[package]]
3265
+ name = "same-file"
3266
+ version = "1.0.6"
3267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3268
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3269
+ dependencies = [
3270
+ "winapi-util",
3271
+ ]
3272
+
3273
+ [[package]]
3274
+ name = "schannel"
3275
+ version = "0.1.29"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
3278
+ dependencies = [
3279
+ "windows-sys 0.61.2",
3280
+ ]
3281
+
3282
+ [[package]]
3283
+ name = "scopeguard"
3284
+ version = "1.2.0"
3285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3286
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3287
+
3288
+ [[package]]
3289
+ name = "sct"
3290
+ version = "0.7.1"
3291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3292
+ checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
3293
+ dependencies = [
3294
+ "ring",
3295
+ "untrusted",
3296
+ ]
3297
+
3298
+ [[package]]
3299
+ name = "security-framework"
3300
+ version = "3.7.0"
3301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3302
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
3303
+ dependencies = [
3304
+ "bitflags",
3305
+ "core-foundation",
3306
+ "core-foundation-sys",
3307
+ "libc",
3308
+ "security-framework-sys",
3309
+ ]
3310
+
3311
+ [[package]]
3312
+ name = "security-framework-sys"
3313
+ version = "2.17.0"
3314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3315
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
3316
+ dependencies = [
3317
+ "core-foundation-sys",
3318
+ "libc",
3319
+ ]
3320
+
3321
+ [[package]]
3322
+ name = "semver"
3323
+ version = "1.0.28"
3324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3325
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
3326
+
3327
+ [[package]]
3328
+ name = "serde"
3329
+ version = "1.0.228"
3330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3331
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3332
+ dependencies = [
3333
+ "serde_core",
3334
+ "serde_derive",
3335
+ ]
3336
+
3337
+ [[package]]
3338
+ name = "serde_core"
3339
+ version = "1.0.228"
3340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3341
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3342
+ dependencies = [
3343
+ "serde_derive",
3344
+ ]
3345
+
3346
+ [[package]]
3347
+ name = "serde_derive"
3348
+ version = "1.0.228"
3349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3350
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3351
+ dependencies = [
3352
+ "proc-macro2",
3353
+ "quote",
3354
+ "syn",
3355
+ ]
3356
+
3357
+ [[package]]
3358
+ name = "serde_json"
3359
+ version = "1.0.149"
3360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3361
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
3362
+ dependencies = [
3363
+ "itoa",
3364
+ "memchr",
3365
+ "serde",
3366
+ "serde_core",
3367
+ "zmij",
3368
+ ]
3369
+
3370
+ [[package]]
3371
+ name = "serde_path_to_error"
3372
+ version = "0.1.20"
3373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3374
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
3375
+ dependencies = [
3376
+ "itoa",
3377
+ "serde",
3378
+ "serde_core",
3379
+ ]
3380
+
3381
+ [[package]]
3382
+ name = "serde_spanned"
3383
+ version = "0.6.9"
3384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3385
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
3386
+ dependencies = [
3387
+ "serde",
3388
+ ]
3389
+
3390
+ [[package]]
3391
+ name = "serde_urlencoded"
3392
+ version = "0.7.1"
3393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3394
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3395
+ dependencies = [
3396
+ "form_urlencoded",
3397
+ "itoa",
3398
+ "ryu",
3399
+ "serde",
3400
+ ]
3401
+
3402
+ [[package]]
3403
+ name = "sha1"
3404
+ version = "0.10.6"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3407
+ dependencies = [
3408
+ "cfg-if",
3409
+ "cpufeatures 0.2.17",
3410
+ "digest 0.10.7",
3411
+ ]
3412
+
3413
+ [[package]]
3414
+ name = "sha1"
3415
+ version = "0.11.0"
3416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3417
+ checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
3418
+ dependencies = [
3419
+ "cfg-if",
3420
+ "cpufeatures 0.3.0",
3421
+ "digest 0.11.3",
3422
+ ]
3423
+
3424
+ [[package]]
3425
+ name = "sha2"
3426
+ version = "0.10.9"
3427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3428
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3429
+ dependencies = [
3430
+ "cfg-if",
3431
+ "cpufeatures 0.2.17",
3432
+ "digest 0.10.7",
3433
+ ]
3434
+
3435
+ [[package]]
3436
+ name = "sha2"
3437
+ version = "0.11.0"
3438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3439
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
3440
+ dependencies = [
3441
+ "cfg-if",
3442
+ "cpufeatures 0.3.0",
3443
+ "digest 0.11.3",
3444
+ ]
3445
+
3446
+ [[package]]
3447
+ name = "sharded-slab"
3448
+ version = "0.1.7"
3449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3450
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3451
+ dependencies = [
3452
+ "lazy_static",
3453
+ ]
3454
+
3455
+ [[package]]
3456
+ name = "shlex"
3457
+ version = "1.3.0"
3458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3459
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3460
+
3461
+ [[package]]
3462
+ name = "signal-hook-registry"
3463
+ version = "1.4.8"
3464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3465
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
3466
+ dependencies = [
3467
+ "errno",
3468
+ "libc",
3469
+ ]
3470
+
3471
+ [[package]]
3472
+ name = "signature"
3473
+ version = "2.2.0"
3474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3475
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
3476
+ dependencies = [
3477
+ "digest 0.10.7",
3478
+ "rand_core 0.6.4",
3479
+ ]
3480
+
3481
+ [[package]]
3482
+ name = "simd-adler32"
3483
+ version = "0.3.9"
3484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3485
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
3486
+
3487
+ [[package]]
3488
+ name = "simple_asn1"
3489
+ version = "0.6.4"
3490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3491
+ checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
3492
+ dependencies = [
3493
+ "num-bigint",
3494
+ "num-traits",
3495
+ "thiserror 2.0.18",
3496
+ "time",
3497
+ ]
3498
+
3499
+ [[package]]
3500
+ name = "slab"
3501
+ version = "0.4.12"
3502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3503
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3504
+
3505
+ [[package]]
3506
+ name = "smallvec"
3507
+ version = "1.15.1"
3508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3509
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3510
+ dependencies = [
3511
+ "serde",
3512
+ ]
3513
+
3514
+ [[package]]
3515
+ name = "socket2"
3516
+ version = "0.5.10"
3517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3518
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3519
+ dependencies = [
3520
+ "libc",
3521
+ "windows-sys 0.52.0",
3522
+ ]
3523
+
3524
+ [[package]]
3525
+ name = "socket2"
3526
+ version = "0.6.3"
3527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3528
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
3529
+ dependencies = [
3530
+ "libc",
3531
+ "windows-sys 0.61.2",
3532
+ ]
3533
+
3534
+ [[package]]
3535
+ name = "spin"
3536
+ version = "0.9.8"
3537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3538
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3539
+ dependencies = [
3540
+ "lock_api",
3541
+ ]
3542
+
3543
+ [[package]]
3544
+ name = "spin"
3545
+ version = "0.10.0"
3546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3547
+ checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
3548
+
3549
+ [[package]]
3550
+ name = "spki"
3551
+ version = "0.7.3"
3552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3553
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3554
+ dependencies = [
3555
+ "base64ct",
3556
+ "der",
3557
+ ]
3558
+
3559
+ [[package]]
3560
+ name = "sqlx"
3561
+ version = "0.8.6"
3562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3563
+ checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
3564
+ dependencies = [
3565
+ "sqlx-core",
3566
+ "sqlx-macros",
3567
+ "sqlx-mysql",
3568
+ "sqlx-postgres",
3569
+ "sqlx-sqlite",
3570
+ ]
3571
+
3572
+ [[package]]
3573
+ name = "sqlx-core"
3574
+ version = "0.8.6"
3575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3576
+ checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
3577
+ dependencies = [
3578
+ "base64",
3579
+ "bytes",
3580
+ "chrono",
3581
+ "crc",
3582
+ "crossbeam-queue",
3583
+ "either",
3584
+ "event-listener",
3585
+ "futures-core",
3586
+ "futures-intrusive",
3587
+ "futures-io",
3588
+ "futures-util",
3589
+ "hashbrown 0.15.5",
3590
+ "hashlink",
3591
+ "indexmap",
3592
+ "log",
3593
+ "memchr",
3594
+ "once_cell",
3595
+ "percent-encoding",
3596
+ "rustls 0.23.40",
3597
+ "serde",
3598
+ "serde_json",
3599
+ "sha2 0.10.9",
3600
+ "smallvec",
3601
+ "thiserror 2.0.18",
3602
+ "tokio",
3603
+ "tokio-stream",
3604
+ "tracing",
3605
+ "url",
3606
+ "uuid",
3607
+ "webpki-roots 0.26.11",
3608
+ ]
3609
+
3610
+ [[package]]
3611
+ name = "sqlx-macros"
3612
+ version = "0.8.6"
3613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3614
+ checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
3615
+ dependencies = [
3616
+ "proc-macro2",
3617
+ "quote",
3618
+ "sqlx-core",
3619
+ "sqlx-macros-core",
3620
+ "syn",
3621
+ ]
3622
+
3623
+ [[package]]
3624
+ name = "sqlx-macros-core"
3625
+ version = "0.8.6"
3626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3627
+ checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
3628
+ dependencies = [
3629
+ "dotenvy",
3630
+ "either",
3631
+ "heck",
3632
+ "hex",
3633
+ "once_cell",
3634
+ "proc-macro2",
3635
+ "quote",
3636
+ "serde",
3637
+ "serde_json",
3638
+ "sha2 0.10.9",
3639
+ "sqlx-core",
3640
+ "sqlx-mysql",
3641
+ "sqlx-postgres",
3642
+ "sqlx-sqlite",
3643
+ "syn",
3644
+ "tokio",
3645
+ "url",
3646
+ ]
3647
+
3648
+ [[package]]
3649
+ name = "sqlx-mysql"
3650
+ version = "0.8.6"
3651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3652
+ checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
3653
+ dependencies = [
3654
+ "atoi",
3655
+ "base64",
3656
+ "bitflags",
3657
+ "byteorder",
3658
+ "bytes",
3659
+ "chrono",
3660
+ "crc",
3661
+ "digest 0.10.7",
3662
+ "dotenvy",
3663
+ "either",
3664
+ "futures-channel",
3665
+ "futures-core",
3666
+ "futures-io",
3667
+ "futures-util",
3668
+ "generic-array",
3669
+ "hex",
3670
+ "hkdf",
3671
+ "hmac 0.12.1",
3672
+ "itoa",
3673
+ "log",
3674
+ "md-5 0.10.6",
3675
+ "memchr",
3676
+ "once_cell",
3677
+ "percent-encoding",
3678
+ "rand 0.8.6",
3679
+ "rsa",
3680
+ "serde",
3681
+ "sha1 0.10.6",
3682
+ "sha2 0.10.9",
3683
+ "smallvec",
3684
+ "sqlx-core",
3685
+ "stringprep",
3686
+ "thiserror 2.0.18",
3687
+ "tracing",
3688
+ "uuid",
3689
+ "whoami",
3690
+ ]
3691
+
3692
+ [[package]]
3693
+ name = "sqlx-postgres"
3694
+ version = "0.8.6"
3695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3696
+ checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
3697
+ dependencies = [
3698
+ "atoi",
3699
+ "base64",
3700
+ "bitflags",
3701
+ "byteorder",
3702
+ "chrono",
3703
+ "crc",
3704
+ "dotenvy",
3705
+ "etcetera",
3706
+ "futures-channel",
3707
+ "futures-core",
3708
+ "futures-util",
3709
+ "hex",
3710
+ "hkdf",
3711
+ "hmac 0.12.1",
3712
+ "home",
3713
+ "itoa",
3714
+ "log",
3715
+ "md-5 0.10.6",
3716
+ "memchr",
3717
+ "once_cell",
3718
+ "rand 0.8.6",
3719
+ "serde",
3720
+ "serde_json",
3721
+ "sha2 0.10.9",
3722
+ "smallvec",
3723
+ "sqlx-core",
3724
+ "stringprep",
3725
+ "thiserror 2.0.18",
3726
+ "tracing",
3727
+ "uuid",
3728
+ "whoami",
3729
+ ]
3730
+
3731
+ [[package]]
3732
+ name = "sqlx-sqlite"
3733
+ version = "0.8.6"
3734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3735
+ checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea"
3736
+ dependencies = [
3737
+ "atoi",
3738
+ "chrono",
3739
+ "flume",
3740
+ "futures-channel",
3741
+ "futures-core",
3742
+ "futures-executor",
3743
+ "futures-intrusive",
3744
+ "futures-util",
3745
+ "libsqlite3-sys",
3746
+ "log",
3747
+ "percent-encoding",
3748
+ "serde",
3749
+ "serde_urlencoded",
3750
+ "sqlx-core",
3751
+ "thiserror 2.0.18",
3752
+ "tracing",
3753
+ "url",
3754
+ "uuid",
3755
+ ]
3756
+
3757
+ [[package]]
3758
+ name = "stable_deref_trait"
3759
+ version = "1.2.1"
3760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3761
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3762
+
3763
+ [[package]]
3764
+ name = "stringprep"
3765
+ version = "0.1.5"
3766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3767
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
3768
+ dependencies = [
3769
+ "unicode-bidi",
3770
+ "unicode-normalization",
3771
+ "unicode-properties",
3772
+ ]
3773
+
3774
+ [[package]]
3775
+ name = "strsim"
3776
+ version = "0.11.1"
3777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3778
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3779
+
3780
+ [[package]]
3781
+ name = "subtle"
3782
+ version = "2.6.1"
3783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3784
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3785
+
3786
+ [[package]]
3787
+ name = "syn"
3788
+ version = "2.0.117"
3789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3790
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3791
+ dependencies = [
3792
+ "proc-macro2",
3793
+ "quote",
3794
+ "unicode-ident",
3795
+ ]
3796
+
3797
+ [[package]]
3798
+ name = "sync_wrapper"
3799
+ version = "1.0.2"
3800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3801
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3802
+
3803
+ [[package]]
3804
+ name = "synstructure"
3805
+ version = "0.13.2"
3806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3807
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3808
+ dependencies = [
3809
+ "proc-macro2",
3810
+ "quote",
3811
+ "syn",
3812
+ ]
3813
+
3814
+ [[package]]
3815
+ name = "target-lexicon"
3816
+ version = "0.13.5"
3817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3818
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3819
+
3820
+ [[package]]
3821
+ name = "tempfile"
3822
+ version = "3.27.0"
3823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3824
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3825
+ dependencies = [
3826
+ "fastrand",
3827
+ "getrandom 0.4.2",
3828
+ "once_cell",
3829
+ "rustix",
3830
+ "windows-sys 0.61.2",
3831
+ ]
3832
+
3833
+ [[package]]
3834
+ name = "termtree"
3835
+ version = "0.5.1"
3836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3837
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
3838
+
3839
+ [[package]]
3840
+ name = "thiserror"
3841
+ version = "1.0.69"
3842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3843
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3844
+ dependencies = [
3845
+ "thiserror-impl 1.0.69",
3846
+ ]
3847
+
3848
+ [[package]]
3849
+ name = "thiserror"
3850
+ version = "2.0.18"
3851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3852
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3853
+ dependencies = [
3854
+ "thiserror-impl 2.0.18",
3855
+ ]
3856
+
3857
+ [[package]]
3858
+ name = "thiserror-impl"
3859
+ version = "1.0.69"
3860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3861
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3862
+ dependencies = [
3863
+ "proc-macro2",
3864
+ "quote",
3865
+ "syn",
3866
+ ]
3867
+
3868
+ [[package]]
3869
+ name = "thiserror-impl"
3870
+ version = "2.0.18"
3871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3872
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3873
+ dependencies = [
3874
+ "proc-macro2",
3875
+ "quote",
3876
+ "syn",
3877
+ ]
3878
+
3879
+ [[package]]
3880
+ name = "thread_local"
3881
+ version = "1.1.9"
3882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3883
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3884
+ dependencies = [
3885
+ "cfg-if",
3886
+ ]
3887
+
3888
+ [[package]]
3889
+ name = "time"
3890
+ version = "0.3.47"
3891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3892
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
3893
+ dependencies = [
3894
+ "deranged",
3895
+ "itoa",
3896
+ "num-conv",
3897
+ "powerfmt",
3898
+ "serde_core",
3899
+ "time-core",
3900
+ "time-macros",
3901
+ ]
3902
+
3903
+ [[package]]
3904
+ name = "time-core"
3905
+ version = "0.1.8"
3906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3907
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
3908
+
3909
+ [[package]]
3910
+ name = "time-macros"
3911
+ version = "0.2.27"
3912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3913
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
3914
+ dependencies = [
3915
+ "num-conv",
3916
+ "time-core",
3917
+ ]
3918
+
3919
+ [[package]]
3920
+ name = "tinystr"
3921
+ version = "0.8.3"
3922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3923
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3924
+ dependencies = [
3925
+ "displaydoc",
3926
+ "zerovec",
3927
+ ]
3928
+
3929
+ [[package]]
3930
+ name = "tinytemplate"
3931
+ version = "1.2.1"
3932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3933
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3934
+ dependencies = [
3935
+ "serde",
3936
+ "serde_json",
3937
+ ]
3938
+
3939
+ [[package]]
3940
+ name = "tinyvec"
3941
+ version = "1.11.0"
3942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3943
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
3944
+ dependencies = [
3945
+ "tinyvec_macros",
3946
+ ]
3947
+
3948
+ [[package]]
3949
+ name = "tinyvec_macros"
3950
+ version = "0.1.1"
3951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3952
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3953
+
3954
+ [[package]]
3955
+ name = "tokio"
3956
+ version = "1.52.2"
3957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3958
+ checksum = "110a78583f19d5cdb2c5ccf321d1290344e71313c6c37d43520d386027d18386"
3959
+ dependencies = [
3960
+ "bytes",
3961
+ "libc",
3962
+ "mio",
3963
+ "parking_lot",
3964
+ "pin-project-lite",
3965
+ "signal-hook-registry",
3966
+ "socket2 0.6.3",
3967
+ "tokio-macros",
3968
+ "windows-sys 0.61.2",
3969
+ ]
3970
+
3971
+ [[package]]
3972
+ name = "tokio-macros"
3973
+ version = "2.7.0"
3974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3975
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
3976
+ dependencies = [
3977
+ "proc-macro2",
3978
+ "quote",
3979
+ "syn",
3980
+ ]
3981
+
3982
+ [[package]]
3983
+ name = "tokio-rustls"
3984
+ version = "0.24.1"
3985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3986
+ checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
3987
+ dependencies = [
3988
+ "rustls 0.21.12",
3989
+ "tokio",
3990
+ ]
3991
+
3992
+ [[package]]
3993
+ name = "tokio-rustls"
3994
+ version = "0.26.4"
3995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3996
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3997
+ dependencies = [
3998
+ "rustls 0.23.40",
3999
+ "tokio",
4000
+ ]
4001
+
4002
+ [[package]]
4003
+ name = "tokio-stream"
4004
+ version = "0.1.18"
4005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4006
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
4007
+ dependencies = [
4008
+ "futures-core",
4009
+ "pin-project-lite",
4010
+ "tokio",
4011
+ "tokio-util",
4012
+ ]
4013
+
4014
+ [[package]]
4015
+ name = "tokio-util"
4016
+ version = "0.7.18"
4017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4018
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
4019
+ dependencies = [
4020
+ "bytes",
4021
+ "futures-core",
4022
+ "futures-sink",
4023
+ "pin-project-lite",
4024
+ "tokio",
4025
+ ]
4026
+
4027
+ [[package]]
4028
+ name = "toml"
4029
+ version = "0.8.23"
4030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4031
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
4032
+ dependencies = [
4033
+ "serde",
4034
+ "serde_spanned",
4035
+ "toml_datetime",
4036
+ "toml_edit",
4037
+ ]
4038
+
4039
+ [[package]]
4040
+ name = "toml_datetime"
4041
+ version = "0.6.11"
4042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4043
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
4044
+ dependencies = [
4045
+ "serde",
4046
+ ]
4047
+
4048
+ [[package]]
4049
+ name = "toml_edit"
4050
+ version = "0.22.27"
4051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4052
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
4053
+ dependencies = [
4054
+ "indexmap",
4055
+ "serde",
4056
+ "serde_spanned",
4057
+ "toml_datetime",
4058
+ "toml_write",
4059
+ "winnow",
4060
+ ]
4061
+
4062
+ [[package]]
4063
+ name = "toml_write"
4064
+ version = "0.1.2"
4065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4066
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
4067
+
4068
+ [[package]]
4069
+ name = "tower"
4070
+ version = "0.5.3"
4071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4072
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
4073
+ dependencies = [
4074
+ "futures-core",
4075
+ "futures-util",
4076
+ "pin-project-lite",
4077
+ "sync_wrapper",
4078
+ "tokio",
4079
+ "tower-layer",
4080
+ "tower-service",
4081
+ "tracing",
4082
+ ]
4083
+
4084
+ [[package]]
4085
+ name = "tower-http"
4086
+ version = "0.6.11"
4087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4088
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
4089
+ dependencies = [
4090
+ "bitflags",
4091
+ "bytes",
4092
+ "http 1.4.0",
4093
+ "http-body 1.0.1",
4094
+ "pin-project-lite",
4095
+ "tower-layer",
4096
+ "tower-service",
4097
+ "tracing",
4098
+ "uuid",
4099
+ ]
4100
+
4101
+ [[package]]
4102
+ name = "tower-layer"
4103
+ version = "0.3.3"
4104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4105
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4106
+
4107
+ [[package]]
4108
+ name = "tower-service"
4109
+ version = "0.3.3"
4110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4111
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4112
+
4113
+ [[package]]
4114
+ name = "tracing"
4115
+ version = "0.1.44"
4116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4117
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
4118
+ dependencies = [
4119
+ "log",
4120
+ "pin-project-lite",
4121
+ "tracing-attributes",
4122
+ "tracing-core",
4123
+ ]
4124
+
4125
+ [[package]]
4126
+ name = "tracing-attributes"
4127
+ version = "0.1.31"
4128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4129
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
4130
+ dependencies = [
4131
+ "proc-macro2",
4132
+ "quote",
4133
+ "syn",
4134
+ ]
4135
+
4136
+ [[package]]
4137
+ name = "tracing-core"
4138
+ version = "0.1.36"
4139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4140
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
4141
+ dependencies = [
4142
+ "once_cell",
4143
+ "valuable",
4144
+ ]
4145
+
4146
+ [[package]]
4147
+ name = "tracing-log"
4148
+ version = "0.2.0"
4149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4150
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
4151
+ dependencies = [
4152
+ "log",
4153
+ "once_cell",
4154
+ "tracing-core",
4155
+ ]
4156
+
4157
+ [[package]]
4158
+ name = "tracing-serde"
4159
+ version = "0.2.0"
4160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4161
+ checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
4162
+ dependencies = [
4163
+ "serde",
4164
+ "tracing-core",
4165
+ ]
4166
+
4167
+ [[package]]
4168
+ name = "tracing-subscriber"
4169
+ version = "0.3.23"
4170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4171
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
4172
+ dependencies = [
4173
+ "matchers",
4174
+ "nu-ansi-term",
4175
+ "once_cell",
4176
+ "regex-automata",
4177
+ "serde",
4178
+ "serde_json",
4179
+ "sharded-slab",
4180
+ "smallvec",
4181
+ "thread_local",
4182
+ "tracing",
4183
+ "tracing-core",
4184
+ "tracing-log",
4185
+ "tracing-serde",
4186
+ ]
4187
+
4188
+ [[package]]
4189
+ name = "try-lock"
4190
+ version = "0.2.5"
4191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4192
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4193
+
4194
+ [[package]]
4195
+ name = "typenum"
4196
+ version = "1.20.0"
4197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4198
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
4199
+
4200
+ [[package]]
4201
+ name = "unarray"
4202
+ version = "0.1.4"
4203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4204
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
4205
+
4206
+ [[package]]
4207
+ name = "uncased"
4208
+ version = "0.9.10"
4209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4210
+ checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
4211
+ dependencies = [
4212
+ "version_check",
4213
+ ]
4214
+
4215
+ [[package]]
4216
+ name = "unicase"
4217
+ version = "2.9.0"
4218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4219
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
4220
+
4221
+ [[package]]
4222
+ name = "unicode-bidi"
4223
+ version = "0.3.18"
4224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4225
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
4226
+
4227
+ [[package]]
4228
+ name = "unicode-ident"
4229
+ version = "1.0.24"
4230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4231
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
4232
+
4233
+ [[package]]
4234
+ name = "unicode-normalization"
4235
+ version = "0.1.25"
4236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4237
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
4238
+ dependencies = [
4239
+ "tinyvec",
4240
+ ]
4241
+
4242
+ [[package]]
4243
+ name = "unicode-properties"
4244
+ version = "0.1.4"
4245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4246
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
4247
+
4248
+ [[package]]
4249
+ name = "unicode-xid"
4250
+ version = "0.2.6"
4251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4252
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
4253
+
4254
+ [[package]]
4255
+ name = "unindent"
4256
+ version = "0.2.4"
4257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4258
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
4259
+
4260
+ [[package]]
4261
+ name = "untrusted"
4262
+ version = "0.9.0"
4263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4264
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4265
+
4266
+ [[package]]
4267
+ name = "url"
4268
+ version = "2.5.8"
4269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4270
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
4271
+ dependencies = [
4272
+ "form_urlencoded",
4273
+ "idna",
4274
+ "percent-encoding",
4275
+ "serde",
4276
+ ]
4277
+
4278
+ [[package]]
4279
+ name = "urlencoding"
4280
+ version = "2.1.3"
4281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4282
+ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
4283
+
4284
+ [[package]]
4285
+ name = "utf8_iter"
4286
+ version = "1.0.4"
4287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4288
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4289
+
4290
+ [[package]]
4291
+ name = "utf8parse"
4292
+ version = "0.2.2"
4293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4294
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4295
+
4296
+ [[package]]
4297
+ name = "utoipa"
4298
+ version = "5.5.0"
4299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4300
+ checksum = "8bde15df68e80b16c7d16b9616e80770ad158988daa56a27dccd1e55558b0160"
4301
+ dependencies = [
4302
+ "indexmap",
4303
+ "serde",
4304
+ "serde_json",
4305
+ "utoipa-gen",
4306
+ ]
4307
+
4308
+ [[package]]
4309
+ name = "utoipa-gen"
4310
+ version = "5.5.0"
4311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4312
+ checksum = "6ba0b99ee52df3028635d93840c797102da61f8a7bb3cf751032455895b52ef8"
4313
+ dependencies = [
4314
+ "proc-macro2",
4315
+ "quote",
4316
+ "regex",
4317
+ "syn",
4318
+ "uuid",
4319
+ ]
4320
+
4321
+ [[package]]
4322
+ name = "utoipa-swagger-ui"
4323
+ version = "8.1.0"
4324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4325
+ checksum = "db4b5ac679cc6dfc5ea3f2823b0291c777750ffd5e13b21137e0f7ac0e8f9617"
4326
+ dependencies = [
4327
+ "axum",
4328
+ "base64",
4329
+ "mime_guess",
4330
+ "regex",
4331
+ "rust-embed",
4332
+ "serde",
4333
+ "serde_json",
4334
+ "utoipa",
4335
+ "utoipa-swagger-ui-vendored",
4336
+ "zip",
4337
+ ]
4338
+
4339
+ [[package]]
4340
+ name = "utoipa-swagger-ui-vendored"
4341
+ version = "0.1.2"
4342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4343
+ checksum = "e2eebbbfe4093922c2b6734d7c679ebfebd704a0d7e56dfcb0d05818ce28977d"
4344
+
4345
+ [[package]]
4346
+ name = "uuid"
4347
+ version = "1.23.1"
4348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4349
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
4350
+ dependencies = [
4351
+ "getrandom 0.4.2",
4352
+ "js-sys",
4353
+ "serde_core",
4354
+ "wasm-bindgen",
4355
+ ]
4356
+
4357
+ [[package]]
4358
+ name = "valuable"
4359
+ version = "0.1.1"
4360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4361
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
4362
+
4363
+ [[package]]
4364
+ name = "vcpkg"
4365
+ version = "0.2.15"
4366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4367
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
4368
+
4369
+ [[package]]
4370
+ name = "version_check"
4371
+ version = "0.9.5"
4372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4373
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4374
+
4375
+ [[package]]
4376
+ name = "vsimd"
4377
+ version = "0.8.0"
4378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4379
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
4380
+
4381
+ [[package]]
4382
+ name = "wait-timeout"
4383
+ version = "0.2.1"
4384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4385
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
4386
+ dependencies = [
4387
+ "libc",
4388
+ ]
4389
+
4390
+ [[package]]
4391
+ name = "walkdir"
4392
+ version = "2.5.0"
4393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4394
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4395
+ dependencies = [
4396
+ "same-file",
4397
+ "winapi-util",
4398
+ ]
4399
+
4400
+ [[package]]
4401
+ name = "want"
4402
+ version = "0.3.1"
4403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4404
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4405
+ dependencies = [
4406
+ "try-lock",
4407
+ ]
4408
+
4409
+ [[package]]
4410
+ name = "wasi"
4411
+ version = "0.11.1+wasi-snapshot-preview1"
4412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4413
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4414
+
4415
+ [[package]]
4416
+ name = "wasip2"
4417
+ version = "1.0.3+wasi-0.2.9"
4418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4419
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
4420
+ dependencies = [
4421
+ "wit-bindgen 0.57.1",
4422
+ ]
4423
+
4424
+ [[package]]
4425
+ name = "wasip3"
4426
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
4427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4428
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
4429
+ dependencies = [
4430
+ "wit-bindgen 0.51.0",
4431
+ ]
4432
+
4433
+ [[package]]
4434
+ name = "wasite"
4435
+ version = "0.1.0"
4436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4437
+ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
4438
+
4439
+ [[package]]
4440
+ name = "wasm-bindgen"
4441
+ version = "0.2.121"
4442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4443
+ checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
4444
+ dependencies = [
4445
+ "cfg-if",
4446
+ "once_cell",
4447
+ "rustversion",
4448
+ "wasm-bindgen-macro",
4449
+ "wasm-bindgen-shared",
4450
+ ]
4451
+
4452
+ [[package]]
4453
+ name = "wasm-bindgen-macro"
4454
+ version = "0.2.121"
4455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4456
+ checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
4457
+ dependencies = [
4458
+ "quote",
4459
+ "wasm-bindgen-macro-support",
4460
+ ]
4461
+
4462
+ [[package]]
4463
+ name = "wasm-bindgen-macro-support"
4464
+ version = "0.2.121"
4465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4466
+ checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
4467
+ dependencies = [
4468
+ "bumpalo",
4469
+ "proc-macro2",
4470
+ "quote",
4471
+ "syn",
4472
+ "wasm-bindgen-shared",
4473
+ ]
4474
+
4475
+ [[package]]
4476
+ name = "wasm-bindgen-shared"
4477
+ version = "0.2.121"
4478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4479
+ checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
4480
+ dependencies = [
4481
+ "unicode-ident",
4482
+ ]
4483
+
4484
+ [[package]]
4485
+ name = "wasm-encoder"
4486
+ version = "0.244.0"
4487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4488
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
4489
+ dependencies = [
4490
+ "leb128fmt",
4491
+ "wasmparser",
4492
+ ]
4493
+
4494
+ [[package]]
4495
+ name = "wasm-metadata"
4496
+ version = "0.244.0"
4497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4498
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
4499
+ dependencies = [
4500
+ "anyhow",
4501
+ "indexmap",
4502
+ "wasm-encoder",
4503
+ "wasmparser",
4504
+ ]
4505
+
4506
+ [[package]]
4507
+ name = "wasmparser"
4508
+ version = "0.244.0"
4509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4510
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
4511
+ dependencies = [
4512
+ "bitflags",
4513
+ "hashbrown 0.15.5",
4514
+ "indexmap",
4515
+ "semver",
4516
+ ]
4517
+
4518
+ [[package]]
4519
+ name = "web-sys"
4520
+ version = "0.3.98"
4521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4522
+ checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
4523
+ dependencies = [
4524
+ "js-sys",
4525
+ "wasm-bindgen",
4526
+ ]
4527
+
4528
+ [[package]]
4529
+ name = "webpki-roots"
4530
+ version = "0.26.11"
4531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4532
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
4533
+ dependencies = [
4534
+ "webpki-roots 1.0.7",
4535
+ ]
4536
+
4537
+ [[package]]
4538
+ name = "webpki-roots"
4539
+ version = "1.0.7"
4540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4541
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
4542
+ dependencies = [
4543
+ "rustls-pki-types",
4544
+ ]
4545
+
4546
+ [[package]]
4547
+ name = "whoami"
4548
+ version = "1.6.1"
4549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4550
+ checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
4551
+ dependencies = [
4552
+ "libredox",
4553
+ "wasite",
4554
+ ]
4555
+
4556
+ [[package]]
4557
+ name = "winapi-util"
4558
+ version = "0.1.11"
4559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4560
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4561
+ dependencies = [
4562
+ "windows-sys 0.61.2",
4563
+ ]
4564
+
4565
+ [[package]]
4566
+ name = "windows-core"
4567
+ version = "0.62.2"
4568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4569
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4570
+ dependencies = [
4571
+ "windows-implement",
4572
+ "windows-interface",
4573
+ "windows-link",
4574
+ "windows-result",
4575
+ "windows-strings",
4576
+ ]
4577
+
4578
+ [[package]]
4579
+ name = "windows-implement"
4580
+ version = "0.60.2"
4581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4582
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4583
+ dependencies = [
4584
+ "proc-macro2",
4585
+ "quote",
4586
+ "syn",
4587
+ ]
4588
+
4589
+ [[package]]
4590
+ name = "windows-interface"
4591
+ version = "0.59.3"
4592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4593
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4594
+ dependencies = [
4595
+ "proc-macro2",
4596
+ "quote",
4597
+ "syn",
4598
+ ]
4599
+
4600
+ [[package]]
4601
+ name = "windows-link"
4602
+ version = "0.2.1"
4603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4604
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4605
+
4606
+ [[package]]
4607
+ name = "windows-result"
4608
+ version = "0.4.1"
4609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4610
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4611
+ dependencies = [
4612
+ "windows-link",
4613
+ ]
4614
+
4615
+ [[package]]
4616
+ name = "windows-strings"
4617
+ version = "0.5.1"
4618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4619
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4620
+ dependencies = [
4621
+ "windows-link",
4622
+ ]
4623
+
4624
+ [[package]]
4625
+ name = "windows-sys"
4626
+ version = "0.48.0"
4627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4628
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4629
+ dependencies = [
4630
+ "windows-targets 0.48.5",
4631
+ ]
4632
+
4633
+ [[package]]
4634
+ name = "windows-sys"
4635
+ version = "0.52.0"
4636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4637
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4638
+ dependencies = [
4639
+ "windows-targets 0.52.6",
4640
+ ]
4641
+
4642
+ [[package]]
4643
+ name = "windows-sys"
4644
+ version = "0.61.2"
4645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4646
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4647
+ dependencies = [
4648
+ "windows-link",
4649
+ ]
4650
+
4651
+ [[package]]
4652
+ name = "windows-targets"
4653
+ version = "0.48.5"
4654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4655
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4656
+ dependencies = [
4657
+ "windows_aarch64_gnullvm 0.48.5",
4658
+ "windows_aarch64_msvc 0.48.5",
4659
+ "windows_i686_gnu 0.48.5",
4660
+ "windows_i686_msvc 0.48.5",
4661
+ "windows_x86_64_gnu 0.48.5",
4662
+ "windows_x86_64_gnullvm 0.48.5",
4663
+ "windows_x86_64_msvc 0.48.5",
4664
+ ]
4665
+
4666
+ [[package]]
4667
+ name = "windows-targets"
4668
+ version = "0.52.6"
4669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4670
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4671
+ dependencies = [
4672
+ "windows_aarch64_gnullvm 0.52.6",
4673
+ "windows_aarch64_msvc 0.52.6",
4674
+ "windows_i686_gnu 0.52.6",
4675
+ "windows_i686_gnullvm",
4676
+ "windows_i686_msvc 0.52.6",
4677
+ "windows_x86_64_gnu 0.52.6",
4678
+ "windows_x86_64_gnullvm 0.52.6",
4679
+ "windows_x86_64_msvc 0.52.6",
4680
+ ]
4681
+
4682
+ [[package]]
4683
+ name = "windows_aarch64_gnullvm"
4684
+ version = "0.48.5"
4685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4686
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4687
+
4688
+ [[package]]
4689
+ name = "windows_aarch64_gnullvm"
4690
+ version = "0.52.6"
4691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4692
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4693
+
4694
+ [[package]]
4695
+ name = "windows_aarch64_msvc"
4696
+ version = "0.48.5"
4697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4698
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4699
+
4700
+ [[package]]
4701
+ name = "windows_aarch64_msvc"
4702
+ version = "0.52.6"
4703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4704
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4705
+
4706
+ [[package]]
4707
+ name = "windows_i686_gnu"
4708
+ version = "0.48.5"
4709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4710
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4711
+
4712
+ [[package]]
4713
+ name = "windows_i686_gnu"
4714
+ version = "0.52.6"
4715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4716
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4717
+
4718
+ [[package]]
4719
+ name = "windows_i686_gnullvm"
4720
+ version = "0.52.6"
4721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4722
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4723
+
4724
+ [[package]]
4725
+ name = "windows_i686_msvc"
4726
+ version = "0.48.5"
4727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4728
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4729
+
4730
+ [[package]]
4731
+ name = "windows_i686_msvc"
4732
+ version = "0.52.6"
4733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4734
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4735
+
4736
+ [[package]]
4737
+ name = "windows_x86_64_gnu"
4738
+ version = "0.48.5"
4739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4740
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4741
+
4742
+ [[package]]
4743
+ name = "windows_x86_64_gnu"
4744
+ version = "0.52.6"
4745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4746
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4747
+
4748
+ [[package]]
4749
+ name = "windows_x86_64_gnullvm"
4750
+ version = "0.48.5"
4751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4752
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4753
+
4754
+ [[package]]
4755
+ name = "windows_x86_64_gnullvm"
4756
+ version = "0.52.6"
4757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4758
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4759
+
4760
+ [[package]]
4761
+ name = "windows_x86_64_msvc"
4762
+ version = "0.48.5"
4763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4764
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4765
+
4766
+ [[package]]
4767
+ name = "windows_x86_64_msvc"
4768
+ version = "0.52.6"
4769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4770
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4771
+
4772
+ [[package]]
4773
+ name = "winnow"
4774
+ version = "0.7.15"
4775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4776
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
4777
+ dependencies = [
4778
+ "memchr",
4779
+ ]
4780
+
4781
+ [[package]]
4782
+ name = "wit-bindgen"
4783
+ version = "0.51.0"
4784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4785
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4786
+ dependencies = [
4787
+ "wit-bindgen-rust-macro",
4788
+ ]
4789
+
4790
+ [[package]]
4791
+ name = "wit-bindgen"
4792
+ version = "0.57.1"
4793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4794
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4795
+
4796
+ [[package]]
4797
+ name = "wit-bindgen-core"
4798
+ version = "0.51.0"
4799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4800
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4801
+ dependencies = [
4802
+ "anyhow",
4803
+ "heck",
4804
+ "wit-parser",
4805
+ ]
4806
+
4807
+ [[package]]
4808
+ name = "wit-bindgen-rust"
4809
+ version = "0.51.0"
4810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4811
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4812
+ dependencies = [
4813
+ "anyhow",
4814
+ "heck",
4815
+ "indexmap",
4816
+ "prettyplease",
4817
+ "syn",
4818
+ "wasm-metadata",
4819
+ "wit-bindgen-core",
4820
+ "wit-component",
4821
+ ]
4822
+
4823
+ [[package]]
4824
+ name = "wit-bindgen-rust-macro"
4825
+ version = "0.51.0"
4826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4827
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4828
+ dependencies = [
4829
+ "anyhow",
4830
+ "prettyplease",
4831
+ "proc-macro2",
4832
+ "quote",
4833
+ "syn",
4834
+ "wit-bindgen-core",
4835
+ "wit-bindgen-rust",
4836
+ ]
4837
+
4838
+ [[package]]
4839
+ name = "wit-component"
4840
+ version = "0.244.0"
4841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4842
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4843
+ dependencies = [
4844
+ "anyhow",
4845
+ "bitflags",
4846
+ "indexmap",
4847
+ "log",
4848
+ "serde",
4849
+ "serde_derive",
4850
+ "serde_json",
4851
+ "wasm-encoder",
4852
+ "wasm-metadata",
4853
+ "wasmparser",
4854
+ "wit-parser",
4855
+ ]
4856
+
4857
+ [[package]]
4858
+ name = "wit-parser"
4859
+ version = "0.244.0"
4860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4861
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4862
+ dependencies = [
4863
+ "anyhow",
4864
+ "id-arena",
4865
+ "indexmap",
4866
+ "log",
4867
+ "semver",
4868
+ "serde",
4869
+ "serde_derive",
4870
+ "serde_json",
4871
+ "unicode-xid",
4872
+ "wasmparser",
4873
+ ]
4874
+
4875
+ [[package]]
4876
+ name = "writeable"
4877
+ version = "0.6.3"
4878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4879
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4880
+
4881
+ [[package]]
4882
+ name = "xmlparser"
4883
+ version = "0.13.6"
4884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4885
+ checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
4886
+
4887
+ [[package]]
4888
+ name = "yansi"
4889
+ version = "1.0.1"
4890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4891
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4892
+
4893
+ [[package]]
4894
+ name = "yoke"
4895
+ version = "0.8.2"
4896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4897
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
4898
+ dependencies = [
4899
+ "stable_deref_trait",
4900
+ "yoke-derive",
4901
+ "zerofrom",
4902
+ ]
4903
+
4904
+ [[package]]
4905
+ name = "yoke-derive"
4906
+ version = "0.8.2"
4907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4908
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4909
+ dependencies = [
4910
+ "proc-macro2",
4911
+ "quote",
4912
+ "syn",
4913
+ "synstructure",
4914
+ ]
4915
+
4916
+ [[package]]
4917
+ name = "zerocopy"
4918
+ version = "0.8.48"
4919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4920
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
4921
+ dependencies = [
4922
+ "zerocopy-derive",
4923
+ ]
4924
+
4925
+ [[package]]
4926
+ name = "zerocopy-derive"
4927
+ version = "0.8.48"
4928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4929
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
4930
+ dependencies = [
4931
+ "proc-macro2",
4932
+ "quote",
4933
+ "syn",
4934
+ ]
4935
+
4936
+ [[package]]
4937
+ name = "zerofrom"
4938
+ version = "0.1.8"
4939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4940
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4941
+ dependencies = [
4942
+ "zerofrom-derive",
4943
+ ]
4944
+
4945
+ [[package]]
4946
+ name = "zerofrom-derive"
4947
+ version = "0.1.7"
4948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4949
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4950
+ dependencies = [
4951
+ "proc-macro2",
4952
+ "quote",
4953
+ "syn",
4954
+ "synstructure",
4955
+ ]
4956
+
4957
+ [[package]]
4958
+ name = "zeroize"
4959
+ version = "1.8.2"
4960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4961
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4962
+ dependencies = [
4963
+ "zeroize_derive",
4964
+ ]
4965
+
4966
+ [[package]]
4967
+ name = "zeroize_derive"
4968
+ version = "1.4.3"
4969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4970
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
4971
+ dependencies = [
4972
+ "proc-macro2",
4973
+ "quote",
4974
+ "syn",
4975
+ ]
4976
+
4977
+ [[package]]
4978
+ name = "zerotrie"
4979
+ version = "0.2.4"
4980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4981
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4982
+ dependencies = [
4983
+ "displaydoc",
4984
+ "yoke",
4985
+ "zerofrom",
4986
+ ]
4987
+
4988
+ [[package]]
4989
+ name = "zerovec"
4990
+ version = "0.11.6"
4991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4992
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4993
+ dependencies = [
4994
+ "yoke",
4995
+ "zerofrom",
4996
+ "zerovec-derive",
4997
+ ]
4998
+
4999
+ [[package]]
5000
+ name = "zerovec-derive"
5001
+ version = "0.11.3"
5002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5003
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
5004
+ dependencies = [
5005
+ "proc-macro2",
5006
+ "quote",
5007
+ "syn",
5008
+ ]
5009
+
5010
+ [[package]]
5011
+ name = "zip"
5012
+ version = "2.4.2"
5013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5014
+ checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
5015
+ dependencies = [
5016
+ "arbitrary",
5017
+ "crc32fast",
5018
+ "crossbeam-utils",
5019
+ "displaydoc",
5020
+ "flate2",
5021
+ "indexmap",
5022
+ "memchr",
5023
+ "thiserror 2.0.18",
5024
+ "zopfli",
5025
+ ]
5026
+
5027
+ [[package]]
5028
+ name = "zmij"
5029
+ version = "1.0.21"
5030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5031
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
5032
+
5033
+ [[package]]
5034
+ name = "zopfli"
5035
+ version = "0.8.3"
5036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5037
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
5038
+ dependencies = [
5039
+ "bumpalo",
5040
+ "crc32fast",
5041
+ "log",
5042
+ "simd-adler32",
5043
+ ]