@antprofuse/saddle-skill 0.1.2 → 0.1.3

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.
@@ -0,0 +1,1932 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "allocator-api2"
7
+ version = "0.2.21"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
10
+
11
+ [[package]]
12
+ name = "atoi"
13
+ version = "2.0.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
16
+ dependencies = [
17
+ "num-traits",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "atomic-waker"
22
+ version = "1.1.2"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
25
+
26
+ [[package]]
27
+ name = "autocfg"
28
+ version = "1.5.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
31
+
32
+ [[package]]
33
+ name = "axum"
34
+ version = "0.8.9"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
37
+ dependencies = [
38
+ "axum-core",
39
+ "bytes",
40
+ "futures-util",
41
+ "http",
42
+ "http-body",
43
+ "http-body-util",
44
+ "hyper",
45
+ "hyper-util",
46
+ "itoa",
47
+ "matchit",
48
+ "memchr",
49
+ "mime",
50
+ "percent-encoding",
51
+ "pin-project-lite",
52
+ "serde_core",
53
+ "sync_wrapper",
54
+ "tokio",
55
+ "tower",
56
+ "tower-layer",
57
+ "tower-service",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "axum-core"
62
+ version = "0.5.6"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
65
+ dependencies = [
66
+ "bytes",
67
+ "futures-core",
68
+ "http",
69
+ "http-body",
70
+ "http-body-util",
71
+ "mime",
72
+ "pin-project-lite",
73
+ "sync_wrapper",
74
+ "tower-layer",
75
+ "tower-service",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "base64"
80
+ version = "0.22.1"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
83
+
84
+ [[package]]
85
+ name = "base64ct"
86
+ version = "1.8.3"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
89
+
90
+ [[package]]
91
+ name = "bitflags"
92
+ version = "2.13.1"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
95
+ dependencies = [
96
+ "serde_core",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "block-buffer"
101
+ version = "0.10.4"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
104
+ dependencies = [
105
+ "generic-array",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "byteorder"
110
+ version = "1.5.0"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
113
+
114
+ [[package]]
115
+ name = "bytes"
116
+ version = "1.12.1"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
119
+
120
+ [[package]]
121
+ name = "cc"
122
+ version = "1.3.0"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "c89588d05638b5b4594a3348a2d6c20277e43a7f5c5202b05cc56888475a47b8"
125
+ dependencies = [
126
+ "find-msvc-tools",
127
+ "shlex",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "cfg-if"
132
+ version = "1.0.4"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
135
+
136
+ [[package]]
137
+ name = "concurrent-queue"
138
+ version = "2.5.0"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
141
+ dependencies = [
142
+ "crossbeam-utils",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "const-oid"
147
+ version = "0.9.6"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
150
+
151
+ [[package]]
152
+ name = "core-foundation"
153
+ version = "0.10.1"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
156
+ dependencies = [
157
+ "core-foundation-sys",
158
+ "libc",
159
+ ]
160
+
161
+ [[package]]
162
+ name = "core-foundation-sys"
163
+ version = "0.8.7"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
166
+
167
+ [[package]]
168
+ name = "cpufeatures"
169
+ version = "0.2.17"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
172
+ dependencies = [
173
+ "libc",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "crc"
178
+ version = "3.4.0"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
181
+ dependencies = [
182
+ "crc-catalog",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "crc-catalog"
187
+ version = "2.5.0"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
190
+
191
+ [[package]]
192
+ name = "crossbeam-queue"
193
+ version = "0.3.13"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
196
+ dependencies = [
197
+ "crossbeam-utils",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "crossbeam-utils"
202
+ version = "0.8.22"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
205
+
206
+ [[package]]
207
+ name = "crypto-common"
208
+ version = "0.1.7"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
211
+ dependencies = [
212
+ "generic-array",
213
+ "typenum",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "der"
218
+ version = "0.7.10"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
221
+ dependencies = [
222
+ "const-oid",
223
+ "pem-rfc7468",
224
+ "zeroize",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "digest"
229
+ version = "0.10.7"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
232
+ dependencies = [
233
+ "block-buffer",
234
+ "const-oid",
235
+ "crypto-common",
236
+ "subtle",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "displaydoc"
241
+ version = "0.2.6"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
244
+ dependencies = [
245
+ "proc-macro2",
246
+ "quote",
247
+ "syn 2.0.119",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "dotenvy"
252
+ version = "0.15.7"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
255
+
256
+ [[package]]
257
+ name = "either"
258
+ version = "1.16.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
261
+ dependencies = [
262
+ "serde",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "equivalent"
267
+ version = "1.0.2"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
270
+
271
+ [[package]]
272
+ name = "errno"
273
+ version = "0.3.14"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
276
+ dependencies = [
277
+ "libc",
278
+ "windows-sys 0.61.2",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "event-listener"
283
+ version = "5.4.1"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
286
+ dependencies = [
287
+ "concurrent-queue",
288
+ "parking",
289
+ "pin-project-lite",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "find-msvc-tools"
294
+ version = "0.1.9"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
297
+
298
+ [[package]]
299
+ name = "foldhash"
300
+ version = "0.1.5"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
303
+
304
+ [[package]]
305
+ name = "form_urlencoded"
306
+ version = "1.2.2"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
309
+ dependencies = [
310
+ "percent-encoding",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "futures-channel"
315
+ version = "0.3.33"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
318
+ dependencies = [
319
+ "futures-core",
320
+ "futures-sink",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "futures-core"
325
+ version = "0.3.33"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
328
+
329
+ [[package]]
330
+ name = "futures-intrusive"
331
+ version = "0.5.0"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
334
+ dependencies = [
335
+ "futures-core",
336
+ "lock_api",
337
+ "parking_lot",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "futures-io"
342
+ version = "0.3.33"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
345
+
346
+ [[package]]
347
+ name = "futures-sink"
348
+ version = "0.3.33"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
351
+
352
+ [[package]]
353
+ name = "futures-task"
354
+ version = "0.3.33"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
357
+
358
+ [[package]]
359
+ name = "futures-util"
360
+ version = "0.3.33"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
363
+ dependencies = [
364
+ "futures-core",
365
+ "futures-io",
366
+ "futures-sink",
367
+ "futures-task",
368
+ "memchr",
369
+ "pin-project-lite",
370
+ "slab",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "generic-array"
375
+ version = "0.14.7"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
378
+ dependencies = [
379
+ "typenum",
380
+ "version_check",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "getrandom"
385
+ version = "0.2.17"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
388
+ dependencies = [
389
+ "cfg-if",
390
+ "libc",
391
+ "wasi",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "getrandom"
396
+ version = "0.3.4"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
399
+ dependencies = [
400
+ "cfg-if",
401
+ "libc",
402
+ "r-efi",
403
+ "wasip2",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "hashbrown"
408
+ version = "0.15.5"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
411
+ dependencies = [
412
+ "allocator-api2",
413
+ "equivalent",
414
+ "foldhash",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "hashbrown"
419
+ version = "0.17.1"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
422
+
423
+ [[package]]
424
+ name = "hashlink"
425
+ version = "0.10.0"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
428
+ dependencies = [
429
+ "hashbrown 0.15.5",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "heck"
434
+ version = "0.5.0"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
437
+
438
+ [[package]]
439
+ name = "hex"
440
+ version = "0.4.3"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
443
+
444
+ [[package]]
445
+ name = "hkdf"
446
+ version = "0.12.4"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
449
+ dependencies = [
450
+ "hmac",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "hmac"
455
+ version = "0.12.1"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
458
+ dependencies = [
459
+ "digest",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "http"
464
+ version = "1.4.2"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
467
+ dependencies = [
468
+ "bytes",
469
+ "itoa",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "http-body"
474
+ version = "1.1.0"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
477
+ dependencies = [
478
+ "bytes",
479
+ "http",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "http-body-util"
484
+ version = "0.1.4"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
487
+ dependencies = [
488
+ "bytes",
489
+ "futures-core",
490
+ "http",
491
+ "http-body",
492
+ "pin-project-lite",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "httparse"
497
+ version = "1.10.1"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
500
+
501
+ [[package]]
502
+ name = "httpdate"
503
+ version = "1.0.3"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
506
+
507
+ [[package]]
508
+ name = "hyper"
509
+ version = "1.11.0"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
512
+ dependencies = [
513
+ "atomic-waker",
514
+ "bytes",
515
+ "futures-channel",
516
+ "futures-core",
517
+ "http",
518
+ "http-body",
519
+ "httparse",
520
+ "httpdate",
521
+ "itoa",
522
+ "pin-project-lite",
523
+ "smallvec",
524
+ "tokio",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "hyper-util"
529
+ version = "0.1.20"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
532
+ dependencies = [
533
+ "bytes",
534
+ "http",
535
+ "http-body",
536
+ "hyper",
537
+ "pin-project-lite",
538
+ "tokio",
539
+ "tower-service",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "icu_collections"
544
+ version = "2.1.1"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
547
+ dependencies = [
548
+ "displaydoc",
549
+ "potential_utf",
550
+ "yoke",
551
+ "zerofrom",
552
+ "zerovec",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "icu_locale_core"
557
+ version = "2.1.1"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
560
+ dependencies = [
561
+ "displaydoc",
562
+ "litemap",
563
+ "tinystr",
564
+ "writeable",
565
+ "zerovec",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "icu_normalizer"
570
+ version = "2.1.1"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
573
+ dependencies = [
574
+ "icu_collections",
575
+ "icu_normalizer_data",
576
+ "icu_properties",
577
+ "icu_provider",
578
+ "smallvec",
579
+ "zerovec",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "icu_normalizer_data"
584
+ version = "2.1.1"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
587
+
588
+ [[package]]
589
+ name = "icu_properties"
590
+ version = "2.1.2"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
593
+ dependencies = [
594
+ "icu_collections",
595
+ "icu_locale_core",
596
+ "icu_properties_data",
597
+ "icu_provider",
598
+ "zerotrie",
599
+ "zerovec",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "icu_properties_data"
604
+ version = "2.1.2"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
607
+
608
+ [[package]]
609
+ name = "icu_provider"
610
+ version = "2.1.1"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
613
+ dependencies = [
614
+ "displaydoc",
615
+ "icu_locale_core",
616
+ "writeable",
617
+ "yoke",
618
+ "zerofrom",
619
+ "zerotrie",
620
+ "zerovec",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "idna"
625
+ version = "1.1.0"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
628
+ dependencies = [
629
+ "idna_adapter",
630
+ "smallvec",
631
+ "utf8_iter",
632
+ ]
633
+
634
+ [[package]]
635
+ name = "idna_adapter"
636
+ version = "1.2.1"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
639
+ dependencies = [
640
+ "icu_normalizer",
641
+ "icu_properties",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "indexmap"
646
+ version = "2.14.0"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
649
+ dependencies = [
650
+ "equivalent",
651
+ "hashbrown 0.17.1",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "itoa"
656
+ version = "1.0.18"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
659
+
660
+ [[package]]
661
+ name = "lazy_static"
662
+ version = "1.5.0"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
665
+ dependencies = [
666
+ "spin",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "libc"
671
+ version = "0.2.189"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
674
+
675
+ [[package]]
676
+ name = "libm"
677
+ version = "0.2.16"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
680
+
681
+ [[package]]
682
+ name = "libredox"
683
+ version = "0.1.18"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
686
+ dependencies = [
687
+ "bitflags",
688
+ "libc",
689
+ "plain",
690
+ "redox_syscall 0.9.0",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "litemap"
695
+ version = "0.8.2"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
698
+
699
+ [[package]]
700
+ name = "lock_api"
701
+ version = "0.4.14"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
704
+ dependencies = [
705
+ "scopeguard",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "log"
710
+ version = "0.4.33"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
713
+
714
+ [[package]]
715
+ name = "matchit"
716
+ version = "0.8.4"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
719
+
720
+ [[package]]
721
+ name = "md-5"
722
+ version = "0.10.6"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
725
+ dependencies = [
726
+ "cfg-if",
727
+ "digest",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "memchr"
732
+ version = "2.8.3"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
735
+
736
+ [[package]]
737
+ name = "mime"
738
+ version = "0.3.17"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
741
+
742
+ [[package]]
743
+ name = "mio"
744
+ version = "1.2.2"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
747
+ dependencies = [
748
+ "libc",
749
+ "wasi",
750
+ "windows-sys 0.61.2",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "num-bigint-dig"
755
+ version = "0.8.6"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
758
+ dependencies = [
759
+ "lazy_static",
760
+ "libm",
761
+ "num-integer",
762
+ "num-iter",
763
+ "num-traits",
764
+ "rand",
765
+ "smallvec",
766
+ "zeroize",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "num-integer"
771
+ version = "0.1.46"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
774
+ dependencies = [
775
+ "num-traits",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "num-iter"
780
+ version = "0.1.46"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
783
+ dependencies = [
784
+ "num-integer",
785
+ "num-traits",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "num-traits"
790
+ version = "0.2.19"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
793
+ dependencies = [
794
+ "autocfg",
795
+ "libm",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "once_cell"
800
+ version = "1.21.4"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
803
+
804
+ [[package]]
805
+ name = "openssl-probe"
806
+ version = "0.2.1"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
809
+
810
+ [[package]]
811
+ name = "parking"
812
+ version = "2.2.1"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
815
+
816
+ [[package]]
817
+ name = "parking_lot"
818
+ version = "0.12.5"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
821
+ dependencies = [
822
+ "lock_api",
823
+ "parking_lot_core",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "parking_lot_core"
828
+ version = "0.9.12"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
831
+ dependencies = [
832
+ "cfg-if",
833
+ "libc",
834
+ "redox_syscall 0.5.18",
835
+ "smallvec",
836
+ "windows-link",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "pem-rfc7468"
841
+ version = "0.7.0"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
844
+ dependencies = [
845
+ "base64ct",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "percent-encoding"
850
+ version = "2.3.2"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
853
+
854
+ [[package]]
855
+ name = "pin-project-lite"
856
+ version = "0.2.17"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
859
+
860
+ [[package]]
861
+ name = "pkcs1"
862
+ version = "0.7.5"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
865
+ dependencies = [
866
+ "der",
867
+ "pkcs8",
868
+ "spki",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "pkcs8"
873
+ version = "0.10.2"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
876
+ dependencies = [
877
+ "der",
878
+ "spki",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "plain"
883
+ version = "0.2.3"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
886
+
887
+ [[package]]
888
+ name = "potential_utf"
889
+ version = "0.1.5"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
892
+ dependencies = [
893
+ "zerovec",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "ppv-lite86"
898
+ version = "0.2.21"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
901
+ dependencies = [
902
+ "zerocopy",
903
+ ]
904
+
905
+ [[package]]
906
+ name = "proc-macro2"
907
+ version = "1.0.107"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
910
+ dependencies = [
911
+ "unicode-ident",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "quote"
916
+ version = "1.0.47"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
919
+ dependencies = [
920
+ "proc-macro2",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "r-efi"
925
+ version = "5.3.0"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
928
+
929
+ [[package]]
930
+ name = "rand"
931
+ version = "0.8.7"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
934
+ dependencies = [
935
+ "libc",
936
+ "rand_chacha",
937
+ "rand_core",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "rand_chacha"
942
+ version = "0.3.1"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
945
+ dependencies = [
946
+ "ppv-lite86",
947
+ "rand_core",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "rand_core"
952
+ version = "0.6.4"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
955
+ dependencies = [
956
+ "getrandom 0.2.17",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "redox_syscall"
961
+ version = "0.5.18"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
964
+ dependencies = [
965
+ "bitflags",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "redox_syscall"
970
+ version = "0.9.0"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "c5102a6aaa05aa011a238e178e6bca86d2cb56fc9f586d37cb80f5bca6e07759"
973
+ dependencies = [
974
+ "bitflags",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "ring"
979
+ version = "0.17.14"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
982
+ dependencies = [
983
+ "cc",
984
+ "cfg-if",
985
+ "getrandom 0.2.17",
986
+ "libc",
987
+ "untrusted",
988
+ "windows-sys 0.52.0",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "rsa"
993
+ version = "0.9.10"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
996
+ dependencies = [
997
+ "const-oid",
998
+ "digest",
999
+ "num-bigint-dig",
1000
+ "num-integer",
1001
+ "num-traits",
1002
+ "pkcs1",
1003
+ "pkcs8",
1004
+ "rand_core",
1005
+ "signature",
1006
+ "spki",
1007
+ "subtle",
1008
+ "zeroize",
1009
+ ]
1010
+
1011
+ [[package]]
1012
+ name = "rustls"
1013
+ version = "0.23.42"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
1016
+ dependencies = [
1017
+ "once_cell",
1018
+ "ring",
1019
+ "rustls-pki-types",
1020
+ "rustls-webpki",
1021
+ "subtle",
1022
+ "zeroize",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "rustls-native-certs"
1027
+ version = "0.8.4"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
1030
+ dependencies = [
1031
+ "openssl-probe",
1032
+ "rustls-pki-types",
1033
+ "schannel",
1034
+ "security-framework",
1035
+ ]
1036
+
1037
+ [[package]]
1038
+ name = "rustls-pki-types"
1039
+ version = "1.15.0"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
1042
+ dependencies = [
1043
+ "zeroize",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "rustls-webpki"
1048
+ version = "0.103.13"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1051
+ dependencies = [
1052
+ "ring",
1053
+ "rustls-pki-types",
1054
+ "untrusted",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "saddle-core"
1059
+ version = "0.1.1"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "b9c48e48ec9d67780a4e11c39edbba755f90668a8c093e5775a32fd51f3c742d"
1062
+
1063
+ [[package]]
1064
+ name = "saddle-db"
1065
+ version = "0.1.1"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "d9b74e485ac7e3b3bac70a09d42b2a20d18581c4c1a0ae47a1b684b27f0155db"
1068
+ dependencies = [
1069
+ "futures-util",
1070
+ "saddle-core",
1071
+ "saddle-observability",
1072
+ "sqlx",
1073
+ "tokio",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "saddle-framework"
1078
+ version = "0.1.1"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "0128d4525fe9c280c8d6414bf2c8b64857898019f49fda8f54339fef0c4eae33"
1081
+ dependencies = [
1082
+ "axum",
1083
+ "saddle-core",
1084
+ "saddle-db",
1085
+ "saddle-observability",
1086
+ "saddle-runtime",
1087
+ "saddle-service",
1088
+ "serde",
1089
+ "serde_json",
1090
+ "tokio",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "saddle-observability"
1095
+ version = "0.1.1"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "d234c4724db3de06bee38de7cb46d6c4d9a6bd8fee4f24db8900d6bd2dedc0bd"
1098
+ dependencies = [
1099
+ "getrandom 0.3.4",
1100
+ "saddle-core",
1101
+ "serde",
1102
+ "serde_json",
1103
+ ]
1104
+
1105
+ [[package]]
1106
+ name = "saddle-runtime"
1107
+ version = "0.1.1"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "ab1e34af6ff18a8edae2c18077e8b51c79dab1b62dbd65d46d8b655ee3663995"
1110
+ dependencies = [
1111
+ "saddle-core",
1112
+ "tokio",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "saddle-service"
1117
+ version = "0.1.1"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "7bda6f0e1681b10b57f8dd672117c67c51160f1c10b3264195d51160d4a702c5"
1120
+ dependencies = [
1121
+ "saddle-core",
1122
+ "saddle-observability",
1123
+ "saddle-runtime",
1124
+ "serde",
1125
+ "serde_json",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "saddle-v1-business"
1130
+ version = "0.1.0"
1131
+ dependencies = [
1132
+ "saddle-framework",
1133
+ "serde",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "schannel"
1138
+ version = "0.1.29"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
1141
+ dependencies = [
1142
+ "windows-sys 0.61.2",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "scopeguard"
1147
+ version = "1.2.0"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1150
+
1151
+ [[package]]
1152
+ name = "security-framework"
1153
+ version = "3.7.0"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
1156
+ dependencies = [
1157
+ "bitflags",
1158
+ "core-foundation",
1159
+ "core-foundation-sys",
1160
+ "libc",
1161
+ "security-framework-sys",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "security-framework-sys"
1166
+ version = "2.17.0"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
1169
+ dependencies = [
1170
+ "core-foundation-sys",
1171
+ "libc",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "serde"
1176
+ version = "1.0.229"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1179
+ dependencies = [
1180
+ "serde_core",
1181
+ "serde_derive",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "serde_core"
1186
+ version = "1.0.229"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1189
+ dependencies = [
1190
+ "serde_derive",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "serde_derive"
1195
+ version = "1.0.229"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1198
+ dependencies = [
1199
+ "proc-macro2",
1200
+ "quote",
1201
+ "syn 3.0.3",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "serde_json"
1206
+ version = "1.0.151"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1209
+ dependencies = [
1210
+ "itoa",
1211
+ "memchr",
1212
+ "serde",
1213
+ "serde_core",
1214
+ "zmij",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "sha1"
1219
+ version = "0.10.7"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
1222
+ dependencies = [
1223
+ "cfg-if",
1224
+ "cpufeatures",
1225
+ "digest",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "sha2"
1230
+ version = "0.10.9"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1233
+ dependencies = [
1234
+ "cfg-if",
1235
+ "cpufeatures",
1236
+ "digest",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "shlex"
1241
+ version = "2.0.1"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1244
+
1245
+ [[package]]
1246
+ name = "signal-hook-registry"
1247
+ version = "1.4.8"
1248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1249
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1250
+ dependencies = [
1251
+ "errno",
1252
+ "libc",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "signature"
1257
+ version = "2.2.0"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
1260
+ dependencies = [
1261
+ "digest",
1262
+ "rand_core",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "slab"
1267
+ version = "0.4.12"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1270
+
1271
+ [[package]]
1272
+ name = "smallvec"
1273
+ version = "1.15.2"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1276
+
1277
+ [[package]]
1278
+ name = "socket2"
1279
+ version = "0.6.5"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
1282
+ dependencies = [
1283
+ "libc",
1284
+ "windows-sys 0.61.2",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "spin"
1289
+ version = "0.9.9"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
1292
+
1293
+ [[package]]
1294
+ name = "spki"
1295
+ version = "0.7.3"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
1298
+ dependencies = [
1299
+ "base64ct",
1300
+ "der",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "sqlx"
1305
+ version = "0.8.6"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
1308
+ dependencies = [
1309
+ "sqlx-core",
1310
+ "sqlx-macros",
1311
+ "sqlx-mysql",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "sqlx-core"
1316
+ version = "0.8.6"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
1319
+ dependencies = [
1320
+ "base64",
1321
+ "bytes",
1322
+ "crc",
1323
+ "crossbeam-queue",
1324
+ "either",
1325
+ "event-listener",
1326
+ "futures-core",
1327
+ "futures-intrusive",
1328
+ "futures-io",
1329
+ "futures-util",
1330
+ "hashbrown 0.15.5",
1331
+ "hashlink",
1332
+ "indexmap",
1333
+ "log",
1334
+ "memchr",
1335
+ "once_cell",
1336
+ "percent-encoding",
1337
+ "rustls",
1338
+ "rustls-native-certs",
1339
+ "serde",
1340
+ "sha2",
1341
+ "smallvec",
1342
+ "thiserror",
1343
+ "tokio",
1344
+ "tokio-stream",
1345
+ "tracing",
1346
+ "url",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "sqlx-macros"
1351
+ version = "0.8.6"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
1354
+ dependencies = [
1355
+ "proc-macro2",
1356
+ "quote",
1357
+ "sqlx-core",
1358
+ "sqlx-macros-core",
1359
+ "syn 2.0.119",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "sqlx-macros-core"
1364
+ version = "0.8.6"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
1367
+ dependencies = [
1368
+ "dotenvy",
1369
+ "either",
1370
+ "heck",
1371
+ "hex",
1372
+ "once_cell",
1373
+ "proc-macro2",
1374
+ "quote",
1375
+ "serde",
1376
+ "serde_json",
1377
+ "sha2",
1378
+ "sqlx-core",
1379
+ "sqlx-mysql",
1380
+ "syn 2.0.119",
1381
+ "tokio",
1382
+ "url",
1383
+ ]
1384
+
1385
+ [[package]]
1386
+ name = "sqlx-mysql"
1387
+ version = "0.8.6"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
1390
+ dependencies = [
1391
+ "atoi",
1392
+ "base64",
1393
+ "bitflags",
1394
+ "byteorder",
1395
+ "bytes",
1396
+ "crc",
1397
+ "digest",
1398
+ "dotenvy",
1399
+ "either",
1400
+ "futures-channel",
1401
+ "futures-core",
1402
+ "futures-io",
1403
+ "futures-util",
1404
+ "generic-array",
1405
+ "hex",
1406
+ "hkdf",
1407
+ "hmac",
1408
+ "itoa",
1409
+ "log",
1410
+ "md-5",
1411
+ "memchr",
1412
+ "once_cell",
1413
+ "percent-encoding",
1414
+ "rand",
1415
+ "rsa",
1416
+ "serde",
1417
+ "sha1",
1418
+ "sha2",
1419
+ "smallvec",
1420
+ "sqlx-core",
1421
+ "stringprep",
1422
+ "thiserror",
1423
+ "tracing",
1424
+ "whoami",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "stable_deref_trait"
1429
+ version = "1.2.1"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1432
+
1433
+ [[package]]
1434
+ name = "stringprep"
1435
+ version = "0.1.5"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
1438
+ dependencies = [
1439
+ "unicode-bidi",
1440
+ "unicode-normalization",
1441
+ "unicode-properties",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "subtle"
1446
+ version = "2.6.1"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1449
+
1450
+ [[package]]
1451
+ name = "syn"
1452
+ version = "2.0.119"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1455
+ dependencies = [
1456
+ "proc-macro2",
1457
+ "quote",
1458
+ "unicode-ident",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "syn"
1463
+ version = "3.0.3"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1466
+ dependencies = [
1467
+ "proc-macro2",
1468
+ "quote",
1469
+ "unicode-ident",
1470
+ ]
1471
+
1472
+ [[package]]
1473
+ name = "sync_wrapper"
1474
+ version = "1.0.2"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1477
+
1478
+ [[package]]
1479
+ name = "synstructure"
1480
+ version = "0.13.2"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1483
+ dependencies = [
1484
+ "proc-macro2",
1485
+ "quote",
1486
+ "syn 2.0.119",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "thiserror"
1491
+ version = "2.0.19"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
1494
+ dependencies = [
1495
+ "thiserror-impl",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "thiserror-impl"
1500
+ version = "2.0.19"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
1503
+ dependencies = [
1504
+ "proc-macro2",
1505
+ "quote",
1506
+ "syn 3.0.3",
1507
+ ]
1508
+
1509
+ [[package]]
1510
+ name = "tinystr"
1511
+ version = "0.8.3"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1514
+ dependencies = [
1515
+ "displaydoc",
1516
+ "zerovec",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "tinyvec"
1521
+ version = "1.12.0"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
1524
+ dependencies = [
1525
+ "tinyvec_macros",
1526
+ ]
1527
+
1528
+ [[package]]
1529
+ name = "tinyvec_macros"
1530
+ version = "0.1.1"
1531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1532
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1533
+
1534
+ [[package]]
1535
+ name = "tokio"
1536
+ version = "1.53.1"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
1539
+ dependencies = [
1540
+ "bytes",
1541
+ "libc",
1542
+ "mio",
1543
+ "pin-project-lite",
1544
+ "signal-hook-registry",
1545
+ "socket2",
1546
+ "tokio-macros",
1547
+ "windows-sys 0.61.2",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "tokio-macros"
1552
+ version = "2.7.1"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
1555
+ dependencies = [
1556
+ "proc-macro2",
1557
+ "quote",
1558
+ "syn 2.0.119",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "tokio-stream"
1563
+ version = "0.1.19"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
1566
+ dependencies = [
1567
+ "futures-core",
1568
+ "pin-project-lite",
1569
+ "tokio",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "tower"
1574
+ version = "0.5.3"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1577
+ dependencies = [
1578
+ "futures-core",
1579
+ "futures-util",
1580
+ "pin-project-lite",
1581
+ "sync_wrapper",
1582
+ "tokio",
1583
+ "tower-layer",
1584
+ "tower-service",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "tower-layer"
1589
+ version = "0.3.3"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1592
+
1593
+ [[package]]
1594
+ name = "tower-service"
1595
+ version = "0.3.3"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1598
+
1599
+ [[package]]
1600
+ name = "tracing"
1601
+ version = "0.1.44"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1604
+ dependencies = [
1605
+ "log",
1606
+ "pin-project-lite",
1607
+ "tracing-attributes",
1608
+ "tracing-core",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "tracing-attributes"
1613
+ version = "0.1.31"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1616
+ dependencies = [
1617
+ "proc-macro2",
1618
+ "quote",
1619
+ "syn 2.0.119",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "tracing-core"
1624
+ version = "0.1.36"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1627
+ dependencies = [
1628
+ "once_cell",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "typenum"
1633
+ version = "1.20.1"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1636
+
1637
+ [[package]]
1638
+ name = "unicode-bidi"
1639
+ version = "0.3.18"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
1642
+
1643
+ [[package]]
1644
+ name = "unicode-ident"
1645
+ version = "1.0.24"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1648
+
1649
+ [[package]]
1650
+ name = "unicode-normalization"
1651
+ version = "0.1.25"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
1654
+ dependencies = [
1655
+ "tinyvec",
1656
+ ]
1657
+
1658
+ [[package]]
1659
+ name = "unicode-properties"
1660
+ version = "0.1.4"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
1663
+
1664
+ [[package]]
1665
+ name = "untrusted"
1666
+ version = "0.9.0"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1669
+
1670
+ [[package]]
1671
+ name = "url"
1672
+ version = "2.5.8"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1675
+ dependencies = [
1676
+ "form_urlencoded",
1677
+ "idna",
1678
+ "percent-encoding",
1679
+ "serde",
1680
+ ]
1681
+
1682
+ [[package]]
1683
+ name = "utf8_iter"
1684
+ version = "1.0.4"
1685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1686
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1687
+
1688
+ [[package]]
1689
+ name = "version_check"
1690
+ version = "0.9.5"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1693
+
1694
+ [[package]]
1695
+ name = "wasi"
1696
+ version = "0.11.1+wasi-snapshot-preview1"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1699
+
1700
+ [[package]]
1701
+ name = "wasip2"
1702
+ version = "1.0.1+wasi-0.2.4"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1705
+ dependencies = [
1706
+ "wit-bindgen",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "wasite"
1711
+ version = "0.1.0"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
1714
+
1715
+ [[package]]
1716
+ name = "whoami"
1717
+ version = "1.6.1"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
1720
+ dependencies = [
1721
+ "libredox",
1722
+ "wasite",
1723
+ ]
1724
+
1725
+ [[package]]
1726
+ name = "windows-link"
1727
+ version = "0.2.1"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1730
+
1731
+ [[package]]
1732
+ name = "windows-sys"
1733
+ version = "0.52.0"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1736
+ dependencies = [
1737
+ "windows-targets",
1738
+ ]
1739
+
1740
+ [[package]]
1741
+ name = "windows-sys"
1742
+ version = "0.61.2"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1745
+ dependencies = [
1746
+ "windows-link",
1747
+ ]
1748
+
1749
+ [[package]]
1750
+ name = "windows-targets"
1751
+ version = "0.52.6"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1754
+ dependencies = [
1755
+ "windows_aarch64_gnullvm",
1756
+ "windows_aarch64_msvc",
1757
+ "windows_i686_gnu",
1758
+ "windows_i686_gnullvm",
1759
+ "windows_i686_msvc",
1760
+ "windows_x86_64_gnu",
1761
+ "windows_x86_64_gnullvm",
1762
+ "windows_x86_64_msvc",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "windows_aarch64_gnullvm"
1767
+ version = "0.52.6"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1770
+
1771
+ [[package]]
1772
+ name = "windows_aarch64_msvc"
1773
+ version = "0.52.6"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1776
+
1777
+ [[package]]
1778
+ name = "windows_i686_gnu"
1779
+ version = "0.52.6"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1782
+
1783
+ [[package]]
1784
+ name = "windows_i686_gnullvm"
1785
+ version = "0.52.6"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1788
+
1789
+ [[package]]
1790
+ name = "windows_i686_msvc"
1791
+ version = "0.52.6"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1794
+
1795
+ [[package]]
1796
+ name = "windows_x86_64_gnu"
1797
+ version = "0.52.6"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1800
+
1801
+ [[package]]
1802
+ name = "windows_x86_64_gnullvm"
1803
+ version = "0.52.6"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1806
+
1807
+ [[package]]
1808
+ name = "windows_x86_64_msvc"
1809
+ version = "0.52.6"
1810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1811
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1812
+
1813
+ [[package]]
1814
+ name = "wit-bindgen"
1815
+ version = "0.46.0"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1818
+
1819
+ [[package]]
1820
+ name = "writeable"
1821
+ version = "0.6.3"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1824
+
1825
+ [[package]]
1826
+ name = "yoke"
1827
+ version = "0.8.3"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
1830
+ dependencies = [
1831
+ "stable_deref_trait",
1832
+ "yoke-derive",
1833
+ "zerofrom",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "yoke-derive"
1838
+ version = "0.8.2"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1841
+ dependencies = [
1842
+ "proc-macro2",
1843
+ "quote",
1844
+ "syn 2.0.119",
1845
+ "synstructure",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "zerocopy"
1850
+ version = "0.8.55"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
1853
+ dependencies = [
1854
+ "zerocopy-derive",
1855
+ ]
1856
+
1857
+ [[package]]
1858
+ name = "zerocopy-derive"
1859
+ version = "0.8.55"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
1862
+ dependencies = [
1863
+ "proc-macro2",
1864
+ "quote",
1865
+ "syn 2.0.119",
1866
+ ]
1867
+
1868
+ [[package]]
1869
+ name = "zerofrom"
1870
+ version = "0.1.8"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
1873
+ dependencies = [
1874
+ "zerofrom-derive",
1875
+ ]
1876
+
1877
+ [[package]]
1878
+ name = "zerofrom-derive"
1879
+ version = "0.1.7"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1882
+ dependencies = [
1883
+ "proc-macro2",
1884
+ "quote",
1885
+ "syn 2.0.119",
1886
+ "synstructure",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "zeroize"
1891
+ version = "1.9.0"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
1894
+
1895
+ [[package]]
1896
+ name = "zerotrie"
1897
+ version = "0.2.4"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
1900
+ dependencies = [
1901
+ "displaydoc",
1902
+ "yoke",
1903
+ "zerofrom",
1904
+ ]
1905
+
1906
+ [[package]]
1907
+ name = "zerovec"
1908
+ version = "0.11.6"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
1911
+ dependencies = [
1912
+ "yoke",
1913
+ "zerofrom",
1914
+ "zerovec-derive",
1915
+ ]
1916
+
1917
+ [[package]]
1918
+ name = "zerovec-derive"
1919
+ version = "0.11.3"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
1922
+ dependencies = [
1923
+ "proc-macro2",
1924
+ "quote",
1925
+ "syn 2.0.119",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "zmij"
1930
+ version = "1.0.23"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"