mdql 0.2.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 (46) hide show
  1. mdql-0.2.2/Cargo.lock +2755 -0
  2. mdql-0.2.2/Cargo.toml +11 -0
  3. mdql-0.2.2/LICENSE.md +40 -0
  4. mdql-0.2.2/PKG-INFO +688 -0
  5. mdql-0.2.2/README.md +656 -0
  6. mdql-0.2.2/crates/mdql-core/Cargo.toml +31 -0
  7. mdql-0.2.2/crates/mdql-core/README.md +656 -0
  8. mdql-0.2.2/crates/mdql-core/src/api.rs +960 -0
  9. mdql-0.2.2/crates/mdql-core/src/cache.rs +156 -0
  10. mdql-0.2.2/crates/mdql-core/src/database.rs +114 -0
  11. mdql-0.2.2/crates/mdql-core/src/errors.rs +52 -0
  12. mdql-0.2.2/crates/mdql-core/src/index.rs +321 -0
  13. mdql-0.2.2/crates/mdql-core/src/lib.rs +18 -0
  14. mdql-0.2.2/crates/mdql-core/src/loader.rs +159 -0
  15. mdql-0.2.2/crates/mdql-core/src/migrate.rs +416 -0
  16. mdql-0.2.2/crates/mdql-core/src/model.rs +247 -0
  17. mdql-0.2.2/crates/mdql-core/src/parser.rs +384 -0
  18. mdql-0.2.2/crates/mdql-core/src/projector.rs +284 -0
  19. mdql-0.2.2/crates/mdql-core/src/query_engine.rs +1389 -0
  20. mdql-0.2.2/crates/mdql-core/src/query_parser.rs +1744 -0
  21. mdql-0.2.2/crates/mdql-core/src/schema.rs +380 -0
  22. mdql-0.2.2/crates/mdql-core/src/search.rs +335 -0
  23. mdql-0.2.2/crates/mdql-core/src/stamp.rs +95 -0
  24. mdql-0.2.2/crates/mdql-core/src/txn.rs +266 -0
  25. mdql-0.2.2/crates/mdql-core/src/validator.rs +668 -0
  26. mdql-0.2.2/crates/mdql-core/src/watcher.rs +89 -0
  27. mdql-0.2.2/pyproject.toml +51 -0
  28. mdql-0.2.2/python/Cargo.toml +17 -0
  29. mdql-0.2.2/python/LICENSE.md +40 -0
  30. mdql-0.2.2/python/mdql/__init__.py +9 -0
  31. mdql-0.2.2/python/mdql/api.py +156 -0
  32. mdql-0.2.2/python/mdql/database.py +25 -0
  33. mdql-0.2.2/python/mdql/errors.py +43 -0
  34. mdql-0.2.2/python/mdql/loader.py +29 -0
  35. mdql-0.2.2/python/mdql/migrate.py +59 -0
  36. mdql-0.2.2/python/mdql/model.py +3 -0
  37. mdql-0.2.2/python/mdql/pandas.py +67 -0
  38. mdql-0.2.2/python/mdql/parser.py +116 -0
  39. mdql-0.2.2/python/mdql/polars.py +76 -0
  40. mdql-0.2.2/python/mdql/query_engine.py +113 -0
  41. mdql-0.2.2/python/mdql/query_parser.py +90 -0
  42. mdql-0.2.2/python/mdql/schema.py +114 -0
  43. mdql-0.2.2/python/mdql/stamp.py +38 -0
  44. mdql-0.2.2/python/mdql/txn.py +121 -0
  45. mdql-0.2.2/python/mdql/validator.py +47 -0
  46. mdql-0.2.2/python/src/lib.rs +1168 -0
mdql-0.2.2/Cargo.lock ADDED
@@ -0,0 +1,2755 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
20
+ [[package]]
21
+ name = "android_system_properties"
22
+ version = "0.1.5"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
25
+ dependencies = [
26
+ "libc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstream"
31
+ version = "1.0.0"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
34
+ dependencies = [
35
+ "anstyle",
36
+ "anstyle-parse",
37
+ "anstyle-query",
38
+ "anstyle-wincon",
39
+ "colorchoice",
40
+ "is_terminal_polyfill",
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle"
46
+ version = "1.0.14"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
49
+
50
+ [[package]]
51
+ name = "anstyle-parse"
52
+ version = "1.0.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
55
+ dependencies = [
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-query"
61
+ version = "1.1.5"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
64
+ dependencies = [
65
+ "windows-sys 0.61.2",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstyle-wincon"
70
+ version = "3.0.11"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
73
+ dependencies = [
74
+ "anstyle",
75
+ "once_cell_polyfill",
76
+ "windows-sys 0.61.2",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anyhow"
81
+ version = "1.0.102"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
84
+
85
+ [[package]]
86
+ name = "arc-swap"
87
+ version = "1.9.1"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
90
+ dependencies = [
91
+ "rustversion",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "async-trait"
96
+ version = "0.1.89"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
99
+ dependencies = [
100
+ "proc-macro2",
101
+ "quote",
102
+ "syn",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "atomic-waker"
107
+ version = "1.1.2"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
110
+
111
+ [[package]]
112
+ name = "autocfg"
113
+ version = "1.5.0"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
116
+
117
+ [[package]]
118
+ name = "axum"
119
+ version = "0.8.8"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
122
+ dependencies = [
123
+ "axum-core",
124
+ "bytes",
125
+ "form_urlencoded",
126
+ "futures-util",
127
+ "http",
128
+ "http-body",
129
+ "http-body-util",
130
+ "hyper",
131
+ "hyper-util",
132
+ "itoa",
133
+ "matchit",
134
+ "memchr",
135
+ "mime",
136
+ "percent-encoding",
137
+ "pin-project-lite",
138
+ "serde_core",
139
+ "serde_json",
140
+ "serde_path_to_error",
141
+ "serde_urlencoded",
142
+ "sync_wrapper",
143
+ "tokio",
144
+ "tower",
145
+ "tower-layer",
146
+ "tower-service",
147
+ "tracing",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "axum-core"
152
+ version = "0.5.6"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
155
+ dependencies = [
156
+ "bytes",
157
+ "futures-core",
158
+ "http",
159
+ "http-body",
160
+ "http-body-util",
161
+ "mime",
162
+ "pin-project-lite",
163
+ "sync_wrapper",
164
+ "tower-layer",
165
+ "tower-service",
166
+ "tracing",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "base64"
171
+ version = "0.22.1"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
174
+
175
+ [[package]]
176
+ name = "bitflags"
177
+ version = "1.3.2"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
180
+
181
+ [[package]]
182
+ name = "bitflags"
183
+ version = "2.11.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
186
+
187
+ [[package]]
188
+ name = "bitpacking"
189
+ version = "0.9.3"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "96a7139abd3d9cebf8cd6f920a389cf3dc9576172e32f4563f188cae3c3eb019"
192
+ dependencies = [
193
+ "crunchy",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "block-buffer"
198
+ version = "0.10.4"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
201
+ dependencies = [
202
+ "generic-array",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "bumpalo"
207
+ version = "3.20.2"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
210
+
211
+ [[package]]
212
+ name = "byteorder"
213
+ version = "1.5.0"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
216
+
217
+ [[package]]
218
+ name = "bytes"
219
+ version = "1.11.1"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
222
+
223
+ [[package]]
224
+ name = "cc"
225
+ version = "1.2.59"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
228
+ dependencies = [
229
+ "find-msvc-tools",
230
+ "jobserver",
231
+ "libc",
232
+ "shlex",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "census"
237
+ version = "0.4.2"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0"
240
+
241
+ [[package]]
242
+ name = "cfg-if"
243
+ version = "1.0.4"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
246
+
247
+ [[package]]
248
+ name = "cfg_aliases"
249
+ version = "0.2.1"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
252
+
253
+ [[package]]
254
+ name = "chrono"
255
+ version = "0.4.44"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
258
+ dependencies = [
259
+ "iana-time-zone",
260
+ "js-sys",
261
+ "num-traits",
262
+ "serde",
263
+ "wasm-bindgen",
264
+ "windows-link",
265
+ ]
266
+
267
+ [[package]]
268
+ name = "clap"
269
+ version = "4.6.0"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
272
+ dependencies = [
273
+ "clap_builder",
274
+ "clap_derive",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "clap_builder"
279
+ version = "4.6.0"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
282
+ dependencies = [
283
+ "anstream",
284
+ "anstyle",
285
+ "clap_lex",
286
+ "strsim",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "clap_derive"
291
+ version = "4.6.0"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
294
+ dependencies = [
295
+ "heck",
296
+ "proc-macro2",
297
+ "quote",
298
+ "syn",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "clap_lex"
303
+ version = "1.1.0"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
306
+
307
+ [[package]]
308
+ name = "clipboard-win"
309
+ version = "5.4.1"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
312
+ dependencies = [
313
+ "error-code",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "colorchoice"
318
+ version = "1.0.5"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
321
+
322
+ [[package]]
323
+ name = "comfy-table"
324
+ version = "7.2.2"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
327
+ dependencies = [
328
+ "crossterm",
329
+ "unicode-segmentation",
330
+ "unicode-width",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "core-foundation-sys"
335
+ version = "0.8.7"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
338
+
339
+ [[package]]
340
+ name = "cpufeatures"
341
+ version = "0.2.17"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
344
+ dependencies = [
345
+ "libc",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "crc32fast"
350
+ version = "1.5.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
353
+ dependencies = [
354
+ "cfg-if",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "crossbeam-channel"
359
+ version = "0.5.15"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
362
+ dependencies = [
363
+ "crossbeam-utils",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "crossbeam-deque"
368
+ version = "0.8.6"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
371
+ dependencies = [
372
+ "crossbeam-epoch",
373
+ "crossbeam-utils",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "crossbeam-epoch"
378
+ version = "0.9.18"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
381
+ dependencies = [
382
+ "crossbeam-utils",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "crossbeam-utils"
387
+ version = "0.8.21"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
390
+
391
+ [[package]]
392
+ name = "crossterm"
393
+ version = "0.29.0"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
396
+ dependencies = [
397
+ "bitflags 2.11.0",
398
+ "crossterm_winapi",
399
+ "document-features",
400
+ "parking_lot",
401
+ "rustix 1.1.4",
402
+ "winapi",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "crossterm_winapi"
407
+ version = "0.9.1"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
410
+ dependencies = [
411
+ "winapi",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "crunchy"
416
+ version = "0.2.4"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
419
+
420
+ [[package]]
421
+ name = "crypto-common"
422
+ version = "0.1.7"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
425
+ dependencies = [
426
+ "generic-array",
427
+ "typenum",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "deranged"
432
+ version = "0.5.8"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
435
+ dependencies = [
436
+ "powerfmt",
437
+ "serde_core",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "diff"
442
+ version = "0.1.13"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
445
+
446
+ [[package]]
447
+ name = "digest"
448
+ version = "0.10.7"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
451
+ dependencies = [
452
+ "block-buffer",
453
+ "crypto-common",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "dirs-next"
458
+ version = "2.0.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
461
+ dependencies = [
462
+ "cfg-if",
463
+ "dirs-sys-next",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "dirs-sys-next"
468
+ version = "0.1.2"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
471
+ dependencies = [
472
+ "libc",
473
+ "redox_users",
474
+ "winapi",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "document-features"
479
+ version = "0.2.12"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
482
+ dependencies = [
483
+ "litrs",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "downcast-rs"
488
+ version = "1.2.1"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
491
+
492
+ [[package]]
493
+ name = "either"
494
+ version = "1.15.0"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
497
+
498
+ [[package]]
499
+ name = "endian-type"
500
+ version = "0.1.2"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
503
+
504
+ [[package]]
505
+ name = "equivalent"
506
+ version = "1.0.2"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
509
+
510
+ [[package]]
511
+ name = "errno"
512
+ version = "0.3.14"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
515
+ dependencies = [
516
+ "libc",
517
+ "windows-sys 0.61.2",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "error-code"
522
+ version = "3.3.2"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
525
+
526
+ [[package]]
527
+ name = "fastdivide"
528
+ version = "0.4.2"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471"
531
+
532
+ [[package]]
533
+ name = "fastrand"
534
+ version = "2.4.0"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
537
+
538
+ [[package]]
539
+ name = "fd-lock"
540
+ version = "4.0.4"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
543
+ dependencies = [
544
+ "cfg-if",
545
+ "rustix 1.1.4",
546
+ "windows-sys 0.59.0",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "filetime"
551
+ version = "0.2.27"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
554
+ dependencies = [
555
+ "cfg-if",
556
+ "libc",
557
+ "libredox",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "find-msvc-tools"
562
+ version = "0.1.9"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
565
+
566
+ [[package]]
567
+ name = "fnv"
568
+ version = "1.0.7"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
571
+
572
+ [[package]]
573
+ name = "foldhash"
574
+ version = "0.1.5"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
577
+
578
+ [[package]]
579
+ name = "form_urlencoded"
580
+ version = "1.2.2"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
583
+ dependencies = [
584
+ "percent-encoding",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "fs2"
589
+ version = "0.4.3"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
592
+ dependencies = [
593
+ "libc",
594
+ "winapi",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "fs4"
599
+ version = "0.8.4"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8"
602
+ dependencies = [
603
+ "rustix 0.38.44",
604
+ "windows-sys 0.52.0",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "fsevent-sys"
609
+ version = "4.1.0"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
612
+ dependencies = [
613
+ "libc",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "futures-channel"
618
+ version = "0.3.32"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
621
+ dependencies = [
622
+ "futures-core",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "futures-core"
627
+ version = "0.3.32"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
630
+
631
+ [[package]]
632
+ name = "futures-task"
633
+ version = "0.3.32"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
636
+
637
+ [[package]]
638
+ name = "futures-util"
639
+ version = "0.3.32"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
642
+ dependencies = [
643
+ "futures-core",
644
+ "futures-task",
645
+ "pin-project-lite",
646
+ "slab",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "generic-array"
651
+ version = "0.14.7"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
654
+ dependencies = [
655
+ "typenum",
656
+ "version_check",
657
+ ]
658
+
659
+ [[package]]
660
+ name = "getrandom"
661
+ version = "0.2.17"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
664
+ dependencies = [
665
+ "cfg-if",
666
+ "libc",
667
+ "wasi",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "getrandom"
672
+ version = "0.3.4"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
675
+ dependencies = [
676
+ "cfg-if",
677
+ "libc",
678
+ "r-efi 5.3.0",
679
+ "wasip2",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "getrandom"
684
+ version = "0.4.2"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
687
+ dependencies = [
688
+ "cfg-if",
689
+ "libc",
690
+ "r-efi 6.0.0",
691
+ "wasip2",
692
+ "wasip3",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "hashbrown"
697
+ version = "0.15.5"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
700
+ dependencies = [
701
+ "allocator-api2",
702
+ "equivalent",
703
+ "foldhash",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "hashbrown"
708
+ version = "0.16.1"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
711
+
712
+ [[package]]
713
+ name = "heck"
714
+ version = "0.5.0"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
717
+
718
+ [[package]]
719
+ name = "hermit-abi"
720
+ version = "0.5.2"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
723
+
724
+ [[package]]
725
+ name = "home"
726
+ version = "0.5.12"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
729
+ dependencies = [
730
+ "windows-sys 0.61.2",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "htmlescape"
735
+ version = "0.3.1"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
738
+
739
+ [[package]]
740
+ name = "http"
741
+ version = "1.4.0"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
744
+ dependencies = [
745
+ "bytes",
746
+ "itoa",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "http-body"
751
+ version = "1.0.1"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
754
+ dependencies = [
755
+ "bytes",
756
+ "http",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "http-body-util"
761
+ version = "0.1.3"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
764
+ dependencies = [
765
+ "bytes",
766
+ "futures-core",
767
+ "http",
768
+ "http-body",
769
+ "pin-project-lite",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "httparse"
774
+ version = "1.10.1"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
777
+
778
+ [[package]]
779
+ name = "httpdate"
780
+ version = "1.0.3"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
783
+
784
+ [[package]]
785
+ name = "hyper"
786
+ version = "1.9.0"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
789
+ dependencies = [
790
+ "atomic-waker",
791
+ "bytes",
792
+ "futures-channel",
793
+ "futures-core",
794
+ "http",
795
+ "http-body",
796
+ "httparse",
797
+ "httpdate",
798
+ "itoa",
799
+ "pin-project-lite",
800
+ "smallvec",
801
+ "tokio",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "hyper-util"
806
+ version = "0.1.20"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
809
+ dependencies = [
810
+ "bytes",
811
+ "http",
812
+ "http-body",
813
+ "hyper",
814
+ "pin-project-lite",
815
+ "tokio",
816
+ "tower-service",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "iana-time-zone"
821
+ version = "0.1.65"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
824
+ dependencies = [
825
+ "android_system_properties",
826
+ "core-foundation-sys",
827
+ "iana-time-zone-haiku",
828
+ "js-sys",
829
+ "log",
830
+ "wasm-bindgen",
831
+ "windows-core",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "iana-time-zone-haiku"
836
+ version = "0.1.2"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
839
+ dependencies = [
840
+ "cc",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "id-arena"
845
+ version = "2.3.0"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
848
+
849
+ [[package]]
850
+ name = "indexmap"
851
+ version = "2.13.1"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
854
+ dependencies = [
855
+ "equivalent",
856
+ "hashbrown 0.16.1",
857
+ "serde",
858
+ "serde_core",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "indoc"
863
+ version = "2.0.7"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
866
+ dependencies = [
867
+ "rustversion",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "inotify"
872
+ version = "0.10.2"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "fdd168d97690d0b8c412d6b6c10360277f4d7ee495c5d0d5d5fe0854923255cc"
875
+ dependencies = [
876
+ "bitflags 1.3.2",
877
+ "inotify-sys",
878
+ "libc",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "inotify-sys"
883
+ version = "0.1.5"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
886
+ dependencies = [
887
+ "libc",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "instant"
892
+ version = "0.1.13"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
895
+ dependencies = [
896
+ "cfg-if",
897
+ "js-sys",
898
+ "wasm-bindgen",
899
+ "web-sys",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "is_terminal_polyfill"
904
+ version = "1.70.2"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
907
+
908
+ [[package]]
909
+ name = "itertools"
910
+ version = "0.12.1"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
913
+ dependencies = [
914
+ "either",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "itoa"
919
+ version = "1.0.18"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
922
+
923
+ [[package]]
924
+ name = "jobserver"
925
+ version = "0.1.34"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
928
+ dependencies = [
929
+ "getrandom 0.3.4",
930
+ "libc",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "js-sys"
935
+ version = "0.3.94"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
938
+ dependencies = [
939
+ "once_cell",
940
+ "wasm-bindgen",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "kqueue"
945
+ version = "1.1.1"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
948
+ dependencies = [
949
+ "kqueue-sys",
950
+ "libc",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "kqueue-sys"
955
+ version = "1.0.4"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
958
+ dependencies = [
959
+ "bitflags 1.3.2",
960
+ "libc",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "leb128fmt"
965
+ version = "0.1.0"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
968
+
969
+ [[package]]
970
+ name = "levenshtein_automata"
971
+ version = "0.2.1"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
974
+
975
+ [[package]]
976
+ name = "libc"
977
+ version = "0.2.184"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
980
+
981
+ [[package]]
982
+ name = "libm"
983
+ version = "0.2.16"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
986
+
987
+ [[package]]
988
+ name = "libredox"
989
+ version = "0.1.15"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "7ddbf48fd451246b1f8c2610bd3b4ac0cc6e149d89832867093ab69a17194f08"
992
+ dependencies = [
993
+ "bitflags 2.11.0",
994
+ "libc",
995
+ "plain",
996
+ "redox_syscall 0.7.3",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "linux-raw-sys"
1001
+ version = "0.4.15"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1004
+
1005
+ [[package]]
1006
+ name = "linux-raw-sys"
1007
+ version = "0.12.1"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1010
+
1011
+ [[package]]
1012
+ name = "litrs"
1013
+ version = "1.0.0"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1016
+
1017
+ [[package]]
1018
+ name = "lock_api"
1019
+ version = "0.4.14"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1022
+ dependencies = [
1023
+ "scopeguard",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "log"
1028
+ version = "0.4.29"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1031
+
1032
+ [[package]]
1033
+ name = "lru"
1034
+ version = "0.12.5"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
1037
+ dependencies = [
1038
+ "hashbrown 0.15.5",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "lz4_flex"
1043
+ version = "0.11.6"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "373f5eceeeab7925e0c1098212f2fbc4d416adec9d35051a6ab251e824c1854a"
1046
+
1047
+ [[package]]
1048
+ name = "matchit"
1049
+ version = "0.8.4"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1052
+
1053
+ [[package]]
1054
+ name = "mdql"
1055
+ version = "0.2.2"
1056
+ dependencies = [
1057
+ "clap",
1058
+ "comfy-table",
1059
+ "dirs-next",
1060
+ "mdql-core",
1061
+ "mdql-web",
1062
+ "rustyline",
1063
+ "serde_json",
1064
+ "serde_yaml",
1065
+ "tokio",
1066
+ ]
1067
+
1068
+ [[package]]
1069
+ name = "mdql-core"
1070
+ version = "0.2.2"
1071
+ dependencies = [
1072
+ "chrono",
1073
+ "fs2",
1074
+ "indexmap",
1075
+ "libc",
1076
+ "notify",
1077
+ "pretty_assertions",
1078
+ "rayon",
1079
+ "regex",
1080
+ "serde",
1081
+ "serde_json",
1082
+ "serde_yaml",
1083
+ "tantivy",
1084
+ "tempfile",
1085
+ "thiserror 2.0.18",
1086
+ "walkdir",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "mdql-python"
1091
+ version = "0.2.2"
1092
+ dependencies = [
1093
+ "chrono",
1094
+ "indexmap",
1095
+ "mdql-core",
1096
+ "pyo3",
1097
+ "serde_yaml",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "mdql-web"
1102
+ version = "0.2.2"
1103
+ dependencies = [
1104
+ "axum",
1105
+ "mdql-core",
1106
+ "mime_guess",
1107
+ "rust-embed",
1108
+ "serde",
1109
+ "serde_json",
1110
+ "tokio",
1111
+ "tower-http",
1112
+ ]
1113
+
1114
+ [[package]]
1115
+ name = "measure_time"
1116
+ version = "0.8.3"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "dbefd235b0aadd181626f281e1d684e116972988c14c264e42069d5e8a5775cc"
1119
+ dependencies = [
1120
+ "instant",
1121
+ "log",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "memchr"
1126
+ version = "2.8.0"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1129
+
1130
+ [[package]]
1131
+ name = "memmap2"
1132
+ version = "0.9.10"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
1135
+ dependencies = [
1136
+ "libc",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "memoffset"
1141
+ version = "0.9.1"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1144
+ dependencies = [
1145
+ "autocfg",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "mime"
1150
+ version = "0.3.17"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1153
+
1154
+ [[package]]
1155
+ name = "mime_guess"
1156
+ version = "2.0.5"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1159
+ dependencies = [
1160
+ "mime",
1161
+ "unicase",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "minimal-lexical"
1166
+ version = "0.2.1"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1169
+
1170
+ [[package]]
1171
+ name = "mio"
1172
+ version = "1.2.0"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1175
+ dependencies = [
1176
+ "libc",
1177
+ "log",
1178
+ "wasi",
1179
+ "windows-sys 0.61.2",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "murmurhash32"
1184
+ version = "0.3.1"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
1187
+
1188
+ [[package]]
1189
+ name = "nibble_vec"
1190
+ version = "0.1.0"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
1193
+ dependencies = [
1194
+ "smallvec",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "nix"
1199
+ version = "0.29.0"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1202
+ dependencies = [
1203
+ "bitflags 2.11.0",
1204
+ "cfg-if",
1205
+ "cfg_aliases",
1206
+ "libc",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "nom"
1211
+ version = "7.1.3"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1214
+ dependencies = [
1215
+ "memchr",
1216
+ "minimal-lexical",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "notify"
1221
+ version = "7.0.0"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "c533b4c39709f9ba5005d8002048266593c1cfaf3c5f0739d5b8ab0c6c504009"
1224
+ dependencies = [
1225
+ "bitflags 2.11.0",
1226
+ "filetime",
1227
+ "fsevent-sys",
1228
+ "inotify",
1229
+ "kqueue",
1230
+ "libc",
1231
+ "log",
1232
+ "mio",
1233
+ "notify-types",
1234
+ "walkdir",
1235
+ "windows-sys 0.52.0",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "notify-types"
1240
+ version = "1.0.1"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "585d3cb5e12e01aed9e8a1f70d5c6b5e86fe2a6e48fc8cd0b3e0b8df6f6eb174"
1243
+ dependencies = [
1244
+ "instant",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "num-conv"
1249
+ version = "0.2.1"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
1252
+
1253
+ [[package]]
1254
+ name = "num-traits"
1255
+ version = "0.2.19"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1258
+ dependencies = [
1259
+ "autocfg",
1260
+ "libm",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "num_cpus"
1265
+ version = "1.17.0"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1268
+ dependencies = [
1269
+ "hermit-abi",
1270
+ "libc",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "once_cell"
1275
+ version = "1.21.4"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1278
+
1279
+ [[package]]
1280
+ name = "once_cell_polyfill"
1281
+ version = "1.70.2"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1284
+
1285
+ [[package]]
1286
+ name = "oneshot"
1287
+ version = "0.1.13"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "269bca4c2591a28585d6bf10d9ed0332b7d76900a1b02bec41bdc3a2cdcda107"
1290
+
1291
+ [[package]]
1292
+ name = "ownedbytes"
1293
+ version = "0.7.0"
1294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1295
+ checksum = "c3a059efb063b8f425b948e042e6b9bd85edfe60e913630ed727b23e2dfcc558"
1296
+ dependencies = [
1297
+ "stable_deref_trait",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "parking_lot"
1302
+ version = "0.12.5"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1305
+ dependencies = [
1306
+ "lock_api",
1307
+ "parking_lot_core",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "parking_lot_core"
1312
+ version = "0.9.12"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1315
+ dependencies = [
1316
+ "cfg-if",
1317
+ "libc",
1318
+ "redox_syscall 0.5.18",
1319
+ "smallvec",
1320
+ "windows-link",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "percent-encoding"
1325
+ version = "2.3.2"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1328
+
1329
+ [[package]]
1330
+ name = "pin-project-lite"
1331
+ version = "0.2.17"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1334
+
1335
+ [[package]]
1336
+ name = "pkg-config"
1337
+ version = "0.3.32"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1340
+
1341
+ [[package]]
1342
+ name = "plain"
1343
+ version = "0.2.3"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1346
+
1347
+ [[package]]
1348
+ name = "portable-atomic"
1349
+ version = "1.13.1"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1352
+
1353
+ [[package]]
1354
+ name = "powerfmt"
1355
+ version = "0.2.0"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1358
+
1359
+ [[package]]
1360
+ name = "ppv-lite86"
1361
+ version = "0.2.21"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1364
+ dependencies = [
1365
+ "zerocopy",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "pretty_assertions"
1370
+ version = "1.4.1"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
1373
+ dependencies = [
1374
+ "diff",
1375
+ "yansi",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "prettyplease"
1380
+ version = "0.2.37"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1383
+ dependencies = [
1384
+ "proc-macro2",
1385
+ "syn",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "proc-macro2"
1390
+ version = "1.0.106"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1393
+ dependencies = [
1394
+ "unicode-ident",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "pyo3"
1399
+ version = "0.23.5"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
1402
+ dependencies = [
1403
+ "cfg-if",
1404
+ "indoc",
1405
+ "libc",
1406
+ "memoffset",
1407
+ "once_cell",
1408
+ "portable-atomic",
1409
+ "pyo3-build-config",
1410
+ "pyo3-ffi",
1411
+ "pyo3-macros",
1412
+ "unindent",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "pyo3-build-config"
1417
+ version = "0.23.5"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
1420
+ dependencies = [
1421
+ "once_cell",
1422
+ "target-lexicon",
1423
+ ]
1424
+
1425
+ [[package]]
1426
+ name = "pyo3-ffi"
1427
+ version = "0.23.5"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
1430
+ dependencies = [
1431
+ "libc",
1432
+ "pyo3-build-config",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "pyo3-macros"
1437
+ version = "0.23.5"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
1440
+ dependencies = [
1441
+ "proc-macro2",
1442
+ "pyo3-macros-backend",
1443
+ "quote",
1444
+ "syn",
1445
+ ]
1446
+
1447
+ [[package]]
1448
+ name = "pyo3-macros-backend"
1449
+ version = "0.23.5"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
1452
+ dependencies = [
1453
+ "heck",
1454
+ "proc-macro2",
1455
+ "pyo3-build-config",
1456
+ "quote",
1457
+ "syn",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "quote"
1462
+ version = "1.0.45"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1465
+ dependencies = [
1466
+ "proc-macro2",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "r-efi"
1471
+ version = "5.3.0"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1474
+
1475
+ [[package]]
1476
+ name = "r-efi"
1477
+ version = "6.0.0"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1480
+
1481
+ [[package]]
1482
+ name = "radix_trie"
1483
+ version = "0.2.1"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
1486
+ dependencies = [
1487
+ "endian-type",
1488
+ "nibble_vec",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "rand"
1493
+ version = "0.8.5"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1496
+ dependencies = [
1497
+ "libc",
1498
+ "rand_chacha",
1499
+ "rand_core",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "rand_chacha"
1504
+ version = "0.3.1"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1507
+ dependencies = [
1508
+ "ppv-lite86",
1509
+ "rand_core",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "rand_core"
1514
+ version = "0.6.4"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1517
+ dependencies = [
1518
+ "getrandom 0.2.17",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "rand_distr"
1523
+ version = "0.4.3"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
1526
+ dependencies = [
1527
+ "num-traits",
1528
+ "rand",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "rayon"
1533
+ version = "1.11.0"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1536
+ dependencies = [
1537
+ "either",
1538
+ "rayon-core",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "rayon-core"
1543
+ version = "1.13.0"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1546
+ dependencies = [
1547
+ "crossbeam-deque",
1548
+ "crossbeam-utils",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "redox_syscall"
1553
+ version = "0.5.18"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1556
+ dependencies = [
1557
+ "bitflags 2.11.0",
1558
+ ]
1559
+
1560
+ [[package]]
1561
+ name = "redox_syscall"
1562
+ version = "0.7.3"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "6ce70a74e890531977d37e532c34d45e9055d2409ed08ddba14529471ed0be16"
1565
+ dependencies = [
1566
+ "bitflags 2.11.0",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "redox_users"
1571
+ version = "0.4.6"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
1574
+ dependencies = [
1575
+ "getrandom 0.2.17",
1576
+ "libredox",
1577
+ "thiserror 1.0.69",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "regex"
1582
+ version = "1.12.3"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1585
+ dependencies = [
1586
+ "aho-corasick",
1587
+ "memchr",
1588
+ "regex-automata",
1589
+ "regex-syntax",
1590
+ ]
1591
+
1592
+ [[package]]
1593
+ name = "regex-automata"
1594
+ version = "0.4.14"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1597
+ dependencies = [
1598
+ "aho-corasick",
1599
+ "memchr",
1600
+ "regex-syntax",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "regex-syntax"
1605
+ version = "0.8.10"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1608
+
1609
+ [[package]]
1610
+ name = "rust-embed"
1611
+ version = "8.11.0"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27"
1614
+ dependencies = [
1615
+ "rust-embed-impl",
1616
+ "rust-embed-utils",
1617
+ "walkdir",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "rust-embed-impl"
1622
+ version = "8.11.0"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa"
1625
+ dependencies = [
1626
+ "proc-macro2",
1627
+ "quote",
1628
+ "rust-embed-utils",
1629
+ "syn",
1630
+ "walkdir",
1631
+ ]
1632
+
1633
+ [[package]]
1634
+ name = "rust-embed-utils"
1635
+ version = "8.11.0"
1636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1637
+ checksum = "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1"
1638
+ dependencies = [
1639
+ "sha2",
1640
+ "walkdir",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "rust-stemmers"
1645
+ version = "1.2.0"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
1648
+ dependencies = [
1649
+ "serde",
1650
+ "serde_derive",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "rustc-hash"
1655
+ version = "1.1.0"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1658
+
1659
+ [[package]]
1660
+ name = "rustix"
1661
+ version = "0.38.44"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
1664
+ dependencies = [
1665
+ "bitflags 2.11.0",
1666
+ "errno",
1667
+ "libc",
1668
+ "linux-raw-sys 0.4.15",
1669
+ "windows-sys 0.59.0",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "rustix"
1674
+ version = "1.1.4"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1677
+ dependencies = [
1678
+ "bitflags 2.11.0",
1679
+ "errno",
1680
+ "libc",
1681
+ "linux-raw-sys 0.12.1",
1682
+ "windows-sys 0.61.2",
1683
+ ]
1684
+
1685
+ [[package]]
1686
+ name = "rustversion"
1687
+ version = "1.0.22"
1688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1689
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1690
+
1691
+ [[package]]
1692
+ name = "rustyline"
1693
+ version = "15.0.0"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "2ee1e066dc922e513bda599c6ccb5f3bb2b0ea5870a579448f2622993f0a9a2f"
1696
+ dependencies = [
1697
+ "bitflags 2.11.0",
1698
+ "cfg-if",
1699
+ "clipboard-win",
1700
+ "fd-lock",
1701
+ "home",
1702
+ "libc",
1703
+ "log",
1704
+ "memchr",
1705
+ "nix",
1706
+ "radix_trie",
1707
+ "unicode-segmentation",
1708
+ "unicode-width",
1709
+ "utf8parse",
1710
+ "windows-sys 0.59.0",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "ryu"
1715
+ version = "1.0.23"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1718
+
1719
+ [[package]]
1720
+ name = "same-file"
1721
+ version = "1.0.6"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1724
+ dependencies = [
1725
+ "winapi-util",
1726
+ ]
1727
+
1728
+ [[package]]
1729
+ name = "scopeguard"
1730
+ version = "1.2.0"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1733
+
1734
+ [[package]]
1735
+ name = "semver"
1736
+ version = "1.0.28"
1737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1738
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1739
+
1740
+ [[package]]
1741
+ name = "serde"
1742
+ version = "1.0.228"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1745
+ dependencies = [
1746
+ "serde_core",
1747
+ "serde_derive",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "serde_core"
1752
+ version = "1.0.228"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1755
+ dependencies = [
1756
+ "serde_derive",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "serde_derive"
1761
+ version = "1.0.228"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1764
+ dependencies = [
1765
+ "proc-macro2",
1766
+ "quote",
1767
+ "syn",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "serde_json"
1772
+ version = "1.0.149"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1775
+ dependencies = [
1776
+ "itoa",
1777
+ "memchr",
1778
+ "serde",
1779
+ "serde_core",
1780
+ "zmij",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "serde_path_to_error"
1785
+ version = "0.1.20"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
1788
+ dependencies = [
1789
+ "itoa",
1790
+ "serde",
1791
+ "serde_core",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "serde_urlencoded"
1796
+ version = "0.7.1"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1799
+ dependencies = [
1800
+ "form_urlencoded",
1801
+ "itoa",
1802
+ "ryu",
1803
+ "serde",
1804
+ ]
1805
+
1806
+ [[package]]
1807
+ name = "serde_yaml"
1808
+ version = "0.9.34+deprecated"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1811
+ dependencies = [
1812
+ "indexmap",
1813
+ "itoa",
1814
+ "ryu",
1815
+ "serde",
1816
+ "unsafe-libyaml",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "sha2"
1821
+ version = "0.10.9"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1824
+ dependencies = [
1825
+ "cfg-if",
1826
+ "cpufeatures",
1827
+ "digest",
1828
+ ]
1829
+
1830
+ [[package]]
1831
+ name = "shlex"
1832
+ version = "1.3.0"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1835
+
1836
+ [[package]]
1837
+ name = "signal-hook-registry"
1838
+ version = "1.4.8"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1841
+ dependencies = [
1842
+ "errno",
1843
+ "libc",
1844
+ ]
1845
+
1846
+ [[package]]
1847
+ name = "sketches-ddsketch"
1848
+ version = "0.2.2"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c"
1851
+ dependencies = [
1852
+ "serde",
1853
+ ]
1854
+
1855
+ [[package]]
1856
+ name = "slab"
1857
+ version = "0.4.12"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1860
+
1861
+ [[package]]
1862
+ name = "smallvec"
1863
+ version = "1.15.1"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1866
+
1867
+ [[package]]
1868
+ name = "socket2"
1869
+ version = "0.6.3"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1872
+ dependencies = [
1873
+ "libc",
1874
+ "windows-sys 0.61.2",
1875
+ ]
1876
+
1877
+ [[package]]
1878
+ name = "stable_deref_trait"
1879
+ version = "1.2.1"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1882
+
1883
+ [[package]]
1884
+ name = "strsim"
1885
+ version = "0.11.1"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1888
+
1889
+ [[package]]
1890
+ name = "syn"
1891
+ version = "2.0.117"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1894
+ dependencies = [
1895
+ "proc-macro2",
1896
+ "quote",
1897
+ "unicode-ident",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "sync_wrapper"
1902
+ version = "1.0.2"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1905
+
1906
+ [[package]]
1907
+ name = "tantivy"
1908
+ version = "0.22.1"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "96599ea6fccd844fc833fed21d2eecac2e6a7c1afd9e044057391d78b1feb141"
1911
+ dependencies = [
1912
+ "aho-corasick",
1913
+ "arc-swap",
1914
+ "base64",
1915
+ "bitpacking",
1916
+ "byteorder",
1917
+ "census",
1918
+ "crc32fast",
1919
+ "crossbeam-channel",
1920
+ "downcast-rs",
1921
+ "fastdivide",
1922
+ "fnv",
1923
+ "fs4",
1924
+ "htmlescape",
1925
+ "itertools",
1926
+ "levenshtein_automata",
1927
+ "log",
1928
+ "lru",
1929
+ "lz4_flex",
1930
+ "measure_time",
1931
+ "memmap2",
1932
+ "num_cpus",
1933
+ "once_cell",
1934
+ "oneshot",
1935
+ "rayon",
1936
+ "regex",
1937
+ "rust-stemmers",
1938
+ "rustc-hash",
1939
+ "serde",
1940
+ "serde_json",
1941
+ "sketches-ddsketch",
1942
+ "smallvec",
1943
+ "tantivy-bitpacker",
1944
+ "tantivy-columnar",
1945
+ "tantivy-common",
1946
+ "tantivy-fst",
1947
+ "tantivy-query-grammar",
1948
+ "tantivy-stacker",
1949
+ "tantivy-tokenizer-api",
1950
+ "tempfile",
1951
+ "thiserror 1.0.69",
1952
+ "time",
1953
+ "uuid",
1954
+ "winapi",
1955
+ ]
1956
+
1957
+ [[package]]
1958
+ name = "tantivy-bitpacker"
1959
+ version = "0.6.0"
1960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1961
+ checksum = "284899c2325d6832203ac6ff5891b297fc5239c3dc754c5bc1977855b23c10df"
1962
+ dependencies = [
1963
+ "bitpacking",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "tantivy-columnar"
1968
+ version = "0.3.0"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "12722224ffbe346c7fec3275c699e508fd0d4710e629e933d5736ec524a1f44e"
1971
+ dependencies = [
1972
+ "downcast-rs",
1973
+ "fastdivide",
1974
+ "itertools",
1975
+ "serde",
1976
+ "tantivy-bitpacker",
1977
+ "tantivy-common",
1978
+ "tantivy-sstable",
1979
+ "tantivy-stacker",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "tantivy-common"
1984
+ version = "0.7.0"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "8019e3cabcfd20a1380b491e13ff42f57bb38bf97c3d5fa5c07e50816e0621f4"
1987
+ dependencies = [
1988
+ "async-trait",
1989
+ "byteorder",
1990
+ "ownedbytes",
1991
+ "serde",
1992
+ "time",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "tantivy-fst"
1997
+ version = "0.5.0"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18"
2000
+ dependencies = [
2001
+ "byteorder",
2002
+ "regex-syntax",
2003
+ "utf8-ranges",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "tantivy-query-grammar"
2008
+ version = "0.22.0"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "847434d4af57b32e309f4ab1b4f1707a6c566656264caa427ff4285c4d9d0b82"
2011
+ dependencies = [
2012
+ "nom",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "tantivy-sstable"
2017
+ version = "0.3.0"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "c69578242e8e9fc989119f522ba5b49a38ac20f576fc778035b96cc94f41f98e"
2020
+ dependencies = [
2021
+ "tantivy-bitpacker",
2022
+ "tantivy-common",
2023
+ "tantivy-fst",
2024
+ "zstd",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "tantivy-stacker"
2029
+ version = "0.3.0"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "c56d6ff5591fc332739b3ce7035b57995a3ce29a93ffd6012660e0949c956ea8"
2032
+ dependencies = [
2033
+ "murmurhash32",
2034
+ "rand_distr",
2035
+ "tantivy-common",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "tantivy-tokenizer-api"
2040
+ version = "0.3.0"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "2a0dcade25819a89cfe6f17d932c9cedff11989936bf6dd4f336d50392053b04"
2043
+ dependencies = [
2044
+ "serde",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "target-lexicon"
2049
+ version = "0.12.16"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2052
+
2053
+ [[package]]
2054
+ name = "tempfile"
2055
+ version = "3.27.0"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2058
+ dependencies = [
2059
+ "fastrand",
2060
+ "getrandom 0.4.2",
2061
+ "once_cell",
2062
+ "rustix 1.1.4",
2063
+ "windows-sys 0.61.2",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "thiserror"
2068
+ version = "1.0.69"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2071
+ dependencies = [
2072
+ "thiserror-impl 1.0.69",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "thiserror"
2077
+ version = "2.0.18"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2080
+ dependencies = [
2081
+ "thiserror-impl 2.0.18",
2082
+ ]
2083
+
2084
+ [[package]]
2085
+ name = "thiserror-impl"
2086
+ version = "1.0.69"
2087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2088
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2089
+ dependencies = [
2090
+ "proc-macro2",
2091
+ "quote",
2092
+ "syn",
2093
+ ]
2094
+
2095
+ [[package]]
2096
+ name = "thiserror-impl"
2097
+ version = "2.0.18"
2098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2099
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2100
+ dependencies = [
2101
+ "proc-macro2",
2102
+ "quote",
2103
+ "syn",
2104
+ ]
2105
+
2106
+ [[package]]
2107
+ name = "time"
2108
+ version = "0.3.47"
2109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2110
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2111
+ dependencies = [
2112
+ "deranged",
2113
+ "itoa",
2114
+ "num-conv",
2115
+ "powerfmt",
2116
+ "serde_core",
2117
+ "time-core",
2118
+ "time-macros",
2119
+ ]
2120
+
2121
+ [[package]]
2122
+ name = "time-core"
2123
+ version = "0.1.8"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2126
+
2127
+ [[package]]
2128
+ name = "time-macros"
2129
+ version = "0.2.27"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2132
+ dependencies = [
2133
+ "num-conv",
2134
+ "time-core",
2135
+ ]
2136
+
2137
+ [[package]]
2138
+ name = "tokio"
2139
+ version = "1.51.0"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd"
2142
+ dependencies = [
2143
+ "bytes",
2144
+ "libc",
2145
+ "mio",
2146
+ "parking_lot",
2147
+ "pin-project-lite",
2148
+ "signal-hook-registry",
2149
+ "socket2",
2150
+ "tokio-macros",
2151
+ "windows-sys 0.61.2",
2152
+ ]
2153
+
2154
+ [[package]]
2155
+ name = "tokio-macros"
2156
+ version = "2.7.0"
2157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2158
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2159
+ dependencies = [
2160
+ "proc-macro2",
2161
+ "quote",
2162
+ "syn",
2163
+ ]
2164
+
2165
+ [[package]]
2166
+ name = "tower"
2167
+ version = "0.5.3"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2170
+ dependencies = [
2171
+ "futures-core",
2172
+ "futures-util",
2173
+ "pin-project-lite",
2174
+ "sync_wrapper",
2175
+ "tokio",
2176
+ "tower-layer",
2177
+ "tower-service",
2178
+ "tracing",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "tower-http"
2183
+ version = "0.6.8"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2186
+ dependencies = [
2187
+ "bitflags 2.11.0",
2188
+ "bytes",
2189
+ "http",
2190
+ "pin-project-lite",
2191
+ "tower-layer",
2192
+ "tower-service",
2193
+ ]
2194
+
2195
+ [[package]]
2196
+ name = "tower-layer"
2197
+ version = "0.3.3"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2200
+
2201
+ [[package]]
2202
+ name = "tower-service"
2203
+ version = "0.3.3"
2204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2205
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2206
+
2207
+ [[package]]
2208
+ name = "tracing"
2209
+ version = "0.1.44"
2210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2211
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2212
+ dependencies = [
2213
+ "log",
2214
+ "pin-project-lite",
2215
+ "tracing-core",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "tracing-core"
2220
+ version = "0.1.36"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2223
+ dependencies = [
2224
+ "once_cell",
2225
+ ]
2226
+
2227
+ [[package]]
2228
+ name = "typenum"
2229
+ version = "1.19.0"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2232
+
2233
+ [[package]]
2234
+ name = "unicase"
2235
+ version = "2.9.0"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
2238
+
2239
+ [[package]]
2240
+ name = "unicode-ident"
2241
+ version = "1.0.24"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2244
+
2245
+ [[package]]
2246
+ name = "unicode-segmentation"
2247
+ version = "1.13.2"
2248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2249
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
2250
+
2251
+ [[package]]
2252
+ name = "unicode-width"
2253
+ version = "0.2.2"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2256
+
2257
+ [[package]]
2258
+ name = "unicode-xid"
2259
+ version = "0.2.6"
2260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2261
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2262
+
2263
+ [[package]]
2264
+ name = "unindent"
2265
+ version = "0.2.4"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2268
+
2269
+ [[package]]
2270
+ name = "unsafe-libyaml"
2271
+ version = "0.2.11"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2274
+
2275
+ [[package]]
2276
+ name = "utf8-ranges"
2277
+ version = "1.0.5"
2278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2279
+ checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba"
2280
+
2281
+ [[package]]
2282
+ name = "utf8parse"
2283
+ version = "0.2.2"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2286
+
2287
+ [[package]]
2288
+ name = "uuid"
2289
+ version = "1.23.0"
2290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2291
+ checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
2292
+ dependencies = [
2293
+ "getrandom 0.4.2",
2294
+ "js-sys",
2295
+ "serde_core",
2296
+ "wasm-bindgen",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "version_check"
2301
+ version = "0.9.5"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2304
+
2305
+ [[package]]
2306
+ name = "walkdir"
2307
+ version = "2.5.0"
2308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2309
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2310
+ dependencies = [
2311
+ "same-file",
2312
+ "winapi-util",
2313
+ ]
2314
+
2315
+ [[package]]
2316
+ name = "wasi"
2317
+ version = "0.11.1+wasi-snapshot-preview1"
2318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2319
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2320
+
2321
+ [[package]]
2322
+ name = "wasip2"
2323
+ version = "1.0.2+wasi-0.2.9"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2326
+ dependencies = [
2327
+ "wit-bindgen",
2328
+ ]
2329
+
2330
+ [[package]]
2331
+ name = "wasip3"
2332
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2334
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2335
+ dependencies = [
2336
+ "wit-bindgen",
2337
+ ]
2338
+
2339
+ [[package]]
2340
+ name = "wasm-bindgen"
2341
+ version = "0.2.117"
2342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2343
+ checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
2344
+ dependencies = [
2345
+ "cfg-if",
2346
+ "once_cell",
2347
+ "rustversion",
2348
+ "wasm-bindgen-macro",
2349
+ "wasm-bindgen-shared",
2350
+ ]
2351
+
2352
+ [[package]]
2353
+ name = "wasm-bindgen-macro"
2354
+ version = "0.2.117"
2355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2356
+ checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
2357
+ dependencies = [
2358
+ "quote",
2359
+ "wasm-bindgen-macro-support",
2360
+ ]
2361
+
2362
+ [[package]]
2363
+ name = "wasm-bindgen-macro-support"
2364
+ version = "0.2.117"
2365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2366
+ checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
2367
+ dependencies = [
2368
+ "bumpalo",
2369
+ "proc-macro2",
2370
+ "quote",
2371
+ "syn",
2372
+ "wasm-bindgen-shared",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "wasm-bindgen-shared"
2377
+ version = "0.2.117"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
2380
+ dependencies = [
2381
+ "unicode-ident",
2382
+ ]
2383
+
2384
+ [[package]]
2385
+ name = "wasm-encoder"
2386
+ version = "0.244.0"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2389
+ dependencies = [
2390
+ "leb128fmt",
2391
+ "wasmparser",
2392
+ ]
2393
+
2394
+ [[package]]
2395
+ name = "wasm-metadata"
2396
+ version = "0.244.0"
2397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2398
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2399
+ dependencies = [
2400
+ "anyhow",
2401
+ "indexmap",
2402
+ "wasm-encoder",
2403
+ "wasmparser",
2404
+ ]
2405
+
2406
+ [[package]]
2407
+ name = "wasmparser"
2408
+ version = "0.244.0"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2411
+ dependencies = [
2412
+ "bitflags 2.11.0",
2413
+ "hashbrown 0.15.5",
2414
+ "indexmap",
2415
+ "semver",
2416
+ ]
2417
+
2418
+ [[package]]
2419
+ name = "web-sys"
2420
+ version = "0.3.94"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
2423
+ dependencies = [
2424
+ "js-sys",
2425
+ "wasm-bindgen",
2426
+ ]
2427
+
2428
+ [[package]]
2429
+ name = "winapi"
2430
+ version = "0.3.9"
2431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2432
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2433
+ dependencies = [
2434
+ "winapi-i686-pc-windows-gnu",
2435
+ "winapi-x86_64-pc-windows-gnu",
2436
+ ]
2437
+
2438
+ [[package]]
2439
+ name = "winapi-i686-pc-windows-gnu"
2440
+ version = "0.4.0"
2441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2442
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2443
+
2444
+ [[package]]
2445
+ name = "winapi-util"
2446
+ version = "0.1.11"
2447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2448
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2449
+ dependencies = [
2450
+ "windows-sys 0.61.2",
2451
+ ]
2452
+
2453
+ [[package]]
2454
+ name = "winapi-x86_64-pc-windows-gnu"
2455
+ version = "0.4.0"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2458
+
2459
+ [[package]]
2460
+ name = "windows-core"
2461
+ version = "0.62.2"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2464
+ dependencies = [
2465
+ "windows-implement",
2466
+ "windows-interface",
2467
+ "windows-link",
2468
+ "windows-result",
2469
+ "windows-strings",
2470
+ ]
2471
+
2472
+ [[package]]
2473
+ name = "windows-implement"
2474
+ version = "0.60.2"
2475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2476
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2477
+ dependencies = [
2478
+ "proc-macro2",
2479
+ "quote",
2480
+ "syn",
2481
+ ]
2482
+
2483
+ [[package]]
2484
+ name = "windows-interface"
2485
+ version = "0.59.3"
2486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2487
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2488
+ dependencies = [
2489
+ "proc-macro2",
2490
+ "quote",
2491
+ "syn",
2492
+ ]
2493
+
2494
+ [[package]]
2495
+ name = "windows-link"
2496
+ version = "0.2.1"
2497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2498
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2499
+
2500
+ [[package]]
2501
+ name = "windows-result"
2502
+ version = "0.4.1"
2503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2504
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2505
+ dependencies = [
2506
+ "windows-link",
2507
+ ]
2508
+
2509
+ [[package]]
2510
+ name = "windows-strings"
2511
+ version = "0.5.1"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2514
+ dependencies = [
2515
+ "windows-link",
2516
+ ]
2517
+
2518
+ [[package]]
2519
+ name = "windows-sys"
2520
+ version = "0.52.0"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2523
+ dependencies = [
2524
+ "windows-targets",
2525
+ ]
2526
+
2527
+ [[package]]
2528
+ name = "windows-sys"
2529
+ version = "0.59.0"
2530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2531
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2532
+ dependencies = [
2533
+ "windows-targets",
2534
+ ]
2535
+
2536
+ [[package]]
2537
+ name = "windows-sys"
2538
+ version = "0.61.2"
2539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2540
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2541
+ dependencies = [
2542
+ "windows-link",
2543
+ ]
2544
+
2545
+ [[package]]
2546
+ name = "windows-targets"
2547
+ version = "0.52.6"
2548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2549
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2550
+ dependencies = [
2551
+ "windows_aarch64_gnullvm",
2552
+ "windows_aarch64_msvc",
2553
+ "windows_i686_gnu",
2554
+ "windows_i686_gnullvm",
2555
+ "windows_i686_msvc",
2556
+ "windows_x86_64_gnu",
2557
+ "windows_x86_64_gnullvm",
2558
+ "windows_x86_64_msvc",
2559
+ ]
2560
+
2561
+ [[package]]
2562
+ name = "windows_aarch64_gnullvm"
2563
+ version = "0.52.6"
2564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2565
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2566
+
2567
+ [[package]]
2568
+ name = "windows_aarch64_msvc"
2569
+ version = "0.52.6"
2570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2571
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2572
+
2573
+ [[package]]
2574
+ name = "windows_i686_gnu"
2575
+ version = "0.52.6"
2576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2577
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2578
+
2579
+ [[package]]
2580
+ name = "windows_i686_gnullvm"
2581
+ version = "0.52.6"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2584
+
2585
+ [[package]]
2586
+ name = "windows_i686_msvc"
2587
+ version = "0.52.6"
2588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2589
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2590
+
2591
+ [[package]]
2592
+ name = "windows_x86_64_gnu"
2593
+ version = "0.52.6"
2594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2595
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2596
+
2597
+ [[package]]
2598
+ name = "windows_x86_64_gnullvm"
2599
+ version = "0.52.6"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2602
+
2603
+ [[package]]
2604
+ name = "windows_x86_64_msvc"
2605
+ version = "0.52.6"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2608
+
2609
+ [[package]]
2610
+ name = "wit-bindgen"
2611
+ version = "0.51.0"
2612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2613
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2614
+ dependencies = [
2615
+ "wit-bindgen-rust-macro",
2616
+ ]
2617
+
2618
+ [[package]]
2619
+ name = "wit-bindgen-core"
2620
+ version = "0.51.0"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2623
+ dependencies = [
2624
+ "anyhow",
2625
+ "heck",
2626
+ "wit-parser",
2627
+ ]
2628
+
2629
+ [[package]]
2630
+ name = "wit-bindgen-rust"
2631
+ version = "0.51.0"
2632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2633
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2634
+ dependencies = [
2635
+ "anyhow",
2636
+ "heck",
2637
+ "indexmap",
2638
+ "prettyplease",
2639
+ "syn",
2640
+ "wasm-metadata",
2641
+ "wit-bindgen-core",
2642
+ "wit-component",
2643
+ ]
2644
+
2645
+ [[package]]
2646
+ name = "wit-bindgen-rust-macro"
2647
+ version = "0.51.0"
2648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2649
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2650
+ dependencies = [
2651
+ "anyhow",
2652
+ "prettyplease",
2653
+ "proc-macro2",
2654
+ "quote",
2655
+ "syn",
2656
+ "wit-bindgen-core",
2657
+ "wit-bindgen-rust",
2658
+ ]
2659
+
2660
+ [[package]]
2661
+ name = "wit-component"
2662
+ version = "0.244.0"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2665
+ dependencies = [
2666
+ "anyhow",
2667
+ "bitflags 2.11.0",
2668
+ "indexmap",
2669
+ "log",
2670
+ "serde",
2671
+ "serde_derive",
2672
+ "serde_json",
2673
+ "wasm-encoder",
2674
+ "wasm-metadata",
2675
+ "wasmparser",
2676
+ "wit-parser",
2677
+ ]
2678
+
2679
+ [[package]]
2680
+ name = "wit-parser"
2681
+ version = "0.244.0"
2682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2683
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2684
+ dependencies = [
2685
+ "anyhow",
2686
+ "id-arena",
2687
+ "indexmap",
2688
+ "log",
2689
+ "semver",
2690
+ "serde",
2691
+ "serde_derive",
2692
+ "serde_json",
2693
+ "unicode-xid",
2694
+ "wasmparser",
2695
+ ]
2696
+
2697
+ [[package]]
2698
+ name = "yansi"
2699
+ version = "1.0.1"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
2702
+
2703
+ [[package]]
2704
+ name = "zerocopy"
2705
+ version = "0.8.48"
2706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2707
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2708
+ dependencies = [
2709
+ "zerocopy-derive",
2710
+ ]
2711
+
2712
+ [[package]]
2713
+ name = "zerocopy-derive"
2714
+ version = "0.8.48"
2715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2716
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2717
+ dependencies = [
2718
+ "proc-macro2",
2719
+ "quote",
2720
+ "syn",
2721
+ ]
2722
+
2723
+ [[package]]
2724
+ name = "zmij"
2725
+ version = "1.0.21"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
2728
+
2729
+ [[package]]
2730
+ name = "zstd"
2731
+ version = "0.13.3"
2732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2733
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
2734
+ dependencies = [
2735
+ "zstd-safe",
2736
+ ]
2737
+
2738
+ [[package]]
2739
+ name = "zstd-safe"
2740
+ version = "7.2.4"
2741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2742
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
2743
+ dependencies = [
2744
+ "zstd-sys",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "zstd-sys"
2749
+ version = "2.0.16+zstd.1.5.7"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
2752
+ dependencies = [
2753
+ "cc",
2754
+ "pkg-config",
2755
+ ]