cereyan 1.4.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 (106) hide show
  1. cereyan-1.4.0/Cargo.lock +2809 -0
  2. cereyan-1.4.0/Cargo.toml +44 -0
  3. cereyan-1.4.0/LICENSE +21 -0
  4. cereyan-1.4.0/NOTICE +15 -0
  5. cereyan-1.4.0/PKG-INFO +146 -0
  6. cereyan-1.4.0/README.md +110 -0
  7. cereyan-1.4.0/crates/core/Cargo.toml +31 -0
  8. cereyan-1.4.0/crates/core/benches/rules.rs +16 -0
  9. cereyan-1.4.0/crates/core/src/id.rs +62 -0
  10. cereyan-1.4.0/crates/core/src/lib.rs +16 -0
  11. cereyan-1.4.0/crates/core/src/model.rs +486 -0
  12. cereyan-1.4.0/crates/core/src/rules.rs +287 -0
  13. cereyan-1.4.0/crates/core/src/schedule.rs +436 -0
  14. cereyan-1.4.0/crates/core/src/state.rs +232 -0
  15. cereyan-1.4.0/crates/core/src/time.rs +14 -0
  16. cereyan-1.4.0/crates/py/Cargo.toml +22 -0
  17. cereyan-1.4.0/crates/py/src/client.rs +685 -0
  18. cereyan-1.4.0/crates/py/src/lib.rs +637 -0
  19. cereyan-1.4.0/crates/py/src/server.rs +176 -0
  20. cereyan-1.4.0/crates/rules/Cargo.toml +16 -0
  21. cereyan-1.4.0/crates/rules/src/lib.rs +743 -0
  22. cereyan-1.4.0/crates/server/Cargo.toml +40 -0
  23. cereyan-1.4.0/crates/server/benches/timer.rs +17 -0
  24. cereyan-1.4.0/crates/server/build.rs +20 -0
  25. cereyan-1.4.0/crates/server/src/api/backfills.rs +517 -0
  26. cereyan-1.4.0/crates/server/src/api/counts.rs +21 -0
  27. cereyan-1.4.0/crates/server/src/api/engine.rs +425 -0
  28. cereyan-1.4.0/crates/server/src/api/error.rs +53 -0
  29. cereyan-1.4.0/crates/server/src/api/flows.rs +145 -0
  30. cereyan-1.4.0/crates/server/src/api/logs.rs +71 -0
  31. cereyan-1.4.0/crates/server/src/api/mod.rs +337 -0
  32. cereyan-1.4.0/crates/server/src/api/observability.rs +649 -0
  33. cereyan-1.4.0/crates/server/src/api/runs.rs +557 -0
  34. cereyan-1.4.0/crates/server/src/api/schedules.rs +330 -0
  35. cereyan-1.4.0/crates/server/src/api/settings.rs +242 -0
  36. cereyan-1.4.0/crates/server/src/api/stream.rs +127 -0
  37. cereyan-1.4.0/crates/server/src/api/task_runs.rs +33 -0
  38. cereyan-1.4.0/crates/server/src/auth.rs +92 -0
  39. cereyan-1.4.0/crates/server/src/custom.rs +268 -0
  40. cereyan-1.4.0/crates/server/src/dispatch.rs +446 -0
  41. cereyan-1.4.0/crates/server/src/events.rs +105 -0
  42. cereyan-1.4.0/crates/server/src/index.rs +302 -0
  43. cereyan-1.4.0/crates/server/src/lib.rs +428 -0
  44. cereyan-1.4.0/crates/server/src/mcp.rs +632 -0
  45. cereyan-1.4.0/crates/server/src/process.rs +45 -0
  46. cereyan-1.4.0/crates/server/src/retention.rs +55 -0
  47. cereyan-1.4.0/crates/server/src/rules.rs +944 -0
  48. cereyan-1.4.0/crates/server/src/scheduler.rs +567 -0
  49. cereyan-1.4.0/crates/server/src/state.rs +390 -0
  50. cereyan-1.4.0/crates/server/src/stream.rs +103 -0
  51. cereyan-1.4.0/crates/server/src/supervisor.rs +885 -0
  52. cereyan-1.4.0/crates/server/src/timer.rs +172 -0
  53. cereyan-1.4.0/crates/server/src/ui.rs +43 -0
  54. cereyan-1.4.0/crates/server/src/validate.rs +118 -0
  55. cereyan-1.4.0/crates/store/Cargo.toml +34 -0
  56. cereyan-1.4.0/crates/store/benches/writer.rs +69 -0
  57. cereyan-1.4.0/crates/store/migrations/0001_init.sql +93 -0
  58. cereyan-1.4.0/crates/store/migrations/0002_server.sql +9 -0
  59. cereyan-1.4.0/crates/store/migrations/0003_scheduling.sql +61 -0
  60. cereyan-1.4.0/crates/store/migrations/0004_observability.sql +53 -0
  61. cereyan-1.4.0/crates/store/migrations/0005_counts_index.sql +3 -0
  62. cereyan-1.4.0/crates/store/migrations/0006_expectations.sql +16 -0
  63. cereyan-1.4.0/crates/store/src/error.rs +30 -0
  64. cereyan-1.4.0/crates/store/src/home.rs +54 -0
  65. cereyan-1.4.0/crates/store/src/lib.rs +466 -0
  66. cereyan-1.4.0/crates/store/src/migrations.rs +42 -0
  67. cereyan-1.4.0/crates/store/src/open.rs +138 -0
  68. cereyan-1.4.0/crates/store/src/read.rs +991 -0
  69. cereyan-1.4.0/crates/store/src/row.rs +345 -0
  70. cereyan-1.4.0/crates/store/src/secrets.rs +114 -0
  71. cereyan-1.4.0/crates/store/src/writer.rs +1472 -0
  72. cereyan-1.4.0/crates/store/tests/store.rs +561 -0
  73. cereyan-1.4.0/pyproject.toml +75 -0
  74. cereyan-1.4.0/python/cereyan/__init__.py +63 -0
  75. cereyan-1.4.0/python/cereyan/__main__.py +3 -0
  76. cereyan-1.4.0/python/cereyan/_core.pyi +219 -0
  77. cereyan-1.4.0/python/cereyan/apps.py +186 -0
  78. cereyan-1.4.0/python/cereyan/artifacts.py +131 -0
  79. cereyan-1.4.0/python/cereyan/cli.py +344 -0
  80. cereyan-1.4.0/python/cereyan/client.py +385 -0
  81. cereyan-1.4.0/python/cereyan/config.py +90 -0
  82. cereyan-1.4.0/python/cereyan/context.py +85 -0
  83. cereyan-1.4.0/python/cereyan/engine/__init__.py +25 -0
  84. cereyan-1.4.0/python/cereyan/engine/__main__.py +5 -0
  85. cereyan-1.4.0/python/cereyan/engine/backends.py +248 -0
  86. cereyan-1.4.0/python/cereyan/engine/child.py +210 -0
  87. cereyan-1.4.0/python/cereyan/engine/runner.py +558 -0
  88. cereyan-1.4.0/python/cereyan/events.py +36 -0
  89. cereyan-1.4.0/python/cereyan/exceptions.py +35 -0
  90. cereyan-1.4.0/python/cereyan/flows.py +301 -0
  91. cereyan-1.4.0/python/cereyan/inputs.py +59 -0
  92. cereyan-1.4.0/python/cereyan/logging.py +133 -0
  93. cereyan-1.4.0/python/cereyan/mcp.py +126 -0
  94. cereyan-1.4.0/python/cereyan/names.py +40 -0
  95. cereyan-1.4.0/python/cereyan/params.py +390 -0
  96. cereyan-1.4.0/python/cereyan/py.typed +0 -0
  97. cereyan-1.4.0/python/cereyan/results.py +119 -0
  98. cereyan-1.4.0/python/cereyan/routes.py +278 -0
  99. cereyan-1.4.0/python/cereyan/rules.py +294 -0
  100. cereyan-1.4.0/python/cereyan/runners.py +334 -0
  101. cereyan-1.4.0/python/cereyan/runtime.py +21 -0
  102. cereyan-1.4.0/python/cereyan/schedules.py +154 -0
  103. cereyan-1.4.0/python/cereyan/serve.py +206 -0
  104. cereyan-1.4.0/python/cereyan/targets.py +134 -0
  105. cereyan-1.4.0/python/cereyan/tasks.py +144 -0
  106. cereyan-1.4.0/python/cereyan/variables.py +137 -0
@@ -0,0 +1,2809 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "crypto-common 0.1.7",
18
+ "generic-array",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "aho-corasick"
23
+ version = "1.1.5"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
26
+ dependencies = [
27
+ "memchr",
28
+ ]
29
+
30
+ [[package]]
31
+ name = "alloca"
32
+ version = "0.4.0"
33
+ source = "registry+https://github.com/rust-lang/crates.io-index"
34
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
35
+ dependencies = [
36
+ "cc",
37
+ ]
38
+
39
+ [[package]]
40
+ name = "android_system_properties"
41
+ version = "0.1.6"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
44
+ dependencies = [
45
+ "libc",
46
+ ]
47
+
48
+ [[package]]
49
+ name = "anes"
50
+ version = "0.1.6"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
53
+
54
+ [[package]]
55
+ name = "anstyle"
56
+ version = "1.0.14"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
59
+
60
+ [[package]]
61
+ name = "atomic-waker"
62
+ version = "1.1.2"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
65
+
66
+ [[package]]
67
+ name = "autocfg"
68
+ version = "1.5.1"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
71
+
72
+ [[package]]
73
+ name = "axum"
74
+ version = "0.8.9"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
77
+ dependencies = [
78
+ "axum-core",
79
+ "bytes",
80
+ "form_urlencoded",
81
+ "futures-util",
82
+ "http",
83
+ "http-body",
84
+ "http-body-util",
85
+ "hyper",
86
+ "hyper-util",
87
+ "itoa",
88
+ "matchit",
89
+ "memchr",
90
+ "mime",
91
+ "percent-encoding",
92
+ "pin-project-lite",
93
+ "serde_core",
94
+ "serde_json",
95
+ "serde_path_to_error",
96
+ "serde_urlencoded",
97
+ "sync_wrapper",
98
+ "tokio",
99
+ "tower",
100
+ "tower-layer",
101
+ "tower-service",
102
+ "tracing",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "axum-core"
107
+ version = "0.5.6"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
110
+ dependencies = [
111
+ "bytes",
112
+ "futures-core",
113
+ "http",
114
+ "http-body",
115
+ "http-body-util",
116
+ "mime",
117
+ "pin-project-lite",
118
+ "sync_wrapper",
119
+ "tower-layer",
120
+ "tower-service",
121
+ "tracing",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "base64"
126
+ version = "0.22.1"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
129
+
130
+ [[package]]
131
+ name = "base64"
132
+ version = "0.23.1"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
135
+
136
+ [[package]]
137
+ name = "bitflags"
138
+ version = "2.13.1"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
141
+
142
+ [[package]]
143
+ name = "block-buffer"
144
+ version = "0.12.1"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
147
+ dependencies = [
148
+ "hybrid-array",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "bumpalo"
153
+ version = "3.20.3"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
156
+
157
+ [[package]]
158
+ name = "bytes"
159
+ version = "1.12.1"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
162
+
163
+ [[package]]
164
+ name = "cast"
165
+ version = "0.3.0"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
168
+
169
+ [[package]]
170
+ name = "cc"
171
+ version = "1.4.5"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "005ec2760ca554fae18df7a11195552ec576cd665632a881bc011d5bb2fd4d80"
174
+ dependencies = [
175
+ "find-msvc-tools",
176
+ "shlex",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "cereyan-core"
181
+ version = "1.4.0"
182
+ dependencies = [
183
+ "chrono",
184
+ "chrono-tz",
185
+ "criterion",
186
+ "croner",
187
+ "rrule",
188
+ "serde",
189
+ "serde_json",
190
+ "thiserror",
191
+ "utoipa",
192
+ "uuid",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "cereyan-py"
197
+ version = "1.4.0"
198
+ dependencies = [
199
+ "cereyan-core",
200
+ "cereyan-rules",
201
+ "cereyan-server",
202
+ "cereyan-store",
203
+ "pyo3",
204
+ "serde",
205
+ "serde_json",
206
+ "ureq",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "cereyan-rules"
211
+ version = "1.4.0"
212
+ dependencies = [
213
+ "cereyan-core",
214
+ "minijinja",
215
+ "serde_json",
216
+ "thiserror",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "cereyan-server"
221
+ version = "1.4.0"
222
+ dependencies = [
223
+ "axum",
224
+ "cereyan-core",
225
+ "cereyan-rules",
226
+ "cereyan-store",
227
+ "chrono",
228
+ "criterion",
229
+ "futures",
230
+ "lettre",
231
+ "libc",
232
+ "mime_guess",
233
+ "rust-embed",
234
+ "serde",
235
+ "serde_json",
236
+ "thiserror",
237
+ "tokio",
238
+ "tokio-stream",
239
+ "toml",
240
+ "ureq",
241
+ "utoipa",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "cereyan-store"
246
+ version = "1.4.0"
247
+ dependencies = [
248
+ "base64 0.22.1",
249
+ "cereyan-core",
250
+ "chacha20poly1305",
251
+ "criterion",
252
+ "crossbeam-channel",
253
+ "dirs 7.0.0",
254
+ "rand",
255
+ "rusqlite",
256
+ "serde",
257
+ "serde_json",
258
+ "tempfile",
259
+ "thiserror",
260
+ "utoipa",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "cfg-if"
265
+ version = "1.0.4"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
268
+
269
+ [[package]]
270
+ name = "chacha20"
271
+ version = "0.9.1"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
274
+ dependencies = [
275
+ "cfg-if",
276
+ "cipher",
277
+ "cpufeatures 0.2.17",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "chacha20poly1305"
282
+ version = "0.10.1"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
285
+ dependencies = [
286
+ "aead",
287
+ "chacha20",
288
+ "cipher",
289
+ "poly1305",
290
+ "zeroize",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "chrono"
295
+ version = "0.4.45"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
298
+ dependencies = [
299
+ "iana-time-zone",
300
+ "js-sys",
301
+ "num-traits",
302
+ "serde",
303
+ "wasm-bindgen",
304
+ "windows-link",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "chrono-tz"
309
+ version = "0.10.4"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
312
+ dependencies = [
313
+ "chrono",
314
+ "phf",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "ciborium"
319
+ version = "0.2.2"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
322
+ dependencies = [
323
+ "ciborium-io",
324
+ "ciborium-ll",
325
+ "serde",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "ciborium-io"
330
+ version = "0.2.2"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
333
+
334
+ [[package]]
335
+ name = "ciborium-ll"
336
+ version = "0.2.2"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
339
+ dependencies = [
340
+ "ciborium-io",
341
+ "half",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "cipher"
346
+ version = "0.4.4"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
349
+ dependencies = [
350
+ "crypto-common 0.1.7",
351
+ "inout",
352
+ "zeroize",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "clap"
357
+ version = "4.6.6"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
360
+ dependencies = [
361
+ "clap_builder",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "clap_builder"
366
+ version = "4.6.6"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
369
+ dependencies = [
370
+ "anstyle",
371
+ "clap_lex",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "clap_lex"
376
+ version = "1.1.0"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
379
+
380
+ [[package]]
381
+ name = "const-oid"
382
+ version = "0.10.2"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
385
+
386
+ [[package]]
387
+ name = "cookie"
388
+ version = "0.18.2"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "1a373e3602691c3cdea496d2f0ee5935151e6168fe87739483c463db1b2f2f87"
391
+ dependencies = [
392
+ "percent-encoding",
393
+ "time",
394
+ "version_check",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "cookie_store"
399
+ version = "0.22.1"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "15b2c103cf610ec6cae3da84a766285b42fd16aad564758459e6ecf128c75206"
402
+ dependencies = [
403
+ "cookie",
404
+ "document-features",
405
+ "idna",
406
+ "indexmap",
407
+ "log",
408
+ "serde",
409
+ "serde_derive",
410
+ "serde_json",
411
+ "time",
412
+ "url",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "core-foundation-sys"
417
+ version = "0.8.7"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
420
+
421
+ [[package]]
422
+ name = "cpufeatures"
423
+ version = "0.2.17"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
426
+ dependencies = [
427
+ "libc",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "cpufeatures"
432
+ version = "0.3.1"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
435
+ dependencies = [
436
+ "libc",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "crc32fast"
441
+ version = "1.5.1"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
444
+ dependencies = [
445
+ "cfg-if",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "criterion"
450
+ version = "0.8.2"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
453
+ dependencies = [
454
+ "alloca",
455
+ "anes",
456
+ "cast",
457
+ "ciborium",
458
+ "clap",
459
+ "criterion-plot",
460
+ "itertools",
461
+ "num-traits",
462
+ "oorandom",
463
+ "page_size",
464
+ "regex",
465
+ "serde",
466
+ "serde_json",
467
+ "tinytemplate",
468
+ "walkdir",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "criterion-plot"
473
+ version = "0.8.2"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
476
+ dependencies = [
477
+ "cast",
478
+ "itertools",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "croner"
483
+ version = "4.0.0"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "a59ed87528b2ee2b6d2b14d6767f6dbe41867dfc581433fc23a7c0fae847467a"
486
+ dependencies = [
487
+ "chrono",
488
+ "derive_builder",
489
+ "strum",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "crossbeam-channel"
494
+ version = "0.5.17"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "98b0cc327b5bc766e7fda9c9260cc0fa81b43a8e240440422dff70788e3f9ef1"
497
+ dependencies = [
498
+ "crossbeam-utils",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "crossbeam-utils"
503
+ version = "0.8.23"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
506
+
507
+ [[package]]
508
+ name = "crunchy"
509
+ version = "0.2.4"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
512
+
513
+ [[package]]
514
+ name = "crypto-common"
515
+ version = "0.1.7"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
518
+ dependencies = [
519
+ "generic-array",
520
+ "rand_core 0.6.4",
521
+ "typenum",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "crypto-common"
526
+ version = "0.2.2"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
529
+ dependencies = [
530
+ "hybrid-array",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "darling"
535
+ version = "0.20.11"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
538
+ dependencies = [
539
+ "darling_core",
540
+ "darling_macro",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "darling_core"
545
+ version = "0.20.11"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
548
+ dependencies = [
549
+ "fnv",
550
+ "ident_case",
551
+ "proc-macro2",
552
+ "quote",
553
+ "strsim",
554
+ "syn 2.0.119",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "darling_macro"
559
+ version = "0.20.11"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
562
+ dependencies = [
563
+ "darling_core",
564
+ "quote",
565
+ "syn 2.0.119",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "deranged"
570
+ version = "0.5.8"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
573
+
574
+ [[package]]
575
+ name = "derive_builder"
576
+ version = "0.20.2"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
579
+ dependencies = [
580
+ "derive_builder_macro",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "derive_builder_core"
585
+ version = "0.20.2"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
588
+ dependencies = [
589
+ "darling",
590
+ "proc-macro2",
591
+ "quote",
592
+ "syn 2.0.119",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "derive_builder_macro"
597
+ version = "0.20.2"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
600
+ dependencies = [
601
+ "derive_builder_core",
602
+ "syn 2.0.119",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "digest"
607
+ version = "0.11.3"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
610
+ dependencies = [
611
+ "block-buffer",
612
+ "const-oid",
613
+ "crypto-common 0.2.2",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "dirs"
618
+ version = "6.0.0"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
621
+ dependencies = [
622
+ "dirs-sys",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "dirs"
627
+ version = "7.0.0"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "8d57d423b3c82e89b9a24ca3091fee61f456a26edbd28d26c65906f4bc1dcd8f"
630
+ dependencies = [
631
+ "dirs-sys",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "dirs-sys"
636
+ version = "0.5.0"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
639
+ dependencies = [
640
+ "libc",
641
+ "option-ext",
642
+ "redox_users",
643
+ "windows-sys 0.61.2",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "displaydoc"
648
+ version = "0.2.7"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
651
+ dependencies = [
652
+ "proc-macro2",
653
+ "quote",
654
+ "syn 3.0.5",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "document-features"
659
+ version = "0.2.12"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
662
+ dependencies = [
663
+ "litrs",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "either"
668
+ version = "1.18.0"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
671
+
672
+ [[package]]
673
+ name = "email-encoding"
674
+ version = "0.4.2"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "420b9da095f052ea597503e39073b5b3c522f7db933fbac202d91d24492693fd"
677
+ dependencies = [
678
+ "base64 0.23.1",
679
+ "memchr",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "email_address"
684
+ version = "0.2.9"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
687
+
688
+ [[package]]
689
+ name = "equivalent"
690
+ version = "1.0.2"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
693
+
694
+ [[package]]
695
+ name = "errno"
696
+ version = "0.3.14"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
699
+ dependencies = [
700
+ "libc",
701
+ "windows-sys 0.61.2",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "fallible-iterator"
706
+ version = "0.3.0"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
709
+
710
+ [[package]]
711
+ name = "fallible-streaming-iterator"
712
+ version = "0.1.9"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
715
+
716
+ [[package]]
717
+ name = "fastrand"
718
+ version = "2.5.0"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
721
+
722
+ [[package]]
723
+ name = "find-msvc-tools"
724
+ version = "0.1.12"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
727
+
728
+ [[package]]
729
+ name = "flate2"
730
+ version = "1.1.10"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
733
+ dependencies = [
734
+ "crc32fast",
735
+ "miniz_oxide",
736
+ "zlib-rs",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "fnv"
741
+ version = "1.0.7"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
744
+
745
+ [[package]]
746
+ name = "foldhash"
747
+ version = "0.2.0"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
750
+
751
+ [[package]]
752
+ name = "form_urlencoded"
753
+ version = "1.2.2"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
756
+ dependencies = [
757
+ "percent-encoding",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "futures"
762
+ version = "0.3.34"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
765
+ dependencies = [
766
+ "futures-channel",
767
+ "futures-core",
768
+ "futures-executor",
769
+ "futures-io",
770
+ "futures-sink",
771
+ "futures-task",
772
+ "futures-util",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "futures-channel"
777
+ version = "0.3.34"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
780
+ dependencies = [
781
+ "futures-core",
782
+ "futures-sink",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "futures-core"
787
+ version = "0.3.34"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
790
+
791
+ [[package]]
792
+ name = "futures-executor"
793
+ version = "0.3.34"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
796
+ dependencies = [
797
+ "futures-core",
798
+ "futures-task",
799
+ "futures-util",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "futures-io"
804
+ version = "0.3.34"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
807
+
808
+ [[package]]
809
+ name = "futures-macro"
810
+ version = "0.3.34"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
813
+ dependencies = [
814
+ "proc-macro2",
815
+ "quote",
816
+ "syn 3.0.5",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "futures-sink"
821
+ version = "0.3.34"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
824
+
825
+ [[package]]
826
+ name = "futures-task"
827
+ version = "0.3.34"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
830
+
831
+ [[package]]
832
+ name = "futures-util"
833
+ version = "0.3.34"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
836
+ dependencies = [
837
+ "futures-channel",
838
+ "futures-core",
839
+ "futures-io",
840
+ "futures-macro",
841
+ "futures-sink",
842
+ "futures-task",
843
+ "memchr",
844
+ "pin-project-lite",
845
+ "slab",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "generic-array"
850
+ version = "0.14.7"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
853
+ dependencies = [
854
+ "typenum",
855
+ "version_check",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "getrandom"
860
+ version = "0.2.17"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
863
+ dependencies = [
864
+ "cfg-if",
865
+ "libc",
866
+ "wasi",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "getrandom"
871
+ version = "0.3.4"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
874
+ dependencies = [
875
+ "cfg-if",
876
+ "libc",
877
+ "r-efi 5.3.0",
878
+ "wasip2",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "getrandom"
883
+ version = "0.4.3"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
886
+ dependencies = [
887
+ "cfg-if",
888
+ "libc",
889
+ "r-efi 6.0.0",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "half"
894
+ version = "2.7.1"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
897
+ dependencies = [
898
+ "cfg-if",
899
+ "crunchy",
900
+ "zerocopy",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "hashbrown"
905
+ version = "0.16.1"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
908
+ dependencies = [
909
+ "foldhash",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "hashbrown"
914
+ version = "0.17.1"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
917
+ dependencies = [
918
+ "foldhash",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "hashlink"
923
+ version = "0.12.1"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "32069d97bb81e38fa67eab65e3393bf804bb85969f2bc06bf13f64aef5aba248"
926
+ dependencies = [
927
+ "hashbrown 0.17.1",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "heck"
932
+ version = "0.5.0"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
935
+
936
+ [[package]]
937
+ name = "hostname"
938
+ version = "0.4.2"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd"
941
+ dependencies = [
942
+ "cfg-if",
943
+ "libc",
944
+ "windows-link",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "http"
949
+ version = "1.5.0"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
952
+ dependencies = [
953
+ "bytes",
954
+ "itoa",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "http-body"
959
+ version = "1.1.0"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
962
+ dependencies = [
963
+ "bytes",
964
+ "http",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "http-body-util"
969
+ version = "0.1.5"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
972
+ dependencies = [
973
+ "bytes",
974
+ "futures-core",
975
+ "http",
976
+ "http-body",
977
+ "pin-project-lite",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "httparse"
982
+ version = "1.10.1"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
985
+
986
+ [[package]]
987
+ name = "httpdate"
988
+ version = "1.0.3"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
991
+
992
+ [[package]]
993
+ name = "hybrid-array"
994
+ version = "0.4.14"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
997
+ dependencies = [
998
+ "typenum",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "hyper"
1003
+ version = "1.11.1"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "27b501faa50e7a26c3d3560ca625132f4078a17771f4810baf70475ae48cbe43"
1006
+ dependencies = [
1007
+ "atomic-waker",
1008
+ "bytes",
1009
+ "futures-channel",
1010
+ "futures-core",
1011
+ "http",
1012
+ "http-body",
1013
+ "httparse",
1014
+ "httpdate",
1015
+ "itoa",
1016
+ "pin-project-lite",
1017
+ "smallvec",
1018
+ "tokio",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "hyper-util"
1023
+ version = "0.1.20"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1026
+ dependencies = [
1027
+ "bytes",
1028
+ "http",
1029
+ "http-body",
1030
+ "hyper",
1031
+ "pin-project-lite",
1032
+ "tokio",
1033
+ "tower-service",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "iana-time-zone"
1038
+ version = "0.1.65"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1041
+ dependencies = [
1042
+ "android_system_properties",
1043
+ "core-foundation-sys",
1044
+ "iana-time-zone-haiku",
1045
+ "js-sys",
1046
+ "log",
1047
+ "wasm-bindgen",
1048
+ "windows-core",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "iana-time-zone-haiku"
1053
+ version = "0.1.2"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1056
+ dependencies = [
1057
+ "cc",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "icu_collections"
1062
+ version = "2.3.0"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
1065
+ dependencies = [
1066
+ "displaydoc",
1067
+ "potential_utf",
1068
+ "utf8_iter",
1069
+ "yoke",
1070
+ "zerofrom",
1071
+ "zerovec",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "icu_locale_core"
1076
+ version = "2.3.0"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
1079
+ dependencies = [
1080
+ "displaydoc",
1081
+ "litemap",
1082
+ "tinystr",
1083
+ "writeable",
1084
+ "zerovec",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "icu_normalizer"
1089
+ version = "2.3.0"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
1092
+ dependencies = [
1093
+ "icu_collections",
1094
+ "icu_normalizer_data",
1095
+ "icu_properties",
1096
+ "icu_provider",
1097
+ "smallvec",
1098
+ "zerovec",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "icu_normalizer_data"
1103
+ version = "2.3.0"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
1106
+
1107
+ [[package]]
1108
+ name = "icu_properties"
1109
+ version = "2.3.0"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
1112
+ dependencies = [
1113
+ "displaydoc",
1114
+ "icu_collections",
1115
+ "icu_locale_core",
1116
+ "icu_properties_data",
1117
+ "icu_provider",
1118
+ "zerotrie",
1119
+ "zerovec",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "icu_properties_data"
1124
+ version = "2.3.0"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
1127
+
1128
+ [[package]]
1129
+ name = "icu_provider"
1130
+ version = "2.3.1"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
1133
+ dependencies = [
1134
+ "displaydoc",
1135
+ "icu_locale_core",
1136
+ "writeable",
1137
+ "yoke",
1138
+ "zerofrom",
1139
+ "zerotrie",
1140
+ "zerovec",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "ident_case"
1145
+ version = "1.0.1"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1148
+
1149
+ [[package]]
1150
+ name = "idna"
1151
+ version = "1.1.0"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1154
+ dependencies = [
1155
+ "idna_adapter",
1156
+ "smallvec",
1157
+ "utf8_iter",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "idna_adapter"
1162
+ version = "1.2.2"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1165
+ dependencies = [
1166
+ "icu_normalizer",
1167
+ "icu_properties",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "indexmap"
1172
+ version = "2.14.2"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
1175
+ dependencies = [
1176
+ "equivalent",
1177
+ "hashbrown 0.17.1",
1178
+ "serde",
1179
+ "serde_core",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "inout"
1184
+ version = "0.1.4"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1187
+ dependencies = [
1188
+ "generic-array",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "itertools"
1193
+ version = "0.13.0"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1196
+ dependencies = [
1197
+ "either",
1198
+ ]
1199
+
1200
+ [[package]]
1201
+ name = "itoa"
1202
+ version = "1.0.18"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1205
+
1206
+ [[package]]
1207
+ name = "js-sys"
1208
+ version = "0.3.105"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
1211
+ dependencies = [
1212
+ "cfg-if",
1213
+ "futures-util",
1214
+ "wasm-bindgen",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "lettre"
1219
+ version = "0.11.23"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "f2c646bd5cc763b1087b15493e29a64be6147ba8f19342004fa52048ee596eae"
1222
+ dependencies = [
1223
+ "base64 0.23.1",
1224
+ "email-encoding",
1225
+ "email_address",
1226
+ "fastrand",
1227
+ "futures-util",
1228
+ "hostname",
1229
+ "httpdate",
1230
+ "idna",
1231
+ "mime",
1232
+ "nom",
1233
+ "percent-encoding",
1234
+ "quoted_printable",
1235
+ "rustls",
1236
+ "socket2",
1237
+ "tokio",
1238
+ "url",
1239
+ "webpki-roots",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "libc"
1244
+ version = "0.2.189"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
1247
+
1248
+ [[package]]
1249
+ name = "libredox"
1250
+ version = "0.1.23"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "8d8f1ea3f21fd3405dcaf6c9b5c1630af9afc422d9073ea39c5f6d6c772e08ed"
1253
+ dependencies = [
1254
+ "libc",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "libsqlite3-sys"
1259
+ version = "0.38.2"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "f1d20bef17f513b9b3004532233187769cd072d790971f4e4da0e346eb6401e8"
1262
+ dependencies = [
1263
+ "cc",
1264
+ "pkg-config",
1265
+ "vcpkg",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "linux-raw-sys"
1270
+ version = "0.12.1"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1273
+
1274
+ [[package]]
1275
+ name = "litemap"
1276
+ version = "0.8.3"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
1279
+
1280
+ [[package]]
1281
+ name = "litrs"
1282
+ version = "1.0.0"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1285
+
1286
+ [[package]]
1287
+ name = "log"
1288
+ version = "0.4.34"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
1291
+
1292
+ [[package]]
1293
+ name = "matchit"
1294
+ version = "0.8.4"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1297
+
1298
+ [[package]]
1299
+ name = "memchr"
1300
+ version = "2.8.3"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1303
+
1304
+ [[package]]
1305
+ name = "memo-map"
1306
+ version = "0.3.4"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "5449c8c750f1a07ea702bbd212bd999fceece9b3d1508b17023b3e174583124b"
1309
+
1310
+ [[package]]
1311
+ name = "mime"
1312
+ version = "0.3.17"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1315
+
1316
+ [[package]]
1317
+ name = "mime_guess"
1318
+ version = "2.0.5"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1321
+ dependencies = [
1322
+ "mime",
1323
+ "unicase",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "minijinja"
1328
+ version = "2.24.0"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "86886cf6dbf4e614b19c9a1eec9775f021869d7eadde0fc73921a81b90c9b4c9"
1331
+ dependencies = [
1332
+ "memo-map",
1333
+ "serde",
1334
+ "serde_json",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "miniz_oxide"
1339
+ version = "0.9.1"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
1342
+ dependencies = [
1343
+ "adler2",
1344
+ "simd-adler32",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "mio"
1349
+ version = "1.2.3"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "4b18443e9c262bfe8fa82f51666e2642c53393f7e5c27b3e1aeab922cff5b9d8"
1352
+ dependencies = [
1353
+ "libc",
1354
+ "wasi",
1355
+ "windows-sys 0.61.2",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "nom"
1360
+ version = "8.0.0"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
1363
+ dependencies = [
1364
+ "memchr",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "num-conv"
1369
+ version = "0.2.2"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1372
+
1373
+ [[package]]
1374
+ name = "num-traits"
1375
+ version = "0.2.19"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1378
+ dependencies = [
1379
+ "autocfg",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "once_cell"
1384
+ version = "1.21.4"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1387
+
1388
+ [[package]]
1389
+ name = "oorandom"
1390
+ version = "11.1.5"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1393
+
1394
+ [[package]]
1395
+ name = "opaque-debug"
1396
+ version = "0.3.1"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1399
+
1400
+ [[package]]
1401
+ name = "option-ext"
1402
+ version = "0.2.0"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1405
+
1406
+ [[package]]
1407
+ name = "page_size"
1408
+ version = "0.6.0"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
1411
+ dependencies = [
1412
+ "libc",
1413
+ "winapi",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "percent-encoding"
1418
+ version = "2.3.2"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1421
+
1422
+ [[package]]
1423
+ name = "phf"
1424
+ version = "0.12.1"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
1427
+ dependencies = [
1428
+ "phf_shared",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "phf_shared"
1433
+ version = "0.12.1"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
1436
+ dependencies = [
1437
+ "siphasher",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "pin-project-lite"
1442
+ version = "0.2.17"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1445
+
1446
+ [[package]]
1447
+ name = "pkg-config"
1448
+ version = "0.3.34"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
1451
+
1452
+ [[package]]
1453
+ name = "poly1305"
1454
+ version = "0.8.0"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
1457
+ dependencies = [
1458
+ "cpufeatures 0.2.17",
1459
+ "opaque-debug",
1460
+ "universal-hash",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "portable-atomic"
1465
+ version = "1.15.0"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
1468
+
1469
+ [[package]]
1470
+ name = "potential_utf"
1471
+ version = "0.1.6"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
1474
+ dependencies = [
1475
+ "zerovec",
1476
+ ]
1477
+
1478
+ [[package]]
1479
+ name = "powerfmt"
1480
+ version = "0.2.0"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1483
+
1484
+ [[package]]
1485
+ name = "ppv-lite86"
1486
+ version = "0.2.21"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1489
+ dependencies = [
1490
+ "zerocopy",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "proc-macro2"
1495
+ version = "1.0.107"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1498
+ dependencies = [
1499
+ "unicode-ident",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "pyo3"
1504
+ version = "0.29.2"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
1507
+ dependencies = [
1508
+ "libc",
1509
+ "once_cell",
1510
+ "portable-atomic",
1511
+ "pyo3-build-config",
1512
+ "pyo3-ffi",
1513
+ "pyo3-macros",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "pyo3-build-config"
1518
+ version = "0.29.2"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
1521
+ dependencies = [
1522
+ "target-lexicon",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "pyo3-ffi"
1527
+ version = "0.29.2"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
1530
+ dependencies = [
1531
+ "libc",
1532
+ "pyo3-build-config",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "pyo3-macros"
1537
+ version = "0.29.2"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
1540
+ dependencies = [
1541
+ "proc-macro2",
1542
+ "pyo3-macros-backend",
1543
+ "quote",
1544
+ "syn 2.0.119",
1545
+ ]
1546
+
1547
+ [[package]]
1548
+ name = "pyo3-macros-backend"
1549
+ version = "0.29.2"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
1552
+ dependencies = [
1553
+ "heck",
1554
+ "proc-macro2",
1555
+ "quote",
1556
+ "syn 2.0.119",
1557
+ ]
1558
+
1559
+ [[package]]
1560
+ name = "quote"
1561
+ version = "1.0.47"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1564
+ dependencies = [
1565
+ "proc-macro2",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "quoted_printable"
1570
+ version = "0.5.2"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "478e0585659a122aa407eb7e3c0e1fa51b1d8a870038bd29f0cf4a8551eea972"
1573
+
1574
+ [[package]]
1575
+ name = "r-efi"
1576
+ version = "5.3.0"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1579
+
1580
+ [[package]]
1581
+ name = "r-efi"
1582
+ version = "6.0.0"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1585
+
1586
+ [[package]]
1587
+ name = "rand"
1588
+ version = "0.9.5"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
1591
+ dependencies = [
1592
+ "rand_chacha",
1593
+ "rand_core 0.9.5",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "rand_chacha"
1598
+ version = "0.9.0"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1601
+ dependencies = [
1602
+ "ppv-lite86",
1603
+ "rand_core 0.9.5",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "rand_core"
1608
+ version = "0.6.4"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1611
+ dependencies = [
1612
+ "getrandom 0.2.17",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "rand_core"
1617
+ version = "0.9.5"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1620
+ dependencies = [
1621
+ "getrandom 0.3.4",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "redox_users"
1626
+ version = "0.5.2"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1629
+ dependencies = [
1630
+ "getrandom 0.2.17",
1631
+ "libredox",
1632
+ "thiserror",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "regex"
1637
+ version = "1.13.1"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1640
+ dependencies = [
1641
+ "aho-corasick",
1642
+ "memchr",
1643
+ "regex-automata",
1644
+ "regex-syntax",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "regex-automata"
1649
+ version = "0.4.18"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1652
+ dependencies = [
1653
+ "aho-corasick",
1654
+ "memchr",
1655
+ "regex-syntax",
1656
+ ]
1657
+
1658
+ [[package]]
1659
+ name = "regex-syntax"
1660
+ version = "0.8.11"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1663
+
1664
+ [[package]]
1665
+ name = "ring"
1666
+ version = "0.17.14"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1669
+ dependencies = [
1670
+ "cc",
1671
+ "cfg-if",
1672
+ "getrandom 0.2.17",
1673
+ "libc",
1674
+ "untrusted",
1675
+ "windows-sys 0.52.0",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "rrule"
1680
+ version = "0.14.0"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "720acfb4980b9d8a6a430f6d7a11933e701ebbeba5eee39cc9d8c5f932aaff74"
1683
+ dependencies = [
1684
+ "chrono",
1685
+ "chrono-tz",
1686
+ "log",
1687
+ "regex",
1688
+ "thiserror",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "rsqlite-vfs"
1693
+ version = "0.1.1"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "c51c9ae4df8a7fba42103df5c621fa3c37eccf3a3c650879e90fc48b11cc192c"
1696
+ dependencies = [
1697
+ "hashbrown 0.16.1",
1698
+ "thiserror",
1699
+ ]
1700
+
1701
+ [[package]]
1702
+ name = "rusqlite"
1703
+ version = "0.40.2"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "23f2a97da3e3873c73cb2a2e71b35c40ff95e0b1eefa8d72d8499a6928c3b5b3"
1706
+ dependencies = [
1707
+ "bitflags",
1708
+ "fallible-iterator",
1709
+ "fallible-streaming-iterator",
1710
+ "hashlink",
1711
+ "libsqlite3-sys",
1712
+ "smallvec",
1713
+ "sqlite-wasm-rs",
1714
+ ]
1715
+
1716
+ [[package]]
1717
+ name = "rust-embed"
1718
+ version = "8.12.0"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "e9e7760e252aaba7b09f4be00e36476cf585bdb68a53552ac954cdf504ab4bc9"
1721
+ dependencies = [
1722
+ "rust-embed-impl",
1723
+ "rust-embed-utils",
1724
+ "walkdir",
1725
+ ]
1726
+
1727
+ [[package]]
1728
+ name = "rust-embed-impl"
1729
+ version = "8.12.0"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "3bcfc4d6f53af43755f7a723e4b6b8794fcce052a178dd8c6c1dadc5f5343097"
1732
+ dependencies = [
1733
+ "mime_guess",
1734
+ "proc-macro2",
1735
+ "quote",
1736
+ "rust-embed-utils",
1737
+ "shellexpand",
1738
+ "syn 2.0.119",
1739
+ "walkdir",
1740
+ ]
1741
+
1742
+ [[package]]
1743
+ name = "rust-embed-utils"
1744
+ version = "8.12.0"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "42ffa149f6aa81b58a5b3011d01a857c4ed12c7a732d2c51947a4c7c692185f0"
1747
+ dependencies = [
1748
+ "sha2",
1749
+ "walkdir",
1750
+ ]
1751
+
1752
+ [[package]]
1753
+ name = "rustix"
1754
+ version = "1.1.4"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1757
+ dependencies = [
1758
+ "bitflags",
1759
+ "errno",
1760
+ "libc",
1761
+ "linux-raw-sys",
1762
+ "windows-sys 0.61.2",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "rustls"
1767
+ version = "0.23.43"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
1770
+ dependencies = [
1771
+ "log",
1772
+ "once_cell",
1773
+ "ring",
1774
+ "rustls-pki-types",
1775
+ "rustls-webpki",
1776
+ "subtle",
1777
+ "zeroize",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "rustls-pki-types"
1782
+ version = "1.15.1"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
1785
+ dependencies = [
1786
+ "zeroize",
1787
+ ]
1788
+
1789
+ [[package]]
1790
+ name = "rustls-webpki"
1791
+ version = "0.103.15"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2"
1794
+ dependencies = [
1795
+ "ring",
1796
+ "rustls-pki-types",
1797
+ "untrusted",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "rustversion"
1802
+ version = "1.0.23"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1805
+
1806
+ [[package]]
1807
+ name = "ryu"
1808
+ version = "1.0.23"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1811
+
1812
+ [[package]]
1813
+ name = "same-file"
1814
+ version = "1.0.6"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1817
+ dependencies = [
1818
+ "winapi-util",
1819
+ ]
1820
+
1821
+ [[package]]
1822
+ name = "serde"
1823
+ version = "1.0.229"
1824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1825
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1826
+ dependencies = [
1827
+ "serde_core",
1828
+ "serde_derive",
1829
+ ]
1830
+
1831
+ [[package]]
1832
+ name = "serde_core"
1833
+ version = "1.0.229"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1836
+ dependencies = [
1837
+ "serde_derive",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "serde_derive"
1842
+ version = "1.0.229"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1845
+ dependencies = [
1846
+ "proc-macro2",
1847
+ "quote",
1848
+ "syn 3.0.5",
1849
+ ]
1850
+
1851
+ [[package]]
1852
+ name = "serde_json"
1853
+ version = "1.0.151"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1856
+ dependencies = [
1857
+ "itoa",
1858
+ "memchr",
1859
+ "serde",
1860
+ "serde_core",
1861
+ "zmij",
1862
+ ]
1863
+
1864
+ [[package]]
1865
+ name = "serde_path_to_error"
1866
+ version = "0.1.20"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
1869
+ dependencies = [
1870
+ "itoa",
1871
+ "serde",
1872
+ "serde_core",
1873
+ ]
1874
+
1875
+ [[package]]
1876
+ name = "serde_spanned"
1877
+ version = "1.1.1"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1880
+ dependencies = [
1881
+ "serde_core",
1882
+ ]
1883
+
1884
+ [[package]]
1885
+ name = "serde_urlencoded"
1886
+ version = "0.7.1"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1889
+ dependencies = [
1890
+ "form_urlencoded",
1891
+ "itoa",
1892
+ "ryu",
1893
+ "serde",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "sha2"
1898
+ version = "0.11.0"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
1901
+ dependencies = [
1902
+ "cfg-if",
1903
+ "cpufeatures 0.3.1",
1904
+ "digest",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "shellexpand"
1909
+ version = "3.1.2"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "32824fab5e16e6c4d86dc1ba84489390419a39f97699852b66480bb87d297ed8"
1912
+ dependencies = [
1913
+ "dirs 6.0.0",
1914
+ ]
1915
+
1916
+ [[package]]
1917
+ name = "shlex"
1918
+ version = "2.0.1"
1919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1920
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1921
+
1922
+ [[package]]
1923
+ name = "signal-hook-registry"
1924
+ version = "1.4.8"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1927
+ dependencies = [
1928
+ "errno",
1929
+ "libc",
1930
+ ]
1931
+
1932
+ [[package]]
1933
+ name = "simd-adler32"
1934
+ version = "0.3.10"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
1937
+
1938
+ [[package]]
1939
+ name = "siphasher"
1940
+ version = "1.0.3"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1943
+
1944
+ [[package]]
1945
+ name = "slab"
1946
+ version = "0.4.12"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1949
+
1950
+ [[package]]
1951
+ name = "smallvec"
1952
+ version = "1.16.0"
1953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1954
+ checksum = "b9be42f50aa861c555654aa3a37f52f4b1074bacf4e48fe0ef7fa584e80f1f0f"
1955
+
1956
+ [[package]]
1957
+ name = "socket2"
1958
+ version = "0.6.5"
1959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1960
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
1961
+ dependencies = [
1962
+ "libc",
1963
+ "windows-sys 0.61.2",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "sqlite-wasm-rs"
1968
+ version = "0.5.5"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "dc3efc0da82635d7e1ced0053bbbfa8c7ab9645d0bf36ceb4f7127bb85315d75"
1971
+ dependencies = [
1972
+ "cc",
1973
+ "js-sys",
1974
+ "rsqlite-vfs",
1975
+ "wasm-bindgen",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "stable_deref_trait"
1980
+ version = "1.2.1"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1983
+
1984
+ [[package]]
1985
+ name = "strsim"
1986
+ version = "0.11.1"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1989
+
1990
+ [[package]]
1991
+ name = "strum"
1992
+ version = "0.27.2"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
1995
+ dependencies = [
1996
+ "strum_macros",
1997
+ ]
1998
+
1999
+ [[package]]
2000
+ name = "strum_macros"
2001
+ version = "0.27.2"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
2004
+ dependencies = [
2005
+ "heck",
2006
+ "proc-macro2",
2007
+ "quote",
2008
+ "syn 2.0.119",
2009
+ ]
2010
+
2011
+ [[package]]
2012
+ name = "subtle"
2013
+ version = "2.6.1"
2014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2016
+
2017
+ [[package]]
2018
+ name = "syn"
2019
+ version = "2.0.119"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
2022
+ dependencies = [
2023
+ "proc-macro2",
2024
+ "quote",
2025
+ "unicode-ident",
2026
+ ]
2027
+
2028
+ [[package]]
2029
+ name = "syn"
2030
+ version = "3.0.5"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
2033
+ dependencies = [
2034
+ "proc-macro2",
2035
+ "quote",
2036
+ "unicode-ident",
2037
+ ]
2038
+
2039
+ [[package]]
2040
+ name = "sync_wrapper"
2041
+ version = "1.0.2"
2042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2043
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2044
+
2045
+ [[package]]
2046
+ name = "synstructure"
2047
+ version = "0.13.2"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2050
+ dependencies = [
2051
+ "proc-macro2",
2052
+ "quote",
2053
+ "syn 2.0.119",
2054
+ ]
2055
+
2056
+ [[package]]
2057
+ name = "target-lexicon"
2058
+ version = "0.13.5"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2061
+
2062
+ [[package]]
2063
+ name = "tempfile"
2064
+ version = "3.27.0"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2067
+ dependencies = [
2068
+ "fastrand",
2069
+ "getrandom 0.4.3",
2070
+ "once_cell",
2071
+ "rustix",
2072
+ "windows-sys 0.61.2",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "thiserror"
2077
+ version = "2.0.20"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
2080
+ dependencies = [
2081
+ "thiserror-impl",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "thiserror-impl"
2086
+ version = "2.0.20"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
2089
+ dependencies = [
2090
+ "proc-macro2",
2091
+ "quote",
2092
+ "syn 3.0.5",
2093
+ ]
2094
+
2095
+ [[package]]
2096
+ name = "time"
2097
+ version = "0.3.55"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
2100
+ dependencies = [
2101
+ "deranged",
2102
+ "num-conv",
2103
+ "powerfmt",
2104
+ "serde_core",
2105
+ "time-core",
2106
+ "time-macros",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "time-core"
2111
+ version = "0.1.9"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
2114
+
2115
+ [[package]]
2116
+ name = "time-macros"
2117
+ version = "0.2.32"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
2120
+ dependencies = [
2121
+ "num-conv",
2122
+ "time-core",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "tinystr"
2127
+ version = "0.8.4"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
2130
+ dependencies = [
2131
+ "displaydoc",
2132
+ "zerovec",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "tinytemplate"
2137
+ version = "1.2.1"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2140
+ dependencies = [
2141
+ "serde",
2142
+ "serde_json",
2143
+ ]
2144
+
2145
+ [[package]]
2146
+ name = "tokio"
2147
+ version = "1.53.1"
2148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2149
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
2150
+ dependencies = [
2151
+ "libc",
2152
+ "mio",
2153
+ "pin-project-lite",
2154
+ "signal-hook-registry",
2155
+ "socket2",
2156
+ "tokio-macros",
2157
+ "windows-sys 0.61.2",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "tokio-macros"
2162
+ version = "2.7.2"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
2165
+ dependencies = [
2166
+ "proc-macro2",
2167
+ "quote",
2168
+ "syn 3.0.5",
2169
+ ]
2170
+
2171
+ [[package]]
2172
+ name = "tokio-stream"
2173
+ version = "0.1.19"
2174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2175
+ checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
2176
+ dependencies = [
2177
+ "futures-core",
2178
+ "pin-project-lite",
2179
+ "tokio",
2180
+ "tokio-util",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "tokio-util"
2185
+ version = "0.7.19"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
2188
+ dependencies = [
2189
+ "bytes",
2190
+ "futures-core",
2191
+ "futures-sink",
2192
+ "pin-project-lite",
2193
+ "tokio",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "toml"
2198
+ version = "0.9.12+spec-1.1.0"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
2201
+ dependencies = [
2202
+ "indexmap",
2203
+ "serde_core",
2204
+ "serde_spanned",
2205
+ "toml_datetime",
2206
+ "toml_parser",
2207
+ "toml_writer",
2208
+ "winnow 0.7.15",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "toml_datetime"
2213
+ version = "0.7.5+spec-1.1.0"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2216
+ dependencies = [
2217
+ "serde_core",
2218
+ ]
2219
+
2220
+ [[package]]
2221
+ name = "toml_parser"
2222
+ version = "1.1.3+spec-1.1.0"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
2225
+ dependencies = [
2226
+ "winnow 1.0.4",
2227
+ ]
2228
+
2229
+ [[package]]
2230
+ name = "toml_writer"
2231
+ version = "1.1.2+spec-1.1.0"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
2234
+
2235
+ [[package]]
2236
+ name = "tower"
2237
+ version = "0.5.3"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2240
+ dependencies = [
2241
+ "futures-core",
2242
+ "futures-util",
2243
+ "pin-project-lite",
2244
+ "sync_wrapper",
2245
+ "tokio",
2246
+ "tower-layer",
2247
+ "tower-service",
2248
+ "tracing",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "tower-layer"
2253
+ version = "0.3.3"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2256
+
2257
+ [[package]]
2258
+ name = "tower-service"
2259
+ version = "0.3.3"
2260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2261
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2262
+
2263
+ [[package]]
2264
+ name = "tracing"
2265
+ version = "0.1.44"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2268
+ dependencies = [
2269
+ "log",
2270
+ "pin-project-lite",
2271
+ "tracing-core",
2272
+ ]
2273
+
2274
+ [[package]]
2275
+ name = "tracing-core"
2276
+ version = "0.1.36"
2277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2278
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2279
+ dependencies = [
2280
+ "once_cell",
2281
+ ]
2282
+
2283
+ [[package]]
2284
+ name = "typenum"
2285
+ version = "1.20.1"
2286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2287
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2288
+
2289
+ [[package]]
2290
+ name = "unicase"
2291
+ version = "2.9.0"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
2294
+
2295
+ [[package]]
2296
+ name = "unicode-ident"
2297
+ version = "1.0.24"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2300
+
2301
+ [[package]]
2302
+ name = "universal-hash"
2303
+ version = "0.5.1"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
2306
+ dependencies = [
2307
+ "crypto-common 0.1.7",
2308
+ "subtle",
2309
+ ]
2310
+
2311
+ [[package]]
2312
+ name = "untrusted"
2313
+ version = "0.9.0"
2314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2315
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2316
+
2317
+ [[package]]
2318
+ name = "ureq"
2319
+ version = "3.4.0"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "972d7902c8735f2695410b8aed7df6ed12a47394aa1c8d7af49f0497b731a94d"
2322
+ dependencies = [
2323
+ "base64 0.23.1",
2324
+ "cookie_store",
2325
+ "flate2",
2326
+ "log",
2327
+ "percent-encoding",
2328
+ "rustls",
2329
+ "rustls-pki-types",
2330
+ "serde",
2331
+ "serde_json",
2332
+ "ureq-proto",
2333
+ "utf8-zero",
2334
+ "webpki-roots",
2335
+ ]
2336
+
2337
+ [[package]]
2338
+ name = "ureq-proto"
2339
+ version = "0.6.1"
2340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2341
+ checksum = "da5f78b09e6941e1a0f2e30e695e4b120377b54d5e0aec11b594bb57b3971613"
2342
+ dependencies = [
2343
+ "base64 0.23.1",
2344
+ "http",
2345
+ "httparse",
2346
+ "log",
2347
+ ]
2348
+
2349
+ [[package]]
2350
+ name = "url"
2351
+ version = "2.5.8"
2352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2353
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2354
+ dependencies = [
2355
+ "form_urlencoded",
2356
+ "idna",
2357
+ "percent-encoding",
2358
+ "serde",
2359
+ ]
2360
+
2361
+ [[package]]
2362
+ name = "utf8-zero"
2363
+ version = "0.8.1"
2364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2365
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
2366
+
2367
+ [[package]]
2368
+ name = "utf8_iter"
2369
+ version = "1.0.4"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2372
+
2373
+ [[package]]
2374
+ name = "utoipa"
2375
+ version = "5.5.0"
2376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2377
+ checksum = "8bde15df68e80b16c7d16b9616e80770ad158988daa56a27dccd1e55558b0160"
2378
+ dependencies = [
2379
+ "indexmap",
2380
+ "serde",
2381
+ "serde_json",
2382
+ "utoipa-gen",
2383
+ ]
2384
+
2385
+ [[package]]
2386
+ name = "utoipa-gen"
2387
+ version = "5.5.0"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "6ba0b99ee52df3028635d93840c797102da61f8a7bb3cf751032455895b52ef8"
2390
+ dependencies = [
2391
+ "proc-macro2",
2392
+ "quote",
2393
+ "regex",
2394
+ "syn 2.0.119",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "uuid"
2399
+ version = "1.26.0"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "b5772d71c9be8a8a6ac2117d949c5b224c1b72241bb611d9a3012edcf8af7812"
2402
+ dependencies = [
2403
+ "getrandom 0.4.3",
2404
+ "js-sys",
2405
+ "serde_core",
2406
+ "wasm-bindgen",
2407
+ ]
2408
+
2409
+ [[package]]
2410
+ name = "vcpkg"
2411
+ version = "0.2.15"
2412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2413
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2414
+
2415
+ [[package]]
2416
+ name = "version_check"
2417
+ version = "0.9.5"
2418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2419
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2420
+
2421
+ [[package]]
2422
+ name = "walkdir"
2423
+ version = "2.5.0"
2424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2425
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2426
+ dependencies = [
2427
+ "same-file",
2428
+ "winapi-util",
2429
+ ]
2430
+
2431
+ [[package]]
2432
+ name = "wasi"
2433
+ version = "0.11.1+wasi-snapshot-preview1"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2436
+
2437
+ [[package]]
2438
+ name = "wasip2"
2439
+ version = "1.0.4+wasi-0.2.12"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
2442
+ dependencies = [
2443
+ "wit-bindgen",
2444
+ ]
2445
+
2446
+ [[package]]
2447
+ name = "wasm-bindgen"
2448
+ version = "0.2.128"
2449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2450
+ checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
2451
+ dependencies = [
2452
+ "cfg-if",
2453
+ "once_cell",
2454
+ "rustversion",
2455
+ "wasm-bindgen-macro",
2456
+ "wasm-bindgen-shared",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "wasm-bindgen-macro"
2461
+ version = "0.2.128"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
2464
+ dependencies = [
2465
+ "quote",
2466
+ "wasm-bindgen-macro-support",
2467
+ ]
2468
+
2469
+ [[package]]
2470
+ name = "wasm-bindgen-macro-support"
2471
+ version = "0.2.128"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
2474
+ dependencies = [
2475
+ "bumpalo",
2476
+ "proc-macro2",
2477
+ "quote",
2478
+ "syn 3.0.5",
2479
+ "wasm-bindgen-shared",
2480
+ ]
2481
+
2482
+ [[package]]
2483
+ name = "wasm-bindgen-shared"
2484
+ version = "0.2.128"
2485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2486
+ checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
2487
+ dependencies = [
2488
+ "unicode-ident",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "webpki-roots"
2493
+ version = "1.0.9"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
2496
+ dependencies = [
2497
+ "rustls-pki-types",
2498
+ ]
2499
+
2500
+ [[package]]
2501
+ name = "winapi"
2502
+ version = "0.3.9"
2503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2504
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2505
+ dependencies = [
2506
+ "winapi-i686-pc-windows-gnu",
2507
+ "winapi-x86_64-pc-windows-gnu",
2508
+ ]
2509
+
2510
+ [[package]]
2511
+ name = "winapi-i686-pc-windows-gnu"
2512
+ version = "0.4.0"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2515
+
2516
+ [[package]]
2517
+ name = "winapi-util"
2518
+ version = "0.1.11"
2519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2520
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2521
+ dependencies = [
2522
+ "windows-sys 0.61.2",
2523
+ ]
2524
+
2525
+ [[package]]
2526
+ name = "winapi-x86_64-pc-windows-gnu"
2527
+ version = "0.4.0"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2530
+
2531
+ [[package]]
2532
+ name = "windows-core"
2533
+ version = "0.62.2"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2536
+ dependencies = [
2537
+ "windows-implement",
2538
+ "windows-interface",
2539
+ "windows-link",
2540
+ "windows-result",
2541
+ "windows-strings",
2542
+ ]
2543
+
2544
+ [[package]]
2545
+ name = "windows-implement"
2546
+ version = "0.60.2"
2547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2548
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2549
+ dependencies = [
2550
+ "proc-macro2",
2551
+ "quote",
2552
+ "syn 2.0.119",
2553
+ ]
2554
+
2555
+ [[package]]
2556
+ name = "windows-interface"
2557
+ version = "0.59.3"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2560
+ dependencies = [
2561
+ "proc-macro2",
2562
+ "quote",
2563
+ "syn 2.0.119",
2564
+ ]
2565
+
2566
+ [[package]]
2567
+ name = "windows-link"
2568
+ version = "0.2.1"
2569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2570
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2571
+
2572
+ [[package]]
2573
+ name = "windows-result"
2574
+ version = "0.4.1"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2577
+ dependencies = [
2578
+ "windows-link",
2579
+ ]
2580
+
2581
+ [[package]]
2582
+ name = "windows-strings"
2583
+ version = "0.5.1"
2584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2585
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2586
+ dependencies = [
2587
+ "windows-link",
2588
+ ]
2589
+
2590
+ [[package]]
2591
+ name = "windows-sys"
2592
+ version = "0.52.0"
2593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2594
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2595
+ dependencies = [
2596
+ "windows-targets",
2597
+ ]
2598
+
2599
+ [[package]]
2600
+ name = "windows-sys"
2601
+ version = "0.61.2"
2602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2603
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2604
+ dependencies = [
2605
+ "windows-link",
2606
+ ]
2607
+
2608
+ [[package]]
2609
+ name = "windows-targets"
2610
+ version = "0.52.6"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2613
+ dependencies = [
2614
+ "windows_aarch64_gnullvm",
2615
+ "windows_aarch64_msvc",
2616
+ "windows_i686_gnu",
2617
+ "windows_i686_gnullvm",
2618
+ "windows_i686_msvc",
2619
+ "windows_x86_64_gnu",
2620
+ "windows_x86_64_gnullvm",
2621
+ "windows_x86_64_msvc",
2622
+ ]
2623
+
2624
+ [[package]]
2625
+ name = "windows_aarch64_gnullvm"
2626
+ version = "0.52.6"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2629
+
2630
+ [[package]]
2631
+ name = "windows_aarch64_msvc"
2632
+ version = "0.52.6"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2635
+
2636
+ [[package]]
2637
+ name = "windows_i686_gnu"
2638
+ version = "0.52.6"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2641
+
2642
+ [[package]]
2643
+ name = "windows_i686_gnullvm"
2644
+ version = "0.52.6"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2647
+
2648
+ [[package]]
2649
+ name = "windows_i686_msvc"
2650
+ version = "0.52.6"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2653
+
2654
+ [[package]]
2655
+ name = "windows_x86_64_gnu"
2656
+ version = "0.52.6"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2659
+
2660
+ [[package]]
2661
+ name = "windows_x86_64_gnullvm"
2662
+ version = "0.52.6"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2665
+
2666
+ [[package]]
2667
+ name = "windows_x86_64_msvc"
2668
+ version = "0.52.6"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2671
+
2672
+ [[package]]
2673
+ name = "winnow"
2674
+ version = "0.7.15"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2677
+
2678
+ [[package]]
2679
+ name = "winnow"
2680
+ version = "1.0.4"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
2683
+
2684
+ [[package]]
2685
+ name = "wit-bindgen"
2686
+ version = "0.57.1"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2689
+
2690
+ [[package]]
2691
+ name = "writeable"
2692
+ version = "0.6.4"
2693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2694
+ checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
2695
+
2696
+ [[package]]
2697
+ name = "yoke"
2698
+ version = "0.8.3"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2701
+ dependencies = [
2702
+ "stable_deref_trait",
2703
+ "yoke-derive",
2704
+ "zerofrom",
2705
+ ]
2706
+
2707
+ [[package]]
2708
+ name = "yoke-derive"
2709
+ version = "0.8.2"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2712
+ dependencies = [
2713
+ "proc-macro2",
2714
+ "quote",
2715
+ "syn 2.0.119",
2716
+ "synstructure",
2717
+ ]
2718
+
2719
+ [[package]]
2720
+ name = "zerocopy"
2721
+ version = "0.8.56"
2722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2723
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
2724
+ dependencies = [
2725
+ "zerocopy-derive",
2726
+ ]
2727
+
2728
+ [[package]]
2729
+ name = "zerocopy-derive"
2730
+ version = "0.8.56"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
2733
+ dependencies = [
2734
+ "proc-macro2",
2735
+ "quote",
2736
+ "syn 2.0.119",
2737
+ ]
2738
+
2739
+ [[package]]
2740
+ name = "zerofrom"
2741
+ version = "0.1.8"
2742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2743
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2744
+ dependencies = [
2745
+ "zerofrom-derive",
2746
+ ]
2747
+
2748
+ [[package]]
2749
+ name = "zerofrom-derive"
2750
+ version = "0.1.7"
2751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2752
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2753
+ dependencies = [
2754
+ "proc-macro2",
2755
+ "quote",
2756
+ "syn 2.0.119",
2757
+ "synstructure",
2758
+ ]
2759
+
2760
+ [[package]]
2761
+ name = "zeroize"
2762
+ version = "1.9.0"
2763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2764
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
2765
+
2766
+ [[package]]
2767
+ name = "zerotrie"
2768
+ version = "0.2.5"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
2771
+ dependencies = [
2772
+ "displaydoc",
2773
+ "yoke",
2774
+ "zerofrom",
2775
+ ]
2776
+
2777
+ [[package]]
2778
+ name = "zerovec"
2779
+ version = "0.11.8"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
2782
+ dependencies = [
2783
+ "yoke",
2784
+ "zerofrom",
2785
+ "zerovec-derive",
2786
+ ]
2787
+
2788
+ [[package]]
2789
+ name = "zerovec-derive"
2790
+ version = "0.11.6"
2791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
+ checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
2793
+ dependencies = [
2794
+ "proc-macro2",
2795
+ "quote",
2796
+ "syn 3.0.5",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "zlib-rs"
2801
+ version = "0.6.7"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
2804
+
2805
+ [[package]]
2806
+ name = "zmij"
2807
+ version = "1.0.23"
2808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2809
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"