Add cargo lock file. (#20855)
vkalintiris committed
Aug 20, 2025 at 11:18 UTC
a952365b06f9957325f1bc8c3a607c7bc2cef6df
2 files changed
+2211
-1
src/crates/jf/.gitignore
-1
@@ -1,4 +1,3 @@
1
target/
2
.idea/
3
-Cargo.lock
3
journal_reader_ffi/journal_reader_ffi.h
src/crates/jf/Cargo.lock
new
+2211
@@ -0,0 +1,2211 @@
1
+# This file is automatically @generated by Cargo.
2
+# It is not intended for manual editing.
3
+version = 4
4
+
5
+[[package]]
6
+name = "addr2line"
7
+version = "0.24.2"
8
+source = "registry+https://github.com/rust-lang/crates.io-index"
9
+checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10
+dependencies = [
11
+ "gimli",
12
+]
13
+
14
+[[package]]
15
+name = "adler2"
16
+version = "2.0.1"
17
+source = "registry+https://github.com/rust-lang/crates.io-index"
18
+checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+[[package]]
21
+name = "aho-corasick"
22
+version = "1.1.3"
23
+source = "registry+https://github.com/rust-lang/crates.io-index"
24
+checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
25
+dependencies = [
26
+ "memchr",
27
+]
28
+
29
+[[package]]
30
+name = "android-tzdata"
31
+version = "0.1.1"
32
+source = "registry+https://github.com/rust-lang/crates.io-index"
33
+checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
34
+
35
+[[package]]
36
+name = "android_system_properties"
37
+version = "0.1.5"
38
+source = "registry+https://github.com/rust-lang/crates.io-index"
39
+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
40
+dependencies = [
41
+ "libc",
42
+]
43
+
44
+[[package]]
45
+name = "anstream"
46
+version = "0.6.20"
47
+source = "registry+https://github.com/rust-lang/crates.io-index"
48
+checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
49
+dependencies = [
50
+ "anstyle",
51
+ "anstyle-parse",
52
+ "anstyle-query",
53
+ "anstyle-wincon",
54
+ "colorchoice",
55
+ "is_terminal_polyfill",
56
+ "utf8parse",
57
+]
58
+
59
+[[package]]
60
+name = "anstyle"
61
+version = "1.0.11"
62
+source = "registry+https://github.com/rust-lang/crates.io-index"
63
+checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
64
+
65
+[[package]]
66
+name = "anstyle-parse"
67
+version = "0.2.7"
68
+source = "registry+https://github.com/rust-lang/crates.io-index"
69
+checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
70
+dependencies = [
71
+ "utf8parse",
72
+]
73
+
74
+[[package]]
75
+name = "anstyle-query"
76
+version = "1.1.4"
77
+source = "registry+https://github.com/rust-lang/crates.io-index"
78
+checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
79
+dependencies = [
80
+ "windows-sys 0.60.2",
81
+]
82
+
83
+[[package]]
84
+name = "anstyle-wincon"
85
+version = "3.0.10"
86
+source = "registry+https://github.com/rust-lang/crates.io-index"
87
+checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
88
+dependencies = [
89
+ "anstyle",
90
+ "once_cell_polyfill",
91
+ "windows-sys 0.60.2",
92
+]
93
+
94
+[[package]]
95
+name = "anyhow"
96
+version = "1.0.99"
97
+source = "registry+https://github.com/rust-lang/crates.io-index"
98
+checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
99
+
100
+[[package]]
101
+name = "async-trait"
102
+version = "0.1.89"
103
+source = "registry+https://github.com/rust-lang/crates.io-index"
104
+checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
105
+dependencies = [
106
+ "proc-macro2",
107
+ "quote",
108
+ "syn",
109
+]
110
+
111
+[[package]]
112
+name = "atomic-waker"
113
+version = "1.1.2"
114
+source = "registry+https://github.com/rust-lang/crates.io-index"
115
+checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
116
+
117
+[[package]]
118
+name = "atty"
119
+version = "0.2.14"
120
+source = "registry+https://github.com/rust-lang/crates.io-index"
121
+checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
122
+dependencies = [
123
+ "hermit-abi",
124
+ "libc",
125
+ "winapi",
126
+]
127
+
128
+[[package]]
129
+name = "autocfg"
130
+version = "1.5.0"
131
+source = "registry+https://github.com/rust-lang/crates.io-index"
132
+checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
133
+
134
+[[package]]
135
+name = "axum"
136
+version = "0.8.4"
137
+source = "registry+https://github.com/rust-lang/crates.io-index"
138
+checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5"
139
+dependencies = [
140
+ "axum-core",
141
+ "bytes",
142
+ "futures-util",
143
+ "http",
144
+ "http-body",
145
+ "http-body-util",
146
+ "itoa",
147
+ "matchit",
148
+ "memchr",
149
+ "mime",
150
+ "percent-encoding",
151
+ "pin-project-lite",
152
+ "rustversion",
153
+ "serde",
154
+ "sync_wrapper",
155
+ "tower",
156
+ "tower-layer",
157
+ "tower-service",
158
+]
159
+
160
+[[package]]
161
+name = "axum-core"
162
+version = "0.5.2"
163
+source = "registry+https://github.com/rust-lang/crates.io-index"
164
+checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6"
165
+dependencies = [
166
+ "bytes",
167
+ "futures-core",
168
+ "http",
169
+ "http-body",
170
+ "http-body-util",
171
+ "mime",
172
+ "pin-project-lite",
173
+ "rustversion",
174
+ "sync_wrapper",
175
+ "tower-layer",
176
+ "tower-service",
177
+]
178
+
179
+[[package]]
180
+name = "backtrace"
181
+version = "0.3.75"
182
+source = "registry+https://github.com/rust-lang/crates.io-index"
183
+checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
184
+dependencies = [
185
+ "addr2line",
186
+ "cfg-if",
187
+ "libc",
188
+ "miniz_oxide",
189
+ "object",
190
+ "rustc-demangle",
191
+ "windows-targets 0.52.6",
192
+]
193
+
194
+[[package]]
195
+name = "base64"
196
+version = "0.21.7"
197
+source = "registry+https://github.com/rust-lang/crates.io-index"
198
+checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
199
+
200
+[[package]]
201
+name = "base64"
202
+version = "0.22.1"
203
+source = "registry+https://github.com/rust-lang/crates.io-index"
204
+checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
205
+
206
+[[package]]
207
+name = "bitflags"
208
+version = "2.9.2"
209
+source = "registry+https://github.com/rust-lang/crates.io-index"
210
+checksum = "6a65b545ab31d687cff52899d4890855fec459eb6afe0da6417b8a18da87aa29"
211
+
212
+[[package]]
213
+name = "bumpalo"
214
+version = "3.19.0"
215
+source = "registry+https://github.com/rust-lang/crates.io-index"
216
+checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
217
+
218
+[[package]]
219
+name = "bytes"
220
+version = "1.10.1"
221
+source = "registry+https://github.com/rust-lang/crates.io-index"
222
+checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
223
+
224
+[[package]]
225
+name = "bytesize"
226
+version = "1.3.3"
227
+source = "registry+https://github.com/rust-lang/crates.io-index"
228
+checksum = "2e93abca9e28e0a1b9877922aacb20576e05d4679ffa78c3d6dc22a26a216659"
229
+
230
+[[package]]
231
+name = "bytesize-serde"
232
+version = "0.2.1"
233
+source = "registry+https://github.com/rust-lang/crates.io-index"
234
+checksum = "86d1eb2fd2668859e9785b99700c66b7ea9fdeda35d99f95827a4e5493440178"
235
+dependencies = [
236
+ "bytesize",
237
+ "serde",
238
+]
239
+
240
+[[package]]
241
+name = "cbindgen"
242
+version = "0.28.0"
243
+source = "registry+https://github.com/rust-lang/crates.io-index"
244
+checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
245
+dependencies = [
246
+ "clap",
247
+ "heck 0.4.1",
248
+ "indexmap",
249
+ "log",
250
+ "proc-macro2",
251
+ "quote",
252
+ "serde",
253
+ "serde_json",
254
+ "syn",
255
+ "tempfile",
256
+ "toml",
257
+]
258
+
259
+[[package]]
260
+name = "cc"
261
+version = "1.2.33"
262
+source = "registry+https://github.com/rust-lang/crates.io-index"
263
+checksum = "3ee0f8803222ba5a7e2777dd72ca451868909b1ac410621b676adf07280e9b5f"
264
+dependencies = [
265
+ "shlex",
266
+]
267
+
268
+[[package]]
269
+name = "cfg-if"
270
+version = "1.0.3"
271
+source = "registry+https://github.com/rust-lang/crates.io-index"
272
+checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
273
+
274
+[[package]]
275
+name = "chrono"
276
+version = "0.4.41"
277
+source = "registry+https://github.com/rust-lang/crates.io-index"
278
+checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
279
+dependencies = [
280
+ "android-tzdata",
281
+ "iana-time-zone",
282
+ "js-sys",
283
+ "num-traits",
284
+ "serde",
285
+ "wasm-bindgen",
286
+ "windows-link",
287
+]
288
+
289
+[[package]]
290
+name = "clap"
291
+version = "4.5.45"
292
+source = "registry+https://github.com/rust-lang/crates.io-index"
293
+checksum = "1fc0e74a703892159f5ae7d3aac52c8e6c392f5ae5f359c70b5881d60aaac318"
294
+dependencies = [
295
+ "clap_builder",
296
+ "clap_derive",
297
+]
298
+
299
+[[package]]
300
+name = "clap_builder"
301
+version = "4.5.44"
302
+source = "registry+https://github.com/rust-lang/crates.io-index"
303
+checksum = "b3e7f4214277f3c7aa526a59dd3fbe306a370daee1f8b7b8c987069cd8e888a8"
304
+dependencies = [
305
+ "anstream",
306
+ "anstyle",
307
+ "clap_lex",
308
+ "strsim",
309
+]
310
+
311
+[[package]]
312
+name = "clap_derive"
313
+version = "4.5.45"
314
+source = "registry+https://github.com/rust-lang/crates.io-index"
315
+checksum = "14cb31bb0a7d536caef2639baa7fad459e15c3144efefa6dbd1c84562c4739f6"
316
+dependencies = [
317
+ "heck 0.5.0",
318
+ "proc-macro2",
319
+ "quote",
320
+ "syn",
321
+]
322
+
323
+[[package]]
324
+name = "clap_lex"
325
+version = "0.7.5"
326
+source = "registry+https://github.com/rust-lang/crates.io-index"
327
+checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
328
+
329
+[[package]]
330
+name = "colorchoice"
331
+version = "1.0.4"
332
+source = "registry+https://github.com/rust-lang/crates.io-index"
333
+checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
334
+
335
+[[package]]
336
+name = "core-foundation-sys"
337
+version = "0.8.7"
338
+source = "registry+https://github.com/rust-lang/crates.io-index"
339
+checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
340
+
341
+[[package]]
342
+name = "crc32fast"
343
+version = "1.5.0"
344
+source = "registry+https://github.com/rust-lang/crates.io-index"
345
+checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
346
+dependencies = [
347
+ "cfg-if",
348
+]
349
+
350
+[[package]]
351
+name = "either"
352
+version = "1.15.0"
353
+source = "registry+https://github.com/rust-lang/crates.io-index"
354
+checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
355
+
356
+[[package]]
357
+name = "equivalent"
358
+version = "1.0.2"
359
+source = "registry+https://github.com/rust-lang/crates.io-index"
360
+checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
361
+
362
+[[package]]
363
+name = "errno"
364
+version = "0.3.13"
365
+source = "registry+https://github.com/rust-lang/crates.io-index"
366
+checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
367
+dependencies = [
368
+ "libc",
369
+ "windows-sys 0.60.2",
370
+]
371
+
372
+[[package]]
373
+name = "error"
374
+version = "0.1.0"
375
+dependencies = [
376
+ "static_assertions",
377
+ "thiserror",
378
+ "zerocopy 0.9.0-alpha.0",
379
+]
380
+
381
+[[package]]
382
+name = "fastrand"
383
+version = "2.3.0"
384
+source = "registry+https://github.com/rust-lang/crates.io-index"
385
+checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
386
+
387
+[[package]]
388
+name = "fixedbitset"
389
+version = "0.5.7"
390
+source = "registry+https://github.com/rust-lang/crates.io-index"
391
+checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
392
+
393
+[[package]]
394
+name = "flate2"
395
+version = "1.1.2"
396
+source = "registry+https://github.com/rust-lang/crates.io-index"
397
+checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
398
+dependencies = [
399
+ "crc32fast",
400
+ "miniz_oxide",
401
+]
402
+
403
+[[package]]
404
+name = "flatten-serde-json"
405
+version = "1.18.0"
406
+source = "git+https://github.com/meilisearch/meilisearch?branch=main#795045c03a27212549119e5ae9d5ac99ad711c89"
407
+dependencies = [
408
+ "serde_json",
409
+]
410
+
411
+[[package]]
412
+name = "flatten-serde-json"
413
+version = "1.18.0"
414
+source = "git+https://github.com/meilisearch/meilisearch#795045c03a27212549119e5ae9d5ac99ad711c89"
415
+dependencies = [
416
+ "serde_json",
417
+]
418
+
419
+[[package]]
420
+name = "flatten_otel"
421
+version = "0.1.0"
422
+dependencies = [
423
+ "flatten-serde-json 1.18.0 (git+https://github.com/meilisearch/meilisearch)",
424
+ "opentelemetry-proto",
425
+ "serde_json",
426
+]
427
+
428
+[[package]]
429
+name = "flog-otel"
430
+version = "0.1.0"
431
+dependencies = [
432
+ "anyhow",
433
+ "chrono",
434
+ "clap",
435
+ "opentelemetry-proto",
436
+ "prost",
437
+ "serde",
438
+ "serde_json",
439
+ "tokio",
440
+ "tonic",
441
+ "tonic-build",
442
+ "tracing",
443
+ "tracing-subscriber",
444
+ "uuid",
445
+]
446
+
447
+[[package]]
448
+name = "fnv"
449
+version = "1.0.7"
450
+source = "registry+https://github.com/rust-lang/crates.io-index"
451
+checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
452
+
453
+[[package]]
454
+name = "futures-channel"
455
+version = "0.3.31"
456
+source = "registry+https://github.com/rust-lang/crates.io-index"
457
+checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
458
+dependencies = [
459
+ "futures-core",
460
+]
461
+
462
+[[package]]
463
+name = "futures-core"
464
+version = "0.3.31"
465
+source = "registry+https://github.com/rust-lang/crates.io-index"
466
+checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
467
+
468
+[[package]]
469
+name = "futures-executor"
470
+version = "0.3.31"
471
+source = "registry+https://github.com/rust-lang/crates.io-index"
472
+checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
473
+dependencies = [
474
+ "futures-core",
475
+ "futures-task",
476
+ "futures-util",
477
+]
478
+
479
+[[package]]
480
+name = "futures-macro"
481
+version = "0.3.31"
482
+source = "registry+https://github.com/rust-lang/crates.io-index"
483
+checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
484
+dependencies = [
485
+ "proc-macro2",
486
+ "quote",
487
+ "syn",
488
+]
489
+
490
+[[package]]
491
+name = "futures-sink"
492
+version = "0.3.31"
493
+source = "registry+https://github.com/rust-lang/crates.io-index"
494
+checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
495
+
496
+[[package]]
497
+name = "futures-task"
498
+version = "0.3.31"
499
+source = "registry+https://github.com/rust-lang/crates.io-index"
500
+checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
501
+
502
+[[package]]
503
+name = "futures-util"
504
+version = "0.3.31"
505
+source = "registry+https://github.com/rust-lang/crates.io-index"
506
+checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
507
+dependencies = [
508
+ "futures-core",
509
+ "futures-macro",
510
+ "futures-sink",
511
+ "futures-task",
512
+ "pin-project-lite",
513
+ "pin-utils",
514
+ "slab",
515
+]
516
+
517
+[[package]]
518
+name = "getrandom"
519
+version = "0.2.16"
520
+source = "registry+https://github.com/rust-lang/crates.io-index"
521
+checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
522
+dependencies = [
523
+ "cfg-if",
524
+ "libc",
525
+ "wasi 0.11.1+wasi-snapshot-preview1",
526
+]
527
+
528
+[[package]]
529
+name = "getrandom"
530
+version = "0.3.3"
531
+source = "registry+https://github.com/rust-lang/crates.io-index"
532
+checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
533
+dependencies = [
534
+ "cfg-if",
535
+ "libc",
536
+ "r-efi",
537
+ "wasi 0.14.2+wasi-0.2.4",
538
+]
539
+
540
+[[package]]
541
+name = "gimli"
542
+version = "0.31.1"
543
+source = "registry+https://github.com/rust-lang/crates.io-index"
544
+checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
545
+
546
+[[package]]
547
+name = "h2"
548
+version = "0.4.12"
549
+source = "registry+https://github.com/rust-lang/crates.io-index"
550
+checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
551
+dependencies = [
552
+ "atomic-waker",
553
+ "bytes",
554
+ "fnv",
555
+ "futures-core",
556
+ "futures-sink",
557
+ "http",
558
+ "indexmap",
559
+ "slab",
560
+ "tokio",
561
+ "tokio-util",
562
+ "tracing",
563
+]
564
+
565
+[[package]]
566
+name = "hashbrown"
567
+version = "0.15.5"
568
+source = "registry+https://github.com/rust-lang/crates.io-index"
569
+checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
570
+
571
+[[package]]
572
+name = "heck"
573
+version = "0.4.1"
574
+source = "registry+https://github.com/rust-lang/crates.io-index"
575
+checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
576
+
577
+[[package]]
578
+name = "heck"
579
+version = "0.5.0"
580
+source = "registry+https://github.com/rust-lang/crates.io-index"
581
+checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
582
+
583
+[[package]]
584
+name = "hermit-abi"
585
+version = "0.1.19"
586
+source = "registry+https://github.com/rust-lang/crates.io-index"
587
+checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
588
+dependencies = [
589
+ "libc",
590
+]
591
+
592
+[[package]]
593
+name = "hex"
594
+version = "0.4.3"
595
+source = "registry+https://github.com/rust-lang/crates.io-index"
596
+checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
597
+
598
+[[package]]
599
+name = "http"
600
+version = "1.3.1"
601
+source = "registry+https://github.com/rust-lang/crates.io-index"
602
+checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
603
+dependencies = [
604
+ "bytes",
605
+ "fnv",
606
+ "itoa",
607
+]
608
+
609
+[[package]]
610
+name = "http-body"
611
+version = "1.0.1"
612
+source = "registry+https://github.com/rust-lang/crates.io-index"
613
+checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
614
+dependencies = [
615
+ "bytes",
616
+ "http",
617
+]
618
+
619
+[[package]]
620
+name = "http-body-util"
621
+version = "0.1.3"
622
+source = "registry+https://github.com/rust-lang/crates.io-index"
623
+checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
624
+dependencies = [
625
+ "bytes",
626
+ "futures-core",
627
+ "http",
628
+ "http-body",
629
+ "pin-project-lite",
630
+]
631
+
632
+[[package]]
633
+name = "httparse"
634
+version = "1.10.1"
635
+source = "registry+https://github.com/rust-lang/crates.io-index"
636
+checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
637
+
638
+[[package]]
639
+name = "httpdate"
640
+version = "1.0.3"
641
+source = "registry+https://github.com/rust-lang/crates.io-index"
642
+checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
643
+
644
+[[package]]
645
+name = "humantime"
646
+version = "2.2.0"
647
+source = "registry+https://github.com/rust-lang/crates.io-index"
648
+checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
649
+
650
+[[package]]
651
+name = "humantime-serde"
652
+version = "1.1.1"
653
+source = "registry+https://github.com/rust-lang/crates.io-index"
654
+checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
655
+dependencies = [
656
+ "humantime",
657
+ "serde",
658
+]
659
+
660
+[[package]]
661
+name = "hyper"
662
+version = "1.7.0"
663
+source = "registry+https://github.com/rust-lang/crates.io-index"
664
+checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
665
+dependencies = [
666
+ "atomic-waker",
667
+ "bytes",
668
+ "futures-channel",
669
+ "futures-core",
670
+ "h2",
671
+ "http",
672
+ "http-body",
673
+ "httparse",
674
+ "httpdate",
675
+ "itoa",
676
+ "pin-project-lite",
677
+ "pin-utils",
678
+ "smallvec",
679
+ "tokio",
680
+ "want",
681
+]
682
+
683
+[[package]]
684
+name = "hyper-timeout"
685
+version = "0.5.2"
686
+source = "registry+https://github.com/rust-lang/crates.io-index"
687
+checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
688
+dependencies = [
689
+ "hyper",
690
+ "hyper-util",
691
+ "pin-project-lite",
692
+ "tokio",
693
+ "tower-service",
694
+]
695
+
696
+[[package]]
697
+name = "hyper-util"
698
+version = "0.1.16"
699
+source = "registry+https://github.com/rust-lang/crates.io-index"
700
+checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
701
+dependencies = [
702
+ "bytes",
703
+ "futures-channel",
704
+ "futures-core",
705
+ "futures-util",
706
+ "http",
707
+ "http-body",
708
+ "hyper",
709
+ "libc",
710
+ "pin-project-lite",
711
+ "socket2 0.6.0",
712
+ "tokio",
713
+ "tower-service",
714
+ "tracing",
715
+]
716
+
717
+[[package]]
718
+name = "iana-time-zone"
719
+version = "0.1.63"
720
+source = "registry+https://github.com/rust-lang/crates.io-index"
721
+checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
722
+dependencies = [
723
+ "android_system_properties",
724
+ "core-foundation-sys",
725
+ "iana-time-zone-haiku",
726
+ "js-sys",
727
+ "log",
728
+ "wasm-bindgen",
729
+ "windows-core",
730
+]
731
+
732
+[[package]]
733
+name = "iana-time-zone-haiku"
734
+version = "0.1.2"
735
+source = "registry+https://github.com/rust-lang/crates.io-index"
736
+checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
737
+dependencies = [
738
+ "cc",
739
+]
740
+
741
+[[package]]
742
+name = "indexmap"
743
+version = "2.10.0"
744
+source = "registry+https://github.com/rust-lang/crates.io-index"
745
+checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
746
+dependencies = [
747
+ "equivalent",
748
+ "hashbrown",
749
+]
750
+
751
+[[package]]
752
+name = "io-uring"
753
+version = "0.7.9"
754
+source = "registry+https://github.com/rust-lang/crates.io-index"
755
+checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
756
+dependencies = [
757
+ "bitflags",
758
+ "cfg-if",
759
+ "libc",
760
+]
761
+
762
+[[package]]
763
+name = "is_terminal_polyfill"
764
+version = "1.70.1"
765
+source = "registry+https://github.com/rust-lang/crates.io-index"
766
+checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
767
+
768
+[[package]]
769
+name = "itertools"
770
+version = "0.14.0"
771
+source = "registry+https://github.com/rust-lang/crates.io-index"
772
+checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
773
+dependencies = [
774
+ "either",
775
+]
776
+
777
+[[package]]
778
+name = "itoa"
779
+version = "1.0.15"
780
+source = "registry+https://github.com/rust-lang/crates.io-index"
781
+checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
782
+
783
+[[package]]
784
+name = "journal_file"
785
+version = "0.1.0"
786
+dependencies = [
787
+ "error",
788
+ "hex",
789
+ "memmap2",
790
+ "rand",
791
+ "ruzstd",
792
+ "siphasher",
793
+ "tempfile",
794
+ "twox-hash",
795
+ "window_manager",
796
+ "zerocopy 0.9.0-alpha.0",
797
+]
798
+
799
+[[package]]
800
+name = "journal_log"
801
+version = "0.1.0"
802
+dependencies = [
803
+ "error",
804
+ "journal_file",
805
+ "memmap2",
806
+ "tempfile",
807
+ "uuid",
808
+]
809
+
810
+[[package]]
811
+name = "journal_reader_ffi"
812
+version = "0.1.0"
813
+dependencies = [
814
+ "cbindgen",
815
+ "error",
816
+ "journal_file",
817
+ "memmap2",
818
+ "serde_json",
819
+ "sigbus",
820
+]
821
+
822
+[[package]]
823
+name = "js-sys"
824
+version = "0.3.77"
825
+source = "registry+https://github.com/rust-lang/crates.io-index"
826
+checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
827
+dependencies = [
828
+ "once_cell",
829
+ "wasm-bindgen",
830
+]
831
+
832
+[[package]]
833
+name = "lazy_static"
834
+version = "1.5.0"
835
+source = "registry+https://github.com/rust-lang/crates.io-index"
836
+checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
837
+
838
+[[package]]
839
+name = "libc"
840
+version = "0.2.175"
841
+source = "registry+https://github.com/rust-lang/crates.io-index"
842
+checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
843
+
844
+[[package]]
845
+name = "linux-raw-sys"
846
+version = "0.9.4"
847
+source = "registry+https://github.com/rust-lang/crates.io-index"
848
+checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
849
+
850
+[[package]]
851
+name = "log"
852
+version = "0.4.27"
853
+source = "registry+https://github.com/rust-lang/crates.io-index"
854
+checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
855
+
856
+[[package]]
857
+name = "matchit"
858
+version = "0.8.4"
859
+source = "registry+https://github.com/rust-lang/crates.io-index"
860
+checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
861
+
862
+[[package]]
863
+name = "memchr"
864
+version = "2.7.5"
865
+source = "registry+https://github.com/rust-lang/crates.io-index"
866
+checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
867
+
868
+[[package]]
869
+name = "memmap2"
870
+version = "0.9.7"
871
+source = "registry+https://github.com/rust-lang/crates.io-index"
872
+checksum = "483758ad303d734cec05e5c12b41d7e93e6a6390c5e9dae6bdeb7c1259012d28"
873
+dependencies = [
874
+ "libc",
875
+]
876
+
877
+[[package]]
878
+name = "mime"
879
+version = "0.3.17"
880
+source = "registry+https://github.com/rust-lang/crates.io-index"
881
+checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
882
+
883
+[[package]]
884
+name = "miniz_oxide"
885
+version = "0.8.9"
886
+source = "registry+https://github.com/rust-lang/crates.io-index"
887
+checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
888
+dependencies = [
889
+ "adler2",
890
+]
891
+
892
+[[package]]
893
+name = "mio"
894
+version = "1.0.4"
895
+source = "registry+https://github.com/rust-lang/crates.io-index"
896
+checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
897
+dependencies = [
898
+ "libc",
899
+ "wasi 0.11.1+wasi-snapshot-preview1",
900
+ "windows-sys 0.59.0",
901
+]
902
+
903
+[[package]]
904
+name = "multimap"
905
+version = "0.10.1"
906
+source = "registry+https://github.com/rust-lang/crates.io-index"
907
+checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
908
+
909
+[[package]]
910
+name = "nu-ansi-term"
911
+version = "0.46.0"
912
+source = "registry+https://github.com/rust-lang/crates.io-index"
913
+checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
914
+dependencies = [
915
+ "overload",
916
+ "winapi",
917
+]
918
+
919
+[[package]]
920
+name = "num-traits"
921
+version = "0.2.19"
922
+source = "registry+https://github.com/rust-lang/crates.io-index"
923
+checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
924
+dependencies = [
925
+ "autocfg",
926
+]
927
+
928
+[[package]]
929
+name = "object"
930
+version = "0.36.7"
931
+source = "registry+https://github.com/rust-lang/crates.io-index"
932
+checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
933
+dependencies = [
934
+ "memchr",
935
+]
936
+
937
+[[package]]
938
+name = "once_cell"
939
+version = "1.21.3"
940
+source = "registry+https://github.com/rust-lang/crates.io-index"
941
+checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
942
+
943
+[[package]]
944
+name = "once_cell_polyfill"
945
+version = "1.70.1"
946
+source = "registry+https://github.com/rust-lang/crates.io-index"
947
+checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
948
+
949
+[[package]]
950
+name = "opentelemetry"
951
+version = "0.30.0"
952
+source = "registry+https://github.com/rust-lang/crates.io-index"
953
+checksum = "aaf416e4cb72756655126f7dd7bb0af49c674f4c1b9903e80c009e0c37e552e6"
954
+dependencies = [
955
+ "futures-core",
956
+ "futures-sink",
957
+ "js-sys",
958
+ "pin-project-lite",
959
+ "thiserror",
960
+ "tracing",
961
+]
962
+
963
+[[package]]
964
+name = "opentelemetry-proto"
965
+version = "0.30.0"
966
+source = "registry+https://github.com/rust-lang/crates.io-index"
967
+checksum = "2e046fd7660710fe5a05e8748e70d9058dc15c94ba914e7c4faa7c728f0e8ddc"
968
+dependencies = [
969
+ "base64 0.22.1",
970
+ "hex",
971
+ "opentelemetry",
972
+ "opentelemetry_sdk",
973
+ "prost",
974
+ "serde",
975
+ "tonic",
976
+]
977
+
978
+[[package]]
979
+name = "opentelemetry_sdk"
980
+version = "0.30.0"
981
+source = "registry+https://github.com/rust-lang/crates.io-index"
982
+checksum = "11f644aa9e5e31d11896e024305d7e3c98a88884d9f8919dbf37a9991bc47a4b"
983
+dependencies = [
984
+ "futures-channel",
985
+ "futures-executor",
986
+ "futures-util",
987
+ "opentelemetry",
988
+ "percent-encoding",
989
+ "rand",
990
+ "serde_json",
991
+ "thiserror",
992
+]
993
+
994
+[[package]]
995
+name = "otel-plugin"
996
+version = "0.1.0"
997
+dependencies = [
998
+ "anyhow",
999
+ "atty",
1000
+ "base64 0.21.7",
1001
+ "bytesize",
1002
+ "bytesize-serde",
1003
+ "clap",
1004
+ "flatten-serde-json 1.18.0 (git+https://github.com/meilisearch/meilisearch?branch=main)",
1005
+ "flatten_otel",
1006
+ "humantime",
1007
+ "humantime-serde",
1008
+ "journal_file",
1009
+ "journal_log",
1010
+ "memmap2",
1011
+ "opentelemetry-proto",
1012
+ "prost",
1013
+ "regex",
1014
+ "serde",
1015
+ "serde_json",
1016
+ "serde_regex",
1017
+ "serde_yaml",
1018
+ "tokio",
1019
+ "tonic",
1020
+ "uuid",
1021
+]
1022
+
1023
+[[package]]
1024
+name = "overload"
1025
+version = "0.1.1"
1026
+source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1028
+
1029
+[[package]]
1030
+name = "percent-encoding"
1031
+version = "2.3.1"
1032
+source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1034
+
1035
+[[package]]
1036
+name = "petgraph"
1037
+version = "0.7.1"
1038
+source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
1040
+dependencies = [
1041
+ "fixedbitset",
1042
+ "indexmap",
1043
+]
1044
+
1045
+[[package]]
1046
+name = "pin-project"
1047
+version = "1.1.10"
1048
+source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1050
+dependencies = [
1051
+ "pin-project-internal",
1052
+]
1053
+
1054
+[[package]]
1055
+name = "pin-project-internal"
1056
+version = "1.1.10"
1057
+source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1059
+dependencies = [
1060
+ "proc-macro2",
1061
+ "quote",
1062
+ "syn",
1063
+]
1064
+
1065
+[[package]]
1066
+name = "pin-project-lite"
1067
+version = "0.2.16"
1068
+source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1070
+
1071
+[[package]]
1072
+name = "pin-utils"
1073
+version = "0.1.0"
1074
+source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1076
+
1077
+[[package]]
1078
+name = "ppv-lite86"
1079
+version = "0.2.21"
1080
+source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1082
+dependencies = [
1083
+ "zerocopy 0.8.26",
1084
+]
1085
+
1086
+[[package]]
1087
+name = "prettyplease"
1088
+version = "0.2.37"
1089
+source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1091
+dependencies = [
1092
+ "proc-macro2",
1093
+ "syn",
1094
+]
1095
+
1096
+[[package]]
1097
+name = "proc-macro2"
1098
+version = "1.0.101"
1099
+source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
1101
+dependencies = [
1102
+ "unicode-ident",
1103
+]
1104
+
1105
+[[package]]
1106
+name = "prost"
1107
+version = "0.13.5"
1108
+source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
1110
+dependencies = [
1111
+ "bytes",
1112
+ "prost-derive",
1113
+]
1114
+
1115
+[[package]]
1116
+name = "prost-build"
1117
+version = "0.13.5"
1118
+source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf"
1120
+dependencies = [
1121
+ "heck 0.5.0",
1122
+ "itertools",
1123
+ "log",
1124
+ "multimap",
1125
+ "once_cell",
1126
+ "petgraph",
1127
+ "prettyplease",
1128
+ "prost",
1129
+ "prost-types",
1130
+ "regex",
1131
+ "syn",
1132
+ "tempfile",
1133
+]
1134
+
1135
+[[package]]
1136
+name = "prost-derive"
1137
+version = "0.13.5"
1138
+source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
1140
+dependencies = [
1141
+ "anyhow",
1142
+ "itertools",
1143
+ "proc-macro2",
1144
+ "quote",
1145
+ "syn",
1146
+]
1147
+
1148
+[[package]]
1149
+name = "prost-types"
1150
+version = "0.13.5"
1151
+source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16"
1153
+dependencies = [
1154
+ "prost",
1155
+]
1156
+
1157
+[[package]]
1158
+name = "quote"
1159
+version = "1.0.40"
1160
+source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1162
+dependencies = [
1163
+ "proc-macro2",
1164
+]
1165
+
1166
+[[package]]
1167
+name = "r-efi"
1168
+version = "5.3.0"
1169
+source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1171
+
1172
+[[package]]
1173
+name = "rand"
1174
+version = "0.9.2"
1175
+source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1177
+dependencies = [
1178
+ "rand_chacha",
1179
+ "rand_core",
1180
+]
1181
+
1182
+[[package]]
1183
+name = "rand_chacha"
1184
+version = "0.9.0"
1185
+source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1187
+dependencies = [
1188
+ "ppv-lite86",
1189
+ "rand_core",
1190
+]
1191
+
1192
+[[package]]
1193
+name = "rand_core"
1194
+version = "0.9.3"
1195
+source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1197
+dependencies = [
1198
+ "getrandom 0.3.3",
1199
+]
1200
+
1201
+[[package]]
1202
+name = "regex"
1203
+version = "1.11.1"
1204
+source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1206
+dependencies = [
1207
+ "aho-corasick",
1208
+ "memchr",
1209
+ "regex-automata",
1210
+ "regex-syntax",
1211
+]
1212
+
1213
+[[package]]
1214
+name = "regex-automata"
1215
+version = "0.4.9"
1216
+source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1218
+dependencies = [
1219
+ "aho-corasick",
1220
+ "memchr",
1221
+ "regex-syntax",
1222
+]
1223
+
1224
+[[package]]
1225
+name = "regex-syntax"
1226
+version = "0.8.5"
1227
+source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1229
+
1230
+[[package]]
1231
+name = "ring"
1232
+version = "0.17.14"
1233
+source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1235
+dependencies = [
1236
+ "cc",
1237
+ "cfg-if",
1238
+ "getrandom 0.2.16",
1239
+ "libc",
1240
+ "untrusted",
1241
+ "windows-sys 0.52.0",
1242
+]
1243
+
1244
+[[package]]
1245
+name = "rustc-demangle"
1246
+version = "0.1.26"
1247
+source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
1249
+
1250
+[[package]]
1251
+name = "rustix"
1252
+version = "1.0.8"
1253
+source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
1255
+dependencies = [
1256
+ "bitflags",
1257
+ "errno",
1258
+ "libc",
1259
+ "linux-raw-sys",
1260
+ "windows-sys 0.60.2",
1261
+]
1262
+
1263
+[[package]]
1264
+name = "rustls"
1265
+version = "0.23.31"
1266
+source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
1268
+dependencies = [
1269
+ "log",
1270
+ "once_cell",
1271
+ "ring",
1272
+ "rustls-pki-types",
1273
+ "rustls-webpki",
1274
+ "subtle",
1275
+ "zeroize",
1276
+]
1277
+
1278
+[[package]]
1279
+name = "rustls-pki-types"
1280
+version = "1.12.0"
1281
+source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
1283
+dependencies = [
1284
+ "zeroize",
1285
+]
1286
+
1287
+[[package]]
1288
+name = "rustls-webpki"
1289
+version = "0.103.4"
1290
+source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
1292
+dependencies = [
1293
+ "ring",
1294
+ "rustls-pki-types",
1295
+ "untrusted",
1296
+]
1297
+
1298
+[[package]]
1299
+name = "rustversion"
1300
+version = "1.0.22"
1301
+source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1303
+
1304
+[[package]]
1305
+name = "ruzstd"
1306
+version = "0.8.1"
1307
+source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+checksum = "3640bec8aad418d7d03c72ea2de10d5c646a598f9883c7babc160d91e3c1b26c"
1309
+dependencies = [
1310
+ "twox-hash",
1311
+]
1312
+
1313
+[[package]]
1314
+name = "ryu"
1315
+version = "1.0.20"
1316
+source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1318
+
1319
+[[package]]
1320
+name = "serde"
1321
+version = "1.0.219"
1322
+source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1324
+dependencies = [
1325
+ "serde_derive",
1326
+]
1327
+
1328
+[[package]]
1329
+name = "serde_derive"
1330
+version = "1.0.219"
1331
+source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1333
+dependencies = [
1334
+ "proc-macro2",
1335
+ "quote",
1336
+ "syn",
1337
+]
1338
+
1339
+[[package]]
1340
+name = "serde_json"
1341
+version = "1.0.143"
1342
+source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a"
1344
+dependencies = [
1345
+ "indexmap",
1346
+ "itoa",
1347
+ "memchr",
1348
+ "ryu",
1349
+ "serde",
1350
+]
1351
+
1352
+[[package]]
1353
+name = "serde_regex"
1354
+version = "1.1.0"
1355
+source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+checksum = "a8136f1a4ea815d7eac4101cfd0b16dc0cb5e1fe1b8609dfd728058656b7badf"
1357
+dependencies = [
1358
+ "regex",
1359
+ "serde",
1360
+]
1361
+
1362
+[[package]]
1363
+name = "serde_spanned"
1364
+version = "0.6.9"
1365
+source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1367
+dependencies = [
1368
+ "serde",
1369
+]
1370
+
1371
+[[package]]
1372
+name = "serde_yaml"
1373
+version = "0.9.34+deprecated"
1374
+source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1376
+dependencies = [
1377
+ "indexmap",
1378
+ "itoa",
1379
+ "ryu",
1380
+ "serde",
1381
+ "unsafe-libyaml",
1382
+]
1383
+
1384
+[[package]]
1385
+name = "sharded-slab"
1386
+version = "0.1.7"
1387
+source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1389
+dependencies = [
1390
+ "lazy_static",
1391
+]
1392
+
1393
+[[package]]
1394
+name = "shlex"
1395
+version = "1.3.0"
1396
+source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1398
+
1399
+[[package]]
1400
+name = "sigbus"
1401
+version = "0.1.0"
1402
+dependencies = [
1403
+ "error",
1404
+ "libc",
1405
+]
1406
+
1407
+[[package]]
1408
+name = "signal-hook-registry"
1409
+version = "1.4.6"
1410
+source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
1412
+dependencies = [
1413
+ "libc",
1414
+]
1415
+
1416
+[[package]]
1417
+name = "siphasher"
1418
+version = "1.0.1"
1419
+source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1421
+
1422
+[[package]]
1423
+name = "slab"
1424
+version = "0.4.11"
1425
+source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1427
+
1428
+[[package]]
1429
+name = "smallvec"
1430
+version = "1.15.1"
1431
+source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1433
+
1434
+[[package]]
1435
+name = "socket2"
1436
+version = "0.5.10"
1437
+source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1439
+dependencies = [
1440
+ "libc",
1441
+ "windows-sys 0.52.0",
1442
+]
1443
+
1444
+[[package]]
1445
+name = "socket2"
1446
+version = "0.6.0"
1447
+source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
1449
+dependencies = [
1450
+ "libc",
1451
+ "windows-sys 0.59.0",
1452
+]
1453
+
1454
+[[package]]
1455
+name = "static_assertions"
1456
+version = "1.1.0"
1457
+source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1459
+
1460
+[[package]]
1461
+name = "strsim"
1462
+version = "0.11.1"
1463
+source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1465
+
1466
+[[package]]
1467
+name = "subtle"
1468
+version = "2.6.1"
1469
+source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1471
+
1472
+[[package]]
1473
+name = "syn"
1474
+version = "2.0.106"
1475
+source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
1477
+dependencies = [
1478
+ "proc-macro2",
1479
+ "quote",
1480
+ "unicode-ident",
1481
+]
1482
+
1483
+[[package]]
1484
+name = "sync_wrapper"
1485
+version = "1.0.2"
1486
+source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1488
+
1489
+[[package]]
1490
+name = "tempfile"
1491
+version = "3.20.0"
1492
+source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
1494
+dependencies = [
1495
+ "fastrand",
1496
+ "getrandom 0.3.3",
1497
+ "once_cell",
1498
+ "rustix",
1499
+ "windows-sys 0.59.0",
1500
+]
1501
+
1502
+[[package]]
1503
+name = "thiserror"
1504
+version = "2.0.15"
1505
+source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+checksum = "80d76d3f064b981389ecb4b6b7f45a0bf9fdac1d5b9204c7bd6714fecc302850"
1507
+dependencies = [
1508
+ "thiserror-impl",
1509
+]
1510
+
1511
+[[package]]
1512
+name = "thiserror-impl"
1513
+version = "2.0.15"
1514
+source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+checksum = "44d29feb33e986b6ea906bd9c3559a856983f92371b3eaa5e83782a351623de0"
1516
+dependencies = [
1517
+ "proc-macro2",
1518
+ "quote",
1519
+ "syn",
1520
+]
1521
+
1522
+[[package]]
1523
+name = "thread_local"
1524
+version = "1.1.9"
1525
+source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1527
+dependencies = [
1528
+ "cfg-if",
1529
+]
1530
+
1531
+[[package]]
1532
+name = "tokio"
1533
+version = "1.47.1"
1534
+source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
1536
+dependencies = [
1537
+ "backtrace",
1538
+ "bytes",
1539
+ "io-uring",
1540
+ "libc",
1541
+ "mio",
1542
+ "pin-project-lite",
1543
+ "signal-hook-registry",
1544
+ "slab",
1545
+ "socket2 0.6.0",
1546
+ "tokio-macros",
1547
+ "windows-sys 0.59.0",
1548
+]
1549
+
1550
+[[package]]
1551
+name = "tokio-macros"
1552
+version = "2.5.0"
1553
+source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
1555
+dependencies = [
1556
+ "proc-macro2",
1557
+ "quote",
1558
+ "syn",
1559
+]
1560
+
1561
+[[package]]
1562
+name = "tokio-rustls"
1563
+version = "0.26.2"
1564
+source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
1566
+dependencies = [
1567
+ "rustls",
1568
+ "tokio",
1569
+]
1570
+
1571
+[[package]]
1572
+name = "tokio-stream"
1573
+version = "0.1.17"
1574
+source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
1576
+dependencies = [
1577
+ "futures-core",
1578
+ "pin-project-lite",
1579
+ "tokio",
1580
+]
1581
+
1582
+[[package]]
1583
+name = "tokio-util"
1584
+version = "0.7.16"
1585
+source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
1587
+dependencies = [
1588
+ "bytes",
1589
+ "futures-core",
1590
+ "futures-sink",
1591
+ "pin-project-lite",
1592
+ "tokio",
1593
+]
1594
+
1595
+[[package]]
1596
+name = "toml"
1597
+version = "0.8.23"
1598
+source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1600
+dependencies = [
1601
+ "serde",
1602
+ "serde_spanned",
1603
+ "toml_datetime",
1604
+ "toml_edit",
1605
+]
1606
+
1607
+[[package]]
1608
+name = "toml_datetime"
1609
+version = "0.6.11"
1610
+source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1612
+dependencies = [
1613
+ "serde",
1614
+]
1615
+
1616
+[[package]]
1617
+name = "toml_edit"
1618
+version = "0.22.27"
1619
+source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1621
+dependencies = [
1622
+ "indexmap",
1623
+ "serde",
1624
+ "serde_spanned",
1625
+ "toml_datetime",
1626
+ "toml_write",
1627
+ "winnow",
1628
+]
1629
+
1630
+[[package]]
1631
+name = "toml_write"
1632
+version = "0.1.2"
1633
+source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1635
+
1636
+[[package]]
1637
+name = "tonic"
1638
+version = "0.13.1"
1639
+source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+checksum = "7e581ba15a835f4d9ea06c55ab1bd4dce26fc53752c69a04aac00703bfb49ba9"
1641
+dependencies = [
1642
+ "async-trait",
1643
+ "axum",
1644
+ "base64 0.22.1",
1645
+ "bytes",
1646
+ "flate2",
1647
+ "h2",
1648
+ "http",
1649
+ "http-body",
1650
+ "http-body-util",
1651
+ "hyper",
1652
+ "hyper-timeout",
1653
+ "hyper-util",
1654
+ "percent-encoding",
1655
+ "pin-project",
1656
+ "prost",
1657
+ "socket2 0.5.10",
1658
+ "tokio",
1659
+ "tokio-rustls",
1660
+ "tokio-stream",
1661
+ "tower",
1662
+ "tower-layer",
1663
+ "tower-service",
1664
+ "tracing",
1665
+]
1666
+
1667
+[[package]]
1668
+name = "tonic-build"
1669
+version = "0.13.1"
1670
+source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+checksum = "eac6f67be712d12f0b41328db3137e0d0757645d8904b4cb7d51cd9c2279e847"
1672
+dependencies = [
1673
+ "prettyplease",
1674
+ "proc-macro2",
1675
+ "prost-build",
1676
+ "prost-types",
1677
+ "quote",
1678
+ "syn",
1679
+]
1680
+
1681
+[[package]]
1682
+name = "tower"
1683
+version = "0.5.2"
1684
+source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
1686
+dependencies = [
1687
+ "futures-core",
1688
+ "futures-util",
1689
+ "indexmap",
1690
+ "pin-project-lite",
1691
+ "slab",
1692
+ "sync_wrapper",
1693
+ "tokio",
1694
+ "tokio-util",
1695
+ "tower-layer",
1696
+ "tower-service",
1697
+ "tracing",
1698
+]
1699
+
1700
+[[package]]
1701
+name = "tower-layer"
1702
+version = "0.3.3"
1703
+source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1705
+
1706
+[[package]]
1707
+name = "tower-service"
1708
+version = "0.3.3"
1709
+source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1711
+
1712
+[[package]]
1713
+name = "tracing"
1714
+version = "0.1.41"
1715
+source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
1717
+dependencies = [
1718
+ "pin-project-lite",
1719
+ "tracing-attributes",
1720
+ "tracing-core",
1721
+]
1722
+
1723
+[[package]]
1724
+name = "tracing-attributes"
1725
+version = "0.1.30"
1726
+source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
1728
+dependencies = [
1729
+ "proc-macro2",
1730
+ "quote",
1731
+ "syn",
1732
+]
1733
+
1734
+[[package]]
1735
+name = "tracing-core"
1736
+version = "0.1.34"
1737
+source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
1739
+dependencies = [
1740
+ "once_cell",
1741
+ "valuable",
1742
+]
1743
+
1744
+[[package]]
1745
+name = "tracing-log"
1746
+version = "0.2.0"
1747
+source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1749
+dependencies = [
1750
+ "log",
1751
+ "once_cell",
1752
+ "tracing-core",
1753
+]
1754
+
1755
+[[package]]
1756
+name = "tracing-subscriber"
1757
+version = "0.3.19"
1758
+source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
1760
+dependencies = [
1761
+ "nu-ansi-term",
1762
+ "sharded-slab",
1763
+ "smallvec",
1764
+ "thread_local",
1765
+ "tracing-core",
1766
+ "tracing-log",
1767
+]
1768
+
1769
+[[package]]
1770
+name = "try-lock"
1771
+version = "0.2.5"
1772
+source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1774
+
1775
+[[package]]
1776
+name = "twox-hash"
1777
+version = "2.1.1"
1778
+source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+checksum = "8b907da542cbced5261bd3256de1b3a1bf340a3d37f93425a07362a1d687de56"
1780
+
1781
+[[package]]
1782
+name = "unicode-ident"
1783
+version = "1.0.18"
1784
+source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1786
+
1787
+[[package]]
1788
+name = "unsafe-libyaml"
1789
+version = "0.2.11"
1790
+source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1792
+
1793
+[[package]]
1794
+name = "untrusted"
1795
+version = "0.9.0"
1796
+source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1798
+
1799
+[[package]]
1800
+name = "utf8parse"
1801
+version = "0.2.2"
1802
+source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1804
+
1805
+[[package]]
1806
+name = "uuid"
1807
+version = "1.18.0"
1808
+source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+checksum = "f33196643e165781c20a5ead5582283a7dacbb87855d867fbc2df3f81eddc1be"
1810
+dependencies = [
1811
+ "getrandom 0.3.3",
1812
+ "js-sys",
1813
+ "wasm-bindgen",
1814
+]
1815
+
1816
+[[package]]
1817
+name = "valuable"
1818
+version = "0.1.1"
1819
+source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1821
+
1822
+[[package]]
1823
+name = "want"
1824
+version = "0.3.1"
1825
+source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1827
+dependencies = [
1828
+ "try-lock",
1829
+]
1830
+
1831
+[[package]]
1832
+name = "wasi"
1833
+version = "0.11.1+wasi-snapshot-preview1"
1834
+source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1836
+
1837
+[[package]]
1838
+name = "wasi"
1839
+version = "0.14.2+wasi-0.2.4"
1840
+source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1842
+dependencies = [
1843
+ "wit-bindgen-rt",
1844
+]
1845
+
1846
+[[package]]
1847
+name = "wasm-bindgen"
1848
+version = "0.2.100"
1849
+source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
1851
+dependencies = [
1852
+ "cfg-if",
1853
+ "once_cell",
1854
+ "rustversion",
1855
+ "wasm-bindgen-macro",
1856
+]
1857
+
1858
+[[package]]
1859
+name = "wasm-bindgen-backend"
1860
+version = "0.2.100"
1861
+source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
1863
+dependencies = [
1864
+ "bumpalo",
1865
+ "log",
1866
+ "proc-macro2",
1867
+ "quote",
1868
+ "syn",
1869
+ "wasm-bindgen-shared",
1870
+]
1871
+
1872
+[[package]]
1873
+name = "wasm-bindgen-macro"
1874
+version = "0.2.100"
1875
+source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
1877
+dependencies = [
1878
+ "quote",
1879
+ "wasm-bindgen-macro-support",
1880
+]
1881
+
1882
+[[package]]
1883
+name = "wasm-bindgen-macro-support"
1884
+version = "0.2.100"
1885
+source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
1887
+dependencies = [
1888
+ "proc-macro2",
1889
+ "quote",
1890
+ "syn",
1891
+ "wasm-bindgen-backend",
1892
+ "wasm-bindgen-shared",
1893
+]
1894
+
1895
+[[package]]
1896
+name = "wasm-bindgen-shared"
1897
+version = "0.2.100"
1898
+source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
1900
+dependencies = [
1901
+ "unicode-ident",
1902
+]
1903
+
1904
+[[package]]
1905
+name = "winapi"
1906
+version = "0.3.9"
1907
+source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1909
+dependencies = [
1910
+ "winapi-i686-pc-windows-gnu",
1911
+ "winapi-x86_64-pc-windows-gnu",
1912
+]
1913
+
1914
+[[package]]
1915
+name = "winapi-i686-pc-windows-gnu"
1916
+version = "0.4.0"
1917
+source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1919
+
1920
+[[package]]
1921
+name = "winapi-x86_64-pc-windows-gnu"
1922
+version = "0.4.0"
1923
+source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1925
+
1926
+[[package]]
1927
+name = "window_manager"
1928
+version = "0.1.0"
1929
+dependencies = [
1930
+ "error",
1931
+ "memmap2",
1932
+]
1933
+
1934
+[[package]]
1935
+name = "windows-core"
1936
+version = "0.61.2"
1937
+source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
1939
+dependencies = [
1940
+ "windows-implement",
1941
+ "windows-interface",
1942
+ "windows-link",
1943
+ "windows-result",
1944
+ "windows-strings",
1945
+]
1946
+
1947
+[[package]]
1948
+name = "windows-implement"
1949
+version = "0.60.0"
1950
+source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
1952
+dependencies = [
1953
+ "proc-macro2",
1954
+ "quote",
1955
+ "syn",
1956
+]
1957
+
1958
+[[package]]
1959
+name = "windows-interface"
1960
+version = "0.59.1"
1961
+source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
1963
+dependencies = [
1964
+ "proc-macro2",
1965
+ "quote",
1966
+ "syn",
1967
+]
1968
+
1969
+[[package]]
1970
+name = "windows-link"
1971
+version = "0.1.3"
1972
+source = "registry+https://github.com/rust-lang/crates.io-index"
1973
+checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
1974
+
1975
+[[package]]
1976
+name = "windows-result"
1977
+version = "0.3.4"
1978
+source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
1980
+dependencies = [
1981
+ "windows-link",
1982
+]
1983
+
1984
+[[package]]
1985
+name = "windows-strings"
1986
+version = "0.4.2"
1987
+source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
1989
+dependencies = [
1990
+ "windows-link",
1991
+]
1992
+
1993
+[[package]]
1994
+name = "windows-sys"
1995
+version = "0.52.0"
1996
+source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1998
+dependencies = [
1999
+ "windows-targets 0.52.6",
2000
+]
2001
+
2002
+[[package]]
2003
+name = "windows-sys"
2004
+version = "0.59.0"
2005
+source = "registry+https://github.com/rust-lang/crates.io-index"
2006
+checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2007
+dependencies = [
2008
+ "windows-targets 0.52.6",
2009
+]
2010
+
2011
+[[package]]
2012
+name = "windows-sys"
2013
+version = "0.60.2"
2014
+source = "registry+https://github.com/rust-lang/crates.io-index"
2015
+checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2016
+dependencies = [
2017
+ "windows-targets 0.53.3",
2018
+]
2019
+
2020
+[[package]]
2021
+name = "windows-targets"
2022
+version = "0.52.6"
2023
+source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2025
+dependencies = [
2026
+ "windows_aarch64_gnullvm 0.52.6",
2027
+ "windows_aarch64_msvc 0.52.6",
2028
+ "windows_i686_gnu 0.52.6",
2029
+ "windows_i686_gnullvm 0.52.6",
2030
+ "windows_i686_msvc 0.52.6",
2031
+ "windows_x86_64_gnu 0.52.6",
2032
+ "windows_x86_64_gnullvm 0.52.6",
2033
+ "windows_x86_64_msvc 0.52.6",
2034
+]
2035
+
2036
+[[package]]
2037
+name = "windows-targets"
2038
+version = "0.53.3"
2039
+source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
2041
+dependencies = [
2042
+ "windows-link",
2043
+ "windows_aarch64_gnullvm 0.53.0",
2044
+ "windows_aarch64_msvc 0.53.0",
2045
+ "windows_i686_gnu 0.53.0",
2046
+ "windows_i686_gnullvm 0.53.0",
2047
+ "windows_i686_msvc 0.53.0",
2048
+ "windows_x86_64_gnu 0.53.0",
2049
+ "windows_x86_64_gnullvm 0.53.0",
2050
+ "windows_x86_64_msvc 0.53.0",
2051
+]
2052
+
2053
+[[package]]
2054
+name = "windows_aarch64_gnullvm"
2055
+version = "0.52.6"
2056
+source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2058
+
2059
+[[package]]
2060
+name = "windows_aarch64_gnullvm"
2061
+version = "0.53.0"
2062
+source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2064
+
2065
+[[package]]
2066
+name = "windows_aarch64_msvc"
2067
+version = "0.52.6"
2068
+source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2070
+
2071
+[[package]]
2072
+name = "windows_aarch64_msvc"
2073
+version = "0.53.0"
2074
+source = "registry+https://github.com/rust-lang/crates.io-index"
2075
+checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2076
+
2077
+[[package]]
2078
+name = "windows_i686_gnu"
2079
+version = "0.52.6"
2080
+source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2082
+
2083
+[[package]]
2084
+name = "windows_i686_gnu"
2085
+version = "0.53.0"
2086
+source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2088
+
2089
+[[package]]
2090
+name = "windows_i686_gnullvm"
2091
+version = "0.52.6"
2092
+source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2094
+
2095
+[[package]]
2096
+name = "windows_i686_gnullvm"
2097
+version = "0.53.0"
2098
+source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2100
+
2101
+[[package]]
2102
+name = "windows_i686_msvc"
2103
+version = "0.52.6"
2104
+source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2106
+
2107
+[[package]]
2108
+name = "windows_i686_msvc"
2109
+version = "0.53.0"
2110
+source = "registry+https://github.com/rust-lang/crates.io-index"
2111
+checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2112
+
2113
+[[package]]
2114
+name = "windows_x86_64_gnu"
2115
+version = "0.52.6"
2116
+source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2118
+
2119
+[[package]]
2120
+name = "windows_x86_64_gnu"
2121
+version = "0.53.0"
2122
+source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2124
+
2125
+[[package]]
2126
+name = "windows_x86_64_gnullvm"
2127
+version = "0.52.6"
2128
+source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2130
+
2131
+[[package]]
2132
+name = "windows_x86_64_gnullvm"
2133
+version = "0.53.0"
2134
+source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2136
+
2137
+[[package]]
2138
+name = "windows_x86_64_msvc"
2139
+version = "0.52.6"
2140
+source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2142
+
2143
+[[package]]
2144
+name = "windows_x86_64_msvc"
2145
+version = "0.53.0"
2146
+source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2148
+
2149
+[[package]]
2150
+name = "winnow"
2151
+version = "0.7.12"
2152
+source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
2154
+dependencies = [
2155
+ "memchr",
2156
+]
2157
+
2158
+[[package]]
2159
+name = "wit-bindgen-rt"
2160
+version = "0.39.0"
2161
+source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
2163
+dependencies = [
2164
+ "bitflags",
2165
+]
2166
+
2167
+[[package]]
2168
+name = "zerocopy"
2169
+version = "0.8.26"
2170
+source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
2172
+dependencies = [
2173
+ "zerocopy-derive 0.8.26",
2174
+]
2175
+
2176
+[[package]]
2177
+name = "zerocopy"
2178
+version = "0.9.0-alpha.0"
2179
+source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+checksum = "3c9c378180b968f2e98efa0c4bba8c49fd4cd247dc82a7f01e72dc137d447d8c"
2181
+dependencies = [
2182
+ "zerocopy-derive 0.9.0-alpha.0",
2183
+]
2184
+
2185
+[[package]]
2186
+name = "zerocopy-derive"
2187
+version = "0.8.26"
2188
+source = "registry+https://github.com/rust-lang/crates.io-index"
2189
+checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
2190
+dependencies = [
2191
+ "proc-macro2",
2192
+ "quote",
2193
+ "syn",
2194
+]
2195
+
2196
+[[package]]
2197
+name = "zerocopy-derive"
2198
+version = "0.9.0-alpha.0"
2199
+source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+checksum = "36811c5ea90dd441f941919fc99163e702f150a8e1495d72a268106a0100df09"
2201
+dependencies = [
2202
+ "proc-macro2",
2203
+ "quote",
2204
+ "syn",
2205
+]
2206
+
2207
+[[package]]
2208
+name = "zeroize"
2209
+version = "1.8.1"
2210
+source = "registry+https://github.com/rust-lang/crates.io-index"
2211
+checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"