engraph 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 (55) hide show
  1. engraph-0.1.0/Cargo.lock +3420 -0
  2. engraph-0.1.0/Cargo.toml +17 -0
  3. engraph-0.1.0/LICENSE +202 -0
  4. engraph-0.1.0/PKG-INFO +270 -0
  5. engraph-0.1.0/README.md +238 -0
  6. engraph-0.1.0/crates/engraph-core/Cargo.toml +40 -0
  7. engraph-0.1.0/crates/engraph-core/examples/bench.rs +272 -0
  8. engraph-0.1.0/crates/engraph-core/examples/phase1_gate.rs +132 -0
  9. engraph-0.1.0/crates/engraph-core/examples/publish_gate.rs +70 -0
  10. engraph-0.1.0/crates/engraph-core/src/audit.rs +145 -0
  11. engraph-0.1.0/crates/engraph-core/src/bundle.rs +181 -0
  12. engraph-0.1.0/crates/engraph-core/src/codec.rs +353 -0
  13. engraph-0.1.0/crates/engraph-core/src/consolidate.rs +245 -0
  14. engraph-0.1.0/crates/engraph-core/src/crypto.rs +240 -0
  15. engraph-0.1.0/crates/engraph-core/src/embed.rs +126 -0
  16. engraph-0.1.0/crates/engraph-core/src/engine.rs +1020 -0
  17. engraph-0.1.0/crates/engraph-core/src/error.rs +87 -0
  18. engraph-0.1.0/crates/engraph-core/src/feed.rs +64 -0
  19. engraph-0.1.0/crates/engraph-core/src/index/bm25.rs +226 -0
  20. engraph-0.1.0/crates/engraph-core/src/index/graph.rs +152 -0
  21. engraph-0.1.0/crates/engraph-core/src/index/mod.rs +5 -0
  22. engraph-0.1.0/crates/engraph-core/src/index/vector.rs +512 -0
  23. engraph-0.1.0/crates/engraph-core/src/ingest/extract.rs +301 -0
  24. engraph-0.1.0/crates/engraph-core/src/ingest/mod.rs +1086 -0
  25. engraph-0.1.0/crates/engraph-core/src/lib.rs +91 -0
  26. engraph-0.1.0/crates/engraph-core/src/lifecycle.rs +187 -0
  27. engraph-0.1.0/crates/engraph-core/src/memory_api.rs +363 -0
  28. engraph-0.1.0/crates/engraph-core/src/quota.rs +315 -0
  29. engraph-0.1.0/crates/engraph-core/src/replica.rs +130 -0
  30. engraph-0.1.0/crates/engraph-core/src/s3.rs +513 -0
  31. engraph-0.1.0/crates/engraph-core/src/salience.rs +189 -0
  32. engraph-0.1.0/crates/engraph-core/src/search/mod.rs +946 -0
  33. engraph-0.1.0/crates/engraph-core/src/search/support.rs +334 -0
  34. engraph-0.1.0/crates/engraph-core/src/store/mod.rs +1031 -0
  35. engraph-0.1.0/crates/engraph-core/src/tiering.rs +145 -0
  36. engraph-0.1.0/crates/engraph-core/src/types.rs +556 -0
  37. engraph-0.1.0/crates/engraph-core/src/vault.rs +274 -0
  38. engraph-0.1.0/crates/engraph-core/src/wal.rs +104 -0
  39. engraph-0.1.0/crates/engraph-core/tests/engine.rs +393 -0
  40. engraph-0.1.0/crates/engraph-core/tests/loom_publish.rs +60 -0
  41. engraph-0.1.0/crates/engraph-core/tests/phase1.rs +362 -0
  42. engraph-0.1.0/crates/engraph-core/tests/phase2.rs +341 -0
  43. engraph-0.1.0/crates/engraph-core/tests/phase3.rs +205 -0
  44. engraph-0.1.0/crates/engraph-core/tests/phase4.rs +426 -0
  45. engraph-0.1.0/crates/engraph-proto/Cargo.toml +15 -0
  46. engraph-0.1.0/crates/engraph-proto/build.rs +10 -0
  47. engraph-0.1.0/crates/engraph-proto/proto/engraph.proto +175 -0
  48. engraph-0.1.0/crates/engraph-proto/src/lib.rs +5 -0
  49. engraph-0.1.0/crates/engraph-py/Cargo.toml +17 -0
  50. engraph-0.1.0/crates/engraph-py/src/lib.rs +238 -0
  51. engraph-0.1.0/pyproject.toml +48 -0
  52. engraph-0.1.0/python/engraph/__init__.py +299 -0
  53. engraph-0.1.0/python/engraph/mcp_server.py +100 -0
  54. engraph-0.1.0/python/engraph/providers.py +364 -0
  55. engraph-0.1.0/python/engraph/server.py +118 -0
@@ -0,0 +1,3420 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "crypto-common",
18
+ "generic-array",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "aes"
23
+ version = "0.8.4"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
26
+ dependencies = [
27
+ "cfg-if",
28
+ "cipher",
29
+ "cpufeatures",
30
+ ]
31
+
32
+ [[package]]
33
+ name = "aes-gcm"
34
+ version = "0.10.3"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
37
+ dependencies = [
38
+ "aead",
39
+ "aes",
40
+ "cipher",
41
+ "ctr",
42
+ "ghash",
43
+ "subtle",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "ahash"
48
+ version = "0.7.8"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
51
+ dependencies = [
52
+ "getrandom 0.2.17",
53
+ "once_cell",
54
+ "version_check",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "ahash"
59
+ version = "0.8.12"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
62
+ dependencies = [
63
+ "cfg-if",
64
+ "getrandom 0.3.4",
65
+ "once_cell",
66
+ "version_check",
67
+ "zerocopy",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "aho-corasick"
72
+ version = "1.1.4"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
75
+ dependencies = [
76
+ "memchr",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "android_system_properties"
81
+ version = "0.1.5"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
84
+ dependencies = [
85
+ "libc",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "anstream"
90
+ version = "1.0.0"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
93
+ dependencies = [
94
+ "anstyle",
95
+ "anstyle-parse",
96
+ "anstyle-query",
97
+ "anstyle-wincon",
98
+ "colorchoice",
99
+ "is_terminal_polyfill",
100
+ "utf8parse",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "anstyle"
105
+ version = "1.0.14"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
108
+
109
+ [[package]]
110
+ name = "anstyle-parse"
111
+ version = "1.0.0"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
114
+ dependencies = [
115
+ "utf8parse",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "anstyle-query"
120
+ version = "1.1.5"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
123
+ dependencies = [
124
+ "windows-sys 0.61.2",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "anstyle-wincon"
129
+ version = "3.0.11"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
132
+ dependencies = [
133
+ "anstyle",
134
+ "once_cell_polyfill",
135
+ "windows-sys 0.61.2",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "anyerror"
140
+ version = "0.1.13"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "71add24cc141a1e8326f249b74c41cfd217aeb2a67c9c6cf9134d175469afd49"
143
+ dependencies = [
144
+ "serde",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "anyhow"
149
+ version = "1.0.103"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
152
+
153
+ [[package]]
154
+ name = "arc-swap"
155
+ version = "1.9.2"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b"
158
+ dependencies = [
159
+ "rustversion",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "argon2"
164
+ version = "0.5.3"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
167
+ dependencies = [
168
+ "base64ct",
169
+ "blake2",
170
+ "cpufeatures",
171
+ "password-hash",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "arrayvec"
176
+ version = "0.7.8"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
179
+
180
+ [[package]]
181
+ name = "async-stream"
182
+ version = "0.3.6"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
185
+ dependencies = [
186
+ "async-stream-impl",
187
+ "futures-core",
188
+ "pin-project-lite",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "async-stream-impl"
193
+ version = "0.3.6"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
196
+ dependencies = [
197
+ "proc-macro2",
198
+ "quote",
199
+ "syn 2.0.119",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "async-trait"
204
+ version = "0.1.89"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
207
+ dependencies = [
208
+ "proc-macro2",
209
+ "quote",
210
+ "syn 2.0.119",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "atomic-waker"
215
+ version = "1.1.2"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
218
+
219
+ [[package]]
220
+ name = "autocfg"
221
+ version = "1.5.1"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
224
+
225
+ [[package]]
226
+ name = "axum"
227
+ version = "0.7.9"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
230
+ dependencies = [
231
+ "async-trait",
232
+ "axum-core",
233
+ "bytes",
234
+ "futures-util",
235
+ "http",
236
+ "http-body",
237
+ "http-body-util",
238
+ "hyper",
239
+ "hyper-util",
240
+ "itoa",
241
+ "matchit",
242
+ "memchr",
243
+ "mime",
244
+ "percent-encoding",
245
+ "pin-project-lite",
246
+ "rustversion",
247
+ "serde",
248
+ "serde_json",
249
+ "serde_path_to_error",
250
+ "serde_urlencoded",
251
+ "sync_wrapper",
252
+ "tokio",
253
+ "tower 0.5.3",
254
+ "tower-layer",
255
+ "tower-service",
256
+ "tracing",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "axum-core"
261
+ version = "0.4.5"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
264
+ dependencies = [
265
+ "async-trait",
266
+ "bytes",
267
+ "futures-util",
268
+ "http",
269
+ "http-body",
270
+ "http-body-util",
271
+ "mime",
272
+ "pin-project-lite",
273
+ "rustversion",
274
+ "sync_wrapper",
275
+ "tower-layer",
276
+ "tower-service",
277
+ "tracing",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "base64"
282
+ version = "0.22.1"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
285
+
286
+ [[package]]
287
+ name = "base64ct"
288
+ version = "1.8.3"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
291
+
292
+ [[package]]
293
+ name = "bincode"
294
+ version = "1.3.3"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
297
+ dependencies = [
298
+ "serde",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "bitflags"
303
+ version = "2.13.1"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
306
+
307
+ [[package]]
308
+ name = "bitmaps"
309
+ version = "2.1.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
312
+ dependencies = [
313
+ "typenum",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "bitvec"
318
+ version = "1.1.1"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
321
+ dependencies = [
322
+ "funty",
323
+ "radium",
324
+ "tap",
325
+ "wyz",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "blake2"
330
+ version = "0.10.6"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
333
+ dependencies = [
334
+ "digest",
335
+ ]
336
+
337
+ [[package]]
338
+ name = "block-buffer"
339
+ version = "0.10.4"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
342
+ dependencies = [
343
+ "generic-array",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "borsh"
348
+ version = "1.8.0"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "a88b7ea17d208c4193f2c1e6de3c35fe71f98c96982d5ced308bdcc749ff6e1f"
351
+ dependencies = [
352
+ "borsh-derive",
353
+ "bytes",
354
+ "cfg_aliases",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "borsh-derive"
359
+ version = "1.8.0"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "d8f347189c62a579b8cd5f80714efa178f52e461dc2e6d701d264f5ff22e566c"
362
+ dependencies = [
363
+ "once_cell",
364
+ "proc-macro-crate",
365
+ "proc-macro2",
366
+ "quote",
367
+ "syn 2.0.119",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "bumpalo"
372
+ version = "3.20.3"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
375
+
376
+ [[package]]
377
+ name = "byte-unit"
378
+ version = "5.2.5"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "4a813de7f2bbedb7dce265b64f1cf5908ebe4d56281ece8d847e98113788b9b0"
381
+ dependencies = [
382
+ "rust_decimal",
383
+ "schemars",
384
+ "serde",
385
+ "utf8-width",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "bytecheck"
390
+ version = "0.6.12"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
393
+ dependencies = [
394
+ "bytecheck_derive",
395
+ "ptr_meta",
396
+ "simdutf8",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "bytecheck_derive"
401
+ version = "0.6.12"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
404
+ dependencies = [
405
+ "proc-macro2",
406
+ "quote",
407
+ "syn 1.0.109",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "bytes"
412
+ version = "1.12.1"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
415
+
416
+ [[package]]
417
+ name = "cc"
418
+ version = "1.2.67"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
421
+ dependencies = [
422
+ "find-msvc-tools",
423
+ "shlex",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "cfg-if"
428
+ version = "1.0.4"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
431
+
432
+ [[package]]
433
+ name = "cfg_aliases"
434
+ version = "0.2.2"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
437
+
438
+ [[package]]
439
+ name = "chrono"
440
+ version = "0.4.45"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
443
+ dependencies = [
444
+ "iana-time-zone",
445
+ "js-sys",
446
+ "num-traits",
447
+ "wasm-bindgen",
448
+ "windows-link",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "cipher"
453
+ version = "0.4.4"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
456
+ dependencies = [
457
+ "crypto-common",
458
+ "inout",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "clap"
463
+ version = "4.6.2"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011"
466
+ dependencies = [
467
+ "clap_builder",
468
+ "clap_derive",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "clap_builder"
473
+ version = "4.6.2"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
476
+ dependencies = [
477
+ "anstream",
478
+ "anstyle",
479
+ "clap_lex",
480
+ "strsim",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "clap_derive"
485
+ version = "4.6.1"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
488
+ dependencies = [
489
+ "heck",
490
+ "proc-macro2",
491
+ "quote",
492
+ "syn 2.0.119",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "clap_lex"
497
+ version = "1.1.0"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
500
+
501
+ [[package]]
502
+ name = "colorchoice"
503
+ version = "1.0.5"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
506
+
507
+ [[package]]
508
+ name = "core-foundation-sys"
509
+ version = "0.8.7"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
512
+
513
+ [[package]]
514
+ name = "cpufeatures"
515
+ version = "0.2.17"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
518
+ dependencies = [
519
+ "libc",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "crc32fast"
524
+ version = "1.5.0"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
527
+ dependencies = [
528
+ "cfg-if",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "crossbeam-deque"
533
+ version = "0.8.7"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
536
+ dependencies = [
537
+ "crossbeam-epoch",
538
+ "crossbeam-utils",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "crossbeam-epoch"
543
+ version = "0.9.20"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
546
+ dependencies = [
547
+ "crossbeam-utils",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "crossbeam-utils"
552
+ version = "0.8.22"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
555
+
556
+ [[package]]
557
+ name = "crypto-common"
558
+ version = "0.1.7"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
561
+ dependencies = [
562
+ "generic-array",
563
+ "rand_core",
564
+ "typenum",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "ctr"
569
+ version = "0.9.2"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
572
+ dependencies = [
573
+ "cipher",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "dashmap"
578
+ version = "6.2.1"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
581
+ dependencies = [
582
+ "cfg-if",
583
+ "crossbeam-utils",
584
+ "hashbrown 0.14.5",
585
+ "lock_api",
586
+ "once_cell",
587
+ "parking_lot_core",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "deranged"
592
+ version = "0.5.8"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
595
+
596
+ [[package]]
597
+ name = "derive_more"
598
+ version = "1.0.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
601
+ dependencies = [
602
+ "derive_more-impl",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "derive_more-impl"
607
+ version = "1.0.0"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
610
+ dependencies = [
611
+ "proc-macro2",
612
+ "quote",
613
+ "syn 2.0.119",
614
+ "unicode-xid",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "digest"
619
+ version = "0.10.7"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
622
+ dependencies = [
623
+ "block-buffer",
624
+ "crypto-common",
625
+ "subtle",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "displaydoc"
630
+ version = "0.2.6"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
633
+ dependencies = [
634
+ "proc-macro2",
635
+ "quote",
636
+ "syn 2.0.119",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "dyn-clone"
641
+ version = "1.0.20"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
644
+
645
+ [[package]]
646
+ name = "either"
647
+ version = "1.16.0"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
650
+
651
+ [[package]]
652
+ name = "engraph-cli"
653
+ version = "0.1.0"
654
+ dependencies = [
655
+ "argon2",
656
+ "clap",
657
+ "engraph-core",
658
+ "rand",
659
+ "serde_json",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "engraph-control"
664
+ version = "0.1.0"
665
+ dependencies = [
666
+ "dashmap",
667
+ "engraph-core",
668
+ "openraft",
669
+ "parking_lot",
670
+ "serde",
671
+ "serde_json",
672
+ "tokio",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "engraph-core"
677
+ version = "0.1.0"
678
+ dependencies = [
679
+ "aes-gcm",
680
+ "arc-swap",
681
+ "base64",
682
+ "bincode",
683
+ "crc32fast",
684
+ "dashmap",
685
+ "engraph-proto",
686
+ "hmac",
687
+ "im",
688
+ "loom",
689
+ "parking_lot",
690
+ "prost",
691
+ "quick_cache",
692
+ "rand",
693
+ "rayon",
694
+ "redb",
695
+ "rustc-hash",
696
+ "serde",
697
+ "serde_json",
698
+ "sha2",
699
+ "thiserror 1.0.69",
700
+ "ureq",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "engraph-proto"
705
+ version = "0.1.0"
706
+ dependencies = [
707
+ "prost",
708
+ "protoc-bin-vendored",
709
+ "tonic",
710
+ "tonic-build",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "engraph-py"
715
+ version = "0.1.0"
716
+ dependencies = [
717
+ "engraph-core",
718
+ "pyo3",
719
+ "pythonize",
720
+ "serde",
721
+ "serde_json",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "engraph-router"
726
+ version = "0.1.0"
727
+ dependencies = [
728
+ "clap",
729
+ "dashmap",
730
+ "engraph-control",
731
+ "engraph-core",
732
+ "engraph-proto",
733
+ "parking_lot",
734
+ "serde",
735
+ "serde_json",
736
+ "tokio",
737
+ "tonic",
738
+ "tracing",
739
+ "tracing-subscriber",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "engraphd"
744
+ version = "0.1.0"
745
+ dependencies = [
746
+ "argon2",
747
+ "async-stream",
748
+ "axum",
749
+ "clap",
750
+ "dashmap",
751
+ "engraph-core",
752
+ "engraph-proto",
753
+ "futures-core",
754
+ "jsonwebtoken",
755
+ "parking_lot",
756
+ "serde",
757
+ "serde_json",
758
+ "tokio",
759
+ "tokio-stream",
760
+ "tonic",
761
+ "tower-http",
762
+ "tracing",
763
+ "tracing-subscriber",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "equivalent"
768
+ version = "1.0.2"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
771
+
772
+ [[package]]
773
+ name = "errno"
774
+ version = "0.3.14"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
777
+ dependencies = [
778
+ "libc",
779
+ "windows-sys 0.61.2",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "fastrand"
784
+ version = "2.4.1"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
787
+
788
+ [[package]]
789
+ name = "find-msvc-tools"
790
+ version = "0.1.9"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
793
+
794
+ [[package]]
795
+ name = "fixedbitset"
796
+ version = "0.5.7"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
799
+
800
+ [[package]]
801
+ name = "flate2"
802
+ version = "1.1.9"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
805
+ dependencies = [
806
+ "crc32fast",
807
+ "miniz_oxide",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "fnv"
812
+ version = "1.0.7"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
815
+
816
+ [[package]]
817
+ name = "form_urlencoded"
818
+ version = "1.2.2"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
821
+ dependencies = [
822
+ "percent-encoding",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "funty"
827
+ version = "2.0.0"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
830
+
831
+ [[package]]
832
+ name = "futures"
833
+ version = "0.3.32"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
836
+ dependencies = [
837
+ "futures-channel",
838
+ "futures-core",
839
+ "futures-executor",
840
+ "futures-io",
841
+ "futures-sink",
842
+ "futures-task",
843
+ "futures-util",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "futures-channel"
848
+ version = "0.3.32"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
851
+ dependencies = [
852
+ "futures-core",
853
+ "futures-sink",
854
+ ]
855
+
856
+ [[package]]
857
+ name = "futures-core"
858
+ version = "0.3.32"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
861
+
862
+ [[package]]
863
+ name = "futures-executor"
864
+ version = "0.3.32"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
867
+ dependencies = [
868
+ "futures-core",
869
+ "futures-task",
870
+ "futures-util",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "futures-io"
875
+ version = "0.3.32"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
878
+
879
+ [[package]]
880
+ name = "futures-macro"
881
+ version = "0.3.32"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
884
+ dependencies = [
885
+ "proc-macro2",
886
+ "quote",
887
+ "syn 2.0.119",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "futures-sink"
892
+ version = "0.3.32"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
895
+
896
+ [[package]]
897
+ name = "futures-task"
898
+ version = "0.3.32"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
901
+
902
+ [[package]]
903
+ name = "futures-util"
904
+ version = "0.3.32"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
907
+ dependencies = [
908
+ "futures-channel",
909
+ "futures-core",
910
+ "futures-io",
911
+ "futures-macro",
912
+ "futures-sink",
913
+ "futures-task",
914
+ "memchr",
915
+ "pin-project-lite",
916
+ "slab",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "generator"
921
+ version = "0.8.9"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae"
924
+ dependencies = [
925
+ "cc",
926
+ "cfg-if",
927
+ "libc",
928
+ "log",
929
+ "rustversion",
930
+ "windows-link",
931
+ "windows-result",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "generic-array"
936
+ version = "0.14.7"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
939
+ dependencies = [
940
+ "typenum",
941
+ "version_check",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "getrandom"
946
+ version = "0.2.17"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
949
+ dependencies = [
950
+ "cfg-if",
951
+ "js-sys",
952
+ "libc",
953
+ "wasi",
954
+ "wasm-bindgen",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "getrandom"
959
+ version = "0.3.4"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
962
+ dependencies = [
963
+ "cfg-if",
964
+ "libc",
965
+ "r-efi 5.3.0",
966
+ "wasip2",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "getrandom"
971
+ version = "0.4.3"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
974
+ dependencies = [
975
+ "cfg-if",
976
+ "libc",
977
+ "r-efi 6.0.0",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "ghash"
982
+ version = "0.5.1"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
985
+ dependencies = [
986
+ "opaque-debug",
987
+ "polyval",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "h2"
992
+ version = "0.4.15"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
995
+ dependencies = [
996
+ "atomic-waker",
997
+ "bytes",
998
+ "fnv",
999
+ "futures-core",
1000
+ "futures-sink",
1001
+ "http",
1002
+ "indexmap 2.14.0",
1003
+ "slab",
1004
+ "tokio",
1005
+ "tokio-util",
1006
+ "tracing",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "hashbrown"
1011
+ version = "0.12.3"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1014
+ dependencies = [
1015
+ "ahash 0.7.8",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "hashbrown"
1020
+ version = "0.14.5"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1023
+
1024
+ [[package]]
1025
+ name = "hashbrown"
1026
+ version = "0.16.1"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1029
+
1030
+ [[package]]
1031
+ name = "hashbrown"
1032
+ version = "0.17.1"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1035
+
1036
+ [[package]]
1037
+ name = "heck"
1038
+ version = "0.5.0"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1041
+
1042
+ [[package]]
1043
+ name = "hmac"
1044
+ version = "0.12.1"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1047
+ dependencies = [
1048
+ "digest",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "http"
1053
+ version = "1.4.2"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1056
+ dependencies = [
1057
+ "bytes",
1058
+ "itoa",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "http-body"
1063
+ version = "1.1.0"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
1066
+ dependencies = [
1067
+ "bytes",
1068
+ "http",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "http-body-util"
1073
+ version = "0.1.4"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
1076
+ dependencies = [
1077
+ "bytes",
1078
+ "futures-core",
1079
+ "http",
1080
+ "http-body",
1081
+ "pin-project-lite",
1082
+ ]
1083
+
1084
+ [[package]]
1085
+ name = "httparse"
1086
+ version = "1.10.1"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1089
+
1090
+ [[package]]
1091
+ name = "httpdate"
1092
+ version = "1.0.3"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1095
+
1096
+ [[package]]
1097
+ name = "hyper"
1098
+ version = "1.10.1"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1101
+ dependencies = [
1102
+ "atomic-waker",
1103
+ "bytes",
1104
+ "futures-channel",
1105
+ "futures-core",
1106
+ "h2",
1107
+ "http",
1108
+ "http-body",
1109
+ "httparse",
1110
+ "httpdate",
1111
+ "itoa",
1112
+ "pin-project-lite",
1113
+ "smallvec",
1114
+ "tokio",
1115
+ "want",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "hyper-timeout"
1120
+ version = "0.5.2"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1123
+ dependencies = [
1124
+ "hyper",
1125
+ "hyper-util",
1126
+ "pin-project-lite",
1127
+ "tokio",
1128
+ "tower-service",
1129
+ ]
1130
+
1131
+ [[package]]
1132
+ name = "hyper-util"
1133
+ version = "0.1.20"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1136
+ dependencies = [
1137
+ "bytes",
1138
+ "futures-channel",
1139
+ "futures-util",
1140
+ "http",
1141
+ "http-body",
1142
+ "hyper",
1143
+ "libc",
1144
+ "pin-project-lite",
1145
+ "socket2 0.6.5",
1146
+ "tokio",
1147
+ "tower-service",
1148
+ "tracing",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "iana-time-zone"
1153
+ version = "0.1.65"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1156
+ dependencies = [
1157
+ "android_system_properties",
1158
+ "core-foundation-sys",
1159
+ "iana-time-zone-haiku",
1160
+ "js-sys",
1161
+ "log",
1162
+ "wasm-bindgen",
1163
+ "windows-core",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "iana-time-zone-haiku"
1168
+ version = "0.1.2"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1171
+ dependencies = [
1172
+ "cc",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "icu_collections"
1177
+ version = "2.2.0"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1180
+ dependencies = [
1181
+ "displaydoc",
1182
+ "potential_utf",
1183
+ "utf8_iter",
1184
+ "yoke",
1185
+ "zerofrom",
1186
+ "zerovec",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "icu_locale_core"
1191
+ version = "2.2.0"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1194
+ dependencies = [
1195
+ "displaydoc",
1196
+ "litemap",
1197
+ "tinystr",
1198
+ "writeable",
1199
+ "zerovec",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "icu_normalizer"
1204
+ version = "2.2.0"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1207
+ dependencies = [
1208
+ "icu_collections",
1209
+ "icu_normalizer_data",
1210
+ "icu_properties",
1211
+ "icu_provider",
1212
+ "smallvec",
1213
+ "zerovec",
1214
+ ]
1215
+
1216
+ [[package]]
1217
+ name = "icu_normalizer_data"
1218
+ version = "2.2.0"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1221
+
1222
+ [[package]]
1223
+ name = "icu_properties"
1224
+ version = "2.2.0"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1227
+ dependencies = [
1228
+ "icu_collections",
1229
+ "icu_locale_core",
1230
+ "icu_properties_data",
1231
+ "icu_provider",
1232
+ "zerotrie",
1233
+ "zerovec",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "icu_properties_data"
1238
+ version = "2.2.0"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1241
+
1242
+ [[package]]
1243
+ name = "icu_provider"
1244
+ version = "2.2.0"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1247
+ dependencies = [
1248
+ "displaydoc",
1249
+ "icu_locale_core",
1250
+ "writeable",
1251
+ "yoke",
1252
+ "zerofrom",
1253
+ "zerotrie",
1254
+ "zerovec",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "idna"
1259
+ version = "1.1.0"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1262
+ dependencies = [
1263
+ "idna_adapter",
1264
+ "smallvec",
1265
+ "utf8_iter",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "idna_adapter"
1270
+ version = "1.2.2"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1273
+ dependencies = [
1274
+ "icu_normalizer",
1275
+ "icu_properties",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "im"
1280
+ version = "15.1.0"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "d0acd33ff0285af998aaf9b57342af478078f53492322fafc47450e09397e0e9"
1283
+ dependencies = [
1284
+ "bitmaps",
1285
+ "rand_core",
1286
+ "rand_xoshiro",
1287
+ "sized-chunks",
1288
+ "typenum",
1289
+ "version_check",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "indexmap"
1294
+ version = "1.9.3"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1297
+ dependencies = [
1298
+ "autocfg",
1299
+ "hashbrown 0.12.3",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "indexmap"
1304
+ version = "2.14.0"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1307
+ dependencies = [
1308
+ "equivalent",
1309
+ "hashbrown 0.17.1",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "indoc"
1314
+ version = "2.0.7"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1317
+ dependencies = [
1318
+ "rustversion",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "inout"
1323
+ version = "0.1.4"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1326
+ dependencies = [
1327
+ "generic-array",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "is_terminal_polyfill"
1332
+ version = "1.70.2"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1335
+
1336
+ [[package]]
1337
+ name = "itertools"
1338
+ version = "0.14.0"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1341
+ dependencies = [
1342
+ "either",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "itoa"
1347
+ version = "1.0.18"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1350
+
1351
+ [[package]]
1352
+ name = "js-sys"
1353
+ version = "0.3.103"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
1356
+ dependencies = [
1357
+ "cfg-if",
1358
+ "futures-util",
1359
+ "wasm-bindgen",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "jsonwebtoken"
1364
+ version = "9.3.1"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde"
1367
+ dependencies = [
1368
+ "base64",
1369
+ "js-sys",
1370
+ "pem",
1371
+ "ring",
1372
+ "serde",
1373
+ "serde_json",
1374
+ "simple_asn1",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "lazy_static"
1379
+ version = "1.5.0"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1382
+
1383
+ [[package]]
1384
+ name = "libc"
1385
+ version = "0.2.186"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1388
+
1389
+ [[package]]
1390
+ name = "linux-raw-sys"
1391
+ version = "0.12.1"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1394
+
1395
+ [[package]]
1396
+ name = "litemap"
1397
+ version = "0.8.2"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1400
+
1401
+ [[package]]
1402
+ name = "lock_api"
1403
+ version = "0.4.14"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1406
+ dependencies = [
1407
+ "scopeguard",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "log"
1412
+ version = "0.4.33"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
1415
+
1416
+ [[package]]
1417
+ name = "loom"
1418
+ version = "0.7.2"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
1421
+ dependencies = [
1422
+ "cfg-if",
1423
+ "generator",
1424
+ "scoped-tls",
1425
+ "tracing",
1426
+ "tracing-subscriber",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "maplit"
1431
+ version = "1.0.2"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1434
+
1435
+ [[package]]
1436
+ name = "matchers"
1437
+ version = "0.2.0"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1440
+ dependencies = [
1441
+ "regex-automata",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "matchit"
1446
+ version = "0.7.3"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1449
+
1450
+ [[package]]
1451
+ name = "memchr"
1452
+ version = "2.8.3"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1455
+
1456
+ [[package]]
1457
+ name = "memoffset"
1458
+ version = "0.9.1"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1461
+ dependencies = [
1462
+ "autocfg",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "mime"
1467
+ version = "0.3.17"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1470
+
1471
+ [[package]]
1472
+ name = "miniz_oxide"
1473
+ version = "0.8.9"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1476
+ dependencies = [
1477
+ "adler2",
1478
+ "simd-adler32",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "mio"
1483
+ version = "1.2.2"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
1486
+ dependencies = [
1487
+ "libc",
1488
+ "wasi",
1489
+ "windows-sys 0.61.2",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "multimap"
1494
+ version = "0.10.1"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
1497
+
1498
+ [[package]]
1499
+ name = "nu-ansi-term"
1500
+ version = "0.50.3"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1503
+ dependencies = [
1504
+ "windows-sys 0.61.2",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "num-bigint"
1509
+ version = "0.4.8"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
1512
+ dependencies = [
1513
+ "num-integer",
1514
+ "num-traits",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "num-conv"
1519
+ version = "0.2.2"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1522
+
1523
+ [[package]]
1524
+ name = "num-integer"
1525
+ version = "0.1.46"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1528
+ dependencies = [
1529
+ "num-traits",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "num-traits"
1534
+ version = "0.2.19"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1537
+ dependencies = [
1538
+ "autocfg",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "once_cell"
1543
+ version = "1.21.4"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1546
+
1547
+ [[package]]
1548
+ name = "once_cell_polyfill"
1549
+ version = "1.70.2"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1552
+
1553
+ [[package]]
1554
+ name = "opaque-debug"
1555
+ version = "0.3.1"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1558
+
1559
+ [[package]]
1560
+ name = "openraft"
1561
+ version = "0.9.24"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "80d35e2f60cdf9bcfc39a020966091017c6dc2a4b43b355a22ca3e76106f4a0a"
1564
+ dependencies = [
1565
+ "anyerror",
1566
+ "byte-unit",
1567
+ "chrono",
1568
+ "clap",
1569
+ "derive_more",
1570
+ "futures",
1571
+ "maplit",
1572
+ "openraft-macros",
1573
+ "rand",
1574
+ "thiserror 1.0.69",
1575
+ "tokio",
1576
+ "tracing",
1577
+ "tracing-futures",
1578
+ "validit",
1579
+ ]
1580
+
1581
+ [[package]]
1582
+ name = "openraft-macros"
1583
+ version = "0.9.24"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "bbbf0342d747a8da209c8e1d3ca8f788100966669412aaacb449409205931251"
1586
+ dependencies = [
1587
+ "chrono",
1588
+ "proc-macro2",
1589
+ "quote",
1590
+ "semver",
1591
+ "syn 2.0.119",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "parking_lot"
1596
+ version = "0.12.5"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1599
+ dependencies = [
1600
+ "lock_api",
1601
+ "parking_lot_core",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "parking_lot_core"
1606
+ version = "0.9.12"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1609
+ dependencies = [
1610
+ "cfg-if",
1611
+ "libc",
1612
+ "redox_syscall",
1613
+ "smallvec",
1614
+ "windows-link",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "password-hash"
1619
+ version = "0.5.0"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
1622
+ dependencies = [
1623
+ "base64ct",
1624
+ "rand_core",
1625
+ "subtle",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "pem"
1630
+ version = "3.0.6"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
1633
+ dependencies = [
1634
+ "base64",
1635
+ "serde_core",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "percent-encoding"
1640
+ version = "2.3.2"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1643
+
1644
+ [[package]]
1645
+ name = "petgraph"
1646
+ version = "0.7.1"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
1649
+ dependencies = [
1650
+ "fixedbitset",
1651
+ "indexmap 2.14.0",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "pin-project"
1656
+ version = "1.1.13"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
1659
+ dependencies = [
1660
+ "pin-project-internal",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "pin-project-internal"
1665
+ version = "1.1.13"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
1668
+ dependencies = [
1669
+ "proc-macro2",
1670
+ "quote",
1671
+ "syn 2.0.119",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "pin-project-lite"
1676
+ version = "0.2.17"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1679
+
1680
+ [[package]]
1681
+ name = "polyval"
1682
+ version = "0.6.2"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
1685
+ dependencies = [
1686
+ "cfg-if",
1687
+ "cpufeatures",
1688
+ "opaque-debug",
1689
+ "universal-hash",
1690
+ ]
1691
+
1692
+ [[package]]
1693
+ name = "portable-atomic"
1694
+ version = "1.13.1"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1697
+
1698
+ [[package]]
1699
+ name = "potential_utf"
1700
+ version = "0.1.5"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1703
+ dependencies = [
1704
+ "zerovec",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "powerfmt"
1709
+ version = "0.2.0"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1712
+
1713
+ [[package]]
1714
+ name = "ppv-lite86"
1715
+ version = "0.2.21"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1718
+ dependencies = [
1719
+ "zerocopy",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "prettyplease"
1724
+ version = "0.2.37"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1727
+ dependencies = [
1728
+ "proc-macro2",
1729
+ "syn 2.0.119",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "proc-macro-crate"
1734
+ version = "3.5.0"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
1737
+ dependencies = [
1738
+ "toml_edit",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "proc-macro2"
1743
+ version = "1.0.106"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1746
+ dependencies = [
1747
+ "unicode-ident",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "prost"
1752
+ version = "0.13.5"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
1755
+ dependencies = [
1756
+ "bytes",
1757
+ "prost-derive",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "prost-build"
1762
+ version = "0.13.5"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
1765
+ dependencies = [
1766
+ "heck",
1767
+ "itertools",
1768
+ "log",
1769
+ "multimap",
1770
+ "once_cell",
1771
+ "petgraph",
1772
+ "prettyplease",
1773
+ "prost",
1774
+ "prost-types",
1775
+ "regex",
1776
+ "syn 2.0.119",
1777
+ "tempfile",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "prost-derive"
1782
+ version = "0.13.5"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
1785
+ dependencies = [
1786
+ "anyhow",
1787
+ "itertools",
1788
+ "proc-macro2",
1789
+ "quote",
1790
+ "syn 2.0.119",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "prost-types"
1795
+ version = "0.13.5"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
1798
+ dependencies = [
1799
+ "prost",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "protoc-bin-vendored"
1804
+ version = "3.2.0"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "d1c381df33c98266b5f08186583660090a4ffa0889e76c7e9a5e175f645a67fa"
1807
+ dependencies = [
1808
+ "protoc-bin-vendored-linux-aarch_64",
1809
+ "protoc-bin-vendored-linux-ppcle_64",
1810
+ "protoc-bin-vendored-linux-s390_64",
1811
+ "protoc-bin-vendored-linux-x86_32",
1812
+ "protoc-bin-vendored-linux-x86_64",
1813
+ "protoc-bin-vendored-macos-aarch_64",
1814
+ "protoc-bin-vendored-macos-x86_64",
1815
+ "protoc-bin-vendored-win32",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "protoc-bin-vendored-linux-aarch_64"
1820
+ version = "3.2.0"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "c350df4d49b5b9e3ca79f7e646fde2377b199e13cfa87320308397e1f37e1a4c"
1823
+
1824
+ [[package]]
1825
+ name = "protoc-bin-vendored-linux-ppcle_64"
1826
+ version = "3.2.0"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "a55a63e6c7244f19b5c6393f025017eb5d793fd5467823a099740a7a4222440c"
1829
+
1830
+ [[package]]
1831
+ name = "protoc-bin-vendored-linux-s390_64"
1832
+ version = "3.2.0"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "1dba5565db4288e935d5330a07c264a4ee8e4a5b4a4e6f4e83fad824cc32f3b0"
1835
+
1836
+ [[package]]
1837
+ name = "protoc-bin-vendored-linux-x86_32"
1838
+ version = "3.2.0"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "8854774b24ee28b7868cd71dccaae8e02a2365e67a4a87a6cd11ee6cdbdf9cf5"
1841
+
1842
+ [[package]]
1843
+ name = "protoc-bin-vendored-linux-x86_64"
1844
+ version = "3.2.0"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "b38b07546580df720fa464ce124c4b03630a6fb83e05c336fea2a241df7e5d78"
1847
+
1848
+ [[package]]
1849
+ name = "protoc-bin-vendored-macos-aarch_64"
1850
+ version = "3.2.0"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "89278a9926ce312e51f1d999fee8825d324d603213344a9a706daa009f1d8092"
1853
+
1854
+ [[package]]
1855
+ name = "protoc-bin-vendored-macos-x86_64"
1856
+ version = "3.2.0"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "81745feda7ccfb9471d7a4de888f0652e806d5795b61480605d4943176299756"
1859
+
1860
+ [[package]]
1861
+ name = "protoc-bin-vendored-win32"
1862
+ version = "3.2.0"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "95067976aca6421a523e491fce939a3e65249bac4b977adee0ee9771568e8aa3"
1865
+
1866
+ [[package]]
1867
+ name = "ptr_meta"
1868
+ version = "0.1.4"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
1871
+ dependencies = [
1872
+ "ptr_meta_derive",
1873
+ ]
1874
+
1875
+ [[package]]
1876
+ name = "ptr_meta_derive"
1877
+ version = "0.1.4"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
1880
+ dependencies = [
1881
+ "proc-macro2",
1882
+ "quote",
1883
+ "syn 1.0.109",
1884
+ ]
1885
+
1886
+ [[package]]
1887
+ name = "pyo3"
1888
+ version = "0.23.5"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
1891
+ dependencies = [
1892
+ "cfg-if",
1893
+ "indoc",
1894
+ "libc",
1895
+ "memoffset",
1896
+ "once_cell",
1897
+ "portable-atomic",
1898
+ "pyo3-build-config",
1899
+ "pyo3-ffi",
1900
+ "pyo3-macros",
1901
+ "unindent",
1902
+ ]
1903
+
1904
+ [[package]]
1905
+ name = "pyo3-build-config"
1906
+ version = "0.23.5"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
1909
+ dependencies = [
1910
+ "once_cell",
1911
+ "target-lexicon",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "pyo3-ffi"
1916
+ version = "0.23.5"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
1919
+ dependencies = [
1920
+ "libc",
1921
+ "pyo3-build-config",
1922
+ ]
1923
+
1924
+ [[package]]
1925
+ name = "pyo3-macros"
1926
+ version = "0.23.5"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
1929
+ dependencies = [
1930
+ "proc-macro2",
1931
+ "pyo3-macros-backend",
1932
+ "quote",
1933
+ "syn 2.0.119",
1934
+ ]
1935
+
1936
+ [[package]]
1937
+ name = "pyo3-macros-backend"
1938
+ version = "0.23.5"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
1941
+ dependencies = [
1942
+ "heck",
1943
+ "proc-macro2",
1944
+ "pyo3-build-config",
1945
+ "quote",
1946
+ "syn 2.0.119",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "pythonize"
1951
+ version = "0.23.0"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "91a6ee7a084f913f98d70cdc3ebec07e852b735ae3059a1500db2661265da9ff"
1954
+ dependencies = [
1955
+ "pyo3",
1956
+ "serde",
1957
+ ]
1958
+
1959
+ [[package]]
1960
+ name = "quick_cache"
1961
+ version = "0.6.24"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "b9c6658afe513a3b484e3abfdaa0d03ef3c0bbf017542c178dd55f94eb3051f9"
1964
+ dependencies = [
1965
+ "ahash 0.8.12",
1966
+ "equivalent",
1967
+ "hashbrown 0.16.1",
1968
+ "parking_lot",
1969
+ ]
1970
+
1971
+ [[package]]
1972
+ name = "quote"
1973
+ version = "1.0.46"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1976
+ dependencies = [
1977
+ "proc-macro2",
1978
+ ]
1979
+
1980
+ [[package]]
1981
+ name = "r-efi"
1982
+ version = "5.3.0"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1985
+
1986
+ [[package]]
1987
+ name = "r-efi"
1988
+ version = "6.0.0"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1991
+
1992
+ [[package]]
1993
+ name = "radium"
1994
+ version = "0.7.0"
1995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1996
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1997
+
1998
+ [[package]]
1999
+ name = "rand"
2000
+ version = "0.8.7"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
2003
+ dependencies = [
2004
+ "libc",
2005
+ "rand_chacha",
2006
+ "rand_core",
2007
+ ]
2008
+
2009
+ [[package]]
2010
+ name = "rand_chacha"
2011
+ version = "0.3.1"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2014
+ dependencies = [
2015
+ "ppv-lite86",
2016
+ "rand_core",
2017
+ ]
2018
+
2019
+ [[package]]
2020
+ name = "rand_core"
2021
+ version = "0.6.4"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2024
+ dependencies = [
2025
+ "getrandom 0.2.17",
2026
+ ]
2027
+
2028
+ [[package]]
2029
+ name = "rand_xoshiro"
2030
+ version = "0.6.0"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
2033
+ dependencies = [
2034
+ "rand_core",
2035
+ ]
2036
+
2037
+ [[package]]
2038
+ name = "rayon"
2039
+ version = "1.12.0"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2042
+ dependencies = [
2043
+ "either",
2044
+ "rayon-core",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "rayon-core"
2049
+ version = "1.13.0"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2052
+ dependencies = [
2053
+ "crossbeam-deque",
2054
+ "crossbeam-utils",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "redb"
2059
+ version = "2.6.3"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "8eca1e9d98d5a7e9002d0013e18d5a9b000aee942eb134883a82f06ebffb6c01"
2062
+ dependencies = [
2063
+ "libc",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "redox_syscall"
2068
+ version = "0.5.18"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2071
+ dependencies = [
2072
+ "bitflags",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "ref-cast"
2077
+ version = "1.0.25"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2080
+ dependencies = [
2081
+ "ref-cast-impl",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "ref-cast-impl"
2086
+ version = "1.0.25"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2089
+ dependencies = [
2090
+ "proc-macro2",
2091
+ "quote",
2092
+ "syn 2.0.119",
2093
+ ]
2094
+
2095
+ [[package]]
2096
+ name = "regex"
2097
+ version = "1.13.1"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
2100
+ dependencies = [
2101
+ "aho-corasick",
2102
+ "memchr",
2103
+ "regex-automata",
2104
+ "regex-syntax",
2105
+ ]
2106
+
2107
+ [[package]]
2108
+ name = "regex-automata"
2109
+ version = "0.4.16"
2110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2111
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
2112
+ dependencies = [
2113
+ "aho-corasick",
2114
+ "memchr",
2115
+ "regex-syntax",
2116
+ ]
2117
+
2118
+ [[package]]
2119
+ name = "regex-syntax"
2120
+ version = "0.8.11"
2121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2122
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
2123
+
2124
+ [[package]]
2125
+ name = "rend"
2126
+ version = "0.4.2"
2127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2128
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
2129
+ dependencies = [
2130
+ "bytecheck",
2131
+ ]
2132
+
2133
+ [[package]]
2134
+ name = "ring"
2135
+ version = "0.17.14"
2136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2137
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2138
+ dependencies = [
2139
+ "cc",
2140
+ "cfg-if",
2141
+ "getrandom 0.2.17",
2142
+ "libc",
2143
+ "untrusted",
2144
+ "windows-sys 0.52.0",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "rkyv"
2149
+ version = "0.7.46"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
2152
+ dependencies = [
2153
+ "bitvec",
2154
+ "bytecheck",
2155
+ "bytes",
2156
+ "hashbrown 0.12.3",
2157
+ "ptr_meta",
2158
+ "rend",
2159
+ "rkyv_derive",
2160
+ "seahash",
2161
+ "tinyvec",
2162
+ "uuid",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "rkyv_derive"
2167
+ version = "0.7.46"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
2170
+ dependencies = [
2171
+ "proc-macro2",
2172
+ "quote",
2173
+ "syn 1.0.109",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "rust_decimal"
2178
+ version = "1.42.1"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "be2a24f50780bc85f09cc6ac299bdf1424302742d77221106859c9d8b102126a"
2181
+ dependencies = [
2182
+ "arrayvec",
2183
+ "borsh",
2184
+ "bytes",
2185
+ "num-traits",
2186
+ "rand",
2187
+ "rkyv",
2188
+ "serde",
2189
+ "serde_json",
2190
+ "wasm-bindgen",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "rustc-hash"
2195
+ version = "2.1.3"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
2198
+
2199
+ [[package]]
2200
+ name = "rustix"
2201
+ version = "1.1.4"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2204
+ dependencies = [
2205
+ "bitflags",
2206
+ "errno",
2207
+ "libc",
2208
+ "linux-raw-sys",
2209
+ "windows-sys 0.61.2",
2210
+ ]
2211
+
2212
+ [[package]]
2213
+ name = "rustls"
2214
+ version = "0.23.42"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
2217
+ dependencies = [
2218
+ "log",
2219
+ "once_cell",
2220
+ "ring",
2221
+ "rustls-pki-types",
2222
+ "rustls-webpki",
2223
+ "subtle",
2224
+ "zeroize",
2225
+ ]
2226
+
2227
+ [[package]]
2228
+ name = "rustls-pemfile"
2229
+ version = "2.2.0"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2232
+ dependencies = [
2233
+ "rustls-pki-types",
2234
+ ]
2235
+
2236
+ [[package]]
2237
+ name = "rustls-pki-types"
2238
+ version = "1.15.0"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
2241
+ dependencies = [
2242
+ "zeroize",
2243
+ ]
2244
+
2245
+ [[package]]
2246
+ name = "rustls-webpki"
2247
+ version = "0.103.13"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
2250
+ dependencies = [
2251
+ "ring",
2252
+ "rustls-pki-types",
2253
+ "untrusted",
2254
+ ]
2255
+
2256
+ [[package]]
2257
+ name = "rustversion"
2258
+ version = "1.0.23"
2259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2260
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
2261
+
2262
+ [[package]]
2263
+ name = "ryu"
2264
+ version = "1.0.23"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2267
+
2268
+ [[package]]
2269
+ name = "schemars"
2270
+ version = "1.2.1"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
2273
+ dependencies = [
2274
+ "dyn-clone",
2275
+ "ref-cast",
2276
+ "serde",
2277
+ "serde_json",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "scoped-tls"
2282
+ version = "1.0.1"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2285
+
2286
+ [[package]]
2287
+ name = "scopeguard"
2288
+ version = "1.2.0"
2289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2290
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2291
+
2292
+ [[package]]
2293
+ name = "seahash"
2294
+ version = "4.1.0"
2295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2296
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2297
+
2298
+ [[package]]
2299
+ name = "semver"
2300
+ version = "1.0.28"
2301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2302
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2303
+
2304
+ [[package]]
2305
+ name = "serde"
2306
+ version = "1.0.228"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2309
+ dependencies = [
2310
+ "serde_core",
2311
+ "serde_derive",
2312
+ ]
2313
+
2314
+ [[package]]
2315
+ name = "serde_core"
2316
+ version = "1.0.228"
2317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2319
+ dependencies = [
2320
+ "serde_derive",
2321
+ ]
2322
+
2323
+ [[package]]
2324
+ name = "serde_derive"
2325
+ version = "1.0.228"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2328
+ dependencies = [
2329
+ "proc-macro2",
2330
+ "quote",
2331
+ "syn 2.0.119",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "serde_json"
2336
+ version = "1.0.150"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2339
+ dependencies = [
2340
+ "itoa",
2341
+ "memchr",
2342
+ "serde",
2343
+ "serde_core",
2344
+ "zmij",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "serde_path_to_error"
2349
+ version = "0.1.20"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2352
+ dependencies = [
2353
+ "itoa",
2354
+ "serde",
2355
+ "serde_core",
2356
+ ]
2357
+
2358
+ [[package]]
2359
+ name = "serde_urlencoded"
2360
+ version = "0.7.1"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2363
+ dependencies = [
2364
+ "form_urlencoded",
2365
+ "itoa",
2366
+ "ryu",
2367
+ "serde",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "sha2"
2372
+ version = "0.10.9"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2375
+ dependencies = [
2376
+ "cfg-if",
2377
+ "cpufeatures",
2378
+ "digest",
2379
+ ]
2380
+
2381
+ [[package]]
2382
+ name = "sharded-slab"
2383
+ version = "0.1.7"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2386
+ dependencies = [
2387
+ "lazy_static",
2388
+ ]
2389
+
2390
+ [[package]]
2391
+ name = "shlex"
2392
+ version = "2.0.1"
2393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2394
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2395
+
2396
+ [[package]]
2397
+ name = "signal-hook-registry"
2398
+ version = "1.4.8"
2399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2400
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2401
+ dependencies = [
2402
+ "errno",
2403
+ "libc",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "simd-adler32"
2408
+ version = "0.3.10"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
2411
+
2412
+ [[package]]
2413
+ name = "simdutf8"
2414
+ version = "0.1.5"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2417
+
2418
+ [[package]]
2419
+ name = "simple_asn1"
2420
+ version = "0.6.4"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
2423
+ dependencies = [
2424
+ "num-bigint",
2425
+ "num-traits",
2426
+ "thiserror 2.0.18",
2427
+ "time",
2428
+ ]
2429
+
2430
+ [[package]]
2431
+ name = "sized-chunks"
2432
+ version = "0.6.5"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e"
2435
+ dependencies = [
2436
+ "bitmaps",
2437
+ "typenum",
2438
+ ]
2439
+
2440
+ [[package]]
2441
+ name = "slab"
2442
+ version = "0.4.12"
2443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2444
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2445
+
2446
+ [[package]]
2447
+ name = "smallvec"
2448
+ version = "1.15.2"
2449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2450
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
2451
+
2452
+ [[package]]
2453
+ name = "socket2"
2454
+ version = "0.5.10"
2455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2456
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2457
+ dependencies = [
2458
+ "libc",
2459
+ "windows-sys 0.52.0",
2460
+ ]
2461
+
2462
+ [[package]]
2463
+ name = "socket2"
2464
+ version = "0.6.5"
2465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2466
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
2467
+ dependencies = [
2468
+ "libc",
2469
+ "windows-sys 0.61.2",
2470
+ ]
2471
+
2472
+ [[package]]
2473
+ name = "stable_deref_trait"
2474
+ version = "1.2.1"
2475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2476
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2477
+
2478
+ [[package]]
2479
+ name = "strsim"
2480
+ version = "0.11.1"
2481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2482
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2483
+
2484
+ [[package]]
2485
+ name = "subtle"
2486
+ version = "2.6.1"
2487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2488
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2489
+
2490
+ [[package]]
2491
+ name = "syn"
2492
+ version = "1.0.109"
2493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2495
+ dependencies = [
2496
+ "proc-macro2",
2497
+ "quote",
2498
+ "unicode-ident",
2499
+ ]
2500
+
2501
+ [[package]]
2502
+ name = "syn"
2503
+ version = "2.0.119"
2504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
2506
+ dependencies = [
2507
+ "proc-macro2",
2508
+ "quote",
2509
+ "unicode-ident",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "sync_wrapper"
2514
+ version = "1.0.2"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2517
+
2518
+ [[package]]
2519
+ name = "synstructure"
2520
+ version = "0.13.2"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2523
+ dependencies = [
2524
+ "proc-macro2",
2525
+ "quote",
2526
+ "syn 2.0.119",
2527
+ ]
2528
+
2529
+ [[package]]
2530
+ name = "tap"
2531
+ version = "1.0.1"
2532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2533
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2534
+
2535
+ [[package]]
2536
+ name = "target-lexicon"
2537
+ version = "0.12.16"
2538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2539
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2540
+
2541
+ [[package]]
2542
+ name = "tempfile"
2543
+ version = "3.27.0"
2544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2545
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2546
+ dependencies = [
2547
+ "fastrand",
2548
+ "getrandom 0.4.3",
2549
+ "once_cell",
2550
+ "rustix",
2551
+ "windows-sys 0.61.2",
2552
+ ]
2553
+
2554
+ [[package]]
2555
+ name = "thiserror"
2556
+ version = "1.0.69"
2557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2558
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2559
+ dependencies = [
2560
+ "thiserror-impl 1.0.69",
2561
+ ]
2562
+
2563
+ [[package]]
2564
+ name = "thiserror"
2565
+ version = "2.0.18"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2568
+ dependencies = [
2569
+ "thiserror-impl 2.0.18",
2570
+ ]
2571
+
2572
+ [[package]]
2573
+ name = "thiserror-impl"
2574
+ version = "1.0.69"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2577
+ dependencies = [
2578
+ "proc-macro2",
2579
+ "quote",
2580
+ "syn 2.0.119",
2581
+ ]
2582
+
2583
+ [[package]]
2584
+ name = "thiserror-impl"
2585
+ version = "2.0.18"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2588
+ dependencies = [
2589
+ "proc-macro2",
2590
+ "quote",
2591
+ "syn 2.0.119",
2592
+ ]
2593
+
2594
+ [[package]]
2595
+ name = "thread_local"
2596
+ version = "1.1.10"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
2599
+ dependencies = [
2600
+ "cfg-if",
2601
+ ]
2602
+
2603
+ [[package]]
2604
+ name = "time"
2605
+ version = "0.3.53"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "18dfaaeddcb932337b5e7866ee7d0ce9b76d2fd092997146f187ec09b4558a50"
2608
+ dependencies = [
2609
+ "deranged",
2610
+ "num-conv",
2611
+ "powerfmt",
2612
+ "serde_core",
2613
+ "time-core",
2614
+ "time-macros",
2615
+ ]
2616
+
2617
+ [[package]]
2618
+ name = "time-core"
2619
+ version = "0.1.9"
2620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2621
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
2622
+
2623
+ [[package]]
2624
+ name = "time-macros"
2625
+ version = "0.2.31"
2626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2627
+ checksum = "c431b87111666e491a90baa837f914fb45cd5dc3c268591b0220ff5057f2085f"
2628
+ dependencies = [
2629
+ "num-conv",
2630
+ "time-core",
2631
+ ]
2632
+
2633
+ [[package]]
2634
+ name = "tinystr"
2635
+ version = "0.8.3"
2636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2637
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2638
+ dependencies = [
2639
+ "displaydoc",
2640
+ "zerovec",
2641
+ ]
2642
+
2643
+ [[package]]
2644
+ name = "tinyvec"
2645
+ version = "1.12.0"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
2648
+ dependencies = [
2649
+ "tinyvec_macros",
2650
+ ]
2651
+
2652
+ [[package]]
2653
+ name = "tinyvec_macros"
2654
+ version = "0.1.1"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2657
+
2658
+ [[package]]
2659
+ name = "tokio"
2660
+ version = "1.53.0"
2661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2662
+ checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee"
2663
+ dependencies = [
2664
+ "bytes",
2665
+ "libc",
2666
+ "mio",
2667
+ "pin-project-lite",
2668
+ "signal-hook-registry",
2669
+ "socket2 0.6.5",
2670
+ "tokio-macros",
2671
+ "windows-sys 0.61.2",
2672
+ ]
2673
+
2674
+ [[package]]
2675
+ name = "tokio-macros"
2676
+ version = "2.7.1"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
2679
+ dependencies = [
2680
+ "proc-macro2",
2681
+ "quote",
2682
+ "syn 2.0.119",
2683
+ ]
2684
+
2685
+ [[package]]
2686
+ name = "tokio-rustls"
2687
+ version = "0.26.4"
2688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2689
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2690
+ dependencies = [
2691
+ "rustls",
2692
+ "tokio",
2693
+ ]
2694
+
2695
+ [[package]]
2696
+ name = "tokio-stream"
2697
+ version = "0.1.18"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2700
+ dependencies = [
2701
+ "futures-core",
2702
+ "pin-project-lite",
2703
+ "tokio",
2704
+ ]
2705
+
2706
+ [[package]]
2707
+ name = "tokio-util"
2708
+ version = "0.7.18"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2711
+ dependencies = [
2712
+ "bytes",
2713
+ "futures-core",
2714
+ "futures-sink",
2715
+ "pin-project-lite",
2716
+ "tokio",
2717
+ ]
2718
+
2719
+ [[package]]
2720
+ name = "toml_datetime"
2721
+ version = "1.1.1+spec-1.1.0"
2722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2723
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
2724
+ dependencies = [
2725
+ "serde_core",
2726
+ ]
2727
+
2728
+ [[package]]
2729
+ name = "toml_edit"
2730
+ version = "0.25.13+spec-1.1.0"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
2733
+ dependencies = [
2734
+ "indexmap 2.14.0",
2735
+ "toml_datetime",
2736
+ "toml_parser",
2737
+ "winnow",
2738
+ ]
2739
+
2740
+ [[package]]
2741
+ name = "toml_parser"
2742
+ version = "1.1.2+spec-1.1.0"
2743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2744
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
2745
+ dependencies = [
2746
+ "winnow",
2747
+ ]
2748
+
2749
+ [[package]]
2750
+ name = "tonic"
2751
+ version = "0.12.3"
2752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2753
+ checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
2754
+ dependencies = [
2755
+ "async-stream",
2756
+ "async-trait",
2757
+ "axum",
2758
+ "base64",
2759
+ "bytes",
2760
+ "h2",
2761
+ "http",
2762
+ "http-body",
2763
+ "http-body-util",
2764
+ "hyper",
2765
+ "hyper-timeout",
2766
+ "hyper-util",
2767
+ "percent-encoding",
2768
+ "pin-project",
2769
+ "prost",
2770
+ "rustls-pemfile",
2771
+ "socket2 0.5.10",
2772
+ "tokio",
2773
+ "tokio-rustls",
2774
+ "tokio-stream",
2775
+ "tower 0.4.13",
2776
+ "tower-layer",
2777
+ "tower-service",
2778
+ "tracing",
2779
+ ]
2780
+
2781
+ [[package]]
2782
+ name = "tonic-build"
2783
+ version = "0.12.3"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11"
2786
+ dependencies = [
2787
+ "prettyplease",
2788
+ "proc-macro2",
2789
+ "prost-build",
2790
+ "prost-types",
2791
+ "quote",
2792
+ "syn 2.0.119",
2793
+ ]
2794
+
2795
+ [[package]]
2796
+ name = "tower"
2797
+ version = "0.4.13"
2798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2799
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2800
+ dependencies = [
2801
+ "futures-core",
2802
+ "futures-util",
2803
+ "indexmap 1.9.3",
2804
+ "pin-project",
2805
+ "pin-project-lite",
2806
+ "rand",
2807
+ "slab",
2808
+ "tokio",
2809
+ "tokio-util",
2810
+ "tower-layer",
2811
+ "tower-service",
2812
+ "tracing",
2813
+ ]
2814
+
2815
+ [[package]]
2816
+ name = "tower"
2817
+ version = "0.5.3"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2820
+ dependencies = [
2821
+ "futures-core",
2822
+ "futures-util",
2823
+ "pin-project-lite",
2824
+ "sync_wrapper",
2825
+ "tokio",
2826
+ "tower-layer",
2827
+ "tower-service",
2828
+ "tracing",
2829
+ ]
2830
+
2831
+ [[package]]
2832
+ name = "tower-http"
2833
+ version = "0.6.11"
2834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2835
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2836
+ dependencies = [
2837
+ "bitflags",
2838
+ "bytes",
2839
+ "http",
2840
+ "http-body",
2841
+ "http-body-util",
2842
+ "pin-project-lite",
2843
+ "tower-layer",
2844
+ "tower-service",
2845
+ "tracing",
2846
+ ]
2847
+
2848
+ [[package]]
2849
+ name = "tower-layer"
2850
+ version = "0.3.3"
2851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2852
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2853
+
2854
+ [[package]]
2855
+ name = "tower-service"
2856
+ version = "0.3.3"
2857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2858
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2859
+
2860
+ [[package]]
2861
+ name = "tracing"
2862
+ version = "0.1.44"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2865
+ dependencies = [
2866
+ "log",
2867
+ "pin-project-lite",
2868
+ "tracing-attributes",
2869
+ "tracing-core",
2870
+ ]
2871
+
2872
+ [[package]]
2873
+ name = "tracing-attributes"
2874
+ version = "0.1.31"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2877
+ dependencies = [
2878
+ "proc-macro2",
2879
+ "quote",
2880
+ "syn 2.0.119",
2881
+ ]
2882
+
2883
+ [[package]]
2884
+ name = "tracing-core"
2885
+ version = "0.1.36"
2886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2887
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2888
+ dependencies = [
2889
+ "once_cell",
2890
+ "valuable",
2891
+ ]
2892
+
2893
+ [[package]]
2894
+ name = "tracing-futures"
2895
+ version = "0.2.5"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
2898
+ dependencies = [
2899
+ "pin-project",
2900
+ "tracing",
2901
+ ]
2902
+
2903
+ [[package]]
2904
+ name = "tracing-log"
2905
+ version = "0.2.0"
2906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2907
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2908
+ dependencies = [
2909
+ "log",
2910
+ "once_cell",
2911
+ "tracing-core",
2912
+ ]
2913
+
2914
+ [[package]]
2915
+ name = "tracing-subscriber"
2916
+ version = "0.3.23"
2917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2918
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2919
+ dependencies = [
2920
+ "matchers",
2921
+ "nu-ansi-term",
2922
+ "once_cell",
2923
+ "regex-automata",
2924
+ "sharded-slab",
2925
+ "smallvec",
2926
+ "thread_local",
2927
+ "tracing",
2928
+ "tracing-core",
2929
+ "tracing-log",
2930
+ ]
2931
+
2932
+ [[package]]
2933
+ name = "try-lock"
2934
+ version = "0.2.5"
2935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2936
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2937
+
2938
+ [[package]]
2939
+ name = "typenum"
2940
+ version = "1.20.1"
2941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2942
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2943
+
2944
+ [[package]]
2945
+ name = "unicode-ident"
2946
+ version = "1.0.24"
2947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2948
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2949
+
2950
+ [[package]]
2951
+ name = "unicode-xid"
2952
+ version = "0.2.6"
2953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2954
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2955
+
2956
+ [[package]]
2957
+ name = "unindent"
2958
+ version = "0.2.4"
2959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2960
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2961
+
2962
+ [[package]]
2963
+ name = "universal-hash"
2964
+ version = "0.5.1"
2965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2966
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
2967
+ dependencies = [
2968
+ "crypto-common",
2969
+ "subtle",
2970
+ ]
2971
+
2972
+ [[package]]
2973
+ name = "untrusted"
2974
+ version = "0.9.0"
2975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2976
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2977
+
2978
+ [[package]]
2979
+ name = "ureq"
2980
+ version = "2.12.1"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
2983
+ dependencies = [
2984
+ "base64",
2985
+ "flate2",
2986
+ "log",
2987
+ "once_cell",
2988
+ "rustls",
2989
+ "rustls-pki-types",
2990
+ "url",
2991
+ "webpki-roots 0.26.11",
2992
+ ]
2993
+
2994
+ [[package]]
2995
+ name = "url"
2996
+ version = "2.5.8"
2997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2998
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2999
+ dependencies = [
3000
+ "form_urlencoded",
3001
+ "idna",
3002
+ "percent-encoding",
3003
+ "serde",
3004
+ ]
3005
+
3006
+ [[package]]
3007
+ name = "utf8-width"
3008
+ version = "0.1.9"
3009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3010
+ checksum = "159a7cadce548703edd50d24069bc294c5415ecab0a480e0cd1ca06d112dc94a"
3011
+
3012
+ [[package]]
3013
+ name = "utf8_iter"
3014
+ version = "1.0.4"
3015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3016
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3017
+
3018
+ [[package]]
3019
+ name = "utf8parse"
3020
+ version = "0.2.2"
3021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3022
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3023
+
3024
+ [[package]]
3025
+ name = "uuid"
3026
+ version = "1.24.0"
3027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3028
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
3029
+ dependencies = [
3030
+ "js-sys",
3031
+ "wasm-bindgen",
3032
+ ]
3033
+
3034
+ [[package]]
3035
+ name = "validit"
3036
+ version = "0.2.6"
3037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3038
+ checksum = "4417835826b78aa6265724624d424df2b1e6e71a33329227d8b04a88950780dc"
3039
+ dependencies = [
3040
+ "anyerror",
3041
+ ]
3042
+
3043
+ [[package]]
3044
+ name = "valuable"
3045
+ version = "0.1.1"
3046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3047
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3048
+
3049
+ [[package]]
3050
+ name = "version_check"
3051
+ version = "0.9.5"
3052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3053
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3054
+
3055
+ [[package]]
3056
+ name = "want"
3057
+ version = "0.3.1"
3058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3059
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3060
+ dependencies = [
3061
+ "try-lock",
3062
+ ]
3063
+
3064
+ [[package]]
3065
+ name = "wasi"
3066
+ version = "0.11.1+wasi-snapshot-preview1"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3069
+
3070
+ [[package]]
3071
+ name = "wasip2"
3072
+ version = "1.0.4+wasi-0.2.12"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
3075
+ dependencies = [
3076
+ "wit-bindgen",
3077
+ ]
3078
+
3079
+ [[package]]
3080
+ name = "wasm-bindgen"
3081
+ version = "0.2.126"
3082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3083
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
3084
+ dependencies = [
3085
+ "cfg-if",
3086
+ "once_cell",
3087
+ "rustversion",
3088
+ "wasm-bindgen-macro",
3089
+ "wasm-bindgen-shared",
3090
+ ]
3091
+
3092
+ [[package]]
3093
+ name = "wasm-bindgen-macro"
3094
+ version = "0.2.126"
3095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3096
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
3097
+ dependencies = [
3098
+ "quote",
3099
+ "wasm-bindgen-macro-support",
3100
+ ]
3101
+
3102
+ [[package]]
3103
+ name = "wasm-bindgen-macro-support"
3104
+ version = "0.2.126"
3105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3106
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
3107
+ dependencies = [
3108
+ "bumpalo",
3109
+ "proc-macro2",
3110
+ "quote",
3111
+ "syn 2.0.119",
3112
+ "wasm-bindgen-shared",
3113
+ ]
3114
+
3115
+ [[package]]
3116
+ name = "wasm-bindgen-shared"
3117
+ version = "0.2.126"
3118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3119
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
3120
+ dependencies = [
3121
+ "unicode-ident",
3122
+ ]
3123
+
3124
+ [[package]]
3125
+ name = "webpki-roots"
3126
+ version = "0.26.11"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
3129
+ dependencies = [
3130
+ "webpki-roots 1.0.9",
3131
+ ]
3132
+
3133
+ [[package]]
3134
+ name = "webpki-roots"
3135
+ version = "1.0.9"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
3138
+ dependencies = [
3139
+ "rustls-pki-types",
3140
+ ]
3141
+
3142
+ [[package]]
3143
+ name = "windows-core"
3144
+ version = "0.62.2"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3147
+ dependencies = [
3148
+ "windows-implement",
3149
+ "windows-interface",
3150
+ "windows-link",
3151
+ "windows-result",
3152
+ "windows-strings",
3153
+ ]
3154
+
3155
+ [[package]]
3156
+ name = "windows-implement"
3157
+ version = "0.60.2"
3158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3159
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3160
+ dependencies = [
3161
+ "proc-macro2",
3162
+ "quote",
3163
+ "syn 2.0.119",
3164
+ ]
3165
+
3166
+ [[package]]
3167
+ name = "windows-interface"
3168
+ version = "0.59.3"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3171
+ dependencies = [
3172
+ "proc-macro2",
3173
+ "quote",
3174
+ "syn 2.0.119",
3175
+ ]
3176
+
3177
+ [[package]]
3178
+ name = "windows-link"
3179
+ version = "0.2.1"
3180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3181
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3182
+
3183
+ [[package]]
3184
+ name = "windows-result"
3185
+ version = "0.4.1"
3186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3187
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3188
+ dependencies = [
3189
+ "windows-link",
3190
+ ]
3191
+
3192
+ [[package]]
3193
+ name = "windows-strings"
3194
+ version = "0.5.1"
3195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3196
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3197
+ dependencies = [
3198
+ "windows-link",
3199
+ ]
3200
+
3201
+ [[package]]
3202
+ name = "windows-sys"
3203
+ version = "0.52.0"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3206
+ dependencies = [
3207
+ "windows-targets",
3208
+ ]
3209
+
3210
+ [[package]]
3211
+ name = "windows-sys"
3212
+ version = "0.61.2"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3215
+ dependencies = [
3216
+ "windows-link",
3217
+ ]
3218
+
3219
+ [[package]]
3220
+ name = "windows-targets"
3221
+ version = "0.52.6"
3222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3223
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3224
+ dependencies = [
3225
+ "windows_aarch64_gnullvm",
3226
+ "windows_aarch64_msvc",
3227
+ "windows_i686_gnu",
3228
+ "windows_i686_gnullvm",
3229
+ "windows_i686_msvc",
3230
+ "windows_x86_64_gnu",
3231
+ "windows_x86_64_gnullvm",
3232
+ "windows_x86_64_msvc",
3233
+ ]
3234
+
3235
+ [[package]]
3236
+ name = "windows_aarch64_gnullvm"
3237
+ version = "0.52.6"
3238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3239
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3240
+
3241
+ [[package]]
3242
+ name = "windows_aarch64_msvc"
3243
+ version = "0.52.6"
3244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3245
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3246
+
3247
+ [[package]]
3248
+ name = "windows_i686_gnu"
3249
+ version = "0.52.6"
3250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3251
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3252
+
3253
+ [[package]]
3254
+ name = "windows_i686_gnullvm"
3255
+ version = "0.52.6"
3256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3257
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3258
+
3259
+ [[package]]
3260
+ name = "windows_i686_msvc"
3261
+ version = "0.52.6"
3262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3263
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3264
+
3265
+ [[package]]
3266
+ name = "windows_x86_64_gnu"
3267
+ version = "0.52.6"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3270
+
3271
+ [[package]]
3272
+ name = "windows_x86_64_gnullvm"
3273
+ version = "0.52.6"
3274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3275
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3276
+
3277
+ [[package]]
3278
+ name = "windows_x86_64_msvc"
3279
+ version = "0.52.6"
3280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3281
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3282
+
3283
+ [[package]]
3284
+ name = "winnow"
3285
+ version = "1.0.4"
3286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3287
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
3288
+ dependencies = [
3289
+ "memchr",
3290
+ ]
3291
+
3292
+ [[package]]
3293
+ name = "wit-bindgen"
3294
+ version = "0.57.1"
3295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3296
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3297
+
3298
+ [[package]]
3299
+ name = "writeable"
3300
+ version = "0.6.3"
3301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3302
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3303
+
3304
+ [[package]]
3305
+ name = "wyz"
3306
+ version = "0.5.1"
3307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3308
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
3309
+ dependencies = [
3310
+ "tap",
3311
+ ]
3312
+
3313
+ [[package]]
3314
+ name = "yoke"
3315
+ version = "0.8.3"
3316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3317
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
3318
+ dependencies = [
3319
+ "stable_deref_trait",
3320
+ "yoke-derive",
3321
+ "zerofrom",
3322
+ ]
3323
+
3324
+ [[package]]
3325
+ name = "yoke-derive"
3326
+ version = "0.8.2"
3327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3328
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3329
+ dependencies = [
3330
+ "proc-macro2",
3331
+ "quote",
3332
+ "syn 2.0.119",
3333
+ "synstructure",
3334
+ ]
3335
+
3336
+ [[package]]
3337
+ name = "zerocopy"
3338
+ version = "0.8.54"
3339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3340
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
3341
+ dependencies = [
3342
+ "zerocopy-derive",
3343
+ ]
3344
+
3345
+ [[package]]
3346
+ name = "zerocopy-derive"
3347
+ version = "0.8.54"
3348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3349
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
3350
+ dependencies = [
3351
+ "proc-macro2",
3352
+ "quote",
3353
+ "syn 2.0.119",
3354
+ ]
3355
+
3356
+ [[package]]
3357
+ name = "zerofrom"
3358
+ version = "0.1.8"
3359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3360
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3361
+ dependencies = [
3362
+ "zerofrom-derive",
3363
+ ]
3364
+
3365
+ [[package]]
3366
+ name = "zerofrom-derive"
3367
+ version = "0.1.7"
3368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3369
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3370
+ dependencies = [
3371
+ "proc-macro2",
3372
+ "quote",
3373
+ "syn 2.0.119",
3374
+ "synstructure",
3375
+ ]
3376
+
3377
+ [[package]]
3378
+ name = "zeroize"
3379
+ version = "1.9.0"
3380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3381
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
3382
+
3383
+ [[package]]
3384
+ name = "zerotrie"
3385
+ version = "0.2.4"
3386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3387
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3388
+ dependencies = [
3389
+ "displaydoc",
3390
+ "yoke",
3391
+ "zerofrom",
3392
+ ]
3393
+
3394
+ [[package]]
3395
+ name = "zerovec"
3396
+ version = "0.11.6"
3397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3398
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3399
+ dependencies = [
3400
+ "yoke",
3401
+ "zerofrom",
3402
+ "zerovec-derive",
3403
+ ]
3404
+
3405
+ [[package]]
3406
+ name = "zerovec-derive"
3407
+ version = "0.11.3"
3408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3409
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3410
+ dependencies = [
3411
+ "proc-macro2",
3412
+ "quote",
3413
+ "syn 2.0.119",
3414
+ ]
3415
+
3416
+ [[package]]
3417
+ name = "zmij"
3418
+ version = "1.0.23"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"