narrativeengine 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. narrativeengine-0.1.0/Cargo.lock +4075 -0
  2. narrativeengine-0.1.0/Cargo.toml +72 -0
  3. narrativeengine-0.1.0/PKG-INFO +62 -0
  4. narrativeengine-0.1.0/README.md +40 -0
  5. narrativeengine-0.1.0/crates/nap-core/Cargo.toml +27 -0
  6. narrativeengine-0.1.0/crates/nap-core/src/commit.rs +206 -0
  7. narrativeengine-0.1.0/crates/nap-core/src/content.rs +137 -0
  8. narrativeengine-0.1.0/crates/nap-core/src/error.rs +76 -0
  9. narrativeengine-0.1.0/crates/nap-core/src/lib.rs +33 -0
  10. narrativeengine-0.1.0/crates/nap-core/src/manifest.rs +321 -0
  11. narrativeengine-0.1.0/crates/nap-core/src/query.rs +225 -0
  12. narrativeengine-0.1.0/crates/nap-core/src/repository.rs +583 -0
  13. narrativeengine-0.1.0/crates/nap-core/src/resolver.rs +349 -0
  14. narrativeengine-0.1.0/crates/nap-core/src/schema.rs +438 -0
  15. narrativeengine-0.1.0/crates/nap-core/src/types.rs +110 -0
  16. narrativeengine-0.1.0/crates/nap-core/src/uri.rs +301 -0
  17. narrativeengine-0.1.0/crates/nap-core/src/vcs.rs +113 -0
  18. narrativeengine-0.1.0/crates/nap-core/src/vcs_git.rs +530 -0
  19. narrativeengine-0.1.0/crates/narrativeengine-core/Cargo.toml +18 -0
  20. narrativeengine-0.1.0/crates/narrativeengine-core/examples/parity_json.rs +28 -0
  21. narrativeengine-0.1.0/crates/narrativeengine-core/src/engine.rs +156 -0
  22. narrativeengine-0.1.0/crates/narrativeengine-core/src/error.rs +17 -0
  23. narrativeengine-0.1.0/crates/narrativeengine-core/src/lib.rs +13 -0
  24. narrativeengine-0.1.0/crates/narrativeengine-core/src/models.rs +40 -0
  25. narrativeengine-0.1.0/crates/narrativeengine-core/src/schema.rs +31 -0
  26. narrativeengine-0.1.0/crates/narrativeengine-core/src/validation.rs +56 -0
  27. narrativeengine-0.1.0/crates/narrativeengine-core/tests/json_contract.rs +33 -0
  28. narrativeengine-0.1.0/crates/narrativeengine-py/Cargo.toml +15 -0
  29. narrativeengine-0.1.0/crates/narrativeengine-py/src/lib.rs +47 -0
  30. narrativeengine-0.1.0/narrativeengine/__init__.py +56 -0
  31. narrativeengine-0.1.0/narrativeengine/_native.pyi +8 -0
  32. narrativeengine-0.1.0/narrativeengine/py.typed +1 -0
  33. narrativeengine-0.1.0/narrativeengine/types.py +52 -0
  34. narrativeengine-0.1.0/pyproject.toml +54 -0
@@ -0,0 +1,4075 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "getrandom 0.3.4",
19
+ "once_cell",
20
+ "serde",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "allocator-api2"
36
+ version = "0.2.21"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
39
+
40
+ [[package]]
41
+ name = "android_system_properties"
42
+ version = "0.1.5"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
45
+ dependencies = [
46
+ "libc",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "anstream"
51
+ version = "1.0.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
54
+ dependencies = [
55
+ "anstyle",
56
+ "anstyle-parse",
57
+ "anstyle-query",
58
+ "anstyle-wincon",
59
+ "colorchoice",
60
+ "is_terminal_polyfill",
61
+ "utf8parse",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anstyle"
66
+ version = "1.0.14"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
69
+
70
+ [[package]]
71
+ name = "anstyle-parse"
72
+ version = "1.0.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
75
+ dependencies = [
76
+ "utf8parse",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anstyle-query"
81
+ version = "1.1.5"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
84
+ dependencies = [
85
+ "windows-sys 0.61.2",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "anstyle-wincon"
90
+ version = "3.0.11"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
93
+ dependencies = [
94
+ "anstyle",
95
+ "once_cell_polyfill",
96
+ "windows-sys 0.61.2",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "anyhow"
101
+ version = "1.0.102"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
104
+
105
+ [[package]]
106
+ name = "arc-swap"
107
+ version = "1.9.1"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
110
+ dependencies = [
111
+ "rustversion",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "arrayvec"
116
+ version = "0.7.6"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
119
+
120
+ [[package]]
121
+ name = "atomic-waker"
122
+ version = "1.1.2"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
125
+
126
+ [[package]]
127
+ name = "autocfg"
128
+ version = "1.5.1"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
131
+
132
+ [[package]]
133
+ name = "axum"
134
+ version = "0.8.9"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
137
+ dependencies = [
138
+ "axum-core",
139
+ "bytes",
140
+ "form_urlencoded",
141
+ "futures-util",
142
+ "http",
143
+ "http-body",
144
+ "http-body-util",
145
+ "hyper",
146
+ "hyper-util",
147
+ "itoa",
148
+ "matchit",
149
+ "memchr",
150
+ "mime",
151
+ "percent-encoding",
152
+ "pin-project-lite",
153
+ "serde_core",
154
+ "serde_json",
155
+ "serde_path_to_error",
156
+ "serde_urlencoded",
157
+ "sync_wrapper",
158
+ "tokio",
159
+ "tower",
160
+ "tower-layer",
161
+ "tower-service",
162
+ "tracing",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "axum-core"
167
+ version = "0.5.6"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
170
+ dependencies = [
171
+ "bytes",
172
+ "futures-core",
173
+ "http",
174
+ "http-body",
175
+ "http-body-util",
176
+ "mime",
177
+ "pin-project-lite",
178
+ "sync_wrapper",
179
+ "tower-layer",
180
+ "tower-service",
181
+ "tracing",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "base64"
186
+ version = "0.22.1"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
189
+
190
+ [[package]]
191
+ name = "base64ct"
192
+ version = "1.8.3"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
195
+
196
+ [[package]]
197
+ name = "bit-set"
198
+ version = "0.8.0"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
201
+ dependencies = [
202
+ "bit-vec",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "bit-vec"
207
+ version = "0.8.0"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
210
+
211
+ [[package]]
212
+ name = "bitflags"
213
+ version = "2.13.0"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
216
+
217
+ [[package]]
218
+ name = "block-buffer"
219
+ version = "0.10.4"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
222
+ dependencies = [
223
+ "generic-array",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "borrow-or-share"
228
+ version = "0.2.4"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c"
231
+
232
+ [[package]]
233
+ name = "bstr"
234
+ version = "1.12.1"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
237
+ dependencies = [
238
+ "memchr",
239
+ "regex-automata",
240
+ "serde",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "bumpalo"
245
+ version = "3.20.3"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
248
+
249
+ [[package]]
250
+ name = "bytecount"
251
+ version = "0.6.9"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
254
+
255
+ [[package]]
256
+ name = "byteorder"
257
+ version = "1.5.0"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
260
+
261
+ [[package]]
262
+ name = "bytes"
263
+ version = "1.11.1"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
266
+
267
+ [[package]]
268
+ name = "cc"
269
+ version = "1.2.63"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
272
+ dependencies = [
273
+ "find-msvc-tools",
274
+ "shlex",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "cfg-if"
279
+ version = "1.0.4"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
282
+
283
+ [[package]]
284
+ name = "chrono"
285
+ version = "0.4.45"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
288
+ dependencies = [
289
+ "iana-time-zone",
290
+ "js-sys",
291
+ "num-traits",
292
+ "serde",
293
+ "wasm-bindgen",
294
+ "windows-link",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "clap"
299
+ version = "4.6.1"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
302
+ dependencies = [
303
+ "clap_builder",
304
+ "clap_derive",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "clap_builder"
309
+ version = "4.6.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
312
+ dependencies = [
313
+ "anstream",
314
+ "anstyle",
315
+ "clap_lex",
316
+ "strsim",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "clap_derive"
321
+ version = "4.6.1"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
324
+ dependencies = [
325
+ "heck",
326
+ "proc-macro2",
327
+ "quote",
328
+ "syn",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "clap_lex"
333
+ version = "1.1.0"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
336
+
337
+ [[package]]
338
+ name = "clru"
339
+ version = "0.6.3"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "197fd99cb113a8d5d9b6376f3aa817f32c1078f2343b714fff7d2ca44fdf67d5"
342
+ dependencies = [
343
+ "hashbrown 0.16.1",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "colorchoice"
348
+ version = "1.0.5"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
351
+
352
+ [[package]]
353
+ name = "const-oid"
354
+ version = "0.9.6"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
357
+
358
+ [[package]]
359
+ name = "convert_case"
360
+ version = "0.6.0"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
363
+ dependencies = [
364
+ "unicode-segmentation",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "core-foundation-sys"
369
+ version = "0.8.7"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
372
+
373
+ [[package]]
374
+ name = "cpufeatures"
375
+ version = "0.2.17"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
378
+ dependencies = [
379
+ "libc",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "crc32fast"
384
+ version = "1.5.0"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
387
+ dependencies = [
388
+ "cfg-if",
389
+ ]
390
+
391
+ [[package]]
392
+ name = "crossbeam-channel"
393
+ version = "0.5.15"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
396
+ dependencies = [
397
+ "crossbeam-utils",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "crossbeam-utils"
402
+ version = "0.8.21"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
405
+
406
+ [[package]]
407
+ name = "crypto-common"
408
+ version = "0.1.7"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
411
+ dependencies = [
412
+ "generic-array",
413
+ "typenum",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "ctor"
418
+ version = "0.2.9"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
421
+ dependencies = [
422
+ "quote",
423
+ "syn",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "curve25519-dalek"
428
+ version = "4.1.3"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
431
+ dependencies = [
432
+ "cfg-if",
433
+ "cpufeatures",
434
+ "curve25519-dalek-derive",
435
+ "digest",
436
+ "fiat-crypto",
437
+ "rustc_version",
438
+ "subtle",
439
+ "zeroize",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "curve25519-dalek-derive"
444
+ version = "0.1.1"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
447
+ dependencies = [
448
+ "proc-macro2",
449
+ "quote",
450
+ "syn",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "der"
455
+ version = "0.7.10"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
458
+ dependencies = [
459
+ "const-oid",
460
+ "zeroize",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "digest"
465
+ version = "0.10.7"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
468
+ dependencies = [
469
+ "block-buffer",
470
+ "crypto-common",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "displaydoc"
475
+ version = "0.2.6"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
478
+ dependencies = [
479
+ "proc-macro2",
480
+ "quote",
481
+ "syn",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "dunce"
486
+ version = "1.0.5"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
489
+
490
+ [[package]]
491
+ name = "dyn-clone"
492
+ version = "1.0.20"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
495
+
496
+ [[package]]
497
+ name = "ed25519"
498
+ version = "2.2.3"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
501
+ dependencies = [
502
+ "pkcs8",
503
+ "serde",
504
+ "signature",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "ed25519-dalek"
509
+ version = "2.2.0"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
512
+ dependencies = [
513
+ "curve25519-dalek",
514
+ "ed25519",
515
+ "rand_core 0.6.4",
516
+ "serde",
517
+ "sha2",
518
+ "subtle",
519
+ "zeroize",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "email_address"
524
+ version = "0.2.9"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
527
+ dependencies = [
528
+ "serde",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "encoding_rs"
533
+ version = "0.8.35"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
536
+ dependencies = [
537
+ "cfg-if",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "equivalent"
542
+ version = "1.0.2"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
545
+
546
+ [[package]]
547
+ name = "errno"
548
+ version = "0.3.14"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
551
+ dependencies = [
552
+ "libc",
553
+ "windows-sys 0.61.2",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "fancy-regex"
558
+ version = "0.14.0"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
561
+ dependencies = [
562
+ "bit-set",
563
+ "regex-automata",
564
+ "regex-syntax",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "faster-hex"
569
+ version = "0.10.0"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "7223ae2d2f179b803433d9c830478527e92b8117eab39460edae7f1614d9fb73"
572
+ dependencies = [
573
+ "heapless",
574
+ "serde",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "fastrand"
579
+ version = "2.4.1"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
582
+
583
+ [[package]]
584
+ name = "fiat-crypto"
585
+ version = "0.2.9"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
588
+
589
+ [[package]]
590
+ name = "filetime"
591
+ version = "0.2.29"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
594
+ dependencies = [
595
+ "cfg-if",
596
+ "libc",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "find-msvc-tools"
601
+ version = "0.1.9"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
604
+
605
+ [[package]]
606
+ name = "flate2"
607
+ version = "1.1.9"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
610
+ dependencies = [
611
+ "miniz_oxide",
612
+ "zlib-rs",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "fluent-uri"
617
+ version = "0.3.2"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "1918b65d96df47d3591bed19c5cca17e3fa5d0707318e4b5ef2eae01764df7e5"
620
+ dependencies = [
621
+ "borrow-or-share",
622
+ "ref-cast",
623
+ "serde",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "fnv"
628
+ version = "1.0.7"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
631
+
632
+ [[package]]
633
+ name = "foldhash"
634
+ version = "0.1.5"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
637
+
638
+ [[package]]
639
+ name = "foldhash"
640
+ version = "0.2.0"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
643
+
644
+ [[package]]
645
+ name = "form_urlencoded"
646
+ version = "1.2.2"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
649
+ dependencies = [
650
+ "percent-encoding",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "fraction"
655
+ version = "0.15.4"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "e076045bb43dac435333ed5f04caf35c7463631d0dae2deb2638d94dd0a5b872"
658
+ dependencies = [
659
+ "lazy_static",
660
+ "num",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "futures"
665
+ version = "0.3.32"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
668
+ dependencies = [
669
+ "futures-channel",
670
+ "futures-core",
671
+ "futures-executor",
672
+ "futures-io",
673
+ "futures-sink",
674
+ "futures-task",
675
+ "futures-util",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "futures-channel"
680
+ version = "0.3.32"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
683
+ dependencies = [
684
+ "futures-core",
685
+ "futures-sink",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "futures-core"
690
+ version = "0.3.32"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
693
+
694
+ [[package]]
695
+ name = "futures-executor"
696
+ version = "0.3.32"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
699
+ dependencies = [
700
+ "futures-core",
701
+ "futures-task",
702
+ "futures-util",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "futures-io"
707
+ version = "0.3.32"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
710
+
711
+ [[package]]
712
+ name = "futures-macro"
713
+ version = "0.3.32"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
716
+ dependencies = [
717
+ "proc-macro2",
718
+ "quote",
719
+ "syn",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "futures-sink"
724
+ version = "0.3.32"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
727
+
728
+ [[package]]
729
+ name = "futures-task"
730
+ version = "0.3.32"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
733
+
734
+ [[package]]
735
+ name = "futures-timer"
736
+ version = "3.0.4"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "af43fadb8a98512d547e37b4e92e0ced13e205c061b87b4623eff01d918d6968"
739
+
740
+ [[package]]
741
+ name = "futures-util"
742
+ version = "0.3.32"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
745
+ dependencies = [
746
+ "futures-channel",
747
+ "futures-core",
748
+ "futures-io",
749
+ "futures-macro",
750
+ "futures-sink",
751
+ "futures-task",
752
+ "memchr",
753
+ "pin-project-lite",
754
+ "slab",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "generic-array"
759
+ version = "0.14.7"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
762
+ dependencies = [
763
+ "typenum",
764
+ "version_check",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "getrandom"
769
+ version = "0.2.17"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
772
+ dependencies = [
773
+ "cfg-if",
774
+ "libc",
775
+ "wasi",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "getrandom"
780
+ version = "0.3.4"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
783
+ dependencies = [
784
+ "cfg-if",
785
+ "libc",
786
+ "r-efi 5.3.0",
787
+ "wasip2",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "getrandom"
792
+ version = "0.4.2"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
795
+ dependencies = [
796
+ "cfg-if",
797
+ "libc",
798
+ "r-efi 6.0.0",
799
+ "wasip2",
800
+ "wasip3",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "gix"
805
+ version = "0.72.1"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "01237e8d3d78581f71642be8b0c2ae8c0b2b5c251c9c5d9ebbea3c1ea280dce8"
808
+ dependencies = [
809
+ "gix-actor",
810
+ "gix-attributes",
811
+ "gix-command",
812
+ "gix-commitgraph",
813
+ "gix-config",
814
+ "gix-credentials",
815
+ "gix-date",
816
+ "gix-diff",
817
+ "gix-discover",
818
+ "gix-features",
819
+ "gix-filter",
820
+ "gix-fs",
821
+ "gix-glob",
822
+ "gix-hash",
823
+ "gix-hashtable",
824
+ "gix-ignore",
825
+ "gix-index",
826
+ "gix-lock",
827
+ "gix-negotiate",
828
+ "gix-object",
829
+ "gix-odb",
830
+ "gix-pack",
831
+ "gix-path",
832
+ "gix-pathspec",
833
+ "gix-prompt",
834
+ "gix-protocol",
835
+ "gix-ref",
836
+ "gix-refspec",
837
+ "gix-revision",
838
+ "gix-revwalk",
839
+ "gix-sec",
840
+ "gix-shallow",
841
+ "gix-submodule",
842
+ "gix-tempfile",
843
+ "gix-trace",
844
+ "gix-transport",
845
+ "gix-traverse",
846
+ "gix-url",
847
+ "gix-utils",
848
+ "gix-validate",
849
+ "gix-worktree",
850
+ "once_cell",
851
+ "smallvec",
852
+ "thiserror",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "gix-actor"
857
+ version = "0.35.6"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "987a51a7e66db6ef4dc030418eb2a42af6b913a79edd8670766122d8af3ba59e"
860
+ dependencies = [
861
+ "bstr",
862
+ "gix-date",
863
+ "gix-utils",
864
+ "itoa",
865
+ "thiserror",
866
+ "winnow 0.7.15",
867
+ ]
868
+
869
+ [[package]]
870
+ name = "gix-attributes"
871
+ version = "0.26.1"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "6f50d813d5c2ce9463ba0c29eea90060df08e38ad8f34b8a192259f8bce5c078"
874
+ dependencies = [
875
+ "bstr",
876
+ "gix-glob",
877
+ "gix-path",
878
+ "gix-quote",
879
+ "gix-trace",
880
+ "kstring",
881
+ "smallvec",
882
+ "thiserror",
883
+ "unicode-bom",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "gix-bitmap"
888
+ version = "0.2.16"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "d982fc7ef0608e669851d0d2a6141dae74c60d5a27e8daa451f2a4857bbf41e2"
891
+ dependencies = [
892
+ "thiserror",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "gix-chunk"
897
+ version = "0.4.12"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "5c356b3825677cb6ff579551bb8311a81821e184453cbd105e2fc5311b288eeb"
900
+ dependencies = [
901
+ "thiserror",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "gix-command"
906
+ version = "0.6.5"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "46f9c425730a654835351e6da8c3c69ba1804f8b8d4e96d027254151138d5c64"
909
+ dependencies = [
910
+ "bstr",
911
+ "gix-path",
912
+ "gix-quote",
913
+ "gix-trace",
914
+ "shell-words",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "gix-commitgraph"
919
+ version = "0.28.0"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "e05050fd6caa6c731fe3bd7f9485b3b520be062d3d139cb2626e052d6c127951"
922
+ dependencies = [
923
+ "bstr",
924
+ "gix-chunk",
925
+ "gix-hash",
926
+ "memmap2",
927
+ "thiserror",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "gix-config"
932
+ version = "0.45.1"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "48f3c8f357ae049bfb77493c2ec9010f58cfc924ae485e1116c3718fc0f0d881"
935
+ dependencies = [
936
+ "bstr",
937
+ "gix-config-value",
938
+ "gix-features",
939
+ "gix-glob",
940
+ "gix-path",
941
+ "gix-ref",
942
+ "gix-sec",
943
+ "memchr",
944
+ "once_cell",
945
+ "smallvec",
946
+ "thiserror",
947
+ "unicode-bom",
948
+ "winnow 0.7.15",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "gix-config-value"
953
+ version = "0.15.3"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "2c489abb061c74b0c3ad790e24a606ef968cebab48ec673d6a891ece7d5aef64"
956
+ dependencies = [
957
+ "bitflags",
958
+ "bstr",
959
+ "gix-path",
960
+ "libc",
961
+ "thiserror",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "gix-credentials"
966
+ version = "0.29.0"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "ce1c7307e36026b6088e5b12014ffe6d4f509c911ee453e22a7be4003a159c9b"
969
+ dependencies = [
970
+ "bstr",
971
+ "gix-command",
972
+ "gix-config-value",
973
+ "gix-path",
974
+ "gix-prompt",
975
+ "gix-sec",
976
+ "gix-trace",
977
+ "gix-url",
978
+ "thiserror",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "gix-date"
983
+ version = "0.10.7"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "661245d045aa7c16ba4244daaabd823c562c3e45f1f25b816be2c57ee09f2171"
986
+ dependencies = [
987
+ "bstr",
988
+ "itoa",
989
+ "jiff",
990
+ "smallvec",
991
+ "thiserror",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "gix-diff"
996
+ version = "0.52.1"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "5e9b43e95fe352da82a969f0c84ff860c2de3e724d93f6681fedbcd6c917f252"
999
+ dependencies = [
1000
+ "bstr",
1001
+ "gix-hash",
1002
+ "gix-object",
1003
+ "thiserror",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "gix-discover"
1008
+ version = "0.40.1"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "dccfe3e25b4ea46083916c56db3ba9d1e6ef6dce54da485f0463f9fc0fe1837c"
1011
+ dependencies = [
1012
+ "bstr",
1013
+ "dunce",
1014
+ "gix-fs",
1015
+ "gix-hash",
1016
+ "gix-path",
1017
+ "gix-ref",
1018
+ "gix-sec",
1019
+ "thiserror",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "gix-features"
1024
+ version = "0.42.1"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "56f4399af6ec4fd9db84dd4cf9656c5c785ab492ab40a7c27ea92b4241923fed"
1027
+ dependencies = [
1028
+ "crc32fast",
1029
+ "crossbeam-channel",
1030
+ "flate2",
1031
+ "gix-path",
1032
+ "gix-trace",
1033
+ "gix-utils",
1034
+ "libc",
1035
+ "once_cell",
1036
+ "parking_lot",
1037
+ "prodash",
1038
+ "thiserror",
1039
+ "walkdir",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "gix-filter"
1044
+ version = "0.19.2"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "ecf004912949bbcf308d71aac4458321748ecb59f4d046830d25214208c471f1"
1047
+ dependencies = [
1048
+ "bstr",
1049
+ "encoding_rs",
1050
+ "gix-attributes",
1051
+ "gix-command",
1052
+ "gix-hash",
1053
+ "gix-object",
1054
+ "gix-packetline-blocking",
1055
+ "gix-path",
1056
+ "gix-quote",
1057
+ "gix-trace",
1058
+ "gix-utils",
1059
+ "smallvec",
1060
+ "thiserror",
1061
+ ]
1062
+
1063
+ [[package]]
1064
+ name = "gix-fs"
1065
+ version = "0.15.0"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "67a0637149b4ef24d3ea55f81f77231401c8463fae6da27331c987957eb597c7"
1068
+ dependencies = [
1069
+ "bstr",
1070
+ "fastrand",
1071
+ "gix-features",
1072
+ "gix-path",
1073
+ "gix-utils",
1074
+ "thiserror",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "gix-glob"
1079
+ version = "0.20.1"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "90181472925b587f6079698f79065ff64786e6d6c14089517a1972bca99fb6e9"
1082
+ dependencies = [
1083
+ "bitflags",
1084
+ "bstr",
1085
+ "gix-features",
1086
+ "gix-path",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "gix-hash"
1091
+ version = "0.18.0"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "8d4900562c662852a6b42e2ef03442eccebf24f047d8eab4f23bc12ef0d785d8"
1094
+ dependencies = [
1095
+ "faster-hex",
1096
+ "gix-features",
1097
+ "sha1-checked",
1098
+ "thiserror",
1099
+ ]
1100
+
1101
+ [[package]]
1102
+ name = "gix-hashtable"
1103
+ version = "0.8.1"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "b5b5cb3c308b4144f2612ff64e32130e641279fcf1a84d8d40dad843b4f64904"
1106
+ dependencies = [
1107
+ "gix-hash",
1108
+ "hashbrown 0.14.5",
1109
+ "parking_lot",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "gix-ignore"
1114
+ version = "0.15.0"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "ae358c3c96660b10abc7da63c06788dfded603e717edbd19e38c6477911b71c8"
1117
+ dependencies = [
1118
+ "bstr",
1119
+ "gix-glob",
1120
+ "gix-path",
1121
+ "gix-trace",
1122
+ "unicode-bom",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "gix-index"
1127
+ version = "0.40.1"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "b38e919efd59cb8275d23ad2394b2ab9d002007b27620e145d866d546403b665"
1130
+ dependencies = [
1131
+ "bitflags",
1132
+ "bstr",
1133
+ "filetime",
1134
+ "fnv",
1135
+ "gix-bitmap",
1136
+ "gix-features",
1137
+ "gix-fs",
1138
+ "gix-hash",
1139
+ "gix-lock",
1140
+ "gix-object",
1141
+ "gix-traverse",
1142
+ "gix-utils",
1143
+ "gix-validate",
1144
+ "hashbrown 0.14.5",
1145
+ "itoa",
1146
+ "libc",
1147
+ "memmap2",
1148
+ "rustix",
1149
+ "smallvec",
1150
+ "thiserror",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "gix-lock"
1155
+ version = "17.1.0"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "570f8b034659f256366dc90f1a24924902f20acccd6a15be96d44d1269e7a796"
1158
+ dependencies = [
1159
+ "gix-tempfile",
1160
+ "gix-utils",
1161
+ "thiserror",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "gix-negotiate"
1166
+ version = "0.20.1"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "2e1ea901acc4d5b44553132a29e8697210cb0e739b2d9752d713072e9391e3c9"
1169
+ dependencies = [
1170
+ "bitflags",
1171
+ "gix-commitgraph",
1172
+ "gix-date",
1173
+ "gix-hash",
1174
+ "gix-object",
1175
+ "gix-revwalk",
1176
+ "smallvec",
1177
+ "thiserror",
1178
+ ]
1179
+
1180
+ [[package]]
1181
+ name = "gix-object"
1182
+ version = "0.49.1"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "d957ca3640c555d48bb27f8278c67169fa1380ed94f6452c5590742524c40fbb"
1185
+ dependencies = [
1186
+ "bstr",
1187
+ "gix-actor",
1188
+ "gix-date",
1189
+ "gix-features",
1190
+ "gix-hash",
1191
+ "gix-hashtable",
1192
+ "gix-path",
1193
+ "gix-utils",
1194
+ "gix-validate",
1195
+ "itoa",
1196
+ "smallvec",
1197
+ "thiserror",
1198
+ "winnow 0.7.15",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "gix-odb"
1203
+ version = "0.69.1"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "868f703905fdbcfc1bd750942f82419903ecb7039f5288adb5206d6de405e0c9"
1206
+ dependencies = [
1207
+ "arc-swap",
1208
+ "gix-date",
1209
+ "gix-features",
1210
+ "gix-fs",
1211
+ "gix-hash",
1212
+ "gix-hashtable",
1213
+ "gix-object",
1214
+ "gix-pack",
1215
+ "gix-path",
1216
+ "gix-quote",
1217
+ "parking_lot",
1218
+ "tempfile",
1219
+ "thiserror",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "gix-pack"
1224
+ version = "0.59.1"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "9d49c55d69c8449f2a0a5a77eb9cbacfebb6b0e2f1215f0fc23a4cb60528a450"
1227
+ dependencies = [
1228
+ "clru",
1229
+ "gix-chunk",
1230
+ "gix-features",
1231
+ "gix-hash",
1232
+ "gix-hashtable",
1233
+ "gix-object",
1234
+ "gix-path",
1235
+ "gix-tempfile",
1236
+ "memmap2",
1237
+ "parking_lot",
1238
+ "smallvec",
1239
+ "thiserror",
1240
+ "uluru",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "gix-packetline"
1245
+ version = "0.19.3"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "64286a8b5148e76ab80932e72762dd27ccf6169dd7a134b027c8a262a8262fcf"
1248
+ dependencies = [
1249
+ "bstr",
1250
+ "faster-hex",
1251
+ "gix-trace",
1252
+ "thiserror",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "gix-packetline-blocking"
1257
+ version = "0.19.3"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "89c59c3ad41e68cb38547d849e9ef5ccfc0d00f282244ba1441ae856be54d001"
1260
+ dependencies = [
1261
+ "bstr",
1262
+ "faster-hex",
1263
+ "gix-trace",
1264
+ "thiserror",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "gix-path"
1269
+ version = "0.10.22"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "7cb06c3e4f8eed6e24fd915fa93145e28a511f4ea0e768bae16673e05ed3f366"
1272
+ dependencies = [
1273
+ "bstr",
1274
+ "gix-trace",
1275
+ "gix-validate",
1276
+ "thiserror",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "gix-pathspec"
1281
+ version = "0.11.0"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "ce061c50e5f8f7c830cacb3da3e999ae935e283ce8522249f0ce2256d110979d"
1284
+ dependencies = [
1285
+ "bitflags",
1286
+ "bstr",
1287
+ "gix-attributes",
1288
+ "gix-config-value",
1289
+ "gix-glob",
1290
+ "gix-path",
1291
+ "thiserror",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "gix-prompt"
1296
+ version = "0.11.2"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "868e6516dfa16fdcbc5f8c935167d085f2ae65ccd4c9476a4319579d12a69d8d"
1299
+ dependencies = [
1300
+ "gix-command",
1301
+ "gix-config-value",
1302
+ "parking_lot",
1303
+ "rustix",
1304
+ "thiserror",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "gix-protocol"
1309
+ version = "0.50.1"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "f5c17d78bb0414f8d60b5f952196dc2e47ec320dca885de9128ecdb4a0e38401"
1312
+ dependencies = [
1313
+ "bstr",
1314
+ "gix-credentials",
1315
+ "gix-date",
1316
+ "gix-features",
1317
+ "gix-hash",
1318
+ "gix-lock",
1319
+ "gix-negotiate",
1320
+ "gix-object",
1321
+ "gix-ref",
1322
+ "gix-refspec",
1323
+ "gix-revwalk",
1324
+ "gix-shallow",
1325
+ "gix-trace",
1326
+ "gix-transport",
1327
+ "gix-utils",
1328
+ "maybe-async",
1329
+ "thiserror",
1330
+ "winnow 0.7.15",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "gix-quote"
1335
+ version = "0.6.2"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "96fc2ff2ec8cc0c92807f02eab1f00eb02619fc2810d13dc42679492fcc36757"
1338
+ dependencies = [
1339
+ "bstr",
1340
+ "gix-utils",
1341
+ "thiserror",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "gix-ref"
1346
+ version = "0.52.1"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "d1b7985657029684d759f656b09abc3e2c73085596d5cdb494428823970a7762"
1349
+ dependencies = [
1350
+ "gix-actor",
1351
+ "gix-features",
1352
+ "gix-fs",
1353
+ "gix-hash",
1354
+ "gix-lock",
1355
+ "gix-object",
1356
+ "gix-path",
1357
+ "gix-tempfile",
1358
+ "gix-utils",
1359
+ "gix-validate",
1360
+ "memmap2",
1361
+ "thiserror",
1362
+ "winnow 0.7.15",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "gix-refspec"
1367
+ version = "0.30.1"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "445ed14e3db78e8e79980085e3723df94e1c8163b3ae5bc8ed6a8fe6cf983b42"
1370
+ dependencies = [
1371
+ "bstr",
1372
+ "gix-hash",
1373
+ "gix-revision",
1374
+ "gix-validate",
1375
+ "smallvec",
1376
+ "thiserror",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "gix-revision"
1381
+ version = "0.34.1"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "78d0b8e5cbd1c329e25383e088cb8f17439414021a643b30afa5146b71e3c65d"
1384
+ dependencies = [
1385
+ "bstr",
1386
+ "gix-commitgraph",
1387
+ "gix-date",
1388
+ "gix-hash",
1389
+ "gix-object",
1390
+ "gix-revwalk",
1391
+ "thiserror",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "gix-revwalk"
1396
+ version = "0.20.1"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "1bc756b73225bf005ddeb871d1ca7b3c33e2417d0d53e56effa5a36765b52b28"
1399
+ dependencies = [
1400
+ "gix-commitgraph",
1401
+ "gix-date",
1402
+ "gix-hash",
1403
+ "gix-hashtable",
1404
+ "gix-object",
1405
+ "smallvec",
1406
+ "thiserror",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "gix-sec"
1411
+ version = "0.11.0"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "d0dabbc78c759ecc006b970339394951b2c8e1e38a37b072c105b80b84c308fd"
1414
+ dependencies = [
1415
+ "bitflags",
1416
+ "gix-path",
1417
+ "libc",
1418
+ "windows-sys 0.59.0",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "gix-shallow"
1423
+ version = "0.4.0"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "6b9a6f6e34d6ede08f522d89e5c7990b4f60524b8ae6ebf8e850963828119ad4"
1426
+ dependencies = [
1427
+ "bstr",
1428
+ "gix-hash",
1429
+ "gix-lock",
1430
+ "thiserror",
1431
+ ]
1432
+
1433
+ [[package]]
1434
+ name = "gix-submodule"
1435
+ version = "0.19.1"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "5f51472f05a450cc61bc91ed2f62fb06e31e2bbb31c420bc4be8793f26c8b0c1"
1438
+ dependencies = [
1439
+ "bstr",
1440
+ "gix-config",
1441
+ "gix-path",
1442
+ "gix-pathspec",
1443
+ "gix-refspec",
1444
+ "gix-url",
1445
+ "thiserror",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "gix-tempfile"
1450
+ version = "17.1.0"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "c750e8c008453a2dba67a2b0d928b7716e05da31173a3f5e351d5457ad4470aa"
1453
+ dependencies = [
1454
+ "gix-fs",
1455
+ "libc",
1456
+ "once_cell",
1457
+ "parking_lot",
1458
+ "tempfile",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "gix-trace"
1463
+ version = "0.1.20"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "44dc45eae785c0eb14173e0f152e6e224dcf4d45b6a6999a3aed22af541ad678"
1466
+
1467
+ [[package]]
1468
+ name = "gix-transport"
1469
+ version = "0.47.0"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "edfe22ba26d4b65c17879f12b9882eafe65d3c8611c933b272fce2c10f546f59"
1472
+ dependencies = [
1473
+ "bstr",
1474
+ "gix-command",
1475
+ "gix-features",
1476
+ "gix-packetline",
1477
+ "gix-quote",
1478
+ "gix-sec",
1479
+ "gix-url",
1480
+ "thiserror",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "gix-traverse"
1485
+ version = "0.46.2"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "b8648172f85aca3d6e919c06504b7ac26baef54e04c55eb0100fa588c102cc33"
1488
+ dependencies = [
1489
+ "bitflags",
1490
+ "gix-commitgraph",
1491
+ "gix-date",
1492
+ "gix-hash",
1493
+ "gix-hashtable",
1494
+ "gix-object",
1495
+ "gix-revwalk",
1496
+ "smallvec",
1497
+ "thiserror",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "gix-url"
1502
+ version = "0.31.0"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "42a1ad0b04a5718b5cb233e6888e52a9b627846296161d81dcc5eb9203ec84b8"
1505
+ dependencies = [
1506
+ "bstr",
1507
+ "gix-features",
1508
+ "gix-path",
1509
+ "percent-encoding",
1510
+ "thiserror",
1511
+ "url",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "gix-utils"
1516
+ version = "0.3.3"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "66c50966184123caf580ffa64e28031a878597f1c7fceb8fe19566c38eb1b771"
1519
+ dependencies = [
1520
+ "fastrand",
1521
+ "unicode-normalization",
1522
+ ]
1523
+
1524
+ [[package]]
1525
+ name = "gix-validate"
1526
+ version = "0.10.1"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "5b1e63a5b516e970a594f870ed4571a8fdcb8a344e7bd407a20db8bd61dbfde4"
1529
+ dependencies = [
1530
+ "bstr",
1531
+ "thiserror",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "gix-worktree"
1536
+ version = "0.41.0"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "54f1916f8d928268300c977d773dd70a8746b646873b77add0a34876a8c847e9"
1539
+ dependencies = [
1540
+ "bstr",
1541
+ "gix-attributes",
1542
+ "gix-features",
1543
+ "gix-fs",
1544
+ "gix-glob",
1545
+ "gix-hash",
1546
+ "gix-ignore",
1547
+ "gix-index",
1548
+ "gix-object",
1549
+ "gix-path",
1550
+ "gix-validate",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "glob"
1555
+ version = "0.3.3"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1558
+
1559
+ [[package]]
1560
+ name = "hash32"
1561
+ version = "0.3.1"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
1564
+ dependencies = [
1565
+ "byteorder",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "hashbrown"
1570
+ version = "0.14.5"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1573
+ dependencies = [
1574
+ "ahash",
1575
+ "allocator-api2",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "hashbrown"
1580
+ version = "0.15.5"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1583
+ dependencies = [
1584
+ "foldhash 0.1.5",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "hashbrown"
1589
+ version = "0.16.1"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1592
+ dependencies = [
1593
+ "allocator-api2",
1594
+ "equivalent",
1595
+ "foldhash 0.2.0",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "hashbrown"
1600
+ version = "0.17.1"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1603
+
1604
+ [[package]]
1605
+ name = "heapless"
1606
+ version = "0.8.0"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
1609
+ dependencies = [
1610
+ "hash32",
1611
+ "stable_deref_trait",
1612
+ ]
1613
+
1614
+ [[package]]
1615
+ name = "heck"
1616
+ version = "0.5.0"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1619
+
1620
+ [[package]]
1621
+ name = "hex"
1622
+ version = "0.4.3"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1625
+
1626
+ [[package]]
1627
+ name = "http"
1628
+ version = "1.4.1"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
1631
+ dependencies = [
1632
+ "bytes",
1633
+ "itoa",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "http-body"
1638
+ version = "1.0.1"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1641
+ dependencies = [
1642
+ "bytes",
1643
+ "http",
1644
+ ]
1645
+
1646
+ [[package]]
1647
+ name = "http-body-util"
1648
+ version = "0.1.3"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1651
+ dependencies = [
1652
+ "bytes",
1653
+ "futures-core",
1654
+ "http",
1655
+ "http-body",
1656
+ "pin-project-lite",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "httparse"
1661
+ version = "1.10.1"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1664
+
1665
+ [[package]]
1666
+ name = "httpdate"
1667
+ version = "1.0.3"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1670
+
1671
+ [[package]]
1672
+ name = "hyper"
1673
+ version = "1.10.1"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1676
+ dependencies = [
1677
+ "atomic-waker",
1678
+ "bytes",
1679
+ "futures-channel",
1680
+ "futures-core",
1681
+ "http",
1682
+ "http-body",
1683
+ "httparse",
1684
+ "httpdate",
1685
+ "itoa",
1686
+ "pin-project-lite",
1687
+ "smallvec",
1688
+ "tokio",
1689
+ "want",
1690
+ ]
1691
+
1692
+ [[package]]
1693
+ name = "hyper-util"
1694
+ version = "0.1.20"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1697
+ dependencies = [
1698
+ "base64",
1699
+ "bytes",
1700
+ "futures-channel",
1701
+ "futures-util",
1702
+ "http",
1703
+ "http-body",
1704
+ "hyper",
1705
+ "ipnet",
1706
+ "libc",
1707
+ "percent-encoding",
1708
+ "pin-project-lite",
1709
+ "socket2",
1710
+ "tokio",
1711
+ "tower-service",
1712
+ "tracing",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "iana-time-zone"
1717
+ version = "0.1.65"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1720
+ dependencies = [
1721
+ "android_system_properties",
1722
+ "core-foundation-sys",
1723
+ "iana-time-zone-haiku",
1724
+ "js-sys",
1725
+ "log",
1726
+ "wasm-bindgen",
1727
+ "windows-core",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "iana-time-zone-haiku"
1732
+ version = "0.1.2"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1735
+ dependencies = [
1736
+ "cc",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "icu_collections"
1741
+ version = "2.2.0"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1744
+ dependencies = [
1745
+ "displaydoc",
1746
+ "potential_utf",
1747
+ "utf8_iter",
1748
+ "yoke",
1749
+ "zerofrom",
1750
+ "zerovec",
1751
+ ]
1752
+
1753
+ [[package]]
1754
+ name = "icu_locale_core"
1755
+ version = "2.2.0"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1758
+ dependencies = [
1759
+ "displaydoc",
1760
+ "litemap",
1761
+ "tinystr",
1762
+ "writeable",
1763
+ "zerovec",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "icu_normalizer"
1768
+ version = "2.2.0"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1771
+ dependencies = [
1772
+ "icu_collections",
1773
+ "icu_normalizer_data",
1774
+ "icu_properties",
1775
+ "icu_provider",
1776
+ "smallvec",
1777
+ "zerovec",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "icu_normalizer_data"
1782
+ version = "2.2.0"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1785
+
1786
+ [[package]]
1787
+ name = "icu_properties"
1788
+ version = "2.2.0"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1791
+ dependencies = [
1792
+ "icu_collections",
1793
+ "icu_locale_core",
1794
+ "icu_properties_data",
1795
+ "icu_provider",
1796
+ "zerotrie",
1797
+ "zerovec",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "icu_properties_data"
1802
+ version = "2.2.0"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1805
+
1806
+ [[package]]
1807
+ name = "icu_provider"
1808
+ version = "2.2.0"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1811
+ dependencies = [
1812
+ "displaydoc",
1813
+ "icu_locale_core",
1814
+ "writeable",
1815
+ "yoke",
1816
+ "zerofrom",
1817
+ "zerotrie",
1818
+ "zerovec",
1819
+ ]
1820
+
1821
+ [[package]]
1822
+ name = "id-arena"
1823
+ version = "2.3.0"
1824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1825
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1826
+
1827
+ [[package]]
1828
+ name = "idna"
1829
+ version = "1.1.0"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1832
+ dependencies = [
1833
+ "idna_adapter",
1834
+ "smallvec",
1835
+ "utf8_iter",
1836
+ ]
1837
+
1838
+ [[package]]
1839
+ name = "idna_adapter"
1840
+ version = "1.2.2"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1843
+ dependencies = [
1844
+ "icu_normalizer",
1845
+ "icu_properties",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "indexmap"
1850
+ version = "2.14.0"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1853
+ dependencies = [
1854
+ "equivalent",
1855
+ "hashbrown 0.17.1",
1856
+ "serde",
1857
+ "serde_core",
1858
+ ]
1859
+
1860
+ [[package]]
1861
+ name = "indoc"
1862
+ version = "2.0.7"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1865
+ dependencies = [
1866
+ "rustversion",
1867
+ ]
1868
+
1869
+ [[package]]
1870
+ name = "ipnet"
1871
+ version = "2.12.0"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1874
+
1875
+ [[package]]
1876
+ name = "is_terminal_polyfill"
1877
+ version = "1.70.2"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1880
+
1881
+ [[package]]
1882
+ name = "itoa"
1883
+ version = "1.0.18"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1886
+
1887
+ [[package]]
1888
+ name = "jiff"
1889
+ version = "0.2.28"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "4603d3033e49e2b0e31229fcab20a5d40089c607d975cd9c80551dc69eed9102"
1892
+ dependencies = [
1893
+ "jiff-static",
1894
+ "jiff-tzdb-platform",
1895
+ "log",
1896
+ "portable-atomic",
1897
+ "portable-atomic-util",
1898
+ "serde_core",
1899
+ "windows-link",
1900
+ ]
1901
+
1902
+ [[package]]
1903
+ name = "jiff-static"
1904
+ version = "0.2.28"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "782d32378dddf207193ac91cefb848ad41abb58195c95168e1291227a0832b47"
1907
+ dependencies = [
1908
+ "proc-macro2",
1909
+ "quote",
1910
+ "syn",
1911
+ ]
1912
+
1913
+ [[package]]
1914
+ name = "jiff-tzdb"
1915
+ version = "0.1.6"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "c900ef84826f1338a557697dc8fc601df9ca9af4ac137c7fb61d4c6f2dfd3076"
1918
+
1919
+ [[package]]
1920
+ name = "jiff-tzdb-platform"
1921
+ version = "0.1.3"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
1924
+ dependencies = [
1925
+ "jiff-tzdb",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "js-sys"
1930
+ version = "0.3.99"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
1933
+ dependencies = [
1934
+ "cfg-if",
1935
+ "futures-util",
1936
+ "once_cell",
1937
+ "wasm-bindgen",
1938
+ ]
1939
+
1940
+ [[package]]
1941
+ name = "jsonschema"
1942
+ version = "0.30.0"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "f1b46a0365a611fbf1d2143104dcf910aada96fafd295bab16c60b802bf6fa1d"
1945
+ dependencies = [
1946
+ "ahash",
1947
+ "base64",
1948
+ "bytecount",
1949
+ "email_address",
1950
+ "fancy-regex",
1951
+ "fraction",
1952
+ "idna",
1953
+ "itoa",
1954
+ "num-cmp",
1955
+ "num-traits",
1956
+ "once_cell",
1957
+ "percent-encoding",
1958
+ "referencing",
1959
+ "regex",
1960
+ "regex-syntax",
1961
+ "reqwest",
1962
+ "serde",
1963
+ "serde_json",
1964
+ "uuid-simd",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "kstring"
1969
+ version = "2.0.2"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "558bf9508a558512042d3095138b1f7b8fe90c5467d94f9f1da28b3731c5dbd1"
1972
+ dependencies = [
1973
+ "static_assertions",
1974
+ ]
1975
+
1976
+ [[package]]
1977
+ name = "lazy_static"
1978
+ version = "1.5.0"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1981
+
1982
+ [[package]]
1983
+ name = "leb128fmt"
1984
+ version = "0.1.0"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1987
+
1988
+ [[package]]
1989
+ name = "libc"
1990
+ version = "0.2.186"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1993
+
1994
+ [[package]]
1995
+ name = "libloading"
1996
+ version = "0.8.9"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1999
+ dependencies = [
2000
+ "cfg-if",
2001
+ "windows-link",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "linux-raw-sys"
2006
+ version = "0.12.1"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
2009
+
2010
+ [[package]]
2011
+ name = "litemap"
2012
+ version = "0.8.2"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
2015
+
2016
+ [[package]]
2017
+ name = "lock_api"
2018
+ version = "0.4.14"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
2021
+ dependencies = [
2022
+ "scopeguard",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "log"
2027
+ version = "0.4.32"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
2030
+
2031
+ [[package]]
2032
+ name = "matchers"
2033
+ version = "0.2.0"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
2036
+ dependencies = [
2037
+ "regex-automata",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "matchit"
2042
+ version = "0.8.4"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
2045
+
2046
+ [[package]]
2047
+ name = "maybe-async"
2048
+ version = "0.2.11"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "746873a384ad60adc5db74471dfaba74bd278afbdcfd81db93fafcdfc8b5ca0c"
2051
+ dependencies = [
2052
+ "proc-macro2",
2053
+ "quote",
2054
+ "syn",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "memchr"
2059
+ version = "2.8.1"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
2062
+
2063
+ [[package]]
2064
+ name = "memmap2"
2065
+ version = "0.9.10"
2066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2067
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
2068
+ dependencies = [
2069
+ "libc",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "memoffset"
2074
+ version = "0.9.1"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2077
+ dependencies = [
2078
+ "autocfg",
2079
+ ]
2080
+
2081
+ [[package]]
2082
+ name = "mime"
2083
+ version = "0.3.17"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2086
+
2087
+ [[package]]
2088
+ name = "miniz_oxide"
2089
+ version = "0.8.9"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2092
+ dependencies = [
2093
+ "adler2",
2094
+ "simd-adler32",
2095
+ ]
2096
+
2097
+ [[package]]
2098
+ name = "mio"
2099
+ version = "1.2.1"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
2102
+ dependencies = [
2103
+ "libc",
2104
+ "wasi",
2105
+ "windows-sys 0.61.2",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "nap-cli"
2110
+ version = "0.1.0"
2111
+ dependencies = [
2112
+ "anyhow",
2113
+ "chrono",
2114
+ "clap",
2115
+ "nap-core",
2116
+ "serde",
2117
+ "serde_json",
2118
+ "serde_yaml",
2119
+ "tracing",
2120
+ "tracing-subscriber",
2121
+ ]
2122
+
2123
+ [[package]]
2124
+ name = "nap-core"
2125
+ version = "0.1.0"
2126
+ dependencies = [
2127
+ "anyhow",
2128
+ "chrono",
2129
+ "ed25519-dalek",
2130
+ "gix",
2131
+ "hex",
2132
+ "jsonschema",
2133
+ "rand",
2134
+ "serde",
2135
+ "serde_json",
2136
+ "serde_yaml",
2137
+ "sha2",
2138
+ "similar",
2139
+ "tempfile",
2140
+ "thiserror",
2141
+ "tracing",
2142
+ "ulid",
2143
+ ]
2144
+
2145
+ [[package]]
2146
+ name = "nap-server"
2147
+ version = "0.1.0"
2148
+ dependencies = [
2149
+ "anyhow",
2150
+ "axum",
2151
+ "chrono",
2152
+ "nap-core",
2153
+ "serde",
2154
+ "serde_json",
2155
+ "serde_yaml",
2156
+ "tokio",
2157
+ "tower",
2158
+ "tower-http",
2159
+ "tracing",
2160
+ "tracing-subscriber",
2161
+ ]
2162
+
2163
+ [[package]]
2164
+ name = "napi"
2165
+ version = "2.16.17"
2166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2167
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
2168
+ dependencies = [
2169
+ "bitflags",
2170
+ "ctor",
2171
+ "napi-derive",
2172
+ "napi-sys",
2173
+ "once_cell",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "napi-build"
2178
+ version = "2.3.2"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
2181
+
2182
+ [[package]]
2183
+ name = "napi-derive"
2184
+ version = "2.16.13"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
2187
+ dependencies = [
2188
+ "cfg-if",
2189
+ "convert_case",
2190
+ "napi-derive-backend",
2191
+ "proc-macro2",
2192
+ "quote",
2193
+ "syn",
2194
+ ]
2195
+
2196
+ [[package]]
2197
+ name = "napi-derive-backend"
2198
+ version = "1.0.75"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
2201
+ dependencies = [
2202
+ "convert_case",
2203
+ "once_cell",
2204
+ "proc-macro2",
2205
+ "quote",
2206
+ "regex",
2207
+ "semver",
2208
+ "syn",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "napi-sys"
2213
+ version = "2.4.0"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
2216
+ dependencies = [
2217
+ "libloading",
2218
+ ]
2219
+
2220
+ [[package]]
2221
+ name = "narrativeengine-codegen"
2222
+ version = "0.1.0"
2223
+ dependencies = [
2224
+ "anyhow",
2225
+ "clap",
2226
+ "narrativeengine-core",
2227
+ "serde_json",
2228
+ ]
2229
+
2230
+ [[package]]
2231
+ name = "narrativeengine-core"
2232
+ version = "0.1.0"
2233
+ dependencies = [
2234
+ "nap-core",
2235
+ "proptest",
2236
+ "rstest",
2237
+ "schemars",
2238
+ "serde",
2239
+ "serde_json",
2240
+ "thiserror",
2241
+ ]
2242
+
2243
+ [[package]]
2244
+ name = "narrativeengine-py"
2245
+ version = "0.1.0"
2246
+ dependencies = [
2247
+ "narrativeengine-core",
2248
+ "pyo3",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "narrativeengine-ts"
2253
+ version = "0.1.0"
2254
+ dependencies = [
2255
+ "napi",
2256
+ "napi-build",
2257
+ "napi-derive",
2258
+ "narrativeengine-core",
2259
+ ]
2260
+
2261
+ [[package]]
2262
+ name = "nu-ansi-term"
2263
+ version = "0.50.3"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2266
+ dependencies = [
2267
+ "windows-sys 0.61.2",
2268
+ ]
2269
+
2270
+ [[package]]
2271
+ name = "num"
2272
+ version = "0.4.3"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
2275
+ dependencies = [
2276
+ "num-bigint",
2277
+ "num-complex",
2278
+ "num-integer",
2279
+ "num-iter",
2280
+ "num-rational",
2281
+ "num-traits",
2282
+ ]
2283
+
2284
+ [[package]]
2285
+ name = "num-bigint"
2286
+ version = "0.4.6"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2289
+ dependencies = [
2290
+ "num-integer",
2291
+ "num-traits",
2292
+ ]
2293
+
2294
+ [[package]]
2295
+ name = "num-cmp"
2296
+ version = "0.1.0"
2297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2298
+ checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
2299
+
2300
+ [[package]]
2301
+ name = "num-complex"
2302
+ version = "0.4.6"
2303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2304
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
2305
+ dependencies = [
2306
+ "num-traits",
2307
+ ]
2308
+
2309
+ [[package]]
2310
+ name = "num-integer"
2311
+ version = "0.1.46"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2314
+ dependencies = [
2315
+ "num-traits",
2316
+ ]
2317
+
2318
+ [[package]]
2319
+ name = "num-iter"
2320
+ version = "0.1.45"
2321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2322
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2323
+ dependencies = [
2324
+ "autocfg",
2325
+ "num-integer",
2326
+ "num-traits",
2327
+ ]
2328
+
2329
+ [[package]]
2330
+ name = "num-rational"
2331
+ version = "0.4.2"
2332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2333
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
2334
+ dependencies = [
2335
+ "num-bigint",
2336
+ "num-integer",
2337
+ "num-traits",
2338
+ ]
2339
+
2340
+ [[package]]
2341
+ name = "num-traits"
2342
+ version = "0.2.19"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2345
+ dependencies = [
2346
+ "autocfg",
2347
+ ]
2348
+
2349
+ [[package]]
2350
+ name = "once_cell"
2351
+ version = "1.21.4"
2352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2353
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2354
+
2355
+ [[package]]
2356
+ name = "once_cell_polyfill"
2357
+ version = "1.70.2"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2360
+
2361
+ [[package]]
2362
+ name = "outref"
2363
+ version = "0.5.2"
2364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2365
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
2366
+
2367
+ [[package]]
2368
+ name = "parking_lot"
2369
+ version = "0.12.5"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2372
+ dependencies = [
2373
+ "lock_api",
2374
+ "parking_lot_core",
2375
+ ]
2376
+
2377
+ [[package]]
2378
+ name = "parking_lot_core"
2379
+ version = "0.9.12"
2380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2381
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2382
+ dependencies = [
2383
+ "cfg-if",
2384
+ "libc",
2385
+ "redox_syscall",
2386
+ "smallvec",
2387
+ "windows-link",
2388
+ ]
2389
+
2390
+ [[package]]
2391
+ name = "percent-encoding"
2392
+ version = "2.3.2"
2393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2394
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2395
+
2396
+ [[package]]
2397
+ name = "pin-project-lite"
2398
+ version = "0.2.17"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2401
+
2402
+ [[package]]
2403
+ name = "pkcs8"
2404
+ version = "0.10.2"
2405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2406
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2407
+ dependencies = [
2408
+ "der",
2409
+ "spki",
2410
+ ]
2411
+
2412
+ [[package]]
2413
+ name = "portable-atomic"
2414
+ version = "1.13.1"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
2417
+
2418
+ [[package]]
2419
+ name = "portable-atomic-util"
2420
+ version = "0.2.7"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
2423
+ dependencies = [
2424
+ "portable-atomic",
2425
+ ]
2426
+
2427
+ [[package]]
2428
+ name = "potential_utf"
2429
+ version = "0.1.5"
2430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2431
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2432
+ dependencies = [
2433
+ "zerovec",
2434
+ ]
2435
+
2436
+ [[package]]
2437
+ name = "ppv-lite86"
2438
+ version = "0.2.21"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2441
+ dependencies = [
2442
+ "zerocopy",
2443
+ ]
2444
+
2445
+ [[package]]
2446
+ name = "prettyplease"
2447
+ version = "0.2.37"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2450
+ dependencies = [
2451
+ "proc-macro2",
2452
+ "syn",
2453
+ ]
2454
+
2455
+ [[package]]
2456
+ name = "proc-macro-crate"
2457
+ version = "3.5.0"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
2460
+ dependencies = [
2461
+ "toml_edit",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "proc-macro2"
2466
+ version = "1.0.106"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2469
+ dependencies = [
2470
+ "unicode-ident",
2471
+ ]
2472
+
2473
+ [[package]]
2474
+ name = "prodash"
2475
+ version = "29.0.2"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "f04bb108f648884c23b98a0e940ebc2c93c0c3b89f04dbaf7eb8256ce617d1bc"
2478
+ dependencies = [
2479
+ "log",
2480
+ "parking_lot",
2481
+ ]
2482
+
2483
+ [[package]]
2484
+ name = "proptest"
2485
+ version = "1.11.0"
2486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2487
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
2488
+ dependencies = [
2489
+ "bit-set",
2490
+ "bit-vec",
2491
+ "bitflags",
2492
+ "num-traits",
2493
+ "rand",
2494
+ "rand_chacha",
2495
+ "rand_xorshift",
2496
+ "regex-syntax",
2497
+ "rusty-fork",
2498
+ "tempfile",
2499
+ "unarray",
2500
+ ]
2501
+
2502
+ [[package]]
2503
+ name = "pyo3"
2504
+ version = "0.22.6"
2505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2506
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
2507
+ dependencies = [
2508
+ "cfg-if",
2509
+ "indoc",
2510
+ "libc",
2511
+ "memoffset",
2512
+ "once_cell",
2513
+ "portable-atomic",
2514
+ "pyo3-build-config",
2515
+ "pyo3-ffi",
2516
+ "pyo3-macros",
2517
+ "unindent",
2518
+ ]
2519
+
2520
+ [[package]]
2521
+ name = "pyo3-build-config"
2522
+ version = "0.22.6"
2523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2524
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
2525
+ dependencies = [
2526
+ "once_cell",
2527
+ "target-lexicon",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "pyo3-ffi"
2532
+ version = "0.22.6"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
2535
+ dependencies = [
2536
+ "libc",
2537
+ "pyo3-build-config",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "pyo3-macros"
2542
+ version = "0.22.6"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
2545
+ dependencies = [
2546
+ "proc-macro2",
2547
+ "pyo3-macros-backend",
2548
+ "quote",
2549
+ "syn",
2550
+ ]
2551
+
2552
+ [[package]]
2553
+ name = "pyo3-macros-backend"
2554
+ version = "0.22.6"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
2557
+ dependencies = [
2558
+ "heck",
2559
+ "proc-macro2",
2560
+ "pyo3-build-config",
2561
+ "quote",
2562
+ "syn",
2563
+ ]
2564
+
2565
+ [[package]]
2566
+ name = "quick-error"
2567
+ version = "1.2.3"
2568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2569
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2570
+
2571
+ [[package]]
2572
+ name = "quote"
2573
+ version = "1.0.45"
2574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2575
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2576
+ dependencies = [
2577
+ "proc-macro2",
2578
+ ]
2579
+
2580
+ [[package]]
2581
+ name = "r-efi"
2582
+ version = "5.3.0"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2585
+
2586
+ [[package]]
2587
+ name = "r-efi"
2588
+ version = "6.0.0"
2589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2590
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2591
+
2592
+ [[package]]
2593
+ name = "rand"
2594
+ version = "0.9.4"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
2597
+ dependencies = [
2598
+ "rand_chacha",
2599
+ "rand_core 0.9.5",
2600
+ ]
2601
+
2602
+ [[package]]
2603
+ name = "rand_chacha"
2604
+ version = "0.9.0"
2605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2606
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2607
+ dependencies = [
2608
+ "ppv-lite86",
2609
+ "rand_core 0.9.5",
2610
+ ]
2611
+
2612
+ [[package]]
2613
+ name = "rand_core"
2614
+ version = "0.6.4"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2617
+ dependencies = [
2618
+ "getrandom 0.2.17",
2619
+ ]
2620
+
2621
+ [[package]]
2622
+ name = "rand_core"
2623
+ version = "0.9.5"
2624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2625
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2626
+ dependencies = [
2627
+ "getrandom 0.3.4",
2628
+ ]
2629
+
2630
+ [[package]]
2631
+ name = "rand_xorshift"
2632
+ version = "0.4.0"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2635
+ dependencies = [
2636
+ "rand_core 0.9.5",
2637
+ ]
2638
+
2639
+ [[package]]
2640
+ name = "redox_syscall"
2641
+ version = "0.5.18"
2642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2643
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2644
+ dependencies = [
2645
+ "bitflags",
2646
+ ]
2647
+
2648
+ [[package]]
2649
+ name = "ref-cast"
2650
+ version = "1.0.25"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2653
+ dependencies = [
2654
+ "ref-cast-impl",
2655
+ ]
2656
+
2657
+ [[package]]
2658
+ name = "ref-cast-impl"
2659
+ version = "1.0.25"
2660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2661
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2662
+ dependencies = [
2663
+ "proc-macro2",
2664
+ "quote",
2665
+ "syn",
2666
+ ]
2667
+
2668
+ [[package]]
2669
+ name = "referencing"
2670
+ version = "0.30.0"
2671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2672
+ checksum = "c8eff4fa778b5c2a57e85c5f2fe3a709c52f0e60d23146e2151cbef5893f420e"
2673
+ dependencies = [
2674
+ "ahash",
2675
+ "fluent-uri",
2676
+ "once_cell",
2677
+ "parking_lot",
2678
+ "percent-encoding",
2679
+ "serde_json",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "regex"
2684
+ version = "1.12.3"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2687
+ dependencies = [
2688
+ "aho-corasick",
2689
+ "memchr",
2690
+ "regex-automata",
2691
+ "regex-syntax",
2692
+ ]
2693
+
2694
+ [[package]]
2695
+ name = "regex-automata"
2696
+ version = "0.4.14"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2699
+ dependencies = [
2700
+ "aho-corasick",
2701
+ "memchr",
2702
+ "regex-syntax",
2703
+ ]
2704
+
2705
+ [[package]]
2706
+ name = "regex-syntax"
2707
+ version = "0.8.10"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2710
+
2711
+ [[package]]
2712
+ name = "relative-path"
2713
+ version = "1.9.3"
2714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2715
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2716
+
2717
+ [[package]]
2718
+ name = "reqwest"
2719
+ version = "0.12.28"
2720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2722
+ dependencies = [
2723
+ "base64",
2724
+ "bytes",
2725
+ "futures-channel",
2726
+ "futures-core",
2727
+ "futures-util",
2728
+ "http",
2729
+ "http-body",
2730
+ "http-body-util",
2731
+ "hyper",
2732
+ "hyper-util",
2733
+ "js-sys",
2734
+ "log",
2735
+ "percent-encoding",
2736
+ "pin-project-lite",
2737
+ "serde",
2738
+ "serde_json",
2739
+ "serde_urlencoded",
2740
+ "sync_wrapper",
2741
+ "tokio",
2742
+ "tower",
2743
+ "tower-http",
2744
+ "tower-service",
2745
+ "url",
2746
+ "wasm-bindgen",
2747
+ "wasm-bindgen-futures",
2748
+ "web-sys",
2749
+ ]
2750
+
2751
+ [[package]]
2752
+ name = "rstest"
2753
+ version = "0.23.0"
2754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2755
+ checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035"
2756
+ dependencies = [
2757
+ "futures",
2758
+ "futures-timer",
2759
+ "rstest_macros",
2760
+ "rustc_version",
2761
+ ]
2762
+
2763
+ [[package]]
2764
+ name = "rstest_macros"
2765
+ version = "0.23.0"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "825ea780781b15345a146be27eaefb05085e337e869bff01b4306a4fd4a9ad5a"
2768
+ dependencies = [
2769
+ "cfg-if",
2770
+ "glob",
2771
+ "proc-macro-crate",
2772
+ "proc-macro2",
2773
+ "quote",
2774
+ "regex",
2775
+ "relative-path",
2776
+ "rustc_version",
2777
+ "syn",
2778
+ "unicode-ident",
2779
+ ]
2780
+
2781
+ [[package]]
2782
+ name = "rustc_version"
2783
+ version = "0.4.1"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2786
+ dependencies = [
2787
+ "semver",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "rustix"
2792
+ version = "1.1.4"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2795
+ dependencies = [
2796
+ "bitflags",
2797
+ "errno",
2798
+ "libc",
2799
+ "linux-raw-sys",
2800
+ "windows-sys 0.61.2",
2801
+ ]
2802
+
2803
+ [[package]]
2804
+ name = "rustversion"
2805
+ version = "1.0.22"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2808
+
2809
+ [[package]]
2810
+ name = "rusty-fork"
2811
+ version = "0.3.1"
2812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2813
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2814
+ dependencies = [
2815
+ "fnv",
2816
+ "quick-error",
2817
+ "tempfile",
2818
+ "wait-timeout",
2819
+ ]
2820
+
2821
+ [[package]]
2822
+ name = "ryu"
2823
+ version = "1.0.23"
2824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2825
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2826
+
2827
+ [[package]]
2828
+ name = "same-file"
2829
+ version = "1.0.6"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2832
+ dependencies = [
2833
+ "winapi-util",
2834
+ ]
2835
+
2836
+ [[package]]
2837
+ name = "schemars"
2838
+ version = "0.8.22"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
2841
+ dependencies = [
2842
+ "dyn-clone",
2843
+ "schemars_derive",
2844
+ "serde",
2845
+ "serde_json",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "schemars_derive"
2850
+ version = "0.8.22"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
2853
+ dependencies = [
2854
+ "proc-macro2",
2855
+ "quote",
2856
+ "serde_derive_internals",
2857
+ "syn",
2858
+ ]
2859
+
2860
+ [[package]]
2861
+ name = "scopeguard"
2862
+ version = "1.2.0"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2865
+
2866
+ [[package]]
2867
+ name = "semver"
2868
+ version = "1.0.28"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2871
+
2872
+ [[package]]
2873
+ name = "serde"
2874
+ version = "1.0.228"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2877
+ dependencies = [
2878
+ "serde_core",
2879
+ "serde_derive",
2880
+ ]
2881
+
2882
+ [[package]]
2883
+ name = "serde_core"
2884
+ version = "1.0.228"
2885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2886
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2887
+ dependencies = [
2888
+ "serde_derive",
2889
+ ]
2890
+
2891
+ [[package]]
2892
+ name = "serde_derive"
2893
+ version = "1.0.228"
2894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2895
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2896
+ dependencies = [
2897
+ "proc-macro2",
2898
+ "quote",
2899
+ "syn",
2900
+ ]
2901
+
2902
+ [[package]]
2903
+ name = "serde_derive_internals"
2904
+ version = "0.29.1"
2905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2906
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
2907
+ dependencies = [
2908
+ "proc-macro2",
2909
+ "quote",
2910
+ "syn",
2911
+ ]
2912
+
2913
+ [[package]]
2914
+ name = "serde_json"
2915
+ version = "1.0.150"
2916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2917
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2918
+ dependencies = [
2919
+ "indexmap",
2920
+ "itoa",
2921
+ "memchr",
2922
+ "serde",
2923
+ "serde_core",
2924
+ "zmij",
2925
+ ]
2926
+
2927
+ [[package]]
2928
+ name = "serde_path_to_error"
2929
+ version = "0.1.20"
2930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2931
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2932
+ dependencies = [
2933
+ "itoa",
2934
+ "serde",
2935
+ "serde_core",
2936
+ ]
2937
+
2938
+ [[package]]
2939
+ name = "serde_urlencoded"
2940
+ version = "0.7.1"
2941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2942
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2943
+ dependencies = [
2944
+ "form_urlencoded",
2945
+ "itoa",
2946
+ "ryu",
2947
+ "serde",
2948
+ ]
2949
+
2950
+ [[package]]
2951
+ name = "serde_yaml"
2952
+ version = "0.9.34+deprecated"
2953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2954
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2955
+ dependencies = [
2956
+ "indexmap",
2957
+ "itoa",
2958
+ "ryu",
2959
+ "serde",
2960
+ "unsafe-libyaml",
2961
+ ]
2962
+
2963
+ [[package]]
2964
+ name = "sha1"
2965
+ version = "0.10.6"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2968
+ dependencies = [
2969
+ "cfg-if",
2970
+ "cpufeatures",
2971
+ "digest",
2972
+ ]
2973
+
2974
+ [[package]]
2975
+ name = "sha1-checked"
2976
+ version = "0.10.0"
2977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2978
+ checksum = "89f599ac0c323ebb1c6082821a54962b839832b03984598375bff3975b804423"
2979
+ dependencies = [
2980
+ "digest",
2981
+ "sha1",
2982
+ ]
2983
+
2984
+ [[package]]
2985
+ name = "sha2"
2986
+ version = "0.10.9"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2989
+ dependencies = [
2990
+ "cfg-if",
2991
+ "cpufeatures",
2992
+ "digest",
2993
+ ]
2994
+
2995
+ [[package]]
2996
+ name = "sharded-slab"
2997
+ version = "0.1.7"
2998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2999
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3000
+ dependencies = [
3001
+ "lazy_static",
3002
+ ]
3003
+
3004
+ [[package]]
3005
+ name = "shell-words"
3006
+ version = "1.1.1"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
3009
+
3010
+ [[package]]
3011
+ name = "shlex"
3012
+ version = "2.0.1"
3013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3014
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
3015
+
3016
+ [[package]]
3017
+ name = "signal-hook-registry"
3018
+ version = "1.4.8"
3019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3020
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
3021
+ dependencies = [
3022
+ "errno",
3023
+ "libc",
3024
+ ]
3025
+
3026
+ [[package]]
3027
+ name = "signature"
3028
+ version = "2.2.0"
3029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3030
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
3031
+ dependencies = [
3032
+ "rand_core 0.6.4",
3033
+ ]
3034
+
3035
+ [[package]]
3036
+ name = "simd-adler32"
3037
+ version = "0.3.9"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
3040
+
3041
+ [[package]]
3042
+ name = "similar"
3043
+ version = "2.7.0"
3044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3045
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
3046
+
3047
+ [[package]]
3048
+ name = "slab"
3049
+ version = "0.4.12"
3050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3051
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3052
+
3053
+ [[package]]
3054
+ name = "smallvec"
3055
+ version = "1.15.1"
3056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3057
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3058
+
3059
+ [[package]]
3060
+ name = "socket2"
3061
+ version = "0.6.4"
3062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3063
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
3064
+ dependencies = [
3065
+ "libc",
3066
+ "windows-sys 0.61.2",
3067
+ ]
3068
+
3069
+ [[package]]
3070
+ name = "spki"
3071
+ version = "0.7.3"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3074
+ dependencies = [
3075
+ "base64ct",
3076
+ "der",
3077
+ ]
3078
+
3079
+ [[package]]
3080
+ name = "stable_deref_trait"
3081
+ version = "1.2.1"
3082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3083
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3084
+
3085
+ [[package]]
3086
+ name = "static_assertions"
3087
+ version = "1.1.0"
3088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3089
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3090
+
3091
+ [[package]]
3092
+ name = "strsim"
3093
+ version = "0.11.1"
3094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3095
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3096
+
3097
+ [[package]]
3098
+ name = "subtle"
3099
+ version = "2.6.1"
3100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3101
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3102
+
3103
+ [[package]]
3104
+ name = "syn"
3105
+ version = "2.0.117"
3106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3107
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3108
+ dependencies = [
3109
+ "proc-macro2",
3110
+ "quote",
3111
+ "unicode-ident",
3112
+ ]
3113
+
3114
+ [[package]]
3115
+ name = "sync_wrapper"
3116
+ version = "1.0.2"
3117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3118
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3119
+ dependencies = [
3120
+ "futures-core",
3121
+ ]
3122
+
3123
+ [[package]]
3124
+ name = "synstructure"
3125
+ version = "0.13.2"
3126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3127
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3128
+ dependencies = [
3129
+ "proc-macro2",
3130
+ "quote",
3131
+ "syn",
3132
+ ]
3133
+
3134
+ [[package]]
3135
+ name = "target-lexicon"
3136
+ version = "0.12.16"
3137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3138
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3139
+
3140
+ [[package]]
3141
+ name = "tempfile"
3142
+ version = "3.27.0"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
3145
+ dependencies = [
3146
+ "fastrand",
3147
+ "getrandom 0.4.2",
3148
+ "once_cell",
3149
+ "rustix",
3150
+ "windows-sys 0.61.2",
3151
+ ]
3152
+
3153
+ [[package]]
3154
+ name = "thiserror"
3155
+ version = "2.0.18"
3156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3157
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3158
+ dependencies = [
3159
+ "thiserror-impl",
3160
+ ]
3161
+
3162
+ [[package]]
3163
+ name = "thiserror-impl"
3164
+ version = "2.0.18"
3165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3166
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3167
+ dependencies = [
3168
+ "proc-macro2",
3169
+ "quote",
3170
+ "syn",
3171
+ ]
3172
+
3173
+ [[package]]
3174
+ name = "thread_local"
3175
+ version = "1.1.9"
3176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3177
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3178
+ dependencies = [
3179
+ "cfg-if",
3180
+ ]
3181
+
3182
+ [[package]]
3183
+ name = "tinystr"
3184
+ version = "0.8.3"
3185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3186
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3187
+ dependencies = [
3188
+ "displaydoc",
3189
+ "zerovec",
3190
+ ]
3191
+
3192
+ [[package]]
3193
+ name = "tinyvec"
3194
+ version = "1.11.0"
3195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3196
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
3197
+ dependencies = [
3198
+ "tinyvec_macros",
3199
+ ]
3200
+
3201
+ [[package]]
3202
+ name = "tinyvec_macros"
3203
+ version = "0.1.1"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3206
+
3207
+ [[package]]
3208
+ name = "tokio"
3209
+ version = "1.52.3"
3210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3211
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
3212
+ dependencies = [
3213
+ "bytes",
3214
+ "libc",
3215
+ "mio",
3216
+ "parking_lot",
3217
+ "pin-project-lite",
3218
+ "signal-hook-registry",
3219
+ "socket2",
3220
+ "tokio-macros",
3221
+ "windows-sys 0.61.2",
3222
+ ]
3223
+
3224
+ [[package]]
3225
+ name = "tokio-macros"
3226
+ version = "2.7.0"
3227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3228
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
3229
+ dependencies = [
3230
+ "proc-macro2",
3231
+ "quote",
3232
+ "syn",
3233
+ ]
3234
+
3235
+ [[package]]
3236
+ name = "toml_datetime"
3237
+ version = "1.1.1+spec-1.1.0"
3238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3239
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
3240
+ dependencies = [
3241
+ "serde_core",
3242
+ ]
3243
+
3244
+ [[package]]
3245
+ name = "toml_edit"
3246
+ version = "0.25.12+spec-1.1.0"
3247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3248
+ checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7"
3249
+ dependencies = [
3250
+ "indexmap",
3251
+ "toml_datetime",
3252
+ "toml_parser",
3253
+ "winnow 1.0.3",
3254
+ ]
3255
+
3256
+ [[package]]
3257
+ name = "toml_parser"
3258
+ version = "1.1.2+spec-1.1.0"
3259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3260
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
3261
+ dependencies = [
3262
+ "winnow 1.0.3",
3263
+ ]
3264
+
3265
+ [[package]]
3266
+ name = "tower"
3267
+ version = "0.5.3"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3270
+ dependencies = [
3271
+ "futures-core",
3272
+ "futures-util",
3273
+ "pin-project-lite",
3274
+ "sync_wrapper",
3275
+ "tokio",
3276
+ "tower-layer",
3277
+ "tower-service",
3278
+ "tracing",
3279
+ ]
3280
+
3281
+ [[package]]
3282
+ name = "tower-http"
3283
+ version = "0.6.11"
3284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3285
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
3286
+ dependencies = [
3287
+ "bitflags",
3288
+ "bytes",
3289
+ "futures-util",
3290
+ "http",
3291
+ "http-body",
3292
+ "pin-project-lite",
3293
+ "tower",
3294
+ "tower-layer",
3295
+ "tower-service",
3296
+ "tracing",
3297
+ "url",
3298
+ ]
3299
+
3300
+ [[package]]
3301
+ name = "tower-layer"
3302
+ version = "0.3.3"
3303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3304
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3305
+
3306
+ [[package]]
3307
+ name = "tower-service"
3308
+ version = "0.3.3"
3309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3310
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3311
+
3312
+ [[package]]
3313
+ name = "tracing"
3314
+ version = "0.1.44"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3317
+ dependencies = [
3318
+ "log",
3319
+ "pin-project-lite",
3320
+ "tracing-attributes",
3321
+ "tracing-core",
3322
+ ]
3323
+
3324
+ [[package]]
3325
+ name = "tracing-attributes"
3326
+ version = "0.1.31"
3327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3328
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3329
+ dependencies = [
3330
+ "proc-macro2",
3331
+ "quote",
3332
+ "syn",
3333
+ ]
3334
+
3335
+ [[package]]
3336
+ name = "tracing-core"
3337
+ version = "0.1.36"
3338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3339
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3340
+ dependencies = [
3341
+ "once_cell",
3342
+ "valuable",
3343
+ ]
3344
+
3345
+ [[package]]
3346
+ name = "tracing-log"
3347
+ version = "0.2.0"
3348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3349
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3350
+ dependencies = [
3351
+ "log",
3352
+ "once_cell",
3353
+ "tracing-core",
3354
+ ]
3355
+
3356
+ [[package]]
3357
+ name = "tracing-serde"
3358
+ version = "0.2.0"
3359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3360
+ checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
3361
+ dependencies = [
3362
+ "serde",
3363
+ "tracing-core",
3364
+ ]
3365
+
3366
+ [[package]]
3367
+ name = "tracing-subscriber"
3368
+ version = "0.3.23"
3369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3370
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
3371
+ dependencies = [
3372
+ "matchers",
3373
+ "nu-ansi-term",
3374
+ "once_cell",
3375
+ "regex-automata",
3376
+ "serde",
3377
+ "serde_json",
3378
+ "sharded-slab",
3379
+ "smallvec",
3380
+ "thread_local",
3381
+ "tracing",
3382
+ "tracing-core",
3383
+ "tracing-log",
3384
+ "tracing-serde",
3385
+ ]
3386
+
3387
+ [[package]]
3388
+ name = "try-lock"
3389
+ version = "0.2.5"
3390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3391
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3392
+
3393
+ [[package]]
3394
+ name = "typenum"
3395
+ version = "1.20.1"
3396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3397
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
3398
+
3399
+ [[package]]
3400
+ name = "ulid"
3401
+ version = "1.2.1"
3402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3403
+ checksum = "470dbf6591da1b39d43c14523b2b469c86879a53e8b758c8e090a470fe7b1fbe"
3404
+ dependencies = [
3405
+ "rand",
3406
+ "serde",
3407
+ "web-time",
3408
+ ]
3409
+
3410
+ [[package]]
3411
+ name = "uluru"
3412
+ version = "3.1.0"
3413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3414
+ checksum = "7c8a2469e56e6e5095c82ccd3afb98dad95f7af7929aab6d8ba8d6e0f73657da"
3415
+ dependencies = [
3416
+ "arrayvec",
3417
+ ]
3418
+
3419
+ [[package]]
3420
+ name = "unarray"
3421
+ version = "0.1.4"
3422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3423
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
3424
+
3425
+ [[package]]
3426
+ name = "unicode-bom"
3427
+ version = "2.0.3"
3428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3429
+ checksum = "7eec5d1121208364f6793f7d2e222bf75a915c19557537745b195b253dd64217"
3430
+
3431
+ [[package]]
3432
+ name = "unicode-ident"
3433
+ version = "1.0.24"
3434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3435
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3436
+
3437
+ [[package]]
3438
+ name = "unicode-normalization"
3439
+ version = "0.1.25"
3440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3441
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3442
+ dependencies = [
3443
+ "tinyvec",
3444
+ ]
3445
+
3446
+ [[package]]
3447
+ name = "unicode-segmentation"
3448
+ version = "1.13.3"
3449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3450
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
3451
+
3452
+ [[package]]
3453
+ name = "unicode-xid"
3454
+ version = "0.2.6"
3455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3456
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3457
+
3458
+ [[package]]
3459
+ name = "unindent"
3460
+ version = "0.2.4"
3461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3462
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3463
+
3464
+ [[package]]
3465
+ name = "unsafe-libyaml"
3466
+ version = "0.2.11"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3469
+
3470
+ [[package]]
3471
+ name = "url"
3472
+ version = "2.5.8"
3473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3474
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3475
+ dependencies = [
3476
+ "form_urlencoded",
3477
+ "idna",
3478
+ "percent-encoding",
3479
+ "serde",
3480
+ ]
3481
+
3482
+ [[package]]
3483
+ name = "utf8_iter"
3484
+ version = "1.0.4"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3487
+
3488
+ [[package]]
3489
+ name = "utf8parse"
3490
+ version = "0.2.2"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3493
+
3494
+ [[package]]
3495
+ name = "uuid"
3496
+ version = "1.23.2"
3497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3498
+ checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
3499
+ dependencies = [
3500
+ "js-sys",
3501
+ "wasm-bindgen",
3502
+ ]
3503
+
3504
+ [[package]]
3505
+ name = "uuid-simd"
3506
+ version = "0.8.0"
3507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3508
+ checksum = "23b082222b4f6619906941c17eb2297fff4c2fb96cb60164170522942a200bd8"
3509
+ dependencies = [
3510
+ "outref",
3511
+ "uuid",
3512
+ "vsimd",
3513
+ ]
3514
+
3515
+ [[package]]
3516
+ name = "valuable"
3517
+ version = "0.1.1"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3520
+
3521
+ [[package]]
3522
+ name = "version_check"
3523
+ version = "0.9.5"
3524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3525
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3526
+
3527
+ [[package]]
3528
+ name = "vsimd"
3529
+ version = "0.8.0"
3530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3531
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
3532
+
3533
+ [[package]]
3534
+ name = "wait-timeout"
3535
+ version = "0.2.1"
3536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3537
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3538
+ dependencies = [
3539
+ "libc",
3540
+ ]
3541
+
3542
+ [[package]]
3543
+ name = "walkdir"
3544
+ version = "2.5.0"
3545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3546
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3547
+ dependencies = [
3548
+ "same-file",
3549
+ "winapi-util",
3550
+ ]
3551
+
3552
+ [[package]]
3553
+ name = "want"
3554
+ version = "0.3.1"
3555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3556
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3557
+ dependencies = [
3558
+ "try-lock",
3559
+ ]
3560
+
3561
+ [[package]]
3562
+ name = "wasi"
3563
+ version = "0.11.1+wasi-snapshot-preview1"
3564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3565
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3566
+
3567
+ [[package]]
3568
+ name = "wasip2"
3569
+ version = "1.0.3+wasi-0.2.9"
3570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3571
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
3572
+ dependencies = [
3573
+ "wit-bindgen 0.57.1",
3574
+ ]
3575
+
3576
+ [[package]]
3577
+ name = "wasip3"
3578
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3580
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3581
+ dependencies = [
3582
+ "wit-bindgen 0.51.0",
3583
+ ]
3584
+
3585
+ [[package]]
3586
+ name = "wasm-bindgen"
3587
+ version = "0.2.122"
3588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3589
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
3590
+ dependencies = [
3591
+ "cfg-if",
3592
+ "once_cell",
3593
+ "rustversion",
3594
+ "wasm-bindgen-macro",
3595
+ "wasm-bindgen-shared",
3596
+ ]
3597
+
3598
+ [[package]]
3599
+ name = "wasm-bindgen-futures"
3600
+ version = "0.4.72"
3601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3602
+ checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
3603
+ dependencies = [
3604
+ "js-sys",
3605
+ "wasm-bindgen",
3606
+ ]
3607
+
3608
+ [[package]]
3609
+ name = "wasm-bindgen-macro"
3610
+ version = "0.2.122"
3611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3612
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
3613
+ dependencies = [
3614
+ "quote",
3615
+ "wasm-bindgen-macro-support",
3616
+ ]
3617
+
3618
+ [[package]]
3619
+ name = "wasm-bindgen-macro-support"
3620
+ version = "0.2.122"
3621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3622
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
3623
+ dependencies = [
3624
+ "bumpalo",
3625
+ "proc-macro2",
3626
+ "quote",
3627
+ "syn",
3628
+ "wasm-bindgen-shared",
3629
+ ]
3630
+
3631
+ [[package]]
3632
+ name = "wasm-bindgen-shared"
3633
+ version = "0.2.122"
3634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3635
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
3636
+ dependencies = [
3637
+ "unicode-ident",
3638
+ ]
3639
+
3640
+ [[package]]
3641
+ name = "wasm-encoder"
3642
+ version = "0.244.0"
3643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3644
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3645
+ dependencies = [
3646
+ "leb128fmt",
3647
+ "wasmparser",
3648
+ ]
3649
+
3650
+ [[package]]
3651
+ name = "wasm-metadata"
3652
+ version = "0.244.0"
3653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3654
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3655
+ dependencies = [
3656
+ "anyhow",
3657
+ "indexmap",
3658
+ "wasm-encoder",
3659
+ "wasmparser",
3660
+ ]
3661
+
3662
+ [[package]]
3663
+ name = "wasmparser"
3664
+ version = "0.244.0"
3665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3666
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3667
+ dependencies = [
3668
+ "bitflags",
3669
+ "hashbrown 0.15.5",
3670
+ "indexmap",
3671
+ "semver",
3672
+ ]
3673
+
3674
+ [[package]]
3675
+ name = "web-sys"
3676
+ version = "0.3.99"
3677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3678
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
3679
+ dependencies = [
3680
+ "js-sys",
3681
+ "wasm-bindgen",
3682
+ ]
3683
+
3684
+ [[package]]
3685
+ name = "web-time"
3686
+ version = "1.1.0"
3687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3688
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3689
+ dependencies = [
3690
+ "js-sys",
3691
+ "wasm-bindgen",
3692
+ ]
3693
+
3694
+ [[package]]
3695
+ name = "winapi-util"
3696
+ version = "0.1.11"
3697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3698
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3699
+ dependencies = [
3700
+ "windows-sys 0.61.2",
3701
+ ]
3702
+
3703
+ [[package]]
3704
+ name = "windows-core"
3705
+ version = "0.62.2"
3706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3707
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3708
+ dependencies = [
3709
+ "windows-implement",
3710
+ "windows-interface",
3711
+ "windows-link",
3712
+ "windows-result",
3713
+ "windows-strings",
3714
+ ]
3715
+
3716
+ [[package]]
3717
+ name = "windows-implement"
3718
+ version = "0.60.2"
3719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3720
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3721
+ dependencies = [
3722
+ "proc-macro2",
3723
+ "quote",
3724
+ "syn",
3725
+ ]
3726
+
3727
+ [[package]]
3728
+ name = "windows-interface"
3729
+ version = "0.59.3"
3730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3731
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3732
+ dependencies = [
3733
+ "proc-macro2",
3734
+ "quote",
3735
+ "syn",
3736
+ ]
3737
+
3738
+ [[package]]
3739
+ name = "windows-link"
3740
+ version = "0.2.1"
3741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3742
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3743
+
3744
+ [[package]]
3745
+ name = "windows-result"
3746
+ version = "0.4.1"
3747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3748
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3749
+ dependencies = [
3750
+ "windows-link",
3751
+ ]
3752
+
3753
+ [[package]]
3754
+ name = "windows-strings"
3755
+ version = "0.5.1"
3756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3757
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3758
+ dependencies = [
3759
+ "windows-link",
3760
+ ]
3761
+
3762
+ [[package]]
3763
+ name = "windows-sys"
3764
+ version = "0.59.0"
3765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3766
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3767
+ dependencies = [
3768
+ "windows-targets",
3769
+ ]
3770
+
3771
+ [[package]]
3772
+ name = "windows-sys"
3773
+ version = "0.61.2"
3774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3775
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3776
+ dependencies = [
3777
+ "windows-link",
3778
+ ]
3779
+
3780
+ [[package]]
3781
+ name = "windows-targets"
3782
+ version = "0.52.6"
3783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3784
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3785
+ dependencies = [
3786
+ "windows_aarch64_gnullvm",
3787
+ "windows_aarch64_msvc",
3788
+ "windows_i686_gnu",
3789
+ "windows_i686_gnullvm",
3790
+ "windows_i686_msvc",
3791
+ "windows_x86_64_gnu",
3792
+ "windows_x86_64_gnullvm",
3793
+ "windows_x86_64_msvc",
3794
+ ]
3795
+
3796
+ [[package]]
3797
+ name = "windows_aarch64_gnullvm"
3798
+ version = "0.52.6"
3799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3800
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3801
+
3802
+ [[package]]
3803
+ name = "windows_aarch64_msvc"
3804
+ version = "0.52.6"
3805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3806
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3807
+
3808
+ [[package]]
3809
+ name = "windows_i686_gnu"
3810
+ version = "0.52.6"
3811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3812
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3813
+
3814
+ [[package]]
3815
+ name = "windows_i686_gnullvm"
3816
+ version = "0.52.6"
3817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3818
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3819
+
3820
+ [[package]]
3821
+ name = "windows_i686_msvc"
3822
+ version = "0.52.6"
3823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3824
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3825
+
3826
+ [[package]]
3827
+ name = "windows_x86_64_gnu"
3828
+ version = "0.52.6"
3829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3830
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3831
+
3832
+ [[package]]
3833
+ name = "windows_x86_64_gnullvm"
3834
+ version = "0.52.6"
3835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3836
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3837
+
3838
+ [[package]]
3839
+ name = "windows_x86_64_msvc"
3840
+ version = "0.52.6"
3841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3842
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3843
+
3844
+ [[package]]
3845
+ name = "winnow"
3846
+ version = "0.7.15"
3847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3848
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
3849
+ dependencies = [
3850
+ "memchr",
3851
+ ]
3852
+
3853
+ [[package]]
3854
+ name = "winnow"
3855
+ version = "1.0.3"
3856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3857
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
3858
+ dependencies = [
3859
+ "memchr",
3860
+ ]
3861
+
3862
+ [[package]]
3863
+ name = "wit-bindgen"
3864
+ version = "0.51.0"
3865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3866
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3867
+ dependencies = [
3868
+ "wit-bindgen-rust-macro",
3869
+ ]
3870
+
3871
+ [[package]]
3872
+ name = "wit-bindgen"
3873
+ version = "0.57.1"
3874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3875
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3876
+
3877
+ [[package]]
3878
+ name = "wit-bindgen-core"
3879
+ version = "0.51.0"
3880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3881
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3882
+ dependencies = [
3883
+ "anyhow",
3884
+ "heck",
3885
+ "wit-parser",
3886
+ ]
3887
+
3888
+ [[package]]
3889
+ name = "wit-bindgen-rust"
3890
+ version = "0.51.0"
3891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3892
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3893
+ dependencies = [
3894
+ "anyhow",
3895
+ "heck",
3896
+ "indexmap",
3897
+ "prettyplease",
3898
+ "syn",
3899
+ "wasm-metadata",
3900
+ "wit-bindgen-core",
3901
+ "wit-component",
3902
+ ]
3903
+
3904
+ [[package]]
3905
+ name = "wit-bindgen-rust-macro"
3906
+ version = "0.51.0"
3907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3908
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3909
+ dependencies = [
3910
+ "anyhow",
3911
+ "prettyplease",
3912
+ "proc-macro2",
3913
+ "quote",
3914
+ "syn",
3915
+ "wit-bindgen-core",
3916
+ "wit-bindgen-rust",
3917
+ ]
3918
+
3919
+ [[package]]
3920
+ name = "wit-component"
3921
+ version = "0.244.0"
3922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3923
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3924
+ dependencies = [
3925
+ "anyhow",
3926
+ "bitflags",
3927
+ "indexmap",
3928
+ "log",
3929
+ "serde",
3930
+ "serde_derive",
3931
+ "serde_json",
3932
+ "wasm-encoder",
3933
+ "wasm-metadata",
3934
+ "wasmparser",
3935
+ "wit-parser",
3936
+ ]
3937
+
3938
+ [[package]]
3939
+ name = "wit-parser"
3940
+ version = "0.244.0"
3941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3942
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3943
+ dependencies = [
3944
+ "anyhow",
3945
+ "id-arena",
3946
+ "indexmap",
3947
+ "log",
3948
+ "semver",
3949
+ "serde",
3950
+ "serde_derive",
3951
+ "serde_json",
3952
+ "unicode-xid",
3953
+ "wasmparser",
3954
+ ]
3955
+
3956
+ [[package]]
3957
+ name = "writeable"
3958
+ version = "0.6.3"
3959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3960
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3961
+
3962
+ [[package]]
3963
+ name = "yoke"
3964
+ version = "0.8.3"
3965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3966
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
3967
+ dependencies = [
3968
+ "stable_deref_trait",
3969
+ "yoke-derive",
3970
+ "zerofrom",
3971
+ ]
3972
+
3973
+ [[package]]
3974
+ name = "yoke-derive"
3975
+ version = "0.8.2"
3976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3977
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3978
+ dependencies = [
3979
+ "proc-macro2",
3980
+ "quote",
3981
+ "syn",
3982
+ "synstructure",
3983
+ ]
3984
+
3985
+ [[package]]
3986
+ name = "zerocopy"
3987
+ version = "0.8.50"
3988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3989
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
3990
+ dependencies = [
3991
+ "zerocopy-derive",
3992
+ ]
3993
+
3994
+ [[package]]
3995
+ name = "zerocopy-derive"
3996
+ version = "0.8.50"
3997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3998
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
3999
+ dependencies = [
4000
+ "proc-macro2",
4001
+ "quote",
4002
+ "syn",
4003
+ ]
4004
+
4005
+ [[package]]
4006
+ name = "zerofrom"
4007
+ version = "0.1.8"
4008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4009
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4010
+ dependencies = [
4011
+ "zerofrom-derive",
4012
+ ]
4013
+
4014
+ [[package]]
4015
+ name = "zerofrom-derive"
4016
+ version = "0.1.7"
4017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4018
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4019
+ dependencies = [
4020
+ "proc-macro2",
4021
+ "quote",
4022
+ "syn",
4023
+ "synstructure",
4024
+ ]
4025
+
4026
+ [[package]]
4027
+ name = "zeroize"
4028
+ version = "1.8.2"
4029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4030
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4031
+
4032
+ [[package]]
4033
+ name = "zerotrie"
4034
+ version = "0.2.4"
4035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4036
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4037
+ dependencies = [
4038
+ "displaydoc",
4039
+ "yoke",
4040
+ "zerofrom",
4041
+ ]
4042
+
4043
+ [[package]]
4044
+ name = "zerovec"
4045
+ version = "0.11.6"
4046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4047
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4048
+ dependencies = [
4049
+ "yoke",
4050
+ "zerofrom",
4051
+ "zerovec-derive",
4052
+ ]
4053
+
4054
+ [[package]]
4055
+ name = "zerovec-derive"
4056
+ version = "0.11.3"
4057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4058
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4059
+ dependencies = [
4060
+ "proc-macro2",
4061
+ "quote",
4062
+ "syn",
4063
+ ]
4064
+
4065
+ [[package]]
4066
+ name = "zlib-rs"
4067
+ version = "0.6.3"
4068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4069
+ checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
4070
+
4071
+ [[package]]
4072
+ name = "zmij"
4073
+ version = "1.0.21"
4074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4075
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"