logler 1.0.2__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 (41) hide show
  1. logler-1.0.2/Cargo.lock +3801 -0
  2. logler-1.0.2/Cargo.toml +56 -0
  3. logler-1.0.2/LICENSE +21 -0
  4. logler-1.0.2/PKG-INFO +584 -0
  5. logler-1.0.2/README.md +541 -0
  6. logler-1.0.2/crates/logler-core/Cargo.toml +40 -0
  7. logler-1.0.2/crates/logler-core/src/filter.rs +112 -0
  8. logler-1.0.2/crates/logler-core/src/hierarchy.rs +753 -0
  9. logler-1.0.2/crates/logler-core/src/index.rs +292 -0
  10. logler-1.0.2/crates/logler-core/src/investigate.rs +537 -0
  11. logler-1.0.2/crates/logler-core/src/lib.rs +117 -0
  12. logler-1.0.2/crates/logler-core/src/parser.rs +681 -0
  13. logler-1.0.2/crates/logler-core/src/reader.rs +87 -0
  14. logler-1.0.2/crates/logler-core/src/sql.rs +162 -0
  15. logler-1.0.2/crates/logler-core/src/stats.rs +87 -0
  16. logler-1.0.2/crates/logler-core/src/thread_tracker.rs +217 -0
  17. logler-1.0.2/crates/logler-core/src/trace.rs +50 -0
  18. logler-1.0.2/crates/logler-core/src/types.rs +315 -0
  19. logler-1.0.2/crates/logler-py/Cargo.toml +22 -0
  20. logler-1.0.2/crates/logler-py/src/lib.rs +343 -0
  21. logler-1.0.2/pyproject.toml +84 -0
  22. logler-1.0.2/src/logler/__init__.py +22 -0
  23. logler-1.0.2/src/logler/bootstrap.py +57 -0
  24. logler-1.0.2/src/logler/cache.py +75 -0
  25. logler-1.0.2/src/logler/cli.py +589 -0
  26. logler-1.0.2/src/logler/helpers.py +282 -0
  27. logler-1.0.2/src/logler/investigate.py +3960 -0
  28. logler-1.0.2/src/logler/llm_cli.py +1424 -0
  29. logler-1.0.2/src/logler/log_reader.py +267 -0
  30. logler-1.0.2/src/logler/parser.py +207 -0
  31. logler-1.0.2/src/logler/terminal.py +252 -0
  32. logler-1.0.2/src/logler/tracker.py +138 -0
  33. logler-1.0.2/src/logler/tree_formatter.py +807 -0
  34. logler-1.0.2/src/logler/watcher.py +55 -0
  35. logler-1.0.2/src/logler/web/__init__.py +3 -0
  36. logler-1.0.2/src/logler/web/app.py +786 -0
  37. logler-1.0.2/src/logler/web/static/css/tailwind.css +1 -0
  38. logler-1.0.2/src/logler/web/static/css/tailwind.input.css +3 -0
  39. logler-1.0.2/src/logler/web/static/logler-logo.png +0 -0
  40. logler-1.0.2/src/logler/web/tailwind.config.cjs +9 -0
  41. logler-1.0.2/src/logler/web/templates/index.html +1454 -0
@@ -0,0 +1,3801 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.7.8"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
16
+ dependencies = [
17
+ "getrandom 0.2.17",
18
+ "once_cell",
19
+ "version_check",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "ahash"
24
+ version = "0.8.12"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
27
+ dependencies = [
28
+ "cfg-if",
29
+ "const-random",
30
+ "getrandom 0.3.4",
31
+ "once_cell",
32
+ "version_check",
33
+ "zerocopy",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "aho-corasick"
38
+ version = "1.1.4"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
41
+ dependencies = [
42
+ "memchr",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "android_system_properties"
47
+ version = "0.1.5"
48
+ source = "registry+https://github.com/rust-lang/crates.io-index"
49
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
50
+ dependencies = [
51
+ "libc",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "anes"
56
+ version = "0.1.6"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
59
+
60
+ [[package]]
61
+ name = "anstream"
62
+ version = "0.6.21"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
65
+ dependencies = [
66
+ "anstyle",
67
+ "anstyle-parse",
68
+ "anstyle-query",
69
+ "anstyle-wincon",
70
+ "colorchoice",
71
+ "is_terminal_polyfill",
72
+ "utf8parse",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "anstyle"
77
+ version = "1.0.13"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
80
+
81
+ [[package]]
82
+ name = "anstyle-parse"
83
+ version = "0.2.7"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
86
+ dependencies = [
87
+ "utf8parse",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "anstyle-query"
92
+ version = "1.1.5"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
95
+ dependencies = [
96
+ "windows-sys 0.61.2",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "anstyle-wincon"
101
+ version = "3.0.11"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
104
+ dependencies = [
105
+ "anstyle",
106
+ "once_cell_polyfill",
107
+ "windows-sys 0.61.2",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "anyhow"
112
+ version = "1.0.100"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
115
+
116
+ [[package]]
117
+ name = "arbitrary"
118
+ version = "1.4.2"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
121
+ dependencies = [
122
+ "derive_arbitrary",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "arrayvec"
127
+ version = "0.7.6"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
130
+
131
+ [[package]]
132
+ name = "arrow"
133
+ version = "56.2.0"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "6e833808ff2d94ed40d9379848a950d995043c7fb3e81a30b383f4c6033821cc"
136
+ dependencies = [
137
+ "arrow-arith",
138
+ "arrow-array",
139
+ "arrow-buffer",
140
+ "arrow-cast",
141
+ "arrow-data",
142
+ "arrow-ord",
143
+ "arrow-row",
144
+ "arrow-schema",
145
+ "arrow-select",
146
+ "arrow-string",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "arrow-arith"
151
+ version = "56.2.0"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "ad08897b81588f60ba983e3ca39bda2b179bdd84dced378e7df81a5313802ef8"
154
+ dependencies = [
155
+ "arrow-array",
156
+ "arrow-buffer",
157
+ "arrow-data",
158
+ "arrow-schema",
159
+ "chrono",
160
+ "num",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "arrow-array"
165
+ version = "56.2.0"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "8548ca7c070d8db9ce7aa43f37393e4bfcf3f2d3681df278490772fd1673d08d"
168
+ dependencies = [
169
+ "ahash 0.8.12",
170
+ "arrow-buffer",
171
+ "arrow-data",
172
+ "arrow-schema",
173
+ "chrono",
174
+ "half",
175
+ "hashbrown 0.16.1",
176
+ "num",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "arrow-buffer"
181
+ version = "56.2.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "e003216336f70446457e280807a73899dd822feaf02087d31febca1363e2fccc"
184
+ dependencies = [
185
+ "bytes",
186
+ "half",
187
+ "num",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "arrow-cast"
192
+ version = "56.2.0"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "919418a0681298d3a77d1a315f625916cb5678ad0d74b9c60108eb15fd083023"
195
+ dependencies = [
196
+ "arrow-array",
197
+ "arrow-buffer",
198
+ "arrow-data",
199
+ "arrow-schema",
200
+ "arrow-select",
201
+ "atoi",
202
+ "base64",
203
+ "chrono",
204
+ "comfy-table",
205
+ "half",
206
+ "lexical-core",
207
+ "num",
208
+ "ryu",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "arrow-data"
213
+ version = "56.2.0"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "a5c64fff1d142f833d78897a772f2e5b55b36cb3e6320376f0961ab0db7bd6d0"
216
+ dependencies = [
217
+ "arrow-buffer",
218
+ "arrow-schema",
219
+ "half",
220
+ "num",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "arrow-ord"
225
+ version = "56.2.0"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "3c8f82583eb4f8d84d4ee55fd1cb306720cddead7596edce95b50ee418edf66f"
228
+ dependencies = [
229
+ "arrow-array",
230
+ "arrow-buffer",
231
+ "arrow-data",
232
+ "arrow-schema",
233
+ "arrow-select",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "arrow-row"
238
+ version = "56.2.0"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "9d07ba24522229d9085031df6b94605e0f4b26e099fb7cdeec37abd941a73753"
241
+ dependencies = [
242
+ "arrow-array",
243
+ "arrow-buffer",
244
+ "arrow-data",
245
+ "arrow-schema",
246
+ "half",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "arrow-schema"
251
+ version = "56.2.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "b3aa9e59c611ebc291c28582077ef25c97f1975383f1479b12f3b9ffee2ffabe"
254
+ dependencies = [
255
+ "bitflags 2.10.0",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "arrow-select"
260
+ version = "56.2.0"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "8c41dbbd1e97bfcaee4fcb30e29105fb2c75e4d82ae4de70b792a5d3f66b2e7a"
263
+ dependencies = [
264
+ "ahash 0.8.12",
265
+ "arrow-array",
266
+ "arrow-buffer",
267
+ "arrow-data",
268
+ "arrow-schema",
269
+ "num",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "arrow-string"
274
+ version = "56.2.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "53f5183c150fbc619eede22b861ea7c0eebed8eaac0333eaa7f6da5205fd504d"
277
+ dependencies = [
278
+ "arrow-array",
279
+ "arrow-buffer",
280
+ "arrow-data",
281
+ "arrow-schema",
282
+ "arrow-select",
283
+ "memchr",
284
+ "num",
285
+ "regex",
286
+ "regex-syntax",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "async-stream"
291
+ version = "0.3.6"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
294
+ dependencies = [
295
+ "async-stream-impl",
296
+ "futures-core",
297
+ "pin-project-lite",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "async-stream-impl"
302
+ version = "0.3.6"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
305
+ dependencies = [
306
+ "proc-macro2",
307
+ "quote",
308
+ "syn 2.0.114",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "async-trait"
313
+ version = "0.1.89"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
316
+ dependencies = [
317
+ "proc-macro2",
318
+ "quote",
319
+ "syn 2.0.114",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "atoi"
324
+ version = "2.0.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
327
+ dependencies = [
328
+ "num-traits",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "atomic-waker"
333
+ version = "1.1.2"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
336
+
337
+ [[package]]
338
+ name = "autocfg"
339
+ version = "1.5.0"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
342
+
343
+ [[package]]
344
+ name = "axum"
345
+ version = "0.7.9"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
348
+ dependencies = [
349
+ "async-trait",
350
+ "axum-core",
351
+ "base64",
352
+ "bytes",
353
+ "futures-util",
354
+ "http",
355
+ "http-body",
356
+ "http-body-util",
357
+ "hyper",
358
+ "hyper-util",
359
+ "itoa",
360
+ "matchit",
361
+ "memchr",
362
+ "mime",
363
+ "percent-encoding",
364
+ "pin-project-lite",
365
+ "rustversion",
366
+ "serde",
367
+ "serde_json",
368
+ "serde_path_to_error",
369
+ "serde_urlencoded",
370
+ "sha1",
371
+ "sync_wrapper",
372
+ "tokio",
373
+ "tokio-tungstenite",
374
+ "tower",
375
+ "tower-layer",
376
+ "tower-service",
377
+ "tracing",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "axum-core"
382
+ version = "0.4.5"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
385
+ dependencies = [
386
+ "async-trait",
387
+ "bytes",
388
+ "futures-util",
389
+ "http",
390
+ "http-body",
391
+ "http-body-util",
392
+ "mime",
393
+ "pin-project-lite",
394
+ "rustversion",
395
+ "sync_wrapper",
396
+ "tower-layer",
397
+ "tower-service",
398
+ "tracing",
399
+ ]
400
+
401
+ [[package]]
402
+ name = "base64"
403
+ version = "0.22.1"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
406
+
407
+ [[package]]
408
+ name = "bit-set"
409
+ version = "0.5.3"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
412
+ dependencies = [
413
+ "bit-vec",
414
+ ]
415
+
416
+ [[package]]
417
+ name = "bit-vec"
418
+ version = "0.6.3"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
421
+
422
+ [[package]]
423
+ name = "bitflags"
424
+ version = "1.3.2"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
427
+
428
+ [[package]]
429
+ name = "bitflags"
430
+ version = "2.10.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
433
+
434
+ [[package]]
435
+ name = "bitvec"
436
+ version = "1.0.1"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
439
+ dependencies = [
440
+ "funty",
441
+ "radium",
442
+ "tap",
443
+ "wyz",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "block-buffer"
448
+ version = "0.10.4"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
451
+ dependencies = [
452
+ "generic-array",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "borsh"
457
+ version = "1.6.0"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
460
+ dependencies = [
461
+ "borsh-derive",
462
+ "cfg_aliases",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "borsh-derive"
467
+ version = "1.6.0"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c"
470
+ dependencies = [
471
+ "once_cell",
472
+ "proc-macro-crate",
473
+ "proc-macro2",
474
+ "quote",
475
+ "syn 2.0.114",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "bumpalo"
480
+ version = "3.19.1"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
483
+
484
+ [[package]]
485
+ name = "bytecheck"
486
+ version = "0.6.12"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
489
+ dependencies = [
490
+ "bytecheck_derive",
491
+ "ptr_meta",
492
+ "simdutf8",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "bytecheck_derive"
497
+ version = "0.6.12"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
500
+ dependencies = [
501
+ "proc-macro2",
502
+ "quote",
503
+ "syn 1.0.109",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "byteorder"
508
+ version = "1.5.0"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
511
+
512
+ [[package]]
513
+ name = "bytes"
514
+ version = "1.11.0"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
517
+
518
+ [[package]]
519
+ name = "cast"
520
+ version = "0.3.0"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
523
+
524
+ [[package]]
525
+ name = "cc"
526
+ version = "1.2.52"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "cd4932aefd12402b36c60956a4fe0035421f544799057659ff86f923657aada3"
529
+ dependencies = [
530
+ "find-msvc-tools",
531
+ "jobserver",
532
+ "libc",
533
+ "shlex",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "cfg-if"
538
+ version = "1.0.4"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
541
+
542
+ [[package]]
543
+ name = "cfg_aliases"
544
+ version = "0.2.1"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
547
+
548
+ [[package]]
549
+ name = "chrono"
550
+ version = "0.4.42"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
553
+ dependencies = [
554
+ "iana-time-zone",
555
+ "js-sys",
556
+ "num-traits",
557
+ "serde",
558
+ "wasm-bindgen",
559
+ "windows-link",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "ciborium"
564
+ version = "0.2.2"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
567
+ dependencies = [
568
+ "ciborium-io",
569
+ "ciborium-ll",
570
+ "serde",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "ciborium-io"
575
+ version = "0.2.2"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
578
+
579
+ [[package]]
580
+ name = "ciborium-ll"
581
+ version = "0.2.2"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
584
+ dependencies = [
585
+ "ciborium-io",
586
+ "half",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "clap"
591
+ version = "4.5.54"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
594
+ dependencies = [
595
+ "clap_builder",
596
+ "clap_derive",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "clap_builder"
601
+ version = "4.5.54"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
604
+ dependencies = [
605
+ "anstream",
606
+ "anstyle",
607
+ "clap_lex",
608
+ "strsim",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "clap_derive"
613
+ version = "4.5.49"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
616
+ dependencies = [
617
+ "heck 0.5.0",
618
+ "proc-macro2",
619
+ "quote",
620
+ "syn 2.0.114",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "clap_lex"
625
+ version = "0.7.7"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
628
+
629
+ [[package]]
630
+ name = "colorchoice"
631
+ version = "1.0.4"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
634
+
635
+ [[package]]
636
+ name = "comfy-table"
637
+ version = "7.1.2"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "e0d05af1e006a2407bedef5af410552494ce5be9090444dbbcb57258c1af3d56"
640
+ dependencies = [
641
+ "strum 0.26.3",
642
+ "strum_macros 0.26.4",
643
+ "unicode-width",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "const-random"
648
+ version = "0.1.18"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
651
+ dependencies = [
652
+ "const-random-macro",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "const-random-macro"
657
+ version = "0.1.16"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
660
+ dependencies = [
661
+ "getrandom 0.2.17",
662
+ "once_cell",
663
+ "tiny-keccak",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "core-foundation-sys"
668
+ version = "0.8.7"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
671
+
672
+ [[package]]
673
+ name = "cpufeatures"
674
+ version = "0.2.17"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
677
+ dependencies = [
678
+ "libc",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "crc32fast"
683
+ version = "1.5.0"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
686
+ dependencies = [
687
+ "cfg-if",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "criterion"
692
+ version = "0.5.1"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
695
+ dependencies = [
696
+ "anes",
697
+ "cast",
698
+ "ciborium",
699
+ "clap",
700
+ "criterion-plot",
701
+ "is-terminal",
702
+ "itertools",
703
+ "num-traits",
704
+ "once_cell",
705
+ "oorandom",
706
+ "plotters",
707
+ "rayon",
708
+ "regex",
709
+ "serde",
710
+ "serde_derive",
711
+ "serde_json",
712
+ "tinytemplate",
713
+ "walkdir",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "criterion-plot"
718
+ version = "0.5.0"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
721
+ dependencies = [
722
+ "cast",
723
+ "itertools",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "crossbeam-channel"
728
+ version = "0.5.15"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
731
+ dependencies = [
732
+ "crossbeam-utils",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "crossbeam-deque"
737
+ version = "0.8.6"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
740
+ dependencies = [
741
+ "crossbeam-epoch",
742
+ "crossbeam-utils",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "crossbeam-epoch"
747
+ version = "0.9.18"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
750
+ dependencies = [
751
+ "crossbeam-utils",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "crossbeam-utils"
756
+ version = "0.8.21"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
759
+
760
+ [[package]]
761
+ name = "crunchy"
762
+ version = "0.2.4"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
765
+
766
+ [[package]]
767
+ name = "crypto-common"
768
+ version = "0.1.7"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
771
+ dependencies = [
772
+ "generic-array",
773
+ "typenum",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "dashmap"
778
+ version = "6.1.0"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
781
+ dependencies = [
782
+ "cfg-if",
783
+ "crossbeam-utils",
784
+ "hashbrown 0.14.5",
785
+ "lock_api",
786
+ "once_cell",
787
+ "parking_lot_core",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "data-encoding"
792
+ version = "2.10.0"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
795
+
796
+ [[package]]
797
+ name = "derive_arbitrary"
798
+ version = "1.4.2"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
801
+ dependencies = [
802
+ "proc-macro2",
803
+ "quote",
804
+ "syn 2.0.114",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "digest"
809
+ version = "0.10.7"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
812
+ dependencies = [
813
+ "block-buffer",
814
+ "crypto-common",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "displaydoc"
819
+ version = "0.2.5"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
822
+ dependencies = [
823
+ "proc-macro2",
824
+ "quote",
825
+ "syn 2.0.114",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "duckdb"
830
+ version = "1.4.3"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "d7eeb487dde618b9f6ab26a451775ad5fac3fabe1ca2b64cbbe90b105f264ccd"
833
+ dependencies = [
834
+ "arrow",
835
+ "cast",
836
+ "fallible-iterator",
837
+ "fallible-streaming-iterator",
838
+ "hashlink",
839
+ "libduckdb-sys",
840
+ "num-integer",
841
+ "rust_decimal",
842
+ "strum 0.27.2",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "either"
847
+ version = "1.15.0"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
850
+
851
+ [[package]]
852
+ name = "equivalent"
853
+ version = "1.0.2"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
856
+
857
+ [[package]]
858
+ name = "errno"
859
+ version = "0.3.14"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
862
+ dependencies = [
863
+ "libc",
864
+ "windows-sys 0.61.2",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "fallible-iterator"
869
+ version = "0.3.0"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
872
+
873
+ [[package]]
874
+ name = "fallible-streaming-iterator"
875
+ version = "0.1.9"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
878
+
879
+ [[package]]
880
+ name = "fancy-regex"
881
+ version = "0.13.0"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2"
884
+ dependencies = [
885
+ "bit-set",
886
+ "regex-automata",
887
+ "regex-syntax",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "fastrand"
892
+ version = "2.3.0"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
895
+
896
+ [[package]]
897
+ name = "filetime"
898
+ version = "0.2.26"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
901
+ dependencies = [
902
+ "cfg-if",
903
+ "libc",
904
+ "libredox",
905
+ "windows-sys 0.60.2",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "find-msvc-tools"
910
+ version = "0.1.7"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "f449e6c6c08c865631d4890cfacf252b3d396c9bcc83adb6623cdb02a8336c41"
913
+
914
+ [[package]]
915
+ name = "flate2"
916
+ version = "1.1.8"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369"
919
+ dependencies = [
920
+ "crc32fast",
921
+ "miniz_oxide",
922
+ "zlib-rs",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "foldhash"
927
+ version = "0.1.5"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
930
+
931
+ [[package]]
932
+ name = "form_urlencoded"
933
+ version = "1.2.2"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
936
+ dependencies = [
937
+ "percent-encoding",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "fsevent-sys"
942
+ version = "4.1.0"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
945
+ dependencies = [
946
+ "libc",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "funty"
951
+ version = "2.0.0"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
954
+
955
+ [[package]]
956
+ name = "futures"
957
+ version = "0.3.31"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
960
+ dependencies = [
961
+ "futures-channel",
962
+ "futures-core",
963
+ "futures-executor",
964
+ "futures-io",
965
+ "futures-sink",
966
+ "futures-task",
967
+ "futures-util",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "futures-channel"
972
+ version = "0.3.31"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
975
+ dependencies = [
976
+ "futures-core",
977
+ "futures-sink",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "futures-core"
982
+ version = "0.3.31"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
985
+
986
+ [[package]]
987
+ name = "futures-executor"
988
+ version = "0.3.31"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
991
+ dependencies = [
992
+ "futures-core",
993
+ "futures-task",
994
+ "futures-util",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "futures-io"
999
+ version = "0.3.31"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
1002
+
1003
+ [[package]]
1004
+ name = "futures-macro"
1005
+ version = "0.3.31"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1008
+ dependencies = [
1009
+ "proc-macro2",
1010
+ "quote",
1011
+ "syn 2.0.114",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "futures-sink"
1016
+ version = "0.3.31"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
1019
+
1020
+ [[package]]
1021
+ name = "futures-task"
1022
+ version = "0.3.31"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
1025
+
1026
+ [[package]]
1027
+ name = "futures-util"
1028
+ version = "0.3.31"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1031
+ dependencies = [
1032
+ "futures-channel",
1033
+ "futures-core",
1034
+ "futures-io",
1035
+ "futures-macro",
1036
+ "futures-sink",
1037
+ "futures-task",
1038
+ "memchr",
1039
+ "pin-project-lite",
1040
+ "pin-utils",
1041
+ "slab",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "generic-array"
1046
+ version = "0.14.7"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1049
+ dependencies = [
1050
+ "typenum",
1051
+ "version_check",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "getrandom"
1056
+ version = "0.2.17"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1059
+ dependencies = [
1060
+ "cfg-if",
1061
+ "js-sys",
1062
+ "libc",
1063
+ "wasi",
1064
+ "wasm-bindgen",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "getrandom"
1069
+ version = "0.3.4"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1072
+ dependencies = [
1073
+ "cfg-if",
1074
+ "js-sys",
1075
+ "libc",
1076
+ "r-efi",
1077
+ "wasip2",
1078
+ "wasm-bindgen",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "half"
1083
+ version = "2.7.1"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1086
+ dependencies = [
1087
+ "cfg-if",
1088
+ "crunchy",
1089
+ "num-traits",
1090
+ "zerocopy",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "hashbrown"
1095
+ version = "0.12.3"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1098
+ dependencies = [
1099
+ "ahash 0.7.8",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "hashbrown"
1104
+ version = "0.14.5"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1107
+
1108
+ [[package]]
1109
+ name = "hashbrown"
1110
+ version = "0.15.5"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1113
+ dependencies = [
1114
+ "foldhash",
1115
+ ]
1116
+
1117
+ [[package]]
1118
+ name = "hashbrown"
1119
+ version = "0.16.1"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1122
+
1123
+ [[package]]
1124
+ name = "hashlink"
1125
+ version = "0.10.0"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1128
+ dependencies = [
1129
+ "hashbrown 0.15.5",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "heck"
1134
+ version = "0.4.1"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1137
+
1138
+ [[package]]
1139
+ name = "heck"
1140
+ version = "0.5.0"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1143
+
1144
+ [[package]]
1145
+ name = "hermit-abi"
1146
+ version = "0.5.2"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1149
+
1150
+ [[package]]
1151
+ name = "http"
1152
+ version = "1.4.0"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1155
+ dependencies = [
1156
+ "bytes",
1157
+ "itoa",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "http-body"
1162
+ version = "1.0.1"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1165
+ dependencies = [
1166
+ "bytes",
1167
+ "http",
1168
+ ]
1169
+
1170
+ [[package]]
1171
+ name = "http-body-util"
1172
+ version = "0.1.3"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1175
+ dependencies = [
1176
+ "bytes",
1177
+ "futures-core",
1178
+ "http",
1179
+ "http-body",
1180
+ "pin-project-lite",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "httparse"
1185
+ version = "1.10.1"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1188
+
1189
+ [[package]]
1190
+ name = "httpdate"
1191
+ version = "1.0.3"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1194
+
1195
+ [[package]]
1196
+ name = "hyper"
1197
+ version = "1.8.1"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1200
+ dependencies = [
1201
+ "atomic-waker",
1202
+ "bytes",
1203
+ "futures-channel",
1204
+ "futures-core",
1205
+ "http",
1206
+ "http-body",
1207
+ "httparse",
1208
+ "httpdate",
1209
+ "itoa",
1210
+ "pin-project-lite",
1211
+ "pin-utils",
1212
+ "smallvec",
1213
+ "tokio",
1214
+ "want",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "hyper-rustls"
1219
+ version = "0.27.7"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1222
+ dependencies = [
1223
+ "http",
1224
+ "hyper",
1225
+ "hyper-util",
1226
+ "rustls",
1227
+ "rustls-pki-types",
1228
+ "tokio",
1229
+ "tokio-rustls",
1230
+ "tower-service",
1231
+ "webpki-roots",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "hyper-util"
1236
+ version = "0.1.19"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
1239
+ dependencies = [
1240
+ "base64",
1241
+ "bytes",
1242
+ "futures-channel",
1243
+ "futures-core",
1244
+ "futures-util",
1245
+ "http",
1246
+ "http-body",
1247
+ "hyper",
1248
+ "ipnet",
1249
+ "libc",
1250
+ "percent-encoding",
1251
+ "pin-project-lite",
1252
+ "socket2",
1253
+ "tokio",
1254
+ "tower-service",
1255
+ "tracing",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "iana-time-zone"
1260
+ version = "0.1.64"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1263
+ dependencies = [
1264
+ "android_system_properties",
1265
+ "core-foundation-sys",
1266
+ "iana-time-zone-haiku",
1267
+ "js-sys",
1268
+ "log",
1269
+ "wasm-bindgen",
1270
+ "windows-core",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "iana-time-zone-haiku"
1275
+ version = "0.1.2"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1278
+ dependencies = [
1279
+ "cc",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "icu_collections"
1284
+ version = "2.1.1"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1287
+ dependencies = [
1288
+ "displaydoc",
1289
+ "potential_utf",
1290
+ "yoke",
1291
+ "zerofrom",
1292
+ "zerovec",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "icu_locale_core"
1297
+ version = "2.1.1"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1300
+ dependencies = [
1301
+ "displaydoc",
1302
+ "litemap",
1303
+ "tinystr",
1304
+ "writeable",
1305
+ "zerovec",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "icu_normalizer"
1310
+ version = "2.1.1"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1313
+ dependencies = [
1314
+ "icu_collections",
1315
+ "icu_normalizer_data",
1316
+ "icu_properties",
1317
+ "icu_provider",
1318
+ "smallvec",
1319
+ "zerovec",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "icu_normalizer_data"
1324
+ version = "2.1.1"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1327
+
1328
+ [[package]]
1329
+ name = "icu_properties"
1330
+ version = "2.1.2"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1333
+ dependencies = [
1334
+ "icu_collections",
1335
+ "icu_locale_core",
1336
+ "icu_properties_data",
1337
+ "icu_provider",
1338
+ "zerotrie",
1339
+ "zerovec",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "icu_properties_data"
1344
+ version = "2.1.2"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1347
+
1348
+ [[package]]
1349
+ name = "icu_provider"
1350
+ version = "2.1.1"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1353
+ dependencies = [
1354
+ "displaydoc",
1355
+ "icu_locale_core",
1356
+ "writeable",
1357
+ "yoke",
1358
+ "zerofrom",
1359
+ "zerotrie",
1360
+ "zerovec",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "idna"
1365
+ version = "1.1.0"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1368
+ dependencies = [
1369
+ "idna_adapter",
1370
+ "smallvec",
1371
+ "utf8_iter",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "idna_adapter"
1376
+ version = "1.2.1"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1379
+ dependencies = [
1380
+ "icu_normalizer",
1381
+ "icu_properties",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "indexmap"
1386
+ version = "2.13.0"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1389
+ dependencies = [
1390
+ "equivalent",
1391
+ "hashbrown 0.16.1",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "indoc"
1396
+ version = "2.0.7"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1399
+ dependencies = [
1400
+ "rustversion",
1401
+ ]
1402
+
1403
+ [[package]]
1404
+ name = "inotify"
1405
+ version = "0.9.6"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
1408
+ dependencies = [
1409
+ "bitflags 1.3.2",
1410
+ "inotify-sys",
1411
+ "libc",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "inotify-sys"
1416
+ version = "0.1.5"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1419
+ dependencies = [
1420
+ "libc",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "ipnet"
1425
+ version = "2.11.0"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1428
+
1429
+ [[package]]
1430
+ name = "iri-string"
1431
+ version = "0.7.10"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1434
+ dependencies = [
1435
+ "memchr",
1436
+ "serde",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "is-terminal"
1441
+ version = "0.4.17"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1444
+ dependencies = [
1445
+ "hermit-abi",
1446
+ "libc",
1447
+ "windows-sys 0.61.2",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "is_terminal_polyfill"
1452
+ version = "1.70.2"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1455
+
1456
+ [[package]]
1457
+ name = "itertools"
1458
+ version = "0.10.5"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1461
+ dependencies = [
1462
+ "either",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "itoa"
1467
+ version = "1.0.17"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1470
+
1471
+ [[package]]
1472
+ name = "jobserver"
1473
+ version = "0.1.34"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1476
+ dependencies = [
1477
+ "getrandom 0.3.4",
1478
+ "libc",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "js-sys"
1483
+ version = "0.3.83"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1486
+ dependencies = [
1487
+ "once_cell",
1488
+ "wasm-bindgen",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "kqueue"
1493
+ version = "1.1.1"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
1496
+ dependencies = [
1497
+ "kqueue-sys",
1498
+ "libc",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "kqueue-sys"
1503
+ version = "1.0.4"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
1506
+ dependencies = [
1507
+ "bitflags 1.3.2",
1508
+ "libc",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "lazy_static"
1513
+ version = "1.5.0"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1516
+
1517
+ [[package]]
1518
+ name = "lexical-core"
1519
+ version = "1.0.6"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
1522
+ dependencies = [
1523
+ "lexical-parse-float",
1524
+ "lexical-parse-integer",
1525
+ "lexical-util",
1526
+ "lexical-write-float",
1527
+ "lexical-write-integer",
1528
+ ]
1529
+
1530
+ [[package]]
1531
+ name = "lexical-parse-float"
1532
+ version = "1.0.6"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
1535
+ dependencies = [
1536
+ "lexical-parse-integer",
1537
+ "lexical-util",
1538
+ ]
1539
+
1540
+ [[package]]
1541
+ name = "lexical-parse-integer"
1542
+ version = "1.0.6"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
1545
+ dependencies = [
1546
+ "lexical-util",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "lexical-util"
1551
+ version = "1.0.7"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
1554
+
1555
+ [[package]]
1556
+ name = "lexical-write-float"
1557
+ version = "1.0.6"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
1560
+ dependencies = [
1561
+ "lexical-util",
1562
+ "lexical-write-integer",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "lexical-write-integer"
1567
+ version = "1.0.6"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
1570
+ dependencies = [
1571
+ "lexical-util",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "libc"
1576
+ version = "0.2.180"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
1579
+
1580
+ [[package]]
1581
+ name = "libduckdb-sys"
1582
+ version = "1.4.3"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "c8c60c2d269e63ae5197e4fe9075efffed35dfda0095a5ac8b41f3c765b18456"
1585
+ dependencies = [
1586
+ "cc",
1587
+ "flate2",
1588
+ "pkg-config",
1589
+ "reqwest",
1590
+ "serde",
1591
+ "serde_json",
1592
+ "tar",
1593
+ "vcpkg",
1594
+ "zip",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "libm"
1599
+ version = "0.2.15"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1602
+
1603
+ [[package]]
1604
+ name = "libredox"
1605
+ version = "0.1.12"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
1608
+ dependencies = [
1609
+ "bitflags 2.10.0",
1610
+ "libc",
1611
+ "redox_syscall 0.7.0",
1612
+ ]
1613
+
1614
+ [[package]]
1615
+ name = "linux-raw-sys"
1616
+ version = "0.11.0"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1619
+
1620
+ [[package]]
1621
+ name = "litemap"
1622
+ version = "0.8.1"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1625
+
1626
+ [[package]]
1627
+ name = "lock_api"
1628
+ version = "0.4.14"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1631
+ dependencies = [
1632
+ "scopeguard",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "log"
1637
+ version = "0.4.29"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1640
+
1641
+ [[package]]
1642
+ name = "logler-cli"
1643
+ version = "1.0.2"
1644
+ dependencies = [
1645
+ "anyhow",
1646
+ "clap",
1647
+ "logler-core",
1648
+ "serde",
1649
+ "serde_json",
1650
+ "tokio",
1651
+ "tracing",
1652
+ "tracing-subscriber",
1653
+ "uuid",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "logler-core"
1658
+ version = "1.0.2"
1659
+ dependencies = [
1660
+ "anyhow",
1661
+ "async-stream",
1662
+ "chrono",
1663
+ "criterion",
1664
+ "dashmap",
1665
+ "duckdb",
1666
+ "fancy-regex",
1667
+ "futures",
1668
+ "memmap2",
1669
+ "rayon",
1670
+ "regex",
1671
+ "serde",
1672
+ "serde_json",
1673
+ "tempfile",
1674
+ "thiserror 2.0.17",
1675
+ "tokio",
1676
+ "tokio-stream",
1677
+ "tracing",
1678
+ "uuid",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "logler-py"
1683
+ version = "1.0.2"
1684
+ dependencies = [
1685
+ "anyhow",
1686
+ "logler-core",
1687
+ "pyo3",
1688
+ "regex",
1689
+ "serde",
1690
+ "serde_json",
1691
+ ]
1692
+
1693
+ [[package]]
1694
+ name = "logler-server"
1695
+ version = "1.0.2"
1696
+ dependencies = [
1697
+ "anyhow",
1698
+ "axum",
1699
+ "chrono",
1700
+ "dashmap",
1701
+ "futures",
1702
+ "logler-core",
1703
+ "notify",
1704
+ "serde",
1705
+ "serde_json",
1706
+ "thiserror 2.0.17",
1707
+ "tokio",
1708
+ "tower-http 0.5.2",
1709
+ "tracing",
1710
+ "tracing-subscriber",
1711
+ "uuid",
1712
+ ]
1713
+
1714
+ [[package]]
1715
+ name = "lru-slab"
1716
+ version = "0.1.2"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1719
+
1720
+ [[package]]
1721
+ name = "matchers"
1722
+ version = "0.2.0"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1725
+ dependencies = [
1726
+ "regex-automata",
1727
+ ]
1728
+
1729
+ [[package]]
1730
+ name = "matchit"
1731
+ version = "0.7.3"
1732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1733
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1734
+
1735
+ [[package]]
1736
+ name = "memchr"
1737
+ version = "2.7.6"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1740
+
1741
+ [[package]]
1742
+ name = "memmap2"
1743
+ version = "0.9.9"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
1746
+ dependencies = [
1747
+ "libc",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "memoffset"
1752
+ version = "0.9.1"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1755
+ dependencies = [
1756
+ "autocfg",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "mime"
1761
+ version = "0.3.17"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1764
+
1765
+ [[package]]
1766
+ name = "miniz_oxide"
1767
+ version = "0.8.9"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1770
+ dependencies = [
1771
+ "adler2",
1772
+ "simd-adler32",
1773
+ ]
1774
+
1775
+ [[package]]
1776
+ name = "mio"
1777
+ version = "0.8.11"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1780
+ dependencies = [
1781
+ "libc",
1782
+ "log",
1783
+ "wasi",
1784
+ "windows-sys 0.48.0",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "mio"
1789
+ version = "1.1.1"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1792
+ dependencies = [
1793
+ "libc",
1794
+ "wasi",
1795
+ "windows-sys 0.61.2",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "notify"
1800
+ version = "6.1.1"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
1803
+ dependencies = [
1804
+ "bitflags 2.10.0",
1805
+ "crossbeam-channel",
1806
+ "filetime",
1807
+ "fsevent-sys",
1808
+ "inotify",
1809
+ "kqueue",
1810
+ "libc",
1811
+ "log",
1812
+ "mio 0.8.11",
1813
+ "walkdir",
1814
+ "windows-sys 0.48.0",
1815
+ ]
1816
+
1817
+ [[package]]
1818
+ name = "nu-ansi-term"
1819
+ version = "0.50.3"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1822
+ dependencies = [
1823
+ "windows-sys 0.61.2",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "num"
1828
+ version = "0.4.3"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
1831
+ dependencies = [
1832
+ "num-bigint",
1833
+ "num-complex",
1834
+ "num-integer",
1835
+ "num-iter",
1836
+ "num-rational",
1837
+ "num-traits",
1838
+ ]
1839
+
1840
+ [[package]]
1841
+ name = "num-bigint"
1842
+ version = "0.4.6"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1845
+ dependencies = [
1846
+ "num-integer",
1847
+ "num-traits",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "num-complex"
1852
+ version = "0.4.6"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1855
+ dependencies = [
1856
+ "num-traits",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "num-integer"
1861
+ version = "0.1.46"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1864
+ dependencies = [
1865
+ "num-traits",
1866
+ ]
1867
+
1868
+ [[package]]
1869
+ name = "num-iter"
1870
+ version = "0.1.45"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1873
+ dependencies = [
1874
+ "autocfg",
1875
+ "num-integer",
1876
+ "num-traits",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "num-rational"
1881
+ version = "0.4.2"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1884
+ dependencies = [
1885
+ "num-bigint",
1886
+ "num-integer",
1887
+ "num-traits",
1888
+ ]
1889
+
1890
+ [[package]]
1891
+ name = "num-traits"
1892
+ version = "0.2.19"
1893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1894
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1895
+ dependencies = [
1896
+ "autocfg",
1897
+ "libm",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "once_cell"
1902
+ version = "1.21.3"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1905
+
1906
+ [[package]]
1907
+ name = "once_cell_polyfill"
1908
+ version = "1.70.2"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1911
+
1912
+ [[package]]
1913
+ name = "oorandom"
1914
+ version = "11.1.5"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1917
+
1918
+ [[package]]
1919
+ name = "parking_lot"
1920
+ version = "0.12.5"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1923
+ dependencies = [
1924
+ "lock_api",
1925
+ "parking_lot_core",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "parking_lot_core"
1930
+ version = "0.9.12"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1933
+ dependencies = [
1934
+ "cfg-if",
1935
+ "libc",
1936
+ "redox_syscall 0.5.18",
1937
+ "smallvec",
1938
+ "windows-link",
1939
+ ]
1940
+
1941
+ [[package]]
1942
+ name = "percent-encoding"
1943
+ version = "2.3.2"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1946
+
1947
+ [[package]]
1948
+ name = "pin-project-lite"
1949
+ version = "0.2.16"
1950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1951
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1952
+
1953
+ [[package]]
1954
+ name = "pin-utils"
1955
+ version = "0.1.0"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1958
+
1959
+ [[package]]
1960
+ name = "pkg-config"
1961
+ version = "0.3.32"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1964
+
1965
+ [[package]]
1966
+ name = "plotters"
1967
+ version = "0.3.7"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1970
+ dependencies = [
1971
+ "num-traits",
1972
+ "plotters-backend",
1973
+ "plotters-svg",
1974
+ "wasm-bindgen",
1975
+ "web-sys",
1976
+ ]
1977
+
1978
+ [[package]]
1979
+ name = "plotters-backend"
1980
+ version = "0.3.7"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1983
+
1984
+ [[package]]
1985
+ name = "plotters-svg"
1986
+ version = "0.3.7"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1989
+ dependencies = [
1990
+ "plotters-backend",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "portable-atomic"
1995
+ version = "1.13.0"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
1998
+
1999
+ [[package]]
2000
+ name = "potential_utf"
2001
+ version = "0.1.4"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2004
+ dependencies = [
2005
+ "zerovec",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "ppv-lite86"
2010
+ version = "0.2.21"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2013
+ dependencies = [
2014
+ "zerocopy",
2015
+ ]
2016
+
2017
+ [[package]]
2018
+ name = "proc-macro-crate"
2019
+ version = "3.4.0"
2020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2021
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
2022
+ dependencies = [
2023
+ "toml_edit",
2024
+ ]
2025
+
2026
+ [[package]]
2027
+ name = "proc-macro2"
2028
+ version = "1.0.105"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
2031
+ dependencies = [
2032
+ "unicode-ident",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "ptr_meta"
2037
+ version = "0.1.4"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
2040
+ dependencies = [
2041
+ "ptr_meta_derive",
2042
+ ]
2043
+
2044
+ [[package]]
2045
+ name = "ptr_meta_derive"
2046
+ version = "0.1.4"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
2049
+ dependencies = [
2050
+ "proc-macro2",
2051
+ "quote",
2052
+ "syn 1.0.109",
2053
+ ]
2054
+
2055
+ [[package]]
2056
+ name = "pyo3"
2057
+ version = "0.20.3"
2058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2059
+ checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
2060
+ dependencies = [
2061
+ "anyhow",
2062
+ "cfg-if",
2063
+ "chrono",
2064
+ "indoc",
2065
+ "libc",
2066
+ "memoffset",
2067
+ "parking_lot",
2068
+ "portable-atomic",
2069
+ "pyo3-build-config",
2070
+ "pyo3-ffi",
2071
+ "pyo3-macros",
2072
+ "unindent",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "pyo3-build-config"
2077
+ version = "0.20.3"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
2080
+ dependencies = [
2081
+ "once_cell",
2082
+ "target-lexicon",
2083
+ ]
2084
+
2085
+ [[package]]
2086
+ name = "pyo3-ffi"
2087
+ version = "0.20.3"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
2090
+ dependencies = [
2091
+ "libc",
2092
+ "pyo3-build-config",
2093
+ ]
2094
+
2095
+ [[package]]
2096
+ name = "pyo3-macros"
2097
+ version = "0.20.3"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
2100
+ dependencies = [
2101
+ "proc-macro2",
2102
+ "pyo3-macros-backend",
2103
+ "quote",
2104
+ "syn 2.0.114",
2105
+ ]
2106
+
2107
+ [[package]]
2108
+ name = "pyo3-macros-backend"
2109
+ version = "0.20.3"
2110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2111
+ checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
2112
+ dependencies = [
2113
+ "heck 0.4.1",
2114
+ "proc-macro2",
2115
+ "pyo3-build-config",
2116
+ "quote",
2117
+ "syn 2.0.114",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "quinn"
2122
+ version = "0.11.9"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2125
+ dependencies = [
2126
+ "bytes",
2127
+ "cfg_aliases",
2128
+ "pin-project-lite",
2129
+ "quinn-proto",
2130
+ "quinn-udp",
2131
+ "rustc-hash",
2132
+ "rustls",
2133
+ "socket2",
2134
+ "thiserror 2.0.17",
2135
+ "tokio",
2136
+ "tracing",
2137
+ "web-time",
2138
+ ]
2139
+
2140
+ [[package]]
2141
+ name = "quinn-proto"
2142
+ version = "0.11.13"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2145
+ dependencies = [
2146
+ "bytes",
2147
+ "getrandom 0.3.4",
2148
+ "lru-slab",
2149
+ "rand 0.9.2",
2150
+ "ring",
2151
+ "rustc-hash",
2152
+ "rustls",
2153
+ "rustls-pki-types",
2154
+ "slab",
2155
+ "thiserror 2.0.17",
2156
+ "tinyvec",
2157
+ "tracing",
2158
+ "web-time",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "quinn-udp"
2163
+ version = "0.5.14"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2166
+ dependencies = [
2167
+ "cfg_aliases",
2168
+ "libc",
2169
+ "once_cell",
2170
+ "socket2",
2171
+ "tracing",
2172
+ "windows-sys 0.60.2",
2173
+ ]
2174
+
2175
+ [[package]]
2176
+ name = "quote"
2177
+ version = "1.0.43"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
2180
+ dependencies = [
2181
+ "proc-macro2",
2182
+ ]
2183
+
2184
+ [[package]]
2185
+ name = "r-efi"
2186
+ version = "5.3.0"
2187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2188
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2189
+
2190
+ [[package]]
2191
+ name = "radium"
2192
+ version = "0.7.0"
2193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2194
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2195
+
2196
+ [[package]]
2197
+ name = "rand"
2198
+ version = "0.8.5"
2199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2200
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2201
+ dependencies = [
2202
+ "libc",
2203
+ "rand_chacha 0.3.1",
2204
+ "rand_core 0.6.4",
2205
+ ]
2206
+
2207
+ [[package]]
2208
+ name = "rand"
2209
+ version = "0.9.2"
2210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2211
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2212
+ dependencies = [
2213
+ "rand_chacha 0.9.0",
2214
+ "rand_core 0.9.5",
2215
+ ]
2216
+
2217
+ [[package]]
2218
+ name = "rand_chacha"
2219
+ version = "0.3.1"
2220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2221
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2222
+ dependencies = [
2223
+ "ppv-lite86",
2224
+ "rand_core 0.6.4",
2225
+ ]
2226
+
2227
+ [[package]]
2228
+ name = "rand_chacha"
2229
+ version = "0.9.0"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2232
+ dependencies = [
2233
+ "ppv-lite86",
2234
+ "rand_core 0.9.5",
2235
+ ]
2236
+
2237
+ [[package]]
2238
+ name = "rand_core"
2239
+ version = "0.6.4"
2240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2241
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2242
+ dependencies = [
2243
+ "getrandom 0.2.17",
2244
+ ]
2245
+
2246
+ [[package]]
2247
+ name = "rand_core"
2248
+ version = "0.9.5"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2251
+ dependencies = [
2252
+ "getrandom 0.3.4",
2253
+ ]
2254
+
2255
+ [[package]]
2256
+ name = "rayon"
2257
+ version = "1.11.0"
2258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2259
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2260
+ dependencies = [
2261
+ "either",
2262
+ "rayon-core",
2263
+ ]
2264
+
2265
+ [[package]]
2266
+ name = "rayon-core"
2267
+ version = "1.13.0"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2270
+ dependencies = [
2271
+ "crossbeam-deque",
2272
+ "crossbeam-utils",
2273
+ ]
2274
+
2275
+ [[package]]
2276
+ name = "redox_syscall"
2277
+ version = "0.5.18"
2278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2279
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2280
+ dependencies = [
2281
+ "bitflags 2.10.0",
2282
+ ]
2283
+
2284
+ [[package]]
2285
+ name = "redox_syscall"
2286
+ version = "0.7.0"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27"
2289
+ dependencies = [
2290
+ "bitflags 2.10.0",
2291
+ ]
2292
+
2293
+ [[package]]
2294
+ name = "regex"
2295
+ version = "1.12.2"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2298
+ dependencies = [
2299
+ "aho-corasick",
2300
+ "memchr",
2301
+ "regex-automata",
2302
+ "regex-syntax",
2303
+ ]
2304
+
2305
+ [[package]]
2306
+ name = "regex-automata"
2307
+ version = "0.4.13"
2308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2309
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2310
+ dependencies = [
2311
+ "aho-corasick",
2312
+ "memchr",
2313
+ "regex-syntax",
2314
+ ]
2315
+
2316
+ [[package]]
2317
+ name = "regex-syntax"
2318
+ version = "0.8.8"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2321
+
2322
+ [[package]]
2323
+ name = "rend"
2324
+ version = "0.4.2"
2325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2326
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
2327
+ dependencies = [
2328
+ "bytecheck",
2329
+ ]
2330
+
2331
+ [[package]]
2332
+ name = "reqwest"
2333
+ version = "0.12.28"
2334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2335
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2336
+ dependencies = [
2337
+ "base64",
2338
+ "bytes",
2339
+ "futures-channel",
2340
+ "futures-core",
2341
+ "futures-util",
2342
+ "http",
2343
+ "http-body",
2344
+ "http-body-util",
2345
+ "hyper",
2346
+ "hyper-rustls",
2347
+ "hyper-util",
2348
+ "js-sys",
2349
+ "log",
2350
+ "percent-encoding",
2351
+ "pin-project-lite",
2352
+ "quinn",
2353
+ "rustls",
2354
+ "rustls-pki-types",
2355
+ "serde",
2356
+ "serde_json",
2357
+ "serde_urlencoded",
2358
+ "sync_wrapper",
2359
+ "tokio",
2360
+ "tokio-rustls",
2361
+ "tower",
2362
+ "tower-http 0.6.8",
2363
+ "tower-service",
2364
+ "url",
2365
+ "wasm-bindgen",
2366
+ "wasm-bindgen-futures",
2367
+ "web-sys",
2368
+ "webpki-roots",
2369
+ ]
2370
+
2371
+ [[package]]
2372
+ name = "ring"
2373
+ version = "0.17.14"
2374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2375
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2376
+ dependencies = [
2377
+ "cc",
2378
+ "cfg-if",
2379
+ "getrandom 0.2.17",
2380
+ "libc",
2381
+ "untrusted",
2382
+ "windows-sys 0.52.0",
2383
+ ]
2384
+
2385
+ [[package]]
2386
+ name = "rkyv"
2387
+ version = "0.7.46"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
2390
+ dependencies = [
2391
+ "bitvec",
2392
+ "bytecheck",
2393
+ "bytes",
2394
+ "hashbrown 0.12.3",
2395
+ "ptr_meta",
2396
+ "rend",
2397
+ "rkyv_derive",
2398
+ "seahash",
2399
+ "tinyvec",
2400
+ "uuid",
2401
+ ]
2402
+
2403
+ [[package]]
2404
+ name = "rkyv_derive"
2405
+ version = "0.7.46"
2406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2407
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
2408
+ dependencies = [
2409
+ "proc-macro2",
2410
+ "quote",
2411
+ "syn 1.0.109",
2412
+ ]
2413
+
2414
+ [[package]]
2415
+ name = "rust_decimal"
2416
+ version = "1.40.0"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0"
2419
+ dependencies = [
2420
+ "arrayvec",
2421
+ "borsh",
2422
+ "bytes",
2423
+ "num-traits",
2424
+ "rand 0.8.5",
2425
+ "rkyv",
2426
+ "serde",
2427
+ "serde_json",
2428
+ ]
2429
+
2430
+ [[package]]
2431
+ name = "rustc-hash"
2432
+ version = "2.1.1"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2435
+
2436
+ [[package]]
2437
+ name = "rustix"
2438
+ version = "1.1.3"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
2441
+ dependencies = [
2442
+ "bitflags 2.10.0",
2443
+ "errno",
2444
+ "libc",
2445
+ "linux-raw-sys",
2446
+ "windows-sys 0.61.2",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "rustls"
2451
+ version = "0.23.36"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
2454
+ dependencies = [
2455
+ "once_cell",
2456
+ "ring",
2457
+ "rustls-pki-types",
2458
+ "rustls-webpki",
2459
+ "subtle",
2460
+ "zeroize",
2461
+ ]
2462
+
2463
+ [[package]]
2464
+ name = "rustls-pki-types"
2465
+ version = "1.13.2"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
2468
+ dependencies = [
2469
+ "web-time",
2470
+ "zeroize",
2471
+ ]
2472
+
2473
+ [[package]]
2474
+ name = "rustls-webpki"
2475
+ version = "0.103.8"
2476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2477
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
2478
+ dependencies = [
2479
+ "ring",
2480
+ "rustls-pki-types",
2481
+ "untrusted",
2482
+ ]
2483
+
2484
+ [[package]]
2485
+ name = "rustversion"
2486
+ version = "1.0.22"
2487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2488
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2489
+
2490
+ [[package]]
2491
+ name = "ryu"
2492
+ version = "1.0.22"
2493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
2495
+
2496
+ [[package]]
2497
+ name = "same-file"
2498
+ version = "1.0.6"
2499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2500
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2501
+ dependencies = [
2502
+ "winapi-util",
2503
+ ]
2504
+
2505
+ [[package]]
2506
+ name = "scopeguard"
2507
+ version = "1.2.0"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2510
+
2511
+ [[package]]
2512
+ name = "seahash"
2513
+ version = "4.1.0"
2514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2515
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2516
+
2517
+ [[package]]
2518
+ name = "serde"
2519
+ version = "1.0.228"
2520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2521
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2522
+ dependencies = [
2523
+ "serde_core",
2524
+ "serde_derive",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "serde_core"
2529
+ version = "1.0.228"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2532
+ dependencies = [
2533
+ "serde_derive",
2534
+ ]
2535
+
2536
+ [[package]]
2537
+ name = "serde_derive"
2538
+ version = "1.0.228"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2541
+ dependencies = [
2542
+ "proc-macro2",
2543
+ "quote",
2544
+ "syn 2.0.114",
2545
+ ]
2546
+
2547
+ [[package]]
2548
+ name = "serde_json"
2549
+ version = "1.0.149"
2550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2551
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2552
+ dependencies = [
2553
+ "itoa",
2554
+ "memchr",
2555
+ "serde",
2556
+ "serde_core",
2557
+ "zmij",
2558
+ ]
2559
+
2560
+ [[package]]
2561
+ name = "serde_path_to_error"
2562
+ version = "0.1.20"
2563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2564
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2565
+ dependencies = [
2566
+ "itoa",
2567
+ "serde",
2568
+ "serde_core",
2569
+ ]
2570
+
2571
+ [[package]]
2572
+ name = "serde_urlencoded"
2573
+ version = "0.7.1"
2574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2575
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2576
+ dependencies = [
2577
+ "form_urlencoded",
2578
+ "itoa",
2579
+ "ryu",
2580
+ "serde",
2581
+ ]
2582
+
2583
+ [[package]]
2584
+ name = "sha1"
2585
+ version = "0.10.6"
2586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2587
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2588
+ dependencies = [
2589
+ "cfg-if",
2590
+ "cpufeatures",
2591
+ "digest",
2592
+ ]
2593
+
2594
+ [[package]]
2595
+ name = "sharded-slab"
2596
+ version = "0.1.7"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2599
+ dependencies = [
2600
+ "lazy_static",
2601
+ ]
2602
+
2603
+ [[package]]
2604
+ name = "shlex"
2605
+ version = "1.3.0"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2608
+
2609
+ [[package]]
2610
+ name = "signal-hook-registry"
2611
+ version = "1.4.8"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2614
+ dependencies = [
2615
+ "errno",
2616
+ "libc",
2617
+ ]
2618
+
2619
+ [[package]]
2620
+ name = "simd-adler32"
2621
+ version = "0.3.8"
2622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2623
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
2624
+
2625
+ [[package]]
2626
+ name = "simdutf8"
2627
+ version = "0.1.5"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2630
+
2631
+ [[package]]
2632
+ name = "slab"
2633
+ version = "0.4.11"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2636
+
2637
+ [[package]]
2638
+ name = "smallvec"
2639
+ version = "1.15.1"
2640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2641
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2642
+
2643
+ [[package]]
2644
+ name = "socket2"
2645
+ version = "0.6.1"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
2648
+ dependencies = [
2649
+ "libc",
2650
+ "windows-sys 0.60.2",
2651
+ ]
2652
+
2653
+ [[package]]
2654
+ name = "stable_deref_trait"
2655
+ version = "1.2.1"
2656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2657
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2658
+
2659
+ [[package]]
2660
+ name = "strsim"
2661
+ version = "0.11.1"
2662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2663
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2664
+
2665
+ [[package]]
2666
+ name = "strum"
2667
+ version = "0.26.3"
2668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2669
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
2670
+
2671
+ [[package]]
2672
+ name = "strum"
2673
+ version = "0.27.2"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
2676
+ dependencies = [
2677
+ "strum_macros 0.27.2",
2678
+ ]
2679
+
2680
+ [[package]]
2681
+ name = "strum_macros"
2682
+ version = "0.26.4"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
2685
+ dependencies = [
2686
+ "heck 0.5.0",
2687
+ "proc-macro2",
2688
+ "quote",
2689
+ "rustversion",
2690
+ "syn 2.0.114",
2691
+ ]
2692
+
2693
+ [[package]]
2694
+ name = "strum_macros"
2695
+ version = "0.27.2"
2696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2697
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
2698
+ dependencies = [
2699
+ "heck 0.5.0",
2700
+ "proc-macro2",
2701
+ "quote",
2702
+ "syn 2.0.114",
2703
+ ]
2704
+
2705
+ [[package]]
2706
+ name = "subtle"
2707
+ version = "2.6.1"
2708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2709
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2710
+
2711
+ [[package]]
2712
+ name = "syn"
2713
+ version = "1.0.109"
2714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2715
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2716
+ dependencies = [
2717
+ "proc-macro2",
2718
+ "quote",
2719
+ "unicode-ident",
2720
+ ]
2721
+
2722
+ [[package]]
2723
+ name = "syn"
2724
+ version = "2.0.114"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
2727
+ dependencies = [
2728
+ "proc-macro2",
2729
+ "quote",
2730
+ "unicode-ident",
2731
+ ]
2732
+
2733
+ [[package]]
2734
+ name = "sync_wrapper"
2735
+ version = "1.0.2"
2736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2737
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2738
+ dependencies = [
2739
+ "futures-core",
2740
+ ]
2741
+
2742
+ [[package]]
2743
+ name = "synstructure"
2744
+ version = "0.13.2"
2745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2746
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2747
+ dependencies = [
2748
+ "proc-macro2",
2749
+ "quote",
2750
+ "syn 2.0.114",
2751
+ ]
2752
+
2753
+ [[package]]
2754
+ name = "tap"
2755
+ version = "1.0.1"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2758
+
2759
+ [[package]]
2760
+ name = "tar"
2761
+ version = "0.4.44"
2762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2763
+ checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
2764
+ dependencies = [
2765
+ "filetime",
2766
+ "libc",
2767
+ "xattr",
2768
+ ]
2769
+
2770
+ [[package]]
2771
+ name = "target-lexicon"
2772
+ version = "0.12.16"
2773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2774
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2775
+
2776
+ [[package]]
2777
+ name = "tempfile"
2778
+ version = "3.24.0"
2779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2780
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
2781
+ dependencies = [
2782
+ "fastrand",
2783
+ "getrandom 0.3.4",
2784
+ "once_cell",
2785
+ "rustix",
2786
+ "windows-sys 0.61.2",
2787
+ ]
2788
+
2789
+ [[package]]
2790
+ name = "thiserror"
2791
+ version = "1.0.69"
2792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2793
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2794
+ dependencies = [
2795
+ "thiserror-impl 1.0.69",
2796
+ ]
2797
+
2798
+ [[package]]
2799
+ name = "thiserror"
2800
+ version = "2.0.17"
2801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2802
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2803
+ dependencies = [
2804
+ "thiserror-impl 2.0.17",
2805
+ ]
2806
+
2807
+ [[package]]
2808
+ name = "thiserror-impl"
2809
+ version = "1.0.69"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2812
+ dependencies = [
2813
+ "proc-macro2",
2814
+ "quote",
2815
+ "syn 2.0.114",
2816
+ ]
2817
+
2818
+ [[package]]
2819
+ name = "thiserror-impl"
2820
+ version = "2.0.17"
2821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2822
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2823
+ dependencies = [
2824
+ "proc-macro2",
2825
+ "quote",
2826
+ "syn 2.0.114",
2827
+ ]
2828
+
2829
+ [[package]]
2830
+ name = "thread_local"
2831
+ version = "1.1.9"
2832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2833
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2834
+ dependencies = [
2835
+ "cfg-if",
2836
+ ]
2837
+
2838
+ [[package]]
2839
+ name = "tiny-keccak"
2840
+ version = "2.0.2"
2841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2842
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
2843
+ dependencies = [
2844
+ "crunchy",
2845
+ ]
2846
+
2847
+ [[package]]
2848
+ name = "tinystr"
2849
+ version = "0.8.2"
2850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2851
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2852
+ dependencies = [
2853
+ "displaydoc",
2854
+ "zerovec",
2855
+ ]
2856
+
2857
+ [[package]]
2858
+ name = "tinytemplate"
2859
+ version = "1.2.1"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2862
+ dependencies = [
2863
+ "serde",
2864
+ "serde_json",
2865
+ ]
2866
+
2867
+ [[package]]
2868
+ name = "tinyvec"
2869
+ version = "1.10.0"
2870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2871
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
2872
+ dependencies = [
2873
+ "tinyvec_macros",
2874
+ ]
2875
+
2876
+ [[package]]
2877
+ name = "tinyvec_macros"
2878
+ version = "0.1.1"
2879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2880
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2881
+
2882
+ [[package]]
2883
+ name = "tokio"
2884
+ version = "1.49.0"
2885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2886
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2887
+ dependencies = [
2888
+ "bytes",
2889
+ "libc",
2890
+ "mio 1.1.1",
2891
+ "parking_lot",
2892
+ "pin-project-lite",
2893
+ "signal-hook-registry",
2894
+ "socket2",
2895
+ "tokio-macros",
2896
+ "windows-sys 0.61.2",
2897
+ ]
2898
+
2899
+ [[package]]
2900
+ name = "tokio-macros"
2901
+ version = "2.6.0"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2904
+ dependencies = [
2905
+ "proc-macro2",
2906
+ "quote",
2907
+ "syn 2.0.114",
2908
+ ]
2909
+
2910
+ [[package]]
2911
+ name = "tokio-rustls"
2912
+ version = "0.26.4"
2913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2914
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2915
+ dependencies = [
2916
+ "rustls",
2917
+ "tokio",
2918
+ ]
2919
+
2920
+ [[package]]
2921
+ name = "tokio-stream"
2922
+ version = "0.1.18"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2925
+ dependencies = [
2926
+ "futures-core",
2927
+ "pin-project-lite",
2928
+ "tokio",
2929
+ ]
2930
+
2931
+ [[package]]
2932
+ name = "tokio-tungstenite"
2933
+ version = "0.24.0"
2934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2935
+ checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9"
2936
+ dependencies = [
2937
+ "futures-util",
2938
+ "log",
2939
+ "tokio",
2940
+ "tungstenite",
2941
+ ]
2942
+
2943
+ [[package]]
2944
+ name = "toml_datetime"
2945
+ version = "0.7.5+spec-1.1.0"
2946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2947
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2948
+ dependencies = [
2949
+ "serde_core",
2950
+ ]
2951
+
2952
+ [[package]]
2953
+ name = "toml_edit"
2954
+ version = "0.23.10+spec-1.0.0"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
2957
+ dependencies = [
2958
+ "indexmap",
2959
+ "toml_datetime",
2960
+ "toml_parser",
2961
+ "winnow",
2962
+ ]
2963
+
2964
+ [[package]]
2965
+ name = "toml_parser"
2966
+ version = "1.0.6+spec-1.1.0"
2967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2968
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
2969
+ dependencies = [
2970
+ "winnow",
2971
+ ]
2972
+
2973
+ [[package]]
2974
+ name = "tower"
2975
+ version = "0.5.3"
2976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2977
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2978
+ dependencies = [
2979
+ "futures-core",
2980
+ "futures-util",
2981
+ "pin-project-lite",
2982
+ "sync_wrapper",
2983
+ "tokio",
2984
+ "tower-layer",
2985
+ "tower-service",
2986
+ "tracing",
2987
+ ]
2988
+
2989
+ [[package]]
2990
+ name = "tower-http"
2991
+ version = "0.5.2"
2992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2993
+ checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
2994
+ dependencies = [
2995
+ "bitflags 2.10.0",
2996
+ "bytes",
2997
+ "http",
2998
+ "http-body",
2999
+ "http-body-util",
3000
+ "pin-project-lite",
3001
+ "tower-layer",
3002
+ "tower-service",
3003
+ ]
3004
+
3005
+ [[package]]
3006
+ name = "tower-http"
3007
+ version = "0.6.8"
3008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3009
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
3010
+ dependencies = [
3011
+ "bitflags 2.10.0",
3012
+ "bytes",
3013
+ "futures-util",
3014
+ "http",
3015
+ "http-body",
3016
+ "iri-string",
3017
+ "pin-project-lite",
3018
+ "tower",
3019
+ "tower-layer",
3020
+ "tower-service",
3021
+ ]
3022
+
3023
+ [[package]]
3024
+ name = "tower-layer"
3025
+ version = "0.3.3"
3026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3028
+
3029
+ [[package]]
3030
+ name = "tower-service"
3031
+ version = "0.3.3"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3034
+
3035
+ [[package]]
3036
+ name = "tracing"
3037
+ version = "0.1.44"
3038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3039
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3040
+ dependencies = [
3041
+ "log",
3042
+ "pin-project-lite",
3043
+ "tracing-attributes",
3044
+ "tracing-core",
3045
+ ]
3046
+
3047
+ [[package]]
3048
+ name = "tracing-attributes"
3049
+ version = "0.1.31"
3050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3051
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
3052
+ dependencies = [
3053
+ "proc-macro2",
3054
+ "quote",
3055
+ "syn 2.0.114",
3056
+ ]
3057
+
3058
+ [[package]]
3059
+ name = "tracing-core"
3060
+ version = "0.1.36"
3061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3062
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3063
+ dependencies = [
3064
+ "once_cell",
3065
+ "valuable",
3066
+ ]
3067
+
3068
+ [[package]]
3069
+ name = "tracing-log"
3070
+ version = "0.2.0"
3071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3072
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3073
+ dependencies = [
3074
+ "log",
3075
+ "once_cell",
3076
+ "tracing-core",
3077
+ ]
3078
+
3079
+ [[package]]
3080
+ name = "tracing-subscriber"
3081
+ version = "0.3.22"
3082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3083
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
3084
+ dependencies = [
3085
+ "matchers",
3086
+ "nu-ansi-term",
3087
+ "once_cell",
3088
+ "regex-automata",
3089
+ "sharded-slab",
3090
+ "smallvec",
3091
+ "thread_local",
3092
+ "tracing",
3093
+ "tracing-core",
3094
+ "tracing-log",
3095
+ ]
3096
+
3097
+ [[package]]
3098
+ name = "try-lock"
3099
+ version = "0.2.5"
3100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3101
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3102
+
3103
+ [[package]]
3104
+ name = "tungstenite"
3105
+ version = "0.24.0"
3106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3107
+ checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
3108
+ dependencies = [
3109
+ "byteorder",
3110
+ "bytes",
3111
+ "data-encoding",
3112
+ "http",
3113
+ "httparse",
3114
+ "log",
3115
+ "rand 0.8.5",
3116
+ "sha1",
3117
+ "thiserror 1.0.69",
3118
+ "utf-8",
3119
+ ]
3120
+
3121
+ [[package]]
3122
+ name = "typenum"
3123
+ version = "1.19.0"
3124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3125
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3126
+
3127
+ [[package]]
3128
+ name = "unicode-ident"
3129
+ version = "1.0.22"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
3132
+
3133
+ [[package]]
3134
+ name = "unicode-width"
3135
+ version = "0.2.2"
3136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3137
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3138
+
3139
+ [[package]]
3140
+ name = "unindent"
3141
+ version = "0.2.4"
3142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3143
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3144
+
3145
+ [[package]]
3146
+ name = "untrusted"
3147
+ version = "0.9.0"
3148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3149
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3150
+
3151
+ [[package]]
3152
+ name = "url"
3153
+ version = "2.5.8"
3154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3155
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3156
+ dependencies = [
3157
+ "form_urlencoded",
3158
+ "idna",
3159
+ "percent-encoding",
3160
+ "serde",
3161
+ ]
3162
+
3163
+ [[package]]
3164
+ name = "utf-8"
3165
+ version = "0.7.6"
3166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3167
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3168
+
3169
+ [[package]]
3170
+ name = "utf8_iter"
3171
+ version = "1.0.4"
3172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3173
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3174
+
3175
+ [[package]]
3176
+ name = "utf8parse"
3177
+ version = "0.2.2"
3178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3179
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3180
+
3181
+ [[package]]
3182
+ name = "uuid"
3183
+ version = "1.19.0"
3184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3185
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
3186
+ dependencies = [
3187
+ "getrandom 0.3.4",
3188
+ "js-sys",
3189
+ "serde_core",
3190
+ "wasm-bindgen",
3191
+ ]
3192
+
3193
+ [[package]]
3194
+ name = "valuable"
3195
+ version = "0.1.1"
3196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3197
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3198
+
3199
+ [[package]]
3200
+ name = "vcpkg"
3201
+ version = "0.2.15"
3202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3203
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3204
+
3205
+ [[package]]
3206
+ name = "version_check"
3207
+ version = "0.9.5"
3208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3209
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3210
+
3211
+ [[package]]
3212
+ name = "walkdir"
3213
+ version = "2.5.0"
3214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3215
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3216
+ dependencies = [
3217
+ "same-file",
3218
+ "winapi-util",
3219
+ ]
3220
+
3221
+ [[package]]
3222
+ name = "want"
3223
+ version = "0.3.1"
3224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3225
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3226
+ dependencies = [
3227
+ "try-lock",
3228
+ ]
3229
+
3230
+ [[package]]
3231
+ name = "wasi"
3232
+ version = "0.11.1+wasi-snapshot-preview1"
3233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3234
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3235
+
3236
+ [[package]]
3237
+ name = "wasip2"
3238
+ version = "1.0.1+wasi-0.2.4"
3239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3240
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3241
+ dependencies = [
3242
+ "wit-bindgen",
3243
+ ]
3244
+
3245
+ [[package]]
3246
+ name = "wasm-bindgen"
3247
+ version = "0.2.106"
3248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3249
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
3250
+ dependencies = [
3251
+ "cfg-if",
3252
+ "once_cell",
3253
+ "rustversion",
3254
+ "wasm-bindgen-macro",
3255
+ "wasm-bindgen-shared",
3256
+ ]
3257
+
3258
+ [[package]]
3259
+ name = "wasm-bindgen-futures"
3260
+ version = "0.4.56"
3261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3262
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
3263
+ dependencies = [
3264
+ "cfg-if",
3265
+ "js-sys",
3266
+ "once_cell",
3267
+ "wasm-bindgen",
3268
+ "web-sys",
3269
+ ]
3270
+
3271
+ [[package]]
3272
+ name = "wasm-bindgen-macro"
3273
+ version = "0.2.106"
3274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3275
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
3276
+ dependencies = [
3277
+ "quote",
3278
+ "wasm-bindgen-macro-support",
3279
+ ]
3280
+
3281
+ [[package]]
3282
+ name = "wasm-bindgen-macro-support"
3283
+ version = "0.2.106"
3284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3285
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
3286
+ dependencies = [
3287
+ "bumpalo",
3288
+ "proc-macro2",
3289
+ "quote",
3290
+ "syn 2.0.114",
3291
+ "wasm-bindgen-shared",
3292
+ ]
3293
+
3294
+ [[package]]
3295
+ name = "wasm-bindgen-shared"
3296
+ version = "0.2.106"
3297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3298
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
3299
+ dependencies = [
3300
+ "unicode-ident",
3301
+ ]
3302
+
3303
+ [[package]]
3304
+ name = "web-sys"
3305
+ version = "0.3.83"
3306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3307
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
3308
+ dependencies = [
3309
+ "js-sys",
3310
+ "wasm-bindgen",
3311
+ ]
3312
+
3313
+ [[package]]
3314
+ name = "web-time"
3315
+ version = "1.1.0"
3316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3317
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3318
+ dependencies = [
3319
+ "js-sys",
3320
+ "wasm-bindgen",
3321
+ ]
3322
+
3323
+ [[package]]
3324
+ name = "webpki-roots"
3325
+ version = "1.0.5"
3326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3327
+ checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c"
3328
+ dependencies = [
3329
+ "rustls-pki-types",
3330
+ ]
3331
+
3332
+ [[package]]
3333
+ name = "winapi-util"
3334
+ version = "0.1.11"
3335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3336
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3337
+ dependencies = [
3338
+ "windows-sys 0.61.2",
3339
+ ]
3340
+
3341
+ [[package]]
3342
+ name = "windows-core"
3343
+ version = "0.62.2"
3344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3345
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3346
+ dependencies = [
3347
+ "windows-implement",
3348
+ "windows-interface",
3349
+ "windows-link",
3350
+ "windows-result",
3351
+ "windows-strings",
3352
+ ]
3353
+
3354
+ [[package]]
3355
+ name = "windows-implement"
3356
+ version = "0.60.2"
3357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3358
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3359
+ dependencies = [
3360
+ "proc-macro2",
3361
+ "quote",
3362
+ "syn 2.0.114",
3363
+ ]
3364
+
3365
+ [[package]]
3366
+ name = "windows-interface"
3367
+ version = "0.59.3"
3368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3369
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3370
+ dependencies = [
3371
+ "proc-macro2",
3372
+ "quote",
3373
+ "syn 2.0.114",
3374
+ ]
3375
+
3376
+ [[package]]
3377
+ name = "windows-link"
3378
+ version = "0.2.1"
3379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3380
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3381
+
3382
+ [[package]]
3383
+ name = "windows-result"
3384
+ version = "0.4.1"
3385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3386
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3387
+ dependencies = [
3388
+ "windows-link",
3389
+ ]
3390
+
3391
+ [[package]]
3392
+ name = "windows-strings"
3393
+ version = "0.5.1"
3394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3395
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3396
+ dependencies = [
3397
+ "windows-link",
3398
+ ]
3399
+
3400
+ [[package]]
3401
+ name = "windows-sys"
3402
+ version = "0.48.0"
3403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3404
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3405
+ dependencies = [
3406
+ "windows-targets 0.48.5",
3407
+ ]
3408
+
3409
+ [[package]]
3410
+ name = "windows-sys"
3411
+ version = "0.52.0"
3412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3413
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3414
+ dependencies = [
3415
+ "windows-targets 0.52.6",
3416
+ ]
3417
+
3418
+ [[package]]
3419
+ name = "windows-sys"
3420
+ version = "0.60.2"
3421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3422
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3423
+ dependencies = [
3424
+ "windows-targets 0.53.5",
3425
+ ]
3426
+
3427
+ [[package]]
3428
+ name = "windows-sys"
3429
+ version = "0.61.2"
3430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3431
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3432
+ dependencies = [
3433
+ "windows-link",
3434
+ ]
3435
+
3436
+ [[package]]
3437
+ name = "windows-targets"
3438
+ version = "0.48.5"
3439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3440
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3441
+ dependencies = [
3442
+ "windows_aarch64_gnullvm 0.48.5",
3443
+ "windows_aarch64_msvc 0.48.5",
3444
+ "windows_i686_gnu 0.48.5",
3445
+ "windows_i686_msvc 0.48.5",
3446
+ "windows_x86_64_gnu 0.48.5",
3447
+ "windows_x86_64_gnullvm 0.48.5",
3448
+ "windows_x86_64_msvc 0.48.5",
3449
+ ]
3450
+
3451
+ [[package]]
3452
+ name = "windows-targets"
3453
+ version = "0.52.6"
3454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3455
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3456
+ dependencies = [
3457
+ "windows_aarch64_gnullvm 0.52.6",
3458
+ "windows_aarch64_msvc 0.52.6",
3459
+ "windows_i686_gnu 0.52.6",
3460
+ "windows_i686_gnullvm 0.52.6",
3461
+ "windows_i686_msvc 0.52.6",
3462
+ "windows_x86_64_gnu 0.52.6",
3463
+ "windows_x86_64_gnullvm 0.52.6",
3464
+ "windows_x86_64_msvc 0.52.6",
3465
+ ]
3466
+
3467
+ [[package]]
3468
+ name = "windows-targets"
3469
+ version = "0.53.5"
3470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3471
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3472
+ dependencies = [
3473
+ "windows-link",
3474
+ "windows_aarch64_gnullvm 0.53.1",
3475
+ "windows_aarch64_msvc 0.53.1",
3476
+ "windows_i686_gnu 0.53.1",
3477
+ "windows_i686_gnullvm 0.53.1",
3478
+ "windows_i686_msvc 0.53.1",
3479
+ "windows_x86_64_gnu 0.53.1",
3480
+ "windows_x86_64_gnullvm 0.53.1",
3481
+ "windows_x86_64_msvc 0.53.1",
3482
+ ]
3483
+
3484
+ [[package]]
3485
+ name = "windows_aarch64_gnullvm"
3486
+ version = "0.48.5"
3487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3488
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3489
+
3490
+ [[package]]
3491
+ name = "windows_aarch64_gnullvm"
3492
+ version = "0.52.6"
3493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3494
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3495
+
3496
+ [[package]]
3497
+ name = "windows_aarch64_gnullvm"
3498
+ version = "0.53.1"
3499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3500
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3501
+
3502
+ [[package]]
3503
+ name = "windows_aarch64_msvc"
3504
+ version = "0.48.5"
3505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3506
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3507
+
3508
+ [[package]]
3509
+ name = "windows_aarch64_msvc"
3510
+ version = "0.52.6"
3511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3512
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3513
+
3514
+ [[package]]
3515
+ name = "windows_aarch64_msvc"
3516
+ version = "0.53.1"
3517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3518
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3519
+
3520
+ [[package]]
3521
+ name = "windows_i686_gnu"
3522
+ version = "0.48.5"
3523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3524
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3525
+
3526
+ [[package]]
3527
+ name = "windows_i686_gnu"
3528
+ version = "0.52.6"
3529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3530
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3531
+
3532
+ [[package]]
3533
+ name = "windows_i686_gnu"
3534
+ version = "0.53.1"
3535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3536
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3537
+
3538
+ [[package]]
3539
+ name = "windows_i686_gnullvm"
3540
+ version = "0.52.6"
3541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3542
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3543
+
3544
+ [[package]]
3545
+ name = "windows_i686_gnullvm"
3546
+ version = "0.53.1"
3547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3548
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3549
+
3550
+ [[package]]
3551
+ name = "windows_i686_msvc"
3552
+ version = "0.48.5"
3553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3554
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3555
+
3556
+ [[package]]
3557
+ name = "windows_i686_msvc"
3558
+ version = "0.52.6"
3559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3560
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3561
+
3562
+ [[package]]
3563
+ name = "windows_i686_msvc"
3564
+ version = "0.53.1"
3565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3566
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3567
+
3568
+ [[package]]
3569
+ name = "windows_x86_64_gnu"
3570
+ version = "0.48.5"
3571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3572
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3573
+
3574
+ [[package]]
3575
+ name = "windows_x86_64_gnu"
3576
+ version = "0.52.6"
3577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3578
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3579
+
3580
+ [[package]]
3581
+ name = "windows_x86_64_gnu"
3582
+ version = "0.53.1"
3583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3584
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3585
+
3586
+ [[package]]
3587
+ name = "windows_x86_64_gnullvm"
3588
+ version = "0.48.5"
3589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3591
+
3592
+ [[package]]
3593
+ name = "windows_x86_64_gnullvm"
3594
+ version = "0.52.6"
3595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3596
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3597
+
3598
+ [[package]]
3599
+ name = "windows_x86_64_gnullvm"
3600
+ version = "0.53.1"
3601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3602
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3603
+
3604
+ [[package]]
3605
+ name = "windows_x86_64_msvc"
3606
+ version = "0.48.5"
3607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3608
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3609
+
3610
+ [[package]]
3611
+ name = "windows_x86_64_msvc"
3612
+ version = "0.52.6"
3613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3614
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3615
+
3616
+ [[package]]
3617
+ name = "windows_x86_64_msvc"
3618
+ version = "0.53.1"
3619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3620
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3621
+
3622
+ [[package]]
3623
+ name = "winnow"
3624
+ version = "0.7.14"
3625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3626
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3627
+ dependencies = [
3628
+ "memchr",
3629
+ ]
3630
+
3631
+ [[package]]
3632
+ name = "wit-bindgen"
3633
+ version = "0.46.0"
3634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3635
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3636
+
3637
+ [[package]]
3638
+ name = "writeable"
3639
+ version = "0.6.2"
3640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3641
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3642
+
3643
+ [[package]]
3644
+ name = "wyz"
3645
+ version = "0.5.1"
3646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3647
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
3648
+ dependencies = [
3649
+ "tap",
3650
+ ]
3651
+
3652
+ [[package]]
3653
+ name = "xattr"
3654
+ version = "1.6.1"
3655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3656
+ checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
3657
+ dependencies = [
3658
+ "libc",
3659
+ "rustix",
3660
+ ]
3661
+
3662
+ [[package]]
3663
+ name = "yoke"
3664
+ version = "0.8.1"
3665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3666
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3667
+ dependencies = [
3668
+ "stable_deref_trait",
3669
+ "yoke-derive",
3670
+ "zerofrom",
3671
+ ]
3672
+
3673
+ [[package]]
3674
+ name = "yoke-derive"
3675
+ version = "0.8.1"
3676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3677
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3678
+ dependencies = [
3679
+ "proc-macro2",
3680
+ "quote",
3681
+ "syn 2.0.114",
3682
+ "synstructure",
3683
+ ]
3684
+
3685
+ [[package]]
3686
+ name = "zerocopy"
3687
+ version = "0.8.33"
3688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3689
+ checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
3690
+ dependencies = [
3691
+ "zerocopy-derive",
3692
+ ]
3693
+
3694
+ [[package]]
3695
+ name = "zerocopy-derive"
3696
+ version = "0.8.33"
3697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3698
+ checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
3699
+ dependencies = [
3700
+ "proc-macro2",
3701
+ "quote",
3702
+ "syn 2.0.114",
3703
+ ]
3704
+
3705
+ [[package]]
3706
+ name = "zerofrom"
3707
+ version = "0.1.6"
3708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3709
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3710
+ dependencies = [
3711
+ "zerofrom-derive",
3712
+ ]
3713
+
3714
+ [[package]]
3715
+ name = "zerofrom-derive"
3716
+ version = "0.1.6"
3717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3718
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3719
+ dependencies = [
3720
+ "proc-macro2",
3721
+ "quote",
3722
+ "syn 2.0.114",
3723
+ "synstructure",
3724
+ ]
3725
+
3726
+ [[package]]
3727
+ name = "zeroize"
3728
+ version = "1.8.2"
3729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3730
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3731
+
3732
+ [[package]]
3733
+ name = "zerotrie"
3734
+ version = "0.2.3"
3735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3736
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3737
+ dependencies = [
3738
+ "displaydoc",
3739
+ "yoke",
3740
+ "zerofrom",
3741
+ ]
3742
+
3743
+ [[package]]
3744
+ name = "zerovec"
3745
+ version = "0.11.5"
3746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3747
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3748
+ dependencies = [
3749
+ "yoke",
3750
+ "zerofrom",
3751
+ "zerovec-derive",
3752
+ ]
3753
+
3754
+ [[package]]
3755
+ name = "zerovec-derive"
3756
+ version = "0.11.2"
3757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3758
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3759
+ dependencies = [
3760
+ "proc-macro2",
3761
+ "quote",
3762
+ "syn 2.0.114",
3763
+ ]
3764
+
3765
+ [[package]]
3766
+ name = "zip"
3767
+ version = "6.0.0"
3768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3769
+ checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b"
3770
+ dependencies = [
3771
+ "arbitrary",
3772
+ "crc32fast",
3773
+ "flate2",
3774
+ "indexmap",
3775
+ "memchr",
3776
+ "zopfli",
3777
+ ]
3778
+
3779
+ [[package]]
3780
+ name = "zlib-rs"
3781
+ version = "0.5.5"
3782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3783
+ checksum = "40990edd51aae2c2b6907af74ffb635029d5788228222c4bb811e9351c0caad3"
3784
+
3785
+ [[package]]
3786
+ name = "zmij"
3787
+ version = "1.0.14"
3788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3789
+ checksum = "bd8f3f50b848df28f887acb68e41201b5aea6bc8a8dacc00fb40635ff9a72fea"
3790
+
3791
+ [[package]]
3792
+ name = "zopfli"
3793
+ version = "0.8.3"
3794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3795
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
3796
+ dependencies = [
3797
+ "bumpalo",
3798
+ "crc32fast",
3799
+ "log",
3800
+ "simd-adler32",
3801
+ ]