web-cortex-framework 0.3.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 (34) hide show
  1. web_cortex_framework-0.3.0/Cargo.lock +3019 -0
  2. web_cortex_framework-0.3.0/Cargo.toml +57 -0
  3. web_cortex_framework-0.3.0/LICENSE +202 -0
  4. web_cortex_framework-0.3.0/PKG-INFO +390 -0
  5. web_cortex_framework-0.3.0/README.md +360 -0
  6. web_cortex_framework-0.3.0/crates/webcortex-core/Cargo.toml +49 -0
  7. web_cortex_framework-0.3.0/crates/webcortex-core/src/agent/provider.rs +375 -0
  8. web_cortex_framework-0.3.0/crates/webcortex-core/src/agent.rs +573 -0
  9. web_cortex_framework-0.3.0/crates/webcortex-core/src/app.rs +826 -0
  10. web_cortex_framework-0.3.0/crates/webcortex-core/src/audit.rs +255 -0
  11. web_cortex_framework-0.3.0/crates/webcortex-core/src/auth.rs +396 -0
  12. web_cortex_framework-0.3.0/crates/webcortex-core/src/bridge.rs +63 -0
  13. web_cortex_framework-0.3.0/crates/webcortex-core/src/db.rs +201 -0
  14. web_cortex_framework-0.3.0/crates/webcortex-core/src/files.rs +244 -0
  15. web_cortex_framework-0.3.0/crates/webcortex-core/src/http.rs +188 -0
  16. web_cortex_framework-0.3.0/crates/webcortex-core/src/lib.rs +165 -0
  17. web_cortex_framework-0.3.0/crates/webcortex-core/src/manifest.rs +817 -0
  18. web_cortex_framework-0.3.0/crates/webcortex-core/src/mcp.rs +184 -0
  19. web_cortex_framework-0.3.0/crates/webcortex-core/src/middleware.rs +301 -0
  20. web_cortex_framework-0.3.0/crates/webcortex-core/src/openapi.rs +135 -0
  21. web_cortex_framework-0.3.0/crates/webcortex-core/src/router.rs +72 -0
  22. web_cortex_framework-0.3.0/crates/webcortex-core/src/server.rs +508 -0
  23. web_cortex_framework-0.3.0/crates/webcortex-core/src/templates.rs +200 -0
  24. web_cortex_framework-0.3.0/crates/webcortex-core/src/typegen.rs +485 -0
  25. web_cortex_framework-0.3.0/crates/webcortex-py/Cargo.toml +33 -0
  26. web_cortex_framework-0.3.0/crates/webcortex-py/src/behaviour.rs +541 -0
  27. web_cortex_framework-0.3.0/crates/webcortex-py/src/lib.rs +335 -0
  28. web_cortex_framework-0.3.0/pyproject.toml +61 -0
  29. web_cortex_framework-0.3.0/python/webcortex/__init__.py +30 -0
  30. web_cortex_framework-0.3.0/python/webcortex/_bridge.py +362 -0
  31. web_cortex_framework-0.3.0/python/webcortex/app.py +1100 -0
  32. web_cortex_framework-0.3.0/python/webcortex/cli.py +262 -0
  33. web_cortex_framework-0.3.0/python/webcortex/schema.py +204 -0
  34. web_cortex_framework-0.3.0/python/webcortex/starters.py +472 -0
@@ -0,0 +1,3019 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
20
+ [[package]]
21
+ name = "anyhow"
22
+ version = "1.0.104"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
25
+
26
+ [[package]]
27
+ name = "async-stream"
28
+ version = "0.3.6"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
31
+ dependencies = [
32
+ "async-stream-impl",
33
+ "futures-core",
34
+ "pin-project-lite",
35
+ ]
36
+
37
+ [[package]]
38
+ name = "async-stream-impl"
39
+ version = "0.3.6"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
42
+ dependencies = [
43
+ "proc-macro2",
44
+ "quote",
45
+ "syn 2.0.119",
46
+ ]
47
+
48
+ [[package]]
49
+ name = "atoi"
50
+ version = "2.0.0"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
53
+ dependencies = [
54
+ "num-traits",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "atomic-waker"
59
+ version = "1.1.2"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
62
+
63
+ [[package]]
64
+ name = "autocfg"
65
+ version = "1.5.1"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
68
+
69
+ [[package]]
70
+ name = "base16ct"
71
+ version = "0.2.0"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
74
+
75
+ [[package]]
76
+ name = "base64"
77
+ version = "0.22.1"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
80
+
81
+ [[package]]
82
+ name = "base64"
83
+ version = "0.23.1"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
86
+
87
+ [[package]]
88
+ name = "base64ct"
89
+ version = "1.8.3"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
92
+
93
+ [[package]]
94
+ name = "bitflags"
95
+ version = "2.13.1"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
98
+ dependencies = [
99
+ "serde_core",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "block-buffer"
104
+ version = "0.10.4"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
107
+ dependencies = [
108
+ "generic-array",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "block-buffer"
113
+ version = "0.12.1"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
116
+ dependencies = [
117
+ "hybrid-array",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "bumpalo"
122
+ version = "3.20.3"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
125
+
126
+ [[package]]
127
+ name = "byteorder"
128
+ version = "1.5.0"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
131
+
132
+ [[package]]
133
+ name = "bytes"
134
+ version = "1.12.1"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
137
+
138
+ [[package]]
139
+ name = "cc"
140
+ version = "1.4.0"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
143
+ dependencies = [
144
+ "find-msvc-tools",
145
+ "shlex",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "cfg-if"
150
+ version = "1.0.4"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
153
+
154
+ [[package]]
155
+ name = "cfg_aliases"
156
+ version = "0.2.2"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
159
+
160
+ [[package]]
161
+ name = "chacha20"
162
+ version = "0.10.1"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
165
+ dependencies = [
166
+ "cfg-if",
167
+ "cpufeatures 0.3.0",
168
+ "rand_core 0.10.1",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "cmov"
173
+ version = "0.5.4"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
176
+
177
+ [[package]]
178
+ name = "const-oid"
179
+ version = "0.9.6"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
182
+
183
+ [[package]]
184
+ name = "const-oid"
185
+ version = "0.10.2"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
188
+
189
+ [[package]]
190
+ name = "core-foundation"
191
+ version = "0.9.4"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
194
+ dependencies = [
195
+ "core-foundation-sys",
196
+ "libc",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "core-foundation-sys"
201
+ version = "0.8.7"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
204
+
205
+ [[package]]
206
+ name = "cpufeatures"
207
+ version = "0.2.17"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
210
+ dependencies = [
211
+ "libc",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "cpufeatures"
216
+ version = "0.3.0"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
219
+ dependencies = [
220
+ "libc",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "crc"
225
+ version = "3.4.0"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
228
+ dependencies = [
229
+ "crc-catalog",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "crc-catalog"
234
+ version = "2.5.0"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
237
+
238
+ [[package]]
239
+ name = "crossbeam-queue"
240
+ version = "0.3.13"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
243
+ dependencies = [
244
+ "crossbeam-utils",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "crossbeam-utils"
249
+ version = "0.8.22"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
252
+
253
+ [[package]]
254
+ name = "crypto-bigint"
255
+ version = "0.5.5"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
258
+ dependencies = [
259
+ "generic-array",
260
+ "rand_core 0.6.4",
261
+ "subtle",
262
+ "zeroize",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "crypto-common"
267
+ version = "0.1.6"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
270
+ dependencies = [
271
+ "generic-array",
272
+ "typenum",
273
+ ]
274
+
275
+ [[package]]
276
+ name = "crypto-common"
277
+ version = "0.2.2"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
280
+ dependencies = [
281
+ "hybrid-array",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "ctutils"
286
+ version = "0.4.2"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
289
+ dependencies = [
290
+ "cmov",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "curve25519-dalek"
295
+ version = "4.1.3"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
298
+ dependencies = [
299
+ "cfg-if",
300
+ "cpufeatures 0.2.17",
301
+ "curve25519-dalek-derive",
302
+ "digest 0.10.7",
303
+ "fiat-crypto",
304
+ "rustc_version",
305
+ "subtle",
306
+ "zeroize",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "curve25519-dalek-derive"
311
+ version = "0.1.1"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
314
+ dependencies = [
315
+ "proc-macro2",
316
+ "quote",
317
+ "syn 2.0.119",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "der"
322
+ version = "0.7.10"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
325
+ dependencies = [
326
+ "const-oid 0.9.6",
327
+ "pem-rfc7468",
328
+ "zeroize",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "deranged"
333
+ version = "0.5.8"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
336
+
337
+ [[package]]
338
+ name = "digest"
339
+ version = "0.10.7"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
342
+ dependencies = [
343
+ "block-buffer 0.10.4",
344
+ "const-oid 0.9.6",
345
+ "crypto-common 0.1.6",
346
+ "subtle",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "digest"
351
+ version = "0.11.3"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
354
+ dependencies = [
355
+ "block-buffer 0.12.1",
356
+ "const-oid 0.10.2",
357
+ "crypto-common 0.2.2",
358
+ "ctutils",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "displaydoc"
363
+ version = "0.2.7"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
366
+ dependencies = [
367
+ "proc-macro2",
368
+ "quote",
369
+ "syn 3.0.3",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "dotenvy"
374
+ version = "0.15.7"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
377
+
378
+ [[package]]
379
+ name = "ecdsa"
380
+ version = "0.16.9"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
383
+ dependencies = [
384
+ "der",
385
+ "digest 0.10.7",
386
+ "elliptic-curve",
387
+ "rfc6979",
388
+ "signature",
389
+ "spki",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "ed25519"
394
+ version = "2.2.3"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
397
+ dependencies = [
398
+ "pkcs8",
399
+ "signature",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "ed25519-dalek"
404
+ version = "2.2.0"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
407
+ dependencies = [
408
+ "curve25519-dalek",
409
+ "ed25519",
410
+ "serde",
411
+ "sha2 0.10.9",
412
+ "subtle",
413
+ "zeroize",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "either"
418
+ version = "1.17.0"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
421
+ dependencies = [
422
+ "serde",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "elliptic-curve"
427
+ version = "0.13.8"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
430
+ dependencies = [
431
+ "base16ct",
432
+ "crypto-bigint",
433
+ "digest 0.10.7",
434
+ "ff",
435
+ "generic-array",
436
+ "group",
437
+ "hkdf 0.12.4",
438
+ "pem-rfc7468",
439
+ "pkcs8",
440
+ "rand_core 0.6.4",
441
+ "sec1",
442
+ "subtle",
443
+ "zeroize",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "encoding_rs"
448
+ version = "0.8.35"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
451
+ dependencies = [
452
+ "cfg-if",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "equivalent"
457
+ version = "1.0.2"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
460
+
461
+ [[package]]
462
+ name = "errno"
463
+ version = "0.3.14"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
466
+ dependencies = [
467
+ "libc",
468
+ "windows-sys 0.61.2",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "etcetera"
473
+ version = "0.11.0"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "de48cc4d1c1d97a20fd819def54b890cadde72ed3ad0c614822a0a433361be96"
476
+ dependencies = [
477
+ "cfg-if",
478
+ "windows-sys 0.61.2",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "event-listener"
483
+ version = "5.4.2"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "5a23add41df1562121a9393cb065eab5146a1242410f23a644851e90cfd669d2"
486
+ dependencies = [
487
+ "parking",
488
+ "pin-project-lite",
489
+ ]
490
+
491
+ [[package]]
492
+ name = "ff"
493
+ version = "0.13.1"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
496
+ dependencies = [
497
+ "rand_core 0.6.4",
498
+ "subtle",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "fiat-crypto"
503
+ version = "0.2.9"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
506
+
507
+ [[package]]
508
+ name = "find-msvc-tools"
509
+ version = "0.1.9"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
512
+
513
+ [[package]]
514
+ name = "flume"
515
+ version = "0.12.0"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "5e139bc46ca777eb5efaf62df0ab8cc5fd400866427e56c68b22e414e53bd3be"
518
+ dependencies = [
519
+ "futures-core",
520
+ "futures-sink",
521
+ "spin",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "fnv"
526
+ version = "1.0.7"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
529
+
530
+ [[package]]
531
+ name = "foldhash"
532
+ version = "0.2.0"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
535
+
536
+ [[package]]
537
+ name = "form_urlencoded"
538
+ version = "1.2.2"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
541
+ dependencies = [
542
+ "percent-encoding",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "futures"
547
+ version = "0.3.33"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
550
+ dependencies = [
551
+ "futures-channel",
552
+ "futures-core",
553
+ "futures-executor",
554
+ "futures-io",
555
+ "futures-sink",
556
+ "futures-task",
557
+ "futures-util",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "futures-channel"
562
+ version = "0.3.33"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
565
+ dependencies = [
566
+ "futures-core",
567
+ "futures-sink",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "futures-core"
572
+ version = "0.3.33"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
575
+
576
+ [[package]]
577
+ name = "futures-executor"
578
+ version = "0.3.33"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
581
+ dependencies = [
582
+ "futures-core",
583
+ "futures-task",
584
+ "futures-util",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "futures-intrusive"
589
+ version = "0.5.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
592
+ dependencies = [
593
+ "futures-core",
594
+ "lock_api",
595
+ "parking_lot",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "futures-io"
600
+ version = "0.3.33"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
603
+
604
+ [[package]]
605
+ name = "futures-macro"
606
+ version = "0.3.33"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
609
+ dependencies = [
610
+ "proc-macro2",
611
+ "quote",
612
+ "syn 2.0.119",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "futures-sink"
617
+ version = "0.3.33"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
620
+
621
+ [[package]]
622
+ name = "futures-task"
623
+ version = "0.3.33"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
626
+
627
+ [[package]]
628
+ name = "futures-util"
629
+ version = "0.3.33"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
632
+ dependencies = [
633
+ "futures-channel",
634
+ "futures-core",
635
+ "futures-io",
636
+ "futures-macro",
637
+ "futures-sink",
638
+ "futures-task",
639
+ "memchr",
640
+ "pin-project-lite",
641
+ "slab",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "generic-array"
646
+ version = "0.14.9"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
649
+ dependencies = [
650
+ "typenum",
651
+ "version_check",
652
+ "zeroize",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "getrandom"
657
+ version = "0.2.17"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
660
+ dependencies = [
661
+ "cfg-if",
662
+ "js-sys",
663
+ "libc",
664
+ "wasi",
665
+ "wasm-bindgen",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "getrandom"
670
+ version = "0.4.3"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
673
+ dependencies = [
674
+ "cfg-if",
675
+ "js-sys",
676
+ "libc",
677
+ "r-efi",
678
+ "rand_core 0.10.1",
679
+ "wasm-bindgen",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "group"
684
+ version = "0.13.0"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
687
+ dependencies = [
688
+ "ff",
689
+ "rand_core 0.6.4",
690
+ "subtle",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "h2"
695
+ version = "0.4.15"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
698
+ dependencies = [
699
+ "atomic-waker",
700
+ "bytes",
701
+ "fnv",
702
+ "futures-core",
703
+ "futures-sink",
704
+ "http",
705
+ "indexmap",
706
+ "slab",
707
+ "tokio",
708
+ "tokio-util",
709
+ "tracing",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "hashbrown"
714
+ version = "0.16.1"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
717
+ dependencies = [
718
+ "allocator-api2",
719
+ "equivalent",
720
+ "foldhash",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "hashbrown"
725
+ version = "0.17.1"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
728
+
729
+ [[package]]
730
+ name = "hashlink"
731
+ version = "0.11.1"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "824e001ac4f3012dd16a264bec811403a67ca9deb6c102fc5049b32c4574b35f"
734
+ dependencies = [
735
+ "hashbrown 0.16.1",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "heck"
740
+ version = "0.5.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
743
+
744
+ [[package]]
745
+ name = "hex"
746
+ version = "0.4.3"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
749
+
750
+ [[package]]
751
+ name = "hkdf"
752
+ version = "0.12.4"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
755
+ dependencies = [
756
+ "hmac 0.12.1",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "hkdf"
761
+ version = "0.13.0"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "4aaa26c720c68b866f2c96ef5c1264b3e6f473fe5d4ce61cd44bbe913e553018"
764
+ dependencies = [
765
+ "hmac 0.13.0",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "hmac"
770
+ version = "0.12.1"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
773
+ dependencies = [
774
+ "digest 0.10.7",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "hmac"
779
+ version = "0.13.0"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
782
+ dependencies = [
783
+ "digest 0.11.3",
784
+ ]
785
+
786
+ [[package]]
787
+ name = "http"
788
+ version = "1.5.0"
789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
790
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
791
+ dependencies = [
792
+ "bytes",
793
+ "itoa",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "http-body"
798
+ version = "1.1.0"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
801
+ dependencies = [
802
+ "bytes",
803
+ "http",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "http-body-util"
808
+ version = "0.1.4"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
811
+ dependencies = [
812
+ "bytes",
813
+ "futures-core",
814
+ "http",
815
+ "http-body",
816
+ "pin-project-lite",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "httparse"
821
+ version = "1.10.1"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
824
+
825
+ [[package]]
826
+ name = "httpdate"
827
+ version = "1.0.3"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
830
+
831
+ [[package]]
832
+ name = "hybrid-array"
833
+ version = "0.4.14"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "707114b52a152fa7bdb290cd7cd5912d9467273b6d74e21b8d81aca1f8533f6b"
836
+ dependencies = [
837
+ "typenum",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "hyper"
842
+ version = "1.11.0"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
845
+ dependencies = [
846
+ "atomic-waker",
847
+ "bytes",
848
+ "futures-channel",
849
+ "futures-core",
850
+ "h2",
851
+ "http",
852
+ "http-body",
853
+ "httparse",
854
+ "httpdate",
855
+ "itoa",
856
+ "pin-project-lite",
857
+ "smallvec",
858
+ "tokio",
859
+ "want",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "hyper-rustls"
864
+ version = "0.27.9"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
867
+ dependencies = [
868
+ "http",
869
+ "hyper",
870
+ "hyper-util",
871
+ "rustls",
872
+ "tokio",
873
+ "tokio-rustls",
874
+ "tower-service",
875
+ "webpki-roots",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "hyper-util"
880
+ version = "0.1.20"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
883
+ dependencies = [
884
+ "base64 0.22.1",
885
+ "bytes",
886
+ "futures-channel",
887
+ "futures-util",
888
+ "http",
889
+ "http-body",
890
+ "hyper",
891
+ "ipnet",
892
+ "libc",
893
+ "percent-encoding",
894
+ "pin-project-lite",
895
+ "socket2",
896
+ "system-configuration",
897
+ "tokio",
898
+ "tower-layer",
899
+ "tower-service",
900
+ "tracing",
901
+ "windows-registry",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "icu_collections"
906
+ version = "2.1.1"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
909
+ dependencies = [
910
+ "displaydoc",
911
+ "potential_utf",
912
+ "yoke",
913
+ "zerofrom",
914
+ "zerovec",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "icu_locale_core"
919
+ version = "2.1.1"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
922
+ dependencies = [
923
+ "displaydoc",
924
+ "litemap",
925
+ "tinystr",
926
+ "writeable",
927
+ "zerovec",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "icu_normalizer"
932
+ version = "2.1.1"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
935
+ dependencies = [
936
+ "icu_collections",
937
+ "icu_normalizer_data",
938
+ "icu_properties",
939
+ "icu_provider",
940
+ "smallvec",
941
+ "zerovec",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "icu_normalizer_data"
946
+ version = "2.1.1"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
949
+
950
+ [[package]]
951
+ name = "icu_properties"
952
+ version = "2.1.2"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
955
+ dependencies = [
956
+ "icu_collections",
957
+ "icu_locale_core",
958
+ "icu_properties_data",
959
+ "icu_provider",
960
+ "zerotrie",
961
+ "zerovec",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "icu_properties_data"
966
+ version = "2.1.2"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
969
+
970
+ [[package]]
971
+ name = "icu_provider"
972
+ version = "2.1.1"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
975
+ dependencies = [
976
+ "displaydoc",
977
+ "icu_locale_core",
978
+ "writeable",
979
+ "yoke",
980
+ "zerofrom",
981
+ "zerotrie",
982
+ "zerovec",
983
+ ]
984
+
985
+ [[package]]
986
+ name = "idna"
987
+ version = "1.1.0"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
990
+ dependencies = [
991
+ "idna_adapter",
992
+ "smallvec",
993
+ "utf8_iter",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "idna_adapter"
998
+ version = "1.2.1"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1001
+ dependencies = [
1002
+ "icu_normalizer",
1003
+ "icu_properties",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "indexmap"
1008
+ version = "2.14.0"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1011
+ dependencies = [
1012
+ "equivalent",
1013
+ "hashbrown 0.17.1",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "ipnet"
1018
+ version = "2.12.1"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78"
1021
+
1022
+ [[package]]
1023
+ name = "itoa"
1024
+ version = "1.0.18"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1027
+
1028
+ [[package]]
1029
+ name = "js-sys"
1030
+ version = "0.3.103"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1033
+ dependencies = [
1034
+ "cfg-if",
1035
+ "futures-util",
1036
+ "wasm-bindgen",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "jsonwebtoken"
1041
+ version = "11.0.0"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "881733cbc631fc9e472e24447ce32a64bedf2da498d6d8570b08edc87de71f65"
1044
+ dependencies = [
1045
+ "base64 0.22.1",
1046
+ "ed25519-dalek",
1047
+ "getrandom 0.2.17",
1048
+ "hmac 0.12.1",
1049
+ "js-sys",
1050
+ "p256",
1051
+ "p384",
1052
+ "pem",
1053
+ "rand 0.8.7",
1054
+ "rsa",
1055
+ "serde",
1056
+ "serde_json",
1057
+ "sha2 0.10.9",
1058
+ "signature",
1059
+ "simple_asn1",
1060
+ "zeroize",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "lazy_static"
1065
+ version = "1.5.0"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1068
+ dependencies = [
1069
+ "spin",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "libc"
1074
+ version = "0.2.189"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
1077
+
1078
+ [[package]]
1079
+ name = "libm"
1080
+ version = "0.2.16"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1083
+
1084
+ [[package]]
1085
+ name = "libsqlite3-sys"
1086
+ version = "0.37.0"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "b1f111c8c41e7c61a49cd34e44c7619462967221a6443b0ec299e0ac30cfb9b1"
1089
+ dependencies = [
1090
+ "cc",
1091
+ "pkg-config",
1092
+ "vcpkg",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "litemap"
1097
+ version = "0.8.2"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1100
+
1101
+ [[package]]
1102
+ name = "lock_api"
1103
+ version = "0.4.14"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1106
+ dependencies = [
1107
+ "scopeguard",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "log"
1112
+ version = "0.4.33"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1115
+
1116
+ [[package]]
1117
+ name = "lru-slab"
1118
+ version = "0.1.2"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1121
+
1122
+ [[package]]
1123
+ name = "matchers"
1124
+ version = "0.2.0"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1127
+ dependencies = [
1128
+ "regex-automata",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "matchit"
1133
+ version = "0.9.2"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "8863b587001c1b9a8a4e36008cebc6b3612cb1226fe2de94858e06092687b608"
1136
+
1137
+ [[package]]
1138
+ name = "md-5"
1139
+ version = "0.11.0"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98"
1142
+ dependencies = [
1143
+ "cfg-if",
1144
+ "digest 0.11.3",
1145
+ ]
1146
+
1147
+ [[package]]
1148
+ name = "memchr"
1149
+ version = "2.8.3"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1152
+
1153
+ [[package]]
1154
+ name = "memo-map"
1155
+ version = "0.3.3"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "38d1115007560874e373613744c6fba374c17688327a71c1476d1a5954cc857b"
1158
+
1159
+ [[package]]
1160
+ name = "mime"
1161
+ version = "0.3.17"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1164
+
1165
+ [[package]]
1166
+ name = "mime_guess"
1167
+ version = "2.0.5"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1170
+ dependencies = [
1171
+ "mime",
1172
+ "unicase",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "minijinja"
1177
+ version = "2.22.0"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "ef84a52be188a1d4124bd717903fdde96ca4705f2b56adfe2d91fcc57fcb6987"
1180
+ dependencies = [
1181
+ "memo-map",
1182
+ "serde",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "mio"
1187
+ version = "1.2.2"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
1190
+ dependencies = [
1191
+ "libc",
1192
+ "wasi",
1193
+ "windows-sys 0.61.2",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "nu-ansi-term"
1198
+ version = "0.50.3"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1201
+ dependencies = [
1202
+ "windows-sys 0.61.2",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "num-bigint"
1207
+ version = "0.4.8"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
1210
+ dependencies = [
1211
+ "num-integer",
1212
+ "num-traits",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "num-bigint-dig"
1217
+ version = "0.8.6"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
1220
+ dependencies = [
1221
+ "lazy_static",
1222
+ "libm",
1223
+ "num-integer",
1224
+ "num-iter",
1225
+ "num-traits",
1226
+ "rand 0.8.7",
1227
+ "smallvec",
1228
+ "zeroize",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "num-conv"
1233
+ version = "0.2.2"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1236
+
1237
+ [[package]]
1238
+ name = "num-integer"
1239
+ version = "0.1.46"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1242
+ dependencies = [
1243
+ "num-traits",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "num-iter"
1248
+ version = "0.1.46"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
1251
+ dependencies = [
1252
+ "num-integer",
1253
+ "num-traits",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "num-traits"
1258
+ version = "0.2.19"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1261
+ dependencies = [
1262
+ "autocfg",
1263
+ "libm",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "once_cell"
1268
+ version = "1.21.4"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1271
+
1272
+ [[package]]
1273
+ name = "p256"
1274
+ version = "0.13.2"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
1277
+ dependencies = [
1278
+ "ecdsa",
1279
+ "elliptic-curve",
1280
+ "primeorder",
1281
+ "sha2 0.10.9",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "p384"
1286
+ version = "0.13.1"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
1289
+ dependencies = [
1290
+ "ecdsa",
1291
+ "elliptic-curve",
1292
+ "primeorder",
1293
+ "sha2 0.10.9",
1294
+ ]
1295
+
1296
+ [[package]]
1297
+ name = "parking"
1298
+ version = "2.2.1"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1301
+
1302
+ [[package]]
1303
+ name = "parking_lot"
1304
+ version = "0.12.5"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1307
+ dependencies = [
1308
+ "lock_api",
1309
+ "parking_lot_core",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "parking_lot_core"
1314
+ version = "0.9.12"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1317
+ dependencies = [
1318
+ "cfg-if",
1319
+ "libc",
1320
+ "redox_syscall",
1321
+ "smallvec",
1322
+ "windows-link",
1323
+ ]
1324
+
1325
+ [[package]]
1326
+ name = "pem"
1327
+ version = "3.0.6"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
1330
+ dependencies = [
1331
+ "base64 0.22.1",
1332
+ "serde_core",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "pem-rfc7468"
1337
+ version = "0.7.0"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1340
+ dependencies = [
1341
+ "base64ct",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "percent-encoding"
1346
+ version = "2.3.2"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1349
+
1350
+ [[package]]
1351
+ name = "pin-project-lite"
1352
+ version = "0.2.17"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1355
+
1356
+ [[package]]
1357
+ name = "pkcs1"
1358
+ version = "0.7.5"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1361
+ dependencies = [
1362
+ "der",
1363
+ "pkcs8",
1364
+ "spki",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "pkcs8"
1369
+ version = "0.10.2"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1372
+ dependencies = [
1373
+ "der",
1374
+ "spki",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "pkg-config"
1379
+ version = "0.3.33"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1382
+
1383
+ [[package]]
1384
+ name = "portable-atomic"
1385
+ version = "1.14.0"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
1388
+
1389
+ [[package]]
1390
+ name = "potential_utf"
1391
+ version = "0.1.5"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1394
+ dependencies = [
1395
+ "zerovec",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "powerfmt"
1400
+ version = "0.2.0"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1403
+
1404
+ [[package]]
1405
+ name = "ppv-lite86"
1406
+ version = "0.2.21"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1409
+ dependencies = [
1410
+ "zerocopy",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "primeorder"
1415
+ version = "0.13.6"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
1418
+ dependencies = [
1419
+ "elliptic-curve",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "proc-macro2"
1424
+ version = "1.0.107"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1427
+ dependencies = [
1428
+ "unicode-ident",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "pyo3"
1433
+ version = "0.29.2"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
1436
+ dependencies = [
1437
+ "libc",
1438
+ "once_cell",
1439
+ "portable-atomic",
1440
+ "pyo3-build-config",
1441
+ "pyo3-ffi",
1442
+ "pyo3-macros",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "pyo3-build-config"
1447
+ version = "0.29.2"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
1450
+ dependencies = [
1451
+ "target-lexicon",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "pyo3-ffi"
1456
+ version = "0.29.2"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
1459
+ dependencies = [
1460
+ "libc",
1461
+ "pyo3-build-config",
1462
+ ]
1463
+
1464
+ [[package]]
1465
+ name = "pyo3-macros"
1466
+ version = "0.29.2"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
1469
+ dependencies = [
1470
+ "proc-macro2",
1471
+ "pyo3-macros-backend",
1472
+ "quote",
1473
+ "syn 2.0.119",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "pyo3-macros-backend"
1478
+ version = "0.29.2"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
1481
+ dependencies = [
1482
+ "heck",
1483
+ "proc-macro2",
1484
+ "quote",
1485
+ "syn 2.0.119",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "quinn"
1490
+ version = "0.11.11"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
1493
+ dependencies = [
1494
+ "bytes",
1495
+ "cfg_aliases",
1496
+ "pin-project-lite",
1497
+ "quinn-proto",
1498
+ "quinn-udp",
1499
+ "rustc-hash",
1500
+ "rustls",
1501
+ "socket2",
1502
+ "thiserror",
1503
+ "tokio",
1504
+ "tracing",
1505
+ "web-time",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "quinn-proto"
1510
+ version = "0.11.16"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
1513
+ dependencies = [
1514
+ "bytes",
1515
+ "getrandom 0.4.3",
1516
+ "lru-slab",
1517
+ "rand 0.10.2",
1518
+ "rand_pcg",
1519
+ "ring",
1520
+ "rustc-hash",
1521
+ "rustls",
1522
+ "rustls-pki-types",
1523
+ "slab",
1524
+ "thiserror",
1525
+ "tinyvec",
1526
+ "tracing",
1527
+ "web-time",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "quinn-udp"
1532
+ version = "0.5.15"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
1535
+ dependencies = [
1536
+ "cfg_aliases",
1537
+ "libc",
1538
+ "once_cell",
1539
+ "socket2",
1540
+ "tracing",
1541
+ "windows-sys 0.61.2",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "quote"
1546
+ version = "1.0.47"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1549
+ dependencies = [
1550
+ "proc-macro2",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "r-efi"
1555
+ version = "6.0.0"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1558
+
1559
+ [[package]]
1560
+ name = "rand"
1561
+ version = "0.8.7"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
1564
+ dependencies = [
1565
+ "libc",
1566
+ "rand_chacha",
1567
+ "rand_core 0.6.4",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "rand"
1572
+ version = "0.10.2"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
1575
+ dependencies = [
1576
+ "chacha20",
1577
+ "getrandom 0.4.3",
1578
+ "rand_core 0.10.1",
1579
+ ]
1580
+
1581
+ [[package]]
1582
+ name = "rand_chacha"
1583
+ version = "0.3.1"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1586
+ dependencies = [
1587
+ "ppv-lite86",
1588
+ "rand_core 0.6.4",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "rand_core"
1593
+ version = "0.6.4"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1596
+ dependencies = [
1597
+ "getrandom 0.2.17",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "rand_core"
1602
+ version = "0.10.1"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1605
+
1606
+ [[package]]
1607
+ name = "rand_pcg"
1608
+ version = "0.10.2"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
1611
+ dependencies = [
1612
+ "rand_core 0.10.1",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "redox_syscall"
1617
+ version = "0.5.18"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1620
+ dependencies = [
1621
+ "bitflags",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "regex-automata"
1626
+ version = "0.4.16"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1629
+ dependencies = [
1630
+ "aho-corasick",
1631
+ "memchr",
1632
+ "regex-syntax",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "regex-syntax"
1637
+ version = "0.8.11"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1640
+
1641
+ [[package]]
1642
+ name = "reqwest"
1643
+ version = "0.12.28"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1646
+ dependencies = [
1647
+ "base64 0.22.1",
1648
+ "bytes",
1649
+ "encoding_rs",
1650
+ "futures-core",
1651
+ "futures-util",
1652
+ "h2",
1653
+ "http",
1654
+ "http-body",
1655
+ "http-body-util",
1656
+ "hyper",
1657
+ "hyper-rustls",
1658
+ "hyper-util",
1659
+ "js-sys",
1660
+ "log",
1661
+ "mime",
1662
+ "percent-encoding",
1663
+ "pin-project-lite",
1664
+ "quinn",
1665
+ "rustls",
1666
+ "rustls-pki-types",
1667
+ "serde",
1668
+ "serde_json",
1669
+ "serde_urlencoded",
1670
+ "sync_wrapper",
1671
+ "tokio",
1672
+ "tokio-rustls",
1673
+ "tokio-util",
1674
+ "tower",
1675
+ "tower-http",
1676
+ "tower-service",
1677
+ "url",
1678
+ "wasm-bindgen",
1679
+ "wasm-bindgen-futures",
1680
+ "wasm-streams",
1681
+ "web-sys",
1682
+ "webpki-roots",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "rfc6979"
1687
+ version = "0.4.0"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
1690
+ dependencies = [
1691
+ "hmac 0.12.1",
1692
+ "subtle",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "ring"
1697
+ version = "0.17.14"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1700
+ dependencies = [
1701
+ "cc",
1702
+ "cfg-if",
1703
+ "getrandom 0.2.17",
1704
+ "libc",
1705
+ "untrusted",
1706
+ "windows-sys 0.52.0",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "rsa"
1711
+ version = "0.9.10"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
1714
+ dependencies = [
1715
+ "const-oid 0.9.6",
1716
+ "digest 0.10.7",
1717
+ "num-bigint-dig",
1718
+ "num-integer",
1719
+ "num-traits",
1720
+ "pkcs1",
1721
+ "pkcs8",
1722
+ "rand_core 0.6.4",
1723
+ "signature",
1724
+ "spki",
1725
+ "subtle",
1726
+ "zeroize",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "rustc-hash"
1731
+ version = "2.1.3"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1734
+
1735
+ [[package]]
1736
+ name = "rustc_version"
1737
+ version = "0.4.1"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1740
+ dependencies = [
1741
+ "semver",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "rustls"
1746
+ version = "0.23.43"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06"
1749
+ dependencies = [
1750
+ "once_cell",
1751
+ "ring",
1752
+ "rustls-pki-types",
1753
+ "rustls-webpki",
1754
+ "subtle",
1755
+ "zeroize",
1756
+ ]
1757
+
1758
+ [[package]]
1759
+ name = "rustls-pki-types"
1760
+ version = "1.15.1"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96"
1763
+ dependencies = [
1764
+ "web-time",
1765
+ "zeroize",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "rustls-webpki"
1770
+ version = "0.103.13"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1773
+ dependencies = [
1774
+ "ring",
1775
+ "rustls-pki-types",
1776
+ "untrusted",
1777
+ ]
1778
+
1779
+ [[package]]
1780
+ name = "rustversion"
1781
+ version = "1.0.23"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1784
+
1785
+ [[package]]
1786
+ name = "ryu"
1787
+ version = "1.0.23"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1790
+
1791
+ [[package]]
1792
+ name = "scopeguard"
1793
+ version = "1.2.0"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1796
+
1797
+ [[package]]
1798
+ name = "sec1"
1799
+ version = "0.7.3"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
1802
+ dependencies = [
1803
+ "base16ct",
1804
+ "der",
1805
+ "generic-array",
1806
+ "pkcs8",
1807
+ "subtle",
1808
+ "zeroize",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "semver"
1813
+ version = "1.0.28"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1816
+
1817
+ [[package]]
1818
+ name = "serde"
1819
+ version = "1.0.229"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1822
+ dependencies = [
1823
+ "serde_core",
1824
+ "serde_derive",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "serde_core"
1829
+ version = "1.0.229"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1832
+ dependencies = [
1833
+ "serde_derive",
1834
+ ]
1835
+
1836
+ [[package]]
1837
+ name = "serde_derive"
1838
+ version = "1.0.229"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1841
+ dependencies = [
1842
+ "proc-macro2",
1843
+ "quote",
1844
+ "syn 3.0.3",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "serde_json"
1849
+ version = "1.0.151"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1852
+ dependencies = [
1853
+ "itoa",
1854
+ "memchr",
1855
+ "serde",
1856
+ "serde_core",
1857
+ "zmij",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "serde_urlencoded"
1862
+ version = "0.7.1"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1865
+ dependencies = [
1866
+ "form_urlencoded",
1867
+ "itoa",
1868
+ "ryu",
1869
+ "serde",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "sha1"
1874
+ version = "0.11.0"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
1877
+ dependencies = [
1878
+ "cfg-if",
1879
+ "cpufeatures 0.3.0",
1880
+ "digest 0.11.3",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "sha2"
1885
+ version = "0.10.9"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1888
+ dependencies = [
1889
+ "cfg-if",
1890
+ "cpufeatures 0.2.17",
1891
+ "digest 0.10.7",
1892
+ ]
1893
+
1894
+ [[package]]
1895
+ name = "sha2"
1896
+ version = "0.11.0"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
1899
+ dependencies = [
1900
+ "cfg-if",
1901
+ "cpufeatures 0.3.0",
1902
+ "digest 0.11.3",
1903
+ ]
1904
+
1905
+ [[package]]
1906
+ name = "sharded-slab"
1907
+ version = "0.1.7"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1910
+ dependencies = [
1911
+ "lazy_static",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "shlex"
1916
+ version = "2.0.1"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1919
+
1920
+ [[package]]
1921
+ name = "signal-hook-registry"
1922
+ version = "1.4.8"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1925
+ dependencies = [
1926
+ "errno",
1927
+ "libc",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "signature"
1932
+ version = "2.2.0"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
1935
+ dependencies = [
1936
+ "digest 0.10.7",
1937
+ "rand_core 0.6.4",
1938
+ ]
1939
+
1940
+ [[package]]
1941
+ name = "simple_asn1"
1942
+ version = "0.6.4"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
1945
+ dependencies = [
1946
+ "num-bigint",
1947
+ "num-traits",
1948
+ "thiserror",
1949
+ "time",
1950
+ ]
1951
+
1952
+ [[package]]
1953
+ name = "slab"
1954
+ version = "0.4.12"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1957
+
1958
+ [[package]]
1959
+ name = "smallvec"
1960
+ version = "1.15.2"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1963
+ dependencies = [
1964
+ "serde",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "socket2"
1969
+ version = "0.6.5"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
1972
+ dependencies = [
1973
+ "libc",
1974
+ "windows-sys 0.61.2",
1975
+ ]
1976
+
1977
+ [[package]]
1978
+ name = "spin"
1979
+ version = "0.9.9"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
1982
+ dependencies = [
1983
+ "lock_api",
1984
+ ]
1985
+
1986
+ [[package]]
1987
+ name = "spki"
1988
+ version = "0.7.3"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
1991
+ dependencies = [
1992
+ "base64ct",
1993
+ "der",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "sqlx"
1998
+ version = "0.9.0"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "378620ccc25c62c89d8be1c819e76a88d59bdcc3304733330788948e619bfd71"
2001
+ dependencies = [
2002
+ "sqlx-core",
2003
+ "sqlx-macros",
2004
+ "sqlx-mysql",
2005
+ "sqlx-postgres",
2006
+ "sqlx-sqlite",
2007
+ ]
2008
+
2009
+ [[package]]
2010
+ name = "sqlx-core"
2011
+ version = "0.9.0"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "05b44e85bf579a8eeb4ceaa77a3a523baf2bf0e9bac7e40f405d537b5d2d5ccb"
2014
+ dependencies = [
2015
+ "base64 0.22.1",
2016
+ "bytes",
2017
+ "cfg-if",
2018
+ "crc",
2019
+ "crossbeam-queue",
2020
+ "either",
2021
+ "event-listener",
2022
+ "futures-core",
2023
+ "futures-intrusive",
2024
+ "futures-io",
2025
+ "futures-util",
2026
+ "hashbrown 0.16.1",
2027
+ "hashlink",
2028
+ "indexmap",
2029
+ "log",
2030
+ "memchr",
2031
+ "percent-encoding",
2032
+ "serde",
2033
+ "serde_json",
2034
+ "sha2 0.10.9",
2035
+ "smallvec",
2036
+ "thiserror",
2037
+ "tokio",
2038
+ "tokio-stream",
2039
+ "tracing",
2040
+ "url",
2041
+ ]
2042
+
2043
+ [[package]]
2044
+ name = "sqlx-macros"
2045
+ version = "0.9.0"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "bd2b84f2bc39a5705ef27ec785a11c934a41bbd4a24941e257927cddc26b60bf"
2048
+ dependencies = [
2049
+ "proc-macro2",
2050
+ "quote",
2051
+ "sqlx-core",
2052
+ "sqlx-macros-core",
2053
+ "syn 2.0.119",
2054
+ ]
2055
+
2056
+ [[package]]
2057
+ name = "sqlx-macros-core"
2058
+ version = "0.9.0"
2059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2060
+ checksum = "fb8d96de5fdc85a5c4ec813432b523ec637e80ba98f046555f75f7908ddac7c3"
2061
+ dependencies = [
2062
+ "cfg-if",
2063
+ "dotenvy",
2064
+ "either",
2065
+ "heck",
2066
+ "hex",
2067
+ "proc-macro2",
2068
+ "quote",
2069
+ "serde",
2070
+ "serde_json",
2071
+ "sha2 0.10.9",
2072
+ "sqlx-core",
2073
+ "sqlx-mysql",
2074
+ "sqlx-postgres",
2075
+ "sqlx-sqlite",
2076
+ "syn 2.0.119",
2077
+ "thiserror",
2078
+ "tokio",
2079
+ "url",
2080
+ ]
2081
+
2082
+ [[package]]
2083
+ name = "sqlx-mysql"
2084
+ version = "0.9.0"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "90b8020fe17c5f2c245bfa2505d7ef59c5604839527c740266ad2214acebea27"
2087
+ dependencies = [
2088
+ "bitflags",
2089
+ "byteorder",
2090
+ "bytes",
2091
+ "crc",
2092
+ "digest 0.11.3",
2093
+ "dotenvy",
2094
+ "either",
2095
+ "futures-core",
2096
+ "futures-util",
2097
+ "generic-array",
2098
+ "log",
2099
+ "percent-encoding",
2100
+ "serde",
2101
+ "sha1",
2102
+ "sha2 0.11.0",
2103
+ "sqlx-core",
2104
+ "thiserror",
2105
+ "tracing",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "sqlx-postgres"
2110
+ version = "0.9.0"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "87a2bdd6e83f6b3ea525ca9fee568030508b58355a43d0b2c1674d5f79dcd65e"
2113
+ dependencies = [
2114
+ "atoi",
2115
+ "base64 0.22.1",
2116
+ "bitflags",
2117
+ "byteorder",
2118
+ "crc",
2119
+ "dotenvy",
2120
+ "etcetera",
2121
+ "futures-channel",
2122
+ "futures-core",
2123
+ "futures-util",
2124
+ "hex",
2125
+ "hkdf 0.13.0",
2126
+ "hmac 0.13.0",
2127
+ "itoa",
2128
+ "log",
2129
+ "md-5",
2130
+ "memchr",
2131
+ "rand 0.10.2",
2132
+ "serde",
2133
+ "serde_json",
2134
+ "sha2 0.11.0",
2135
+ "smallvec",
2136
+ "sqlx-core",
2137
+ "stringprep",
2138
+ "thiserror",
2139
+ "tracing",
2140
+ "whoami",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "sqlx-sqlite"
2145
+ version = "0.9.0"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "488e99c397a62007e4229aec669a179816339afc6d2620ca6fa420dbee2e982c"
2148
+ dependencies = [
2149
+ "atoi",
2150
+ "flume",
2151
+ "form_urlencoded",
2152
+ "futures-channel",
2153
+ "futures-core",
2154
+ "futures-executor",
2155
+ "futures-intrusive",
2156
+ "futures-util",
2157
+ "libsqlite3-sys",
2158
+ "log",
2159
+ "percent-encoding",
2160
+ "serde",
2161
+ "sqlx-core",
2162
+ "thiserror",
2163
+ "tracing",
2164
+ "url",
2165
+ ]
2166
+
2167
+ [[package]]
2168
+ name = "stable_deref_trait"
2169
+ version = "1.2.1"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2172
+
2173
+ [[package]]
2174
+ name = "stringprep"
2175
+ version = "0.1.5"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2178
+ dependencies = [
2179
+ "unicode-bidi",
2180
+ "unicode-normalization",
2181
+ "unicode-properties",
2182
+ ]
2183
+
2184
+ [[package]]
2185
+ name = "subtle"
2186
+ version = "2.6.1"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2189
+
2190
+ [[package]]
2191
+ name = "syn"
2192
+ version = "2.0.119"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
2195
+ dependencies = [
2196
+ "proc-macro2",
2197
+ "quote",
2198
+ "unicode-ident",
2199
+ ]
2200
+
2201
+ [[package]]
2202
+ name = "syn"
2203
+ version = "3.0.3"
2204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2205
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
2206
+ dependencies = [
2207
+ "proc-macro2",
2208
+ "quote",
2209
+ "unicode-ident",
2210
+ ]
2211
+
2212
+ [[package]]
2213
+ name = "sync_wrapper"
2214
+ version = "1.0.2"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2217
+ dependencies = [
2218
+ "futures-core",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "synstructure"
2223
+ version = "0.13.2"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2226
+ dependencies = [
2227
+ "proc-macro2",
2228
+ "quote",
2229
+ "syn 2.0.119",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "system-configuration"
2234
+ version = "0.7.0"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2237
+ dependencies = [
2238
+ "bitflags",
2239
+ "core-foundation",
2240
+ "system-configuration-sys",
2241
+ ]
2242
+
2243
+ [[package]]
2244
+ name = "system-configuration-sys"
2245
+ version = "0.6.0"
2246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2247
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2248
+ dependencies = [
2249
+ "core-foundation-sys",
2250
+ "libc",
2251
+ ]
2252
+
2253
+ [[package]]
2254
+ name = "target-lexicon"
2255
+ version = "0.13.5"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2258
+
2259
+ [[package]]
2260
+ name = "thiserror"
2261
+ version = "2.0.19"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
2264
+ dependencies = [
2265
+ "thiserror-impl",
2266
+ ]
2267
+
2268
+ [[package]]
2269
+ name = "thiserror-impl"
2270
+ version = "2.0.19"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
2273
+ dependencies = [
2274
+ "proc-macro2",
2275
+ "quote",
2276
+ "syn 3.0.3",
2277
+ ]
2278
+
2279
+ [[package]]
2280
+ name = "thread_local"
2281
+ version = "1.1.10"
2282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2283
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
2284
+ dependencies = [
2285
+ "cfg-if",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "time"
2290
+ version = "0.3.55"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
2293
+ dependencies = [
2294
+ "deranged",
2295
+ "num-conv",
2296
+ "powerfmt",
2297
+ "serde_core",
2298
+ "time-core",
2299
+ "time-macros",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "time-core"
2304
+ version = "0.1.9"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
2307
+
2308
+ [[package]]
2309
+ name = "time-macros"
2310
+ version = "0.2.32"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
2313
+ dependencies = [
2314
+ "num-conv",
2315
+ "time-core",
2316
+ ]
2317
+
2318
+ [[package]]
2319
+ name = "tinystr"
2320
+ version = "0.8.3"
2321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2322
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2323
+ dependencies = [
2324
+ "displaydoc",
2325
+ "zerovec",
2326
+ ]
2327
+
2328
+ [[package]]
2329
+ name = "tinyvec"
2330
+ version = "1.12.0"
2331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2332
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
2333
+ dependencies = [
2334
+ "tinyvec_macros",
2335
+ ]
2336
+
2337
+ [[package]]
2338
+ name = "tinyvec_macros"
2339
+ version = "0.1.1"
2340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2341
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2342
+
2343
+ [[package]]
2344
+ name = "tokio"
2345
+ version = "1.53.1"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
2348
+ dependencies = [
2349
+ "bytes",
2350
+ "libc",
2351
+ "mio",
2352
+ "parking_lot",
2353
+ "pin-project-lite",
2354
+ "signal-hook-registry",
2355
+ "socket2",
2356
+ "tokio-macros",
2357
+ "windows-sys 0.61.2",
2358
+ ]
2359
+
2360
+ [[package]]
2361
+ name = "tokio-macros"
2362
+ version = "2.7.2"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
2365
+ dependencies = [
2366
+ "proc-macro2",
2367
+ "quote",
2368
+ "syn 3.0.3",
2369
+ ]
2370
+
2371
+ [[package]]
2372
+ name = "tokio-rustls"
2373
+ version = "0.26.4"
2374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2375
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2376
+ dependencies = [
2377
+ "rustls",
2378
+ "tokio",
2379
+ ]
2380
+
2381
+ [[package]]
2382
+ name = "tokio-stream"
2383
+ version = "0.1.19"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
2386
+ dependencies = [
2387
+ "futures-core",
2388
+ "pin-project-lite",
2389
+ "tokio",
2390
+ ]
2391
+
2392
+ [[package]]
2393
+ name = "tokio-util"
2394
+ version = "0.7.19"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
2397
+ dependencies = [
2398
+ "bytes",
2399
+ "futures-core",
2400
+ "futures-sink",
2401
+ "libc",
2402
+ "pin-project-lite",
2403
+ "tokio",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "tower"
2408
+ version = "0.5.3"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2411
+ dependencies = [
2412
+ "futures-core",
2413
+ "futures-util",
2414
+ "pin-project-lite",
2415
+ "sync_wrapper",
2416
+ "tokio",
2417
+ "tower-layer",
2418
+ "tower-service",
2419
+ ]
2420
+
2421
+ [[package]]
2422
+ name = "tower-http"
2423
+ version = "0.6.11"
2424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2425
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2426
+ dependencies = [
2427
+ "bitflags",
2428
+ "bytes",
2429
+ "futures-util",
2430
+ "http",
2431
+ "http-body",
2432
+ "pin-project-lite",
2433
+ "tower",
2434
+ "tower-layer",
2435
+ "tower-service",
2436
+ "url",
2437
+ ]
2438
+
2439
+ [[package]]
2440
+ name = "tower-layer"
2441
+ version = "0.3.3"
2442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2443
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2444
+
2445
+ [[package]]
2446
+ name = "tower-service"
2447
+ version = "0.3.3"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2450
+
2451
+ [[package]]
2452
+ name = "tracing"
2453
+ version = "0.1.44"
2454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2455
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2456
+ dependencies = [
2457
+ "log",
2458
+ "pin-project-lite",
2459
+ "tracing-attributes",
2460
+ "tracing-core",
2461
+ ]
2462
+
2463
+ [[package]]
2464
+ name = "tracing-attributes"
2465
+ version = "0.1.31"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2468
+ dependencies = [
2469
+ "proc-macro2",
2470
+ "quote",
2471
+ "syn 2.0.119",
2472
+ ]
2473
+
2474
+ [[package]]
2475
+ name = "tracing-core"
2476
+ version = "0.1.36"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2479
+ dependencies = [
2480
+ "once_cell",
2481
+ "valuable",
2482
+ ]
2483
+
2484
+ [[package]]
2485
+ name = "tracing-log"
2486
+ version = "0.2.0"
2487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2488
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2489
+ dependencies = [
2490
+ "log",
2491
+ "once_cell",
2492
+ "tracing-core",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "tracing-subscriber"
2497
+ version = "0.3.23"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2500
+ dependencies = [
2501
+ "matchers",
2502
+ "nu-ansi-term",
2503
+ "once_cell",
2504
+ "regex-automata",
2505
+ "sharded-slab",
2506
+ "smallvec",
2507
+ "thread_local",
2508
+ "tracing",
2509
+ "tracing-core",
2510
+ "tracing-log",
2511
+ ]
2512
+
2513
+ [[package]]
2514
+ name = "try-lock"
2515
+ version = "0.2.5"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2518
+
2519
+ [[package]]
2520
+ name = "typenum"
2521
+ version = "1.20.1"
2522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2523
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2524
+
2525
+ [[package]]
2526
+ name = "unicase"
2527
+ version = "2.9.0"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
2530
+
2531
+ [[package]]
2532
+ name = "unicode-bidi"
2533
+ version = "0.3.18"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
2536
+
2537
+ [[package]]
2538
+ name = "unicode-ident"
2539
+ version = "1.0.24"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2542
+
2543
+ [[package]]
2544
+ name = "unicode-normalization"
2545
+ version = "0.1.25"
2546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2547
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2548
+ dependencies = [
2549
+ "tinyvec",
2550
+ ]
2551
+
2552
+ [[package]]
2553
+ name = "unicode-properties"
2554
+ version = "0.1.4"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
2557
+
2558
+ [[package]]
2559
+ name = "untrusted"
2560
+ version = "0.9.0"
2561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2562
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2563
+
2564
+ [[package]]
2565
+ name = "url"
2566
+ version = "2.5.8"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2569
+ dependencies = [
2570
+ "form_urlencoded",
2571
+ "idna",
2572
+ "percent-encoding",
2573
+ "serde",
2574
+ ]
2575
+
2576
+ [[package]]
2577
+ name = "utf8_iter"
2578
+ version = "1.0.4"
2579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2580
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2581
+
2582
+ [[package]]
2583
+ name = "uuid"
2584
+ version = "1.24.0"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
2587
+ dependencies = [
2588
+ "getrandom 0.4.3",
2589
+ "js-sys",
2590
+ "rand 0.10.2",
2591
+ "wasm-bindgen",
2592
+ ]
2593
+
2594
+ [[package]]
2595
+ name = "valuable"
2596
+ version = "0.1.1"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2599
+
2600
+ [[package]]
2601
+ name = "vcpkg"
2602
+ version = "0.2.15"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2605
+
2606
+ [[package]]
2607
+ name = "version_check"
2608
+ version = "0.9.5"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2611
+
2612
+ [[package]]
2613
+ name = "want"
2614
+ version = "0.3.1"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2617
+ dependencies = [
2618
+ "try-lock",
2619
+ ]
2620
+
2621
+ [[package]]
2622
+ name = "wasi"
2623
+ version = "0.11.1+wasi-snapshot-preview1"
2624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2625
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2626
+
2627
+ [[package]]
2628
+ name = "wasm-bindgen"
2629
+ version = "0.2.126"
2630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2631
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2632
+ dependencies = [
2633
+ "cfg-if",
2634
+ "once_cell",
2635
+ "rustversion",
2636
+ "wasm-bindgen-macro",
2637
+ "wasm-bindgen-shared",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "wasm-bindgen-futures"
2642
+ version = "0.4.76"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
2645
+ dependencies = [
2646
+ "js-sys",
2647
+ "wasm-bindgen",
2648
+ ]
2649
+
2650
+ [[package]]
2651
+ name = "wasm-bindgen-macro"
2652
+ version = "0.2.126"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2655
+ dependencies = [
2656
+ "quote",
2657
+ "wasm-bindgen-macro-support",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "wasm-bindgen-macro-support"
2662
+ version = "0.2.126"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2665
+ dependencies = [
2666
+ "bumpalo",
2667
+ "proc-macro2",
2668
+ "quote",
2669
+ "syn 2.0.119",
2670
+ "wasm-bindgen-shared",
2671
+ ]
2672
+
2673
+ [[package]]
2674
+ name = "wasm-bindgen-shared"
2675
+ version = "0.2.126"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2678
+ dependencies = [
2679
+ "unicode-ident",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "wasm-streams"
2684
+ version = "0.4.2"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
2687
+ dependencies = [
2688
+ "futures-util",
2689
+ "js-sys",
2690
+ "wasm-bindgen",
2691
+ "wasm-bindgen-futures",
2692
+ "web-sys",
2693
+ ]
2694
+
2695
+ [[package]]
2696
+ name = "web-sys"
2697
+ version = "0.3.103"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
2700
+ dependencies = [
2701
+ "js-sys",
2702
+ "wasm-bindgen",
2703
+ ]
2704
+
2705
+ [[package]]
2706
+ name = "web-time"
2707
+ version = "1.1.0"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2710
+ dependencies = [
2711
+ "js-sys",
2712
+ "wasm-bindgen",
2713
+ ]
2714
+
2715
+ [[package]]
2716
+ name = "webcortex-core"
2717
+ version = "0.3.0"
2718
+ dependencies = [
2719
+ "anyhow",
2720
+ "async-stream",
2721
+ "base64 0.23.1",
2722
+ "bytes",
2723
+ "futures",
2724
+ "hmac 0.13.0",
2725
+ "http-body-util",
2726
+ "hyper",
2727
+ "hyper-util",
2728
+ "jsonwebtoken",
2729
+ "matchit",
2730
+ "mime_guess",
2731
+ "minijinja",
2732
+ "pin-project-lite",
2733
+ "reqwest",
2734
+ "serde",
2735
+ "serde_json",
2736
+ "sha2 0.11.0",
2737
+ "sqlx",
2738
+ "subtle",
2739
+ "thiserror",
2740
+ "tokio",
2741
+ "tracing",
2742
+ "tracing-subscriber",
2743
+ "uuid",
2744
+ ]
2745
+
2746
+ [[package]]
2747
+ name = "webcortex-py"
2748
+ version = "0.3.0"
2749
+ dependencies = [
2750
+ "bytes",
2751
+ "futures",
2752
+ "pyo3",
2753
+ "serde_json",
2754
+ "tokio",
2755
+ "tracing",
2756
+ "uuid",
2757
+ "webcortex-core",
2758
+ ]
2759
+
2760
+ [[package]]
2761
+ name = "webpki-roots"
2762
+ version = "1.0.9"
2763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2764
+ checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
2765
+ dependencies = [
2766
+ "rustls-pki-types",
2767
+ ]
2768
+
2769
+ [[package]]
2770
+ name = "whoami"
2771
+ version = "2.1.2"
2772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2773
+ checksum = "998767ef88740d1f5b0682a9c53c24431453923962269c2db68ee43788c5a40d"
2774
+
2775
+ [[package]]
2776
+ name = "windows-link"
2777
+ version = "0.2.1"
2778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2779
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2780
+
2781
+ [[package]]
2782
+ name = "windows-registry"
2783
+ version = "0.6.1"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
2786
+ dependencies = [
2787
+ "windows-link",
2788
+ "windows-result",
2789
+ "windows-strings",
2790
+ ]
2791
+
2792
+ [[package]]
2793
+ name = "windows-result"
2794
+ version = "0.4.1"
2795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2796
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2797
+ dependencies = [
2798
+ "windows-link",
2799
+ ]
2800
+
2801
+ [[package]]
2802
+ name = "windows-strings"
2803
+ version = "0.5.1"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2806
+ dependencies = [
2807
+ "windows-link",
2808
+ ]
2809
+
2810
+ [[package]]
2811
+ name = "windows-sys"
2812
+ version = "0.52.0"
2813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2814
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2815
+ dependencies = [
2816
+ "windows-targets",
2817
+ ]
2818
+
2819
+ [[package]]
2820
+ name = "windows-sys"
2821
+ version = "0.61.2"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2824
+ dependencies = [
2825
+ "windows-link",
2826
+ ]
2827
+
2828
+ [[package]]
2829
+ name = "windows-targets"
2830
+ version = "0.52.6"
2831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2832
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2833
+ dependencies = [
2834
+ "windows_aarch64_gnullvm",
2835
+ "windows_aarch64_msvc",
2836
+ "windows_i686_gnu",
2837
+ "windows_i686_gnullvm",
2838
+ "windows_i686_msvc",
2839
+ "windows_x86_64_gnu",
2840
+ "windows_x86_64_gnullvm",
2841
+ "windows_x86_64_msvc",
2842
+ ]
2843
+
2844
+ [[package]]
2845
+ name = "windows_aarch64_gnullvm"
2846
+ version = "0.52.6"
2847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2848
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2849
+
2850
+ [[package]]
2851
+ name = "windows_aarch64_msvc"
2852
+ version = "0.52.6"
2853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2854
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2855
+
2856
+ [[package]]
2857
+ name = "windows_i686_gnu"
2858
+ version = "0.52.6"
2859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2860
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2861
+
2862
+ [[package]]
2863
+ name = "windows_i686_gnullvm"
2864
+ version = "0.52.6"
2865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2866
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2867
+
2868
+ [[package]]
2869
+ name = "windows_i686_msvc"
2870
+ version = "0.52.6"
2871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2872
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2873
+
2874
+ [[package]]
2875
+ name = "windows_x86_64_gnu"
2876
+ version = "0.52.6"
2877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2878
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2879
+
2880
+ [[package]]
2881
+ name = "windows_x86_64_gnullvm"
2882
+ version = "0.52.6"
2883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2884
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2885
+
2886
+ [[package]]
2887
+ name = "windows_x86_64_msvc"
2888
+ version = "0.52.6"
2889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2890
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2891
+
2892
+ [[package]]
2893
+ name = "writeable"
2894
+ version = "0.6.3"
2895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2896
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2897
+
2898
+ [[package]]
2899
+ name = "yoke"
2900
+ version = "0.8.3"
2901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2902
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2903
+ dependencies = [
2904
+ "stable_deref_trait",
2905
+ "yoke-derive",
2906
+ "zerofrom",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "yoke-derive"
2911
+ version = "0.8.2"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2914
+ dependencies = [
2915
+ "proc-macro2",
2916
+ "quote",
2917
+ "syn 2.0.119",
2918
+ "synstructure",
2919
+ ]
2920
+
2921
+ [[package]]
2922
+ name = "zerocopy"
2923
+ version = "0.8.50"
2924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2925
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
2926
+ dependencies = [
2927
+ "zerocopy-derive",
2928
+ ]
2929
+
2930
+ [[package]]
2931
+ name = "zerocopy-derive"
2932
+ version = "0.8.50"
2933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2934
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
2935
+ dependencies = [
2936
+ "proc-macro2",
2937
+ "quote",
2938
+ "syn 2.0.119",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "zerofrom"
2943
+ version = "0.1.8"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2946
+ dependencies = [
2947
+ "zerofrom-derive",
2948
+ ]
2949
+
2950
+ [[package]]
2951
+ name = "zerofrom-derive"
2952
+ version = "0.1.7"
2953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2954
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2955
+ dependencies = [
2956
+ "proc-macro2",
2957
+ "quote",
2958
+ "syn 2.0.119",
2959
+ "synstructure",
2960
+ ]
2961
+
2962
+ [[package]]
2963
+ name = "zeroize"
2964
+ version = "1.9.0"
2965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2966
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
2967
+ dependencies = [
2968
+ "zeroize_derive",
2969
+ ]
2970
+
2971
+ [[package]]
2972
+ name = "zeroize_derive"
2973
+ version = "1.5.0"
2974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2975
+ checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
2976
+ dependencies = [
2977
+ "proc-macro2",
2978
+ "quote",
2979
+ "syn 2.0.119",
2980
+ ]
2981
+
2982
+ [[package]]
2983
+ name = "zerotrie"
2984
+ version = "0.2.4"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2987
+ dependencies = [
2988
+ "displaydoc",
2989
+ "yoke",
2990
+ "zerofrom",
2991
+ ]
2992
+
2993
+ [[package]]
2994
+ name = "zerovec"
2995
+ version = "0.11.6"
2996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2997
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2998
+ dependencies = [
2999
+ "yoke",
3000
+ "zerofrom",
3001
+ "zerovec-derive",
3002
+ ]
3003
+
3004
+ [[package]]
3005
+ name = "zerovec-derive"
3006
+ version = "0.11.3"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3009
+ dependencies = [
3010
+ "proc-macro2",
3011
+ "quote",
3012
+ "syn 2.0.119",
3013
+ ]
3014
+
3015
+ [[package]]
3016
+ name = "zmij"
3017
+ version = "1.0.23"
3018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3019
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"