fff-python 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. fff_python-0.1.0/Cargo.lock +3271 -0
  2. fff_python-0.1.0/Cargo.toml +65 -0
  3. fff_python-0.1.0/PKG-INFO +90 -0
  4. fff_python-0.1.0/README.md +75 -0
  5. fff_python-0.1.0/crates/fff-core/Cargo.toml +87 -0
  6. fff_python-0.1.0/crates/fff-core/README.md +26 -0
  7. fff_python-0.1.0/crates/fff-core/benches/bigram_bench.rs +164 -0
  8. fff_python-0.1.0/crates/fff-core/benches/glob_bench.rs +386 -0
  9. fff_python-0.1.0/crates/fff-core/benches/memmem_bench.rs +93 -0
  10. fff_python-0.1.0/crates/fff-core/benches/parse_bench.rs +180 -0
  11. fff_python-0.1.0/crates/fff-core/build.rs +46 -0
  12. fff_python-0.1.0/crates/fff-core/src/background_watcher.rs +875 -0
  13. fff_python-0.1.0/crates/fff-core/src/bigram_filter.rs +1128 -0
  14. fff_python-0.1.0/crates/fff-core/src/bigram_query.rs +998 -0
  15. fff_python-0.1.0/crates/fff-core/src/case_insensitive_memmem.rs +662 -0
  16. fff_python-0.1.0/crates/fff-core/src/constants.rs +39 -0
  17. fff_python-0.1.0/crates/fff-core/src/constraints.rs +978 -0
  18. fff_python-0.1.0/crates/fff-core/src/dbs/db_healthcheck.rs +39 -0
  19. fff_python-0.1.0/crates/fff-core/src/dbs/frecency.rs +512 -0
  20. fff_python-0.1.0/crates/fff-core/src/dbs/lmdb.rs +259 -0
  21. fff_python-0.1.0/crates/fff-core/src/dbs/mod.rs +4 -0
  22. fff_python-0.1.0/crates/fff-core/src/dbs/query_tracker.rs +548 -0
  23. fff_python-0.1.0/crates/fff-core/src/error.rs +96 -0
  24. fff_python-0.1.0/crates/fff-core/src/file_picker.rs +2246 -0
  25. fff_python-0.1.0/crates/fff-core/src/git.rs +253 -0
  26. fff_python-0.1.0/crates/fff-core/src/grep.rs +2637 -0
  27. fff_python-0.1.0/crates/fff-core/src/ignore.rs +69 -0
  28. fff_python-0.1.0/crates/fff-core/src/lib.rs +157 -0
  29. fff_python-0.1.0/crates/fff-core/src/log.rs +274 -0
  30. fff_python-0.1.0/crates/fff-core/src/parallelism.rs +84 -0
  31. fff_python-0.1.0/crates/fff-core/src/path_utils.rs +175 -0
  32. fff_python-0.1.0/crates/fff-core/src/scan.rs +465 -0
  33. fff_python-0.1.0/crates/fff-core/src/score.rs +1607 -0
  34. fff_python-0.1.0/crates/fff-core/src/shared.rs +411 -0
  35. fff_python-0.1.0/crates/fff-core/src/simd_path.rs +576 -0
  36. fff_python-0.1.0/crates/fff-core/src/sort_buffer.rs +131 -0
  37. fff_python-0.1.0/crates/fff-core/src/stable_vec.rs +177 -0
  38. fff_python-0.1.0/crates/fff-core/src/types.rs +956 -0
  39. fff_python-0.1.0/crates/fff-core/tests/bigram_overlay_coherence_test.rs +1656 -0
  40. fff_python-0.1.0/crates/fff-core/tests/bigram_overlay_integration.rs +410 -0
  41. fff_python-0.1.0/crates/fff-core/tests/drop_during_post_scan.rs +161 -0
  42. fff_python-0.1.0/crates/fff-core/tests/fixtures/binaries/codex_view +0 -0
  43. fff_python-0.1.0/crates/fff-core/tests/fixtures/binaries/codex_view.codex +0 -0
  44. fff_python-0.1.0/crates/fff-core/tests/fs_delete_handler_test.rs +320 -0
  45. fff_python-0.1.0/crates/fff-core/tests/fuzz_file_operations.rs +860 -0
  46. fff_python-0.1.0/crates/fff-core/tests/fuzz_git_watcher_stress.rs +1610 -0
  47. fff_python-0.1.0/crates/fff-core/tests/fuzz_real_repos.proptest-regressions +7 -0
  48. fff_python-0.1.0/crates/fff-core/tests/fuzz_real_repos.rs +740 -0
  49. fff_python-0.1.0/crates/fff-core/tests/grep_integration.rs +1837 -0
  50. fff_python-0.1.0/crates/fff-core/tests/lmdb_stale_lock_deadlock.rs +455 -0
  51. fff_python-0.1.0/crates/fff-core/tests/new_directory_watcher_test.rs +539 -0
  52. fff_python-0.1.0/crates/fff-core/tests/overflow_frecency_segfault.rs +93 -0
  53. fff_python-0.1.0/crates/fff-core/tests/path_separator_constraint_test.rs +248 -0
  54. fff_python-0.1.0/crates/fff-core/tests/real_binary_fixtures.rs +153 -0
  55. fff_python-0.1.0/crates/fff-core/tests/watcher_stop_under_lock.rs +165 -0
  56. fff_python-0.1.0/crates/fff-core/tests/watcher_thread_lifecycle_test.rs +197 -0
  57. fff_python-0.1.0/crates/fff-grep/Cargo.toml +11 -0
  58. fff_python-0.1.0/crates/fff-grep/src/lib.rs +19 -0
  59. fff_python-0.1.0/crates/fff-grep/src/lines.rs +232 -0
  60. fff_python-0.1.0/crates/fff-grep/src/matcher.rs +175 -0
  61. fff_python-0.1.0/crates/fff-grep/src/searcher/core.rs +139 -0
  62. fff_python-0.1.0/crates/fff-grep/src/searcher/glue.rs +127 -0
  63. fff_python-0.1.0/crates/fff-grep/src/searcher/mod.rs +194 -0
  64. fff_python-0.1.0/crates/fff-grep/src/sink.rs +138 -0
  65. fff_python-0.1.0/crates/fff-python/Cargo.toml +18 -0
  66. fff_python-0.1.0/crates/fff-python/src/conversions.rs +107 -0
  67. fff_python-0.1.0/crates/fff-python/src/finder.rs +979 -0
  68. fff_python-0.1.0/crates/fff-python/src/lib.rs +44 -0
  69. fff_python-0.1.0/crates/fff-python/src/types.rs +408 -0
  70. fff_python-0.1.0/crates/fff-query-parser/Cargo.toml +24 -0
  71. fff_python-0.1.0/crates/fff-query-parser/benches/parse_bench.rs +180 -0
  72. fff_python-0.1.0/crates/fff-query-parser/src/config.rs +248 -0
  73. fff_python-0.1.0/crates/fff-query-parser/src/constraints.rs +83 -0
  74. fff_python-0.1.0/crates/fff-query-parser/src/glob_detect.rs +18 -0
  75. fff_python-0.1.0/crates/fff-query-parser/src/lib.rs +235 -0
  76. fff_python-0.1.0/crates/fff-query-parser/src/location.rs +265 -0
  77. fff_python-0.1.0/crates/fff-query-parser/src/parser.rs +1466 -0
  78. fff_python-0.1.0/pyproject.toml +33 -0
  79. fff_python-0.1.0/src/fff/__init__.py +70 -0
  80. fff_python-0.1.0/src/fff/__init__.pyi +256 -0
  81. fff_python-0.1.0/src/fff/py.typed +0 -0
@@ -0,0 +1,3271 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "getrandom 0.3.4",
13
+ "once_cell",
14
+ "version_check",
15
+ "zerocopy",
16
+ ]
17
+
18
+ [[package]]
19
+ name = "aho-corasick"
20
+ version = "1.1.4"
21
+ source = "registry+https://github.com/rust-lang/crates.io-index"
22
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
23
+ dependencies = [
24
+ "memchr",
25
+ ]
26
+
27
+ [[package]]
28
+ name = "android_system_properties"
29
+ version = "0.1.5"
30
+ source = "registry+https://github.com/rust-lang/crates.io-index"
31
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
32
+ dependencies = [
33
+ "libc",
34
+ ]
35
+
36
+ [[package]]
37
+ name = "anes"
38
+ version = "0.1.6"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
41
+
42
+ [[package]]
43
+ name = "anstream"
44
+ version = "1.0.0"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
47
+ dependencies = [
48
+ "anstyle",
49
+ "anstyle-parse",
50
+ "anstyle-query",
51
+ "anstyle-wincon",
52
+ "colorchoice",
53
+ "is_terminal_polyfill",
54
+ "utf8parse",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "anstyle"
59
+ version = "1.0.14"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
62
+
63
+ [[package]]
64
+ name = "anstyle-parse"
65
+ version = "1.0.0"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
68
+ dependencies = [
69
+ "utf8parse",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "anstyle-query"
74
+ version = "1.1.5"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
77
+ dependencies = [
78
+ "windows-sys 0.61.2",
79
+ ]
80
+
81
+ [[package]]
82
+ name = "anstyle-wincon"
83
+ version = "3.0.11"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
86
+ dependencies = [
87
+ "anstyle",
88
+ "once_cell_polyfill",
89
+ "windows-sys 0.61.2",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "anyhow"
94
+ version = "1.0.102"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
97
+
98
+ [[package]]
99
+ name = "arrayref"
100
+ version = "0.3.9"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
103
+
104
+ [[package]]
105
+ name = "arrayvec"
106
+ version = "0.7.6"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
109
+
110
+ [[package]]
111
+ name = "async-trait"
112
+ version = "0.1.89"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
115
+ dependencies = [
116
+ "proc-macro2",
117
+ "quote",
118
+ "syn",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "autocfg"
123
+ version = "1.5.0"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
126
+
127
+ [[package]]
128
+ name = "base64"
129
+ version = "0.22.1"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
132
+
133
+ [[package]]
134
+ name = "bincode"
135
+ version = "1.3.3"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
138
+ dependencies = [
139
+ "serde",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "bindgen"
144
+ version = "0.72.1"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
147
+ dependencies = [
148
+ "bitflags 2.11.0",
149
+ "cexpr",
150
+ "clang-sys",
151
+ "itertools 0.13.0",
152
+ "log",
153
+ "prettyplease",
154
+ "proc-macro2",
155
+ "quote",
156
+ "regex",
157
+ "rustc-hash",
158
+ "shlex",
159
+ "syn",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "bitflags"
164
+ version = "1.3.2"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
167
+
168
+ [[package]]
169
+ name = "bitflags"
170
+ version = "2.11.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
173
+ dependencies = [
174
+ "serde_core",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "blake3"
179
+ version = "1.8.3"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d"
182
+ dependencies = [
183
+ "arrayref",
184
+ "arrayvec",
185
+ "cc",
186
+ "cfg-if",
187
+ "constant_time_eq",
188
+ "cpufeatures",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "block2"
193
+ version = "0.6.2"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
196
+ dependencies = [
197
+ "objc2",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "bstr"
202
+ version = "1.12.1"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
205
+ dependencies = [
206
+ "memchr",
207
+ "serde",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "bumpalo"
212
+ version = "3.20.2"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
215
+
216
+ [[package]]
217
+ name = "byteorder"
218
+ version = "1.5.0"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
221
+
222
+ [[package]]
223
+ name = "bytes"
224
+ version = "1.11.1"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
227
+
228
+ [[package]]
229
+ name = "cast"
230
+ version = "0.3.0"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
233
+
234
+ [[package]]
235
+ name = "cc"
236
+ version = "1.2.57"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
239
+ dependencies = [
240
+ "find-msvc-tools",
241
+ "jobserver",
242
+ "libc",
243
+ "shlex",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "cexpr"
248
+ version = "0.6.0"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
251
+ dependencies = [
252
+ "nom",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "cfg-if"
257
+ version = "1.0.4"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
260
+
261
+ [[package]]
262
+ name = "cfg_aliases"
263
+ version = "0.2.1"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
266
+
267
+ [[package]]
268
+ name = "chrono"
269
+ version = "0.4.44"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
272
+ dependencies = [
273
+ "iana-time-zone",
274
+ "js-sys",
275
+ "num-traits",
276
+ "serde",
277
+ "wasm-bindgen",
278
+ "windows-link",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "ciborium"
283
+ version = "0.2.2"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
286
+ dependencies = [
287
+ "ciborium-io",
288
+ "ciborium-ll",
289
+ "serde",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "ciborium-io"
294
+ version = "0.2.2"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
297
+
298
+ [[package]]
299
+ name = "ciborium-ll"
300
+ version = "0.2.2"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
303
+ dependencies = [
304
+ "ciborium-io",
305
+ "half",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "clang-sys"
310
+ version = "1.8.1"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
313
+ dependencies = [
314
+ "glob",
315
+ "libc",
316
+ "libloading",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "clap"
321
+ version = "4.6.0"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
324
+ dependencies = [
325
+ "clap_builder",
326
+ "clap_derive",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "clap_builder"
331
+ version = "4.6.0"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
334
+ dependencies = [
335
+ "anstream",
336
+ "anstyle",
337
+ "clap_lex",
338
+ "strsim",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "clap_derive"
343
+ version = "4.6.0"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
346
+ dependencies = [
347
+ "heck",
348
+ "proc-macro2",
349
+ "quote",
350
+ "syn",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "clap_lex"
355
+ version = "1.1.0"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
358
+
359
+ [[package]]
360
+ name = "colorchoice"
361
+ version = "1.0.5"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
364
+
365
+ [[package]]
366
+ name = "constant_time_eq"
367
+ version = "0.4.2"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
370
+
371
+ [[package]]
372
+ name = "core-foundation-sys"
373
+ version = "0.8.7"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
376
+
377
+ [[package]]
378
+ name = "cpufeatures"
379
+ version = "0.2.17"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
382
+ dependencies = [
383
+ "libc",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "criterion"
388
+ version = "0.5.1"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
391
+ dependencies = [
392
+ "anes",
393
+ "cast",
394
+ "ciborium",
395
+ "clap",
396
+ "criterion-plot",
397
+ "is-terminal",
398
+ "itertools 0.10.5",
399
+ "num-traits",
400
+ "once_cell",
401
+ "oorandom",
402
+ "plotters",
403
+ "rayon",
404
+ "regex",
405
+ "serde",
406
+ "serde_derive",
407
+ "serde_json",
408
+ "tinytemplate",
409
+ "walkdir",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "criterion-plot"
414
+ version = "0.5.0"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
417
+ dependencies = [
418
+ "cast",
419
+ "itertools 0.10.5",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "crossbeam-channel"
424
+ version = "0.5.15"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
427
+ dependencies = [
428
+ "crossbeam-utils",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "crossbeam-deque"
433
+ version = "0.8.6"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
436
+ dependencies = [
437
+ "crossbeam-epoch",
438
+ "crossbeam-utils",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "crossbeam-epoch"
443
+ version = "0.9.18"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
446
+ dependencies = [
447
+ "crossbeam-utils",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "crossbeam-queue"
452
+ version = "0.3.12"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
455
+ dependencies = [
456
+ "crossbeam-utils",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "crossbeam-utils"
461
+ version = "0.8.21"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
464
+
465
+ [[package]]
466
+ name = "crunchy"
467
+ version = "0.2.4"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
470
+
471
+ [[package]]
472
+ name = "ctor"
473
+ version = "0.2.9"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
476
+ dependencies = [
477
+ "quote",
478
+ "syn",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "ctrlc"
483
+ version = "3.5.2"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "e0b1fab2ae45819af2d0731d60f2afe17227ebb1a1538a236da84c93e9a60162"
486
+ dependencies = [
487
+ "dispatch2",
488
+ "nix",
489
+ "windows-sys 0.61.2",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "cty"
494
+ version = "0.2.2"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35"
497
+
498
+ [[package]]
499
+ name = "darling"
500
+ version = "0.23.0"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
503
+ dependencies = [
504
+ "darling_core",
505
+ "darling_macro",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "darling_core"
510
+ version = "0.23.0"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
513
+ dependencies = [
514
+ "ident_case",
515
+ "proc-macro2",
516
+ "quote",
517
+ "strsim",
518
+ "syn",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "darling_macro"
523
+ version = "0.23.0"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
526
+ dependencies = [
527
+ "darling_core",
528
+ "quote",
529
+ "syn",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "deranged"
534
+ version = "0.5.8"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
537
+ dependencies = [
538
+ "powerfmt",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "dirs"
543
+ version = "5.0.1"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
546
+ dependencies = [
547
+ "dirs-sys",
548
+ ]
549
+
550
+ [[package]]
551
+ name = "dirs-sys"
552
+ version = "0.4.1"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
555
+ dependencies = [
556
+ "libc",
557
+ "option-ext",
558
+ "redox_users",
559
+ "windows-sys 0.48.0",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "dispatch2"
564
+ version = "0.3.1"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
567
+ dependencies = [
568
+ "bitflags 2.11.0",
569
+ "block2",
570
+ "libc",
571
+ "objc2",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "displaydoc"
576
+ version = "0.2.5"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
579
+ dependencies = [
580
+ "proc-macro2",
581
+ "quote",
582
+ "syn",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "doxygen-rs"
587
+ version = "0.4.2"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "415b6ec780d34dcf624666747194393603d0373b7141eef01d12ee58881507d9"
590
+ dependencies = [
591
+ "phf",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "dunce"
596
+ version = "1.0.5"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
599
+
600
+ [[package]]
601
+ name = "dyn-clone"
602
+ version = "1.0.20"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
605
+
606
+ [[package]]
607
+ name = "either"
608
+ version = "1.15.0"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
611
+
612
+ [[package]]
613
+ name = "equivalent"
614
+ version = "1.0.2"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
617
+
618
+ [[package]]
619
+ name = "errno"
620
+ version = "0.3.14"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
623
+ dependencies = [
624
+ "libc",
625
+ "windows-sys 0.61.2",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "fastrand"
630
+ version = "2.3.0"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
633
+
634
+ [[package]]
635
+ name = "fff-c"
636
+ version = "0.9.4"
637
+ dependencies = [
638
+ "fff-query-parser",
639
+ "fff-search",
640
+ "git2",
641
+ "serde_json",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "fff-grep"
646
+ version = "0.9.4"
647
+ dependencies = [
648
+ "bstr",
649
+ "memchr",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "fff-mcp"
654
+ version = "0.9.4"
655
+ dependencies = [
656
+ "clap",
657
+ "fff-query-parser",
658
+ "fff-search",
659
+ "git2",
660
+ "mimalloc",
661
+ "rmcp",
662
+ "schemars",
663
+ "serde",
664
+ "serde_json",
665
+ "tokio",
666
+ "tracing",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "fff-notify-debouncer-full"
671
+ version = "0.9.4"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "29a4ebea7b8a2840cd59358bbf396f6f04313ce8eae84ac79703ce80298b8731"
674
+ dependencies = [
675
+ "file-id",
676
+ "log",
677
+ "notify",
678
+ "notify-types",
679
+ "rustc-hash",
680
+ "walkdir",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "fff-nvim"
685
+ version = "0.9.4"
686
+ dependencies = [
687
+ "ahash",
688
+ "chrono",
689
+ "criterion",
690
+ "ctrlc",
691
+ "fff-query-parser",
692
+ "fff-search",
693
+ "git2",
694
+ "ignore",
695
+ "mimalloc",
696
+ "mlua",
697
+ "once_cell",
698
+ "rand 0.8.5",
699
+ "tracing",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "fff-python"
704
+ version = "0.1.0"
705
+ dependencies = [
706
+ "fff-query-parser",
707
+ "fff-search",
708
+ "git2",
709
+ "pyo3",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "fff-query-parser"
714
+ version = "0.9.4"
715
+ dependencies = [
716
+ "criterion",
717
+ "zlob",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "fff-search"
722
+ version = "0.9.4"
723
+ dependencies = [
724
+ "ahash",
725
+ "aho-corasick",
726
+ "blake3",
727
+ "criterion",
728
+ "ctor",
729
+ "dirs",
730
+ "dunce",
731
+ "fff-grep",
732
+ "fff-notify-debouncer-full",
733
+ "fff-query-parser",
734
+ "git2",
735
+ "glidesort",
736
+ "globset",
737
+ "heed",
738
+ "ignore",
739
+ "libc",
740
+ "libmimalloc-sys",
741
+ "memchr",
742
+ "memmap2",
743
+ "mimalloc",
744
+ "neo_frizbee",
745
+ "notify",
746
+ "parking_lot",
747
+ "pathdiff",
748
+ "proptest",
749
+ "rand 0.8.5",
750
+ "rayon",
751
+ "regex",
752
+ "regex-syntax",
753
+ "serde",
754
+ "signal-hook-registry",
755
+ "smallvec",
756
+ "tempfile",
757
+ "thiserror 2.0.18",
758
+ "tracing",
759
+ "tracing-appender",
760
+ "tracing-subscriber",
761
+ "zlob",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "file-id"
766
+ version = "0.2.3"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "e1fc6a637b6dc58414714eddd9170ff187ecb0933d4c7024d1abbd23a3cc26e9"
769
+ dependencies = [
770
+ "windows-sys 0.60.2",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "find-msvc-tools"
775
+ version = "0.1.9"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
778
+
779
+ [[package]]
780
+ name = "fnv"
781
+ version = "1.0.7"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
784
+
785
+ [[package]]
786
+ name = "foldhash"
787
+ version = "0.1.5"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
790
+
791
+ [[package]]
792
+ name = "form_urlencoded"
793
+ version = "1.2.2"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
796
+ dependencies = [
797
+ "percent-encoding",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "futures"
802
+ version = "0.3.32"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
805
+ dependencies = [
806
+ "futures-channel",
807
+ "futures-core",
808
+ "futures-executor",
809
+ "futures-io",
810
+ "futures-sink",
811
+ "futures-task",
812
+ "futures-util",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "futures-channel"
817
+ version = "0.3.32"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
820
+ dependencies = [
821
+ "futures-core",
822
+ "futures-sink",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "futures-core"
827
+ version = "0.3.32"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
830
+
831
+ [[package]]
832
+ name = "futures-executor"
833
+ version = "0.3.32"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
836
+ dependencies = [
837
+ "futures-core",
838
+ "futures-task",
839
+ "futures-util",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "futures-io"
844
+ version = "0.3.32"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
847
+
848
+ [[package]]
849
+ name = "futures-macro"
850
+ version = "0.3.32"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
853
+ dependencies = [
854
+ "proc-macro2",
855
+ "quote",
856
+ "syn",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "futures-sink"
861
+ version = "0.3.32"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
864
+
865
+ [[package]]
866
+ name = "futures-task"
867
+ version = "0.3.32"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
870
+
871
+ [[package]]
872
+ name = "futures-util"
873
+ version = "0.3.32"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
876
+ dependencies = [
877
+ "futures-channel",
878
+ "futures-core",
879
+ "futures-io",
880
+ "futures-macro",
881
+ "futures-sink",
882
+ "futures-task",
883
+ "memchr",
884
+ "pin-project-lite",
885
+ "slab",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "getrandom"
890
+ version = "0.2.17"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
893
+ dependencies = [
894
+ "cfg-if",
895
+ "libc",
896
+ "wasi",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "getrandom"
901
+ version = "0.3.4"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
904
+ dependencies = [
905
+ "cfg-if",
906
+ "libc",
907
+ "r-efi 5.3.0",
908
+ "wasip2",
909
+ ]
910
+
911
+ [[package]]
912
+ name = "getrandom"
913
+ version = "0.4.2"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
916
+ dependencies = [
917
+ "cfg-if",
918
+ "libc",
919
+ "r-efi 6.0.0",
920
+ "wasip2",
921
+ "wasip3",
922
+ ]
923
+
924
+ [[package]]
925
+ name = "git2"
926
+ version = "0.20.4"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "7b88256088d75a56f8ecfa070513a775dd9107f6530ef14919dac831af9cfe2b"
929
+ dependencies = [
930
+ "bitflags 2.11.0",
931
+ "libc",
932
+ "libgit2-sys",
933
+ "log",
934
+ "url",
935
+ ]
936
+
937
+ [[package]]
938
+ name = "glidesort"
939
+ version = "0.1.2"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "f2e102e6eb644d3e0b186fc161e4460417880a0a0b87d235f2e5b8fb30f2e9e0"
942
+
943
+ [[package]]
944
+ name = "glob"
945
+ version = "0.3.3"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
948
+
949
+ [[package]]
950
+ name = "globset"
951
+ version = "0.4.18"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
954
+ dependencies = [
955
+ "aho-corasick",
956
+ "bstr",
957
+ "log",
958
+ "regex-automata",
959
+ "regex-syntax",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "half"
964
+ version = "2.7.1"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
967
+ dependencies = [
968
+ "cfg-if",
969
+ "crunchy",
970
+ "zerocopy",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "hashbrown"
975
+ version = "0.15.5"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
978
+ dependencies = [
979
+ "foldhash",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "hashbrown"
984
+ version = "0.16.1"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
987
+
988
+ [[package]]
989
+ name = "heck"
990
+ version = "0.5.0"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
993
+
994
+ [[package]]
995
+ name = "heed"
996
+ version = "0.22.0"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "6a56c94661ddfb51aa9cdfbf102cfcc340aa69267f95ebccc4af08d7c530d393"
999
+ dependencies = [
1000
+ "bitflags 2.11.0",
1001
+ "byteorder",
1002
+ "heed-traits",
1003
+ "heed-types",
1004
+ "libc",
1005
+ "lmdb-master-sys",
1006
+ "once_cell",
1007
+ "page_size",
1008
+ "serde",
1009
+ "synchronoise",
1010
+ "url",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "heed-traits"
1015
+ version = "0.20.0"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "eb3130048d404c57ce5a1ac61a903696e8fcde7e8c2991e9fcfc1f27c3ef74ff"
1018
+
1019
+ [[package]]
1020
+ name = "heed-types"
1021
+ version = "0.21.0"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "13c255bdf46e07fb840d120a36dcc81f385140d7191c76a7391672675c01a55d"
1024
+ dependencies = [
1025
+ "bincode",
1026
+ "byteorder",
1027
+ "heed-traits",
1028
+ "serde",
1029
+ "serde_json",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "hermit-abi"
1034
+ version = "0.5.2"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1037
+
1038
+ [[package]]
1039
+ name = "iana-time-zone"
1040
+ version = "0.1.65"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1043
+ dependencies = [
1044
+ "android_system_properties",
1045
+ "core-foundation-sys",
1046
+ "iana-time-zone-haiku",
1047
+ "js-sys",
1048
+ "log",
1049
+ "wasm-bindgen",
1050
+ "windows-core",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "iana-time-zone-haiku"
1055
+ version = "0.1.2"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1058
+ dependencies = [
1059
+ "cc",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "icu_collections"
1064
+ version = "2.1.1"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1067
+ dependencies = [
1068
+ "displaydoc",
1069
+ "potential_utf",
1070
+ "yoke",
1071
+ "zerofrom",
1072
+ "zerovec",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "icu_locale_core"
1077
+ version = "2.1.1"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1080
+ dependencies = [
1081
+ "displaydoc",
1082
+ "litemap",
1083
+ "tinystr",
1084
+ "writeable",
1085
+ "zerovec",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "icu_normalizer"
1090
+ version = "2.1.1"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1093
+ dependencies = [
1094
+ "icu_collections",
1095
+ "icu_normalizer_data",
1096
+ "icu_properties",
1097
+ "icu_provider",
1098
+ "smallvec",
1099
+ "zerovec",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "icu_normalizer_data"
1104
+ version = "2.1.1"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1107
+
1108
+ [[package]]
1109
+ name = "icu_properties"
1110
+ version = "2.1.2"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1113
+ dependencies = [
1114
+ "icu_collections",
1115
+ "icu_locale_core",
1116
+ "icu_properties_data",
1117
+ "icu_provider",
1118
+ "zerotrie",
1119
+ "zerovec",
1120
+ ]
1121
+
1122
+ [[package]]
1123
+ name = "icu_properties_data"
1124
+ version = "2.1.2"
1125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1126
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1127
+
1128
+ [[package]]
1129
+ name = "icu_provider"
1130
+ version = "2.1.1"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1133
+ dependencies = [
1134
+ "displaydoc",
1135
+ "icu_locale_core",
1136
+ "writeable",
1137
+ "yoke",
1138
+ "zerofrom",
1139
+ "zerotrie",
1140
+ "zerovec",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "id-arena"
1145
+ version = "2.3.0"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1148
+
1149
+ [[package]]
1150
+ name = "ident_case"
1151
+ version = "1.0.1"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1154
+
1155
+ [[package]]
1156
+ name = "idna"
1157
+ version = "1.1.0"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1160
+ dependencies = [
1161
+ "idna_adapter",
1162
+ "smallvec",
1163
+ "utf8_iter",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "idna_adapter"
1168
+ version = "1.2.1"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1171
+ dependencies = [
1172
+ "icu_normalizer",
1173
+ "icu_properties",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "ignore"
1178
+ version = "0.4.25"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
1181
+ dependencies = [
1182
+ "crossbeam-deque",
1183
+ "globset",
1184
+ "log",
1185
+ "memchr",
1186
+ "regex-automata",
1187
+ "same-file",
1188
+ "walkdir",
1189
+ "winapi-util",
1190
+ ]
1191
+
1192
+ [[package]]
1193
+ name = "indexmap"
1194
+ version = "2.13.0"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1197
+ dependencies = [
1198
+ "equivalent",
1199
+ "hashbrown 0.16.1",
1200
+ "serde",
1201
+ "serde_core",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "indoc"
1206
+ version = "2.0.7"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1209
+ dependencies = [
1210
+ "rustversion",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "inotify"
1215
+ version = "0.11.1"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "bd5b3eaf1a28b758ac0faa5a4254e8ab2705605496f1b1f3fbbc3988ad73d199"
1218
+ dependencies = [
1219
+ "bitflags 2.11.0",
1220
+ "inotify-sys",
1221
+ "libc",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "inotify-sys"
1226
+ version = "0.1.5"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1229
+ dependencies = [
1230
+ "libc",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "is-terminal"
1235
+ version = "0.4.17"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1238
+ dependencies = [
1239
+ "hermit-abi",
1240
+ "libc",
1241
+ "windows-sys 0.61.2",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "is_terminal_polyfill"
1246
+ version = "1.70.2"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1249
+
1250
+ [[package]]
1251
+ name = "itertools"
1252
+ version = "0.10.5"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1255
+ dependencies = [
1256
+ "either",
1257
+ ]
1258
+
1259
+ [[package]]
1260
+ name = "itertools"
1261
+ version = "0.13.0"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1264
+ dependencies = [
1265
+ "either",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "itertools"
1270
+ version = "0.14.0"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1273
+ dependencies = [
1274
+ "either",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "itoa"
1279
+ version = "1.0.17"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1282
+
1283
+ [[package]]
1284
+ name = "jobserver"
1285
+ version = "0.1.34"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1288
+ dependencies = [
1289
+ "getrandom 0.3.4",
1290
+ "libc",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "js-sys"
1295
+ version = "0.3.91"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
1298
+ dependencies = [
1299
+ "once_cell",
1300
+ "wasm-bindgen",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "kqueue"
1305
+ version = "1.1.1"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
1308
+ dependencies = [
1309
+ "kqueue-sys",
1310
+ "libc",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "kqueue-sys"
1315
+ version = "1.0.4"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
1318
+ dependencies = [
1319
+ "bitflags 1.3.2",
1320
+ "libc",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "lazy_static"
1325
+ version = "1.5.0"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1328
+
1329
+ [[package]]
1330
+ name = "leb128fmt"
1331
+ version = "0.1.0"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1334
+
1335
+ [[package]]
1336
+ name = "libc"
1337
+ version = "0.2.183"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
1340
+
1341
+ [[package]]
1342
+ name = "libgit2-sys"
1343
+ version = "0.18.3+1.9.2"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "c9b3acc4b91781bb0b3386669d325163746af5f6e4f73e6d2d630e09a35f3487"
1346
+ dependencies = [
1347
+ "cc",
1348
+ "libc",
1349
+ "libz-sys",
1350
+ "pkg-config",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "libloading"
1355
+ version = "0.8.9"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1358
+ dependencies = [
1359
+ "cfg-if",
1360
+ "windows-link",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "libmimalloc-sys"
1365
+ version = "0.1.44"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
1368
+ dependencies = [
1369
+ "cc",
1370
+ "cty",
1371
+ "libc",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "libredox"
1376
+ version = "0.1.14"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
1379
+ dependencies = [
1380
+ "libc",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "libz-sys"
1385
+ version = "1.1.25"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "d52f4c29e2a68ac30c9087e1b772dc9f44a2b66ed44edf2266cf2be9b03dafc1"
1388
+ dependencies = [
1389
+ "cc",
1390
+ "libc",
1391
+ "pkg-config",
1392
+ "vcpkg",
1393
+ ]
1394
+
1395
+ [[package]]
1396
+ name = "linux-raw-sys"
1397
+ version = "0.12.1"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1400
+
1401
+ [[package]]
1402
+ name = "litemap"
1403
+ version = "0.8.1"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1406
+
1407
+ [[package]]
1408
+ name = "lmdb-master-sys"
1409
+ version = "0.2.5"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "864808e0b19fb6dd3b70ba94ee671b82fce17554cf80aeb0a155c65bb08027df"
1412
+ dependencies = [
1413
+ "cc",
1414
+ "doxygen-rs",
1415
+ "libc",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "lock_api"
1420
+ version = "0.4.14"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1423
+ dependencies = [
1424
+ "scopeguard",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "log"
1429
+ version = "0.4.29"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1432
+
1433
+ [[package]]
1434
+ name = "matchers"
1435
+ version = "0.2.0"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1438
+ dependencies = [
1439
+ "regex-automata",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "memchr"
1444
+ version = "2.8.0"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1447
+
1448
+ [[package]]
1449
+ name = "memmap2"
1450
+ version = "0.9.10"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
1453
+ dependencies = [
1454
+ "libc",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "memoffset"
1459
+ version = "0.9.1"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1462
+ dependencies = [
1463
+ "autocfg",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "mimalloc"
1468
+ version = "0.1.48"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
1471
+ dependencies = [
1472
+ "libmimalloc-sys",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "minimal-lexical"
1477
+ version = "0.2.1"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1480
+
1481
+ [[package]]
1482
+ name = "mio"
1483
+ version = "1.1.1"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1486
+ dependencies = [
1487
+ "libc",
1488
+ "log",
1489
+ "wasi",
1490
+ "windows-sys 0.61.2",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "mlua"
1495
+ version = "0.11.6"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "ccd36acfa49ce6ee56d1307a061dd302c564eee757e6e4cd67eb4f7204846fab"
1498
+ dependencies = [
1499
+ "bstr",
1500
+ "either",
1501
+ "libc",
1502
+ "mlua-sys",
1503
+ "mlua_derive",
1504
+ "num-traits",
1505
+ "parking_lot",
1506
+ "rustc-hash",
1507
+ "rustversion",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "mlua-sys"
1512
+ version = "0.10.0"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "0f1c3a7fc7580227ece249fd90aa2fa3b39eb2b49d3aec5e103b3e85f2c3dfc8"
1515
+ dependencies = [
1516
+ "cc",
1517
+ "cfg-if",
1518
+ "libc",
1519
+ "pkg-config",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "mlua_derive"
1524
+ version = "0.11.0"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "465bddde514c4eb3b50b543250e97c1d4b284fa3ef7dc0ba2992c77545dbceb2"
1527
+ dependencies = [
1528
+ "proc-macro2",
1529
+ "quote",
1530
+ "syn",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "neo_frizbee"
1535
+ version = "0.10.2"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "728e0731ad3a0083b9f72a82df72c298641ba970d4e308e0897ec4c89212c31d"
1538
+ dependencies = [
1539
+ "itertools 0.14.0",
1540
+ "raw-cpuid",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "nix"
1545
+ version = "0.31.2"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "5d6d0705320c1e6ba1d912b5e37cf18071b6c2e9b7fa8215a1e8a7651966f5d3"
1548
+ dependencies = [
1549
+ "bitflags 2.11.0",
1550
+ "cfg-if",
1551
+ "cfg_aliases",
1552
+ "libc",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "nom"
1557
+ version = "7.1.3"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1560
+ dependencies = [
1561
+ "memchr",
1562
+ "minimal-lexical",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "notify"
1567
+ version = "9.0.0-rc.4"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "b44b771d4dd781ef14c84078693e67495da6b47f609f72e8a4da8420a861240e"
1570
+ dependencies = [
1571
+ "bitflags 2.11.0",
1572
+ "inotify",
1573
+ "kqueue",
1574
+ "libc",
1575
+ "log",
1576
+ "mio",
1577
+ "notify-types",
1578
+ "objc2-core-foundation",
1579
+ "objc2-core-services",
1580
+ "walkdir",
1581
+ "windows-sys 0.61.2",
1582
+ "xxhash-rust",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "notify-types"
1587
+ version = "2.1.0"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
1590
+ dependencies = [
1591
+ "bitflags 2.11.0",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "nu-ansi-term"
1596
+ version = "0.50.3"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1599
+ dependencies = [
1600
+ "windows-sys 0.61.2",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "num-conv"
1605
+ version = "0.2.0"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1608
+
1609
+ [[package]]
1610
+ name = "num-traits"
1611
+ version = "0.2.19"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1614
+ dependencies = [
1615
+ "autocfg",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "objc2"
1620
+ version = "0.6.4"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
1623
+ dependencies = [
1624
+ "objc2-encode",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "objc2-core-foundation"
1629
+ version = "0.3.2"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
1632
+ dependencies = [
1633
+ "bitflags 2.11.0",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "objc2-core-services"
1638
+ version = "0.3.2"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "583300ad934cba24ff5292aee751ecc070f7ca6b39a574cc21b7b5e588e06a0b"
1641
+ dependencies = [
1642
+ "libc",
1643
+ "objc2-core-foundation",
1644
+ ]
1645
+
1646
+ [[package]]
1647
+ name = "objc2-encode"
1648
+ version = "4.1.0"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
1651
+
1652
+ [[package]]
1653
+ name = "once_cell"
1654
+ version = "1.21.4"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1657
+
1658
+ [[package]]
1659
+ name = "once_cell_polyfill"
1660
+ version = "1.70.2"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1663
+
1664
+ [[package]]
1665
+ name = "oorandom"
1666
+ version = "11.1.5"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1669
+
1670
+ [[package]]
1671
+ name = "option-ext"
1672
+ version = "0.2.0"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1675
+
1676
+ [[package]]
1677
+ name = "page_size"
1678
+ version = "0.6.0"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
1681
+ dependencies = [
1682
+ "libc",
1683
+ "winapi",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "parking_lot"
1688
+ version = "0.12.5"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1691
+ dependencies = [
1692
+ "lock_api",
1693
+ "parking_lot_core",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "parking_lot_core"
1698
+ version = "0.9.12"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1701
+ dependencies = [
1702
+ "cfg-if",
1703
+ "libc",
1704
+ "redox_syscall",
1705
+ "smallvec",
1706
+ "windows-link",
1707
+ ]
1708
+
1709
+ [[package]]
1710
+ name = "pastey"
1711
+ version = "0.2.1"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "b867cad97c0791bbd3aaa6472142568c6c9e8f71937e98379f584cfb0cf35bec"
1714
+
1715
+ [[package]]
1716
+ name = "pathdiff"
1717
+ version = "0.2.3"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
1720
+
1721
+ [[package]]
1722
+ name = "percent-encoding"
1723
+ version = "2.3.2"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1726
+
1727
+ [[package]]
1728
+ name = "phf"
1729
+ version = "0.11.3"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1732
+ dependencies = [
1733
+ "phf_macros",
1734
+ "phf_shared",
1735
+ ]
1736
+
1737
+ [[package]]
1738
+ name = "phf_generator"
1739
+ version = "0.11.3"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1742
+ dependencies = [
1743
+ "phf_shared",
1744
+ "rand 0.8.5",
1745
+ ]
1746
+
1747
+ [[package]]
1748
+ name = "phf_macros"
1749
+ version = "0.11.3"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
1752
+ dependencies = [
1753
+ "phf_generator",
1754
+ "phf_shared",
1755
+ "proc-macro2",
1756
+ "quote",
1757
+ "syn",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "phf_shared"
1762
+ version = "0.11.3"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1765
+ dependencies = [
1766
+ "siphasher",
1767
+ ]
1768
+
1769
+ [[package]]
1770
+ name = "pin-project-lite"
1771
+ version = "0.2.17"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1774
+
1775
+ [[package]]
1776
+ name = "pkg-config"
1777
+ version = "0.3.32"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1780
+
1781
+ [[package]]
1782
+ name = "plotters"
1783
+ version = "0.3.7"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1786
+ dependencies = [
1787
+ "num-traits",
1788
+ "plotters-backend",
1789
+ "plotters-svg",
1790
+ "wasm-bindgen",
1791
+ "web-sys",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "plotters-backend"
1796
+ version = "0.3.7"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1799
+
1800
+ [[package]]
1801
+ name = "plotters-svg"
1802
+ version = "0.3.7"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1805
+ dependencies = [
1806
+ "plotters-backend",
1807
+ ]
1808
+
1809
+ [[package]]
1810
+ name = "portable-atomic"
1811
+ version = "1.13.1"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1814
+
1815
+ [[package]]
1816
+ name = "potential_utf"
1817
+ version = "0.1.4"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1820
+ dependencies = [
1821
+ "zerovec",
1822
+ ]
1823
+
1824
+ [[package]]
1825
+ name = "powerfmt"
1826
+ version = "0.2.0"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1829
+
1830
+ [[package]]
1831
+ name = "ppv-lite86"
1832
+ version = "0.2.21"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1835
+ dependencies = [
1836
+ "zerocopy",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "prettyplease"
1841
+ version = "0.2.37"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1844
+ dependencies = [
1845
+ "proc-macro2",
1846
+ "syn",
1847
+ ]
1848
+
1849
+ [[package]]
1850
+ name = "proc-macro2"
1851
+ version = "1.0.106"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1854
+ dependencies = [
1855
+ "unicode-ident",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "proptest"
1860
+ version = "1.11.0"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1863
+ dependencies = [
1864
+ "bitflags 2.11.0",
1865
+ "num-traits",
1866
+ "rand 0.9.4",
1867
+ "rand_chacha 0.9.0",
1868
+ "rand_xorshift",
1869
+ "regex-syntax",
1870
+ "rusty-fork",
1871
+ "tempfile",
1872
+ "unarray",
1873
+ ]
1874
+
1875
+ [[package]]
1876
+ name = "pyo3"
1877
+ version = "0.24.2"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
1880
+ dependencies = [
1881
+ "cfg-if",
1882
+ "indoc",
1883
+ "libc",
1884
+ "memoffset",
1885
+ "once_cell",
1886
+ "portable-atomic",
1887
+ "pyo3-build-config",
1888
+ "pyo3-ffi",
1889
+ "pyo3-macros",
1890
+ "unindent",
1891
+ ]
1892
+
1893
+ [[package]]
1894
+ name = "pyo3-build-config"
1895
+ version = "0.24.2"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
1898
+ dependencies = [
1899
+ "once_cell",
1900
+ "target-lexicon",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "pyo3-ffi"
1905
+ version = "0.24.2"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
1908
+ dependencies = [
1909
+ "libc",
1910
+ "pyo3-build-config",
1911
+ ]
1912
+
1913
+ [[package]]
1914
+ name = "pyo3-macros"
1915
+ version = "0.24.2"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
1918
+ dependencies = [
1919
+ "proc-macro2",
1920
+ "pyo3-macros-backend",
1921
+ "quote",
1922
+ "syn",
1923
+ ]
1924
+
1925
+ [[package]]
1926
+ name = "pyo3-macros-backend"
1927
+ version = "0.24.2"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
1930
+ dependencies = [
1931
+ "heck",
1932
+ "proc-macro2",
1933
+ "pyo3-build-config",
1934
+ "quote",
1935
+ "syn",
1936
+ ]
1937
+
1938
+ [[package]]
1939
+ name = "quick-error"
1940
+ version = "1.2.3"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1943
+
1944
+ [[package]]
1945
+ name = "quote"
1946
+ version = "1.0.45"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1949
+ dependencies = [
1950
+ "proc-macro2",
1951
+ ]
1952
+
1953
+ [[package]]
1954
+ name = "r-efi"
1955
+ version = "5.3.0"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1958
+
1959
+ [[package]]
1960
+ name = "r-efi"
1961
+ version = "6.0.0"
1962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1963
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1964
+
1965
+ [[package]]
1966
+ name = "rand"
1967
+ version = "0.8.5"
1968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1969
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1970
+ dependencies = [
1971
+ "libc",
1972
+ "rand_chacha 0.3.1",
1973
+ "rand_core 0.6.4",
1974
+ ]
1975
+
1976
+ [[package]]
1977
+ name = "rand"
1978
+ version = "0.9.4"
1979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1980
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1981
+ dependencies = [
1982
+ "rand_chacha 0.9.0",
1983
+ "rand_core 0.9.5",
1984
+ ]
1985
+
1986
+ [[package]]
1987
+ name = "rand_chacha"
1988
+ version = "0.3.1"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1991
+ dependencies = [
1992
+ "ppv-lite86",
1993
+ "rand_core 0.6.4",
1994
+ ]
1995
+
1996
+ [[package]]
1997
+ name = "rand_chacha"
1998
+ version = "0.9.0"
1999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2000
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2001
+ dependencies = [
2002
+ "ppv-lite86",
2003
+ "rand_core 0.9.5",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "rand_core"
2008
+ version = "0.6.4"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2011
+ dependencies = [
2012
+ "getrandom 0.2.17",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "rand_core"
2017
+ version = "0.9.5"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2020
+ dependencies = [
2021
+ "getrandom 0.3.4",
2022
+ ]
2023
+
2024
+ [[package]]
2025
+ name = "rand_xorshift"
2026
+ version = "0.4.0"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
2029
+ dependencies = [
2030
+ "rand_core 0.9.5",
2031
+ ]
2032
+
2033
+ [[package]]
2034
+ name = "raw-cpuid"
2035
+ version = "11.6.0"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
2038
+ dependencies = [
2039
+ "bitflags 2.11.0",
2040
+ ]
2041
+
2042
+ [[package]]
2043
+ name = "rayon"
2044
+ version = "1.11.0"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2047
+ dependencies = [
2048
+ "either",
2049
+ "rayon-core",
2050
+ ]
2051
+
2052
+ [[package]]
2053
+ name = "rayon-core"
2054
+ version = "1.13.0"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2057
+ dependencies = [
2058
+ "crossbeam-deque",
2059
+ "crossbeam-utils",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "redox_syscall"
2064
+ version = "0.5.18"
2065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2066
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2067
+ dependencies = [
2068
+ "bitflags 2.11.0",
2069
+ ]
2070
+
2071
+ [[package]]
2072
+ name = "redox_users"
2073
+ version = "0.4.6"
2074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2075
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2076
+ dependencies = [
2077
+ "getrandom 0.2.17",
2078
+ "libredox",
2079
+ "thiserror 1.0.69",
2080
+ ]
2081
+
2082
+ [[package]]
2083
+ name = "ref-cast"
2084
+ version = "1.0.25"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2087
+ dependencies = [
2088
+ "ref-cast-impl",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "ref-cast-impl"
2093
+ version = "1.0.25"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2096
+ dependencies = [
2097
+ "proc-macro2",
2098
+ "quote",
2099
+ "syn",
2100
+ ]
2101
+
2102
+ [[package]]
2103
+ name = "regex"
2104
+ version = "1.12.3"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2107
+ dependencies = [
2108
+ "aho-corasick",
2109
+ "memchr",
2110
+ "regex-automata",
2111
+ "regex-syntax",
2112
+ ]
2113
+
2114
+ [[package]]
2115
+ name = "regex-automata"
2116
+ version = "0.4.14"
2117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2118
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2119
+ dependencies = [
2120
+ "aho-corasick",
2121
+ "memchr",
2122
+ "regex-syntax",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "regex-syntax"
2127
+ version = "0.8.10"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2130
+
2131
+ [[package]]
2132
+ name = "rmcp"
2133
+ version = "1.7.0"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "0810a9f717d9828f475fe1f629f4c305c8464b7f496c3a854b58d29e65f4058e"
2136
+ dependencies = [
2137
+ "async-trait",
2138
+ "base64",
2139
+ "chrono",
2140
+ "futures",
2141
+ "pastey",
2142
+ "pin-project-lite",
2143
+ "rmcp-macros",
2144
+ "schemars",
2145
+ "serde",
2146
+ "serde_json",
2147
+ "thiserror 2.0.18",
2148
+ "tokio",
2149
+ "tokio-util",
2150
+ "tracing",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "rmcp-macros"
2155
+ version = "1.7.0"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "6aefac48c364756e97f04c0401ba3231e8607882c7c1d92da0437dc16307904d"
2158
+ dependencies = [
2159
+ "darling",
2160
+ "proc-macro2",
2161
+ "quote",
2162
+ "serde_json",
2163
+ "syn",
2164
+ ]
2165
+
2166
+ [[package]]
2167
+ name = "rustc-hash"
2168
+ version = "2.1.2"
2169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2170
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
2171
+
2172
+ [[package]]
2173
+ name = "rustix"
2174
+ version = "1.1.4"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2177
+ dependencies = [
2178
+ "bitflags 2.11.0",
2179
+ "errno",
2180
+ "libc",
2181
+ "linux-raw-sys",
2182
+ "windows-sys 0.61.2",
2183
+ ]
2184
+
2185
+ [[package]]
2186
+ name = "rustversion"
2187
+ version = "1.0.22"
2188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2189
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2190
+
2191
+ [[package]]
2192
+ name = "rusty-fork"
2193
+ version = "0.3.1"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2196
+ dependencies = [
2197
+ "fnv",
2198
+ "quick-error",
2199
+ "tempfile",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "same-file"
2204
+ version = "1.0.6"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2207
+ dependencies = [
2208
+ "winapi-util",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "schemars"
2213
+ version = "1.2.1"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
2216
+ dependencies = [
2217
+ "chrono",
2218
+ "dyn-clone",
2219
+ "ref-cast",
2220
+ "schemars_derive",
2221
+ "serde",
2222
+ "serde_json",
2223
+ ]
2224
+
2225
+ [[package]]
2226
+ name = "schemars_derive"
2227
+ version = "1.2.1"
2228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2229
+ checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
2230
+ dependencies = [
2231
+ "proc-macro2",
2232
+ "quote",
2233
+ "serde_derive_internals",
2234
+ "syn",
2235
+ ]
2236
+
2237
+ [[package]]
2238
+ name = "scopeguard"
2239
+ version = "1.2.0"
2240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2241
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2242
+
2243
+ [[package]]
2244
+ name = "semver"
2245
+ version = "1.0.27"
2246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2247
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2248
+
2249
+ [[package]]
2250
+ name = "serde"
2251
+ version = "1.0.228"
2252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2253
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2254
+ dependencies = [
2255
+ "serde_core",
2256
+ "serde_derive",
2257
+ ]
2258
+
2259
+ [[package]]
2260
+ name = "serde_core"
2261
+ version = "1.0.228"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2264
+ dependencies = [
2265
+ "serde_derive",
2266
+ ]
2267
+
2268
+ [[package]]
2269
+ name = "serde_derive"
2270
+ version = "1.0.228"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2273
+ dependencies = [
2274
+ "proc-macro2",
2275
+ "quote",
2276
+ "syn",
2277
+ ]
2278
+
2279
+ [[package]]
2280
+ name = "serde_derive_internals"
2281
+ version = "0.29.1"
2282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2283
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
2284
+ dependencies = [
2285
+ "proc-macro2",
2286
+ "quote",
2287
+ "syn",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "serde_json"
2292
+ version = "1.0.149"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2295
+ dependencies = [
2296
+ "itoa",
2297
+ "memchr",
2298
+ "serde",
2299
+ "serde_core",
2300
+ "zmij",
2301
+ ]
2302
+
2303
+ [[package]]
2304
+ name = "sharded-slab"
2305
+ version = "0.1.7"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2308
+ dependencies = [
2309
+ "lazy_static",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "shlex"
2314
+ version = "1.3.0"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2317
+
2318
+ [[package]]
2319
+ name = "signal-hook-registry"
2320
+ version = "1.4.8"
2321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2322
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2323
+ dependencies = [
2324
+ "errno",
2325
+ "libc",
2326
+ ]
2327
+
2328
+ [[package]]
2329
+ name = "siphasher"
2330
+ version = "1.0.2"
2331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2332
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
2333
+
2334
+ [[package]]
2335
+ name = "slab"
2336
+ version = "0.4.12"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2339
+
2340
+ [[package]]
2341
+ name = "smallvec"
2342
+ version = "1.15.1"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2345
+
2346
+ [[package]]
2347
+ name = "socket2"
2348
+ version = "0.6.3"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2351
+ dependencies = [
2352
+ "libc",
2353
+ "windows-sys 0.61.2",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "stable_deref_trait"
2358
+ version = "1.2.1"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2361
+
2362
+ [[package]]
2363
+ name = "strsim"
2364
+ version = "0.11.1"
2365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2366
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2367
+
2368
+ [[package]]
2369
+ name = "syn"
2370
+ version = "2.0.117"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2373
+ dependencies = [
2374
+ "proc-macro2",
2375
+ "quote",
2376
+ "unicode-ident",
2377
+ ]
2378
+
2379
+ [[package]]
2380
+ name = "synchronoise"
2381
+ version = "1.0.1"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "3dbc01390fc626ce8d1cffe3376ded2b72a11bb70e1c75f404a210e4daa4def2"
2384
+ dependencies = [
2385
+ "crossbeam-queue",
2386
+ ]
2387
+
2388
+ [[package]]
2389
+ name = "synstructure"
2390
+ version = "0.13.2"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2393
+ dependencies = [
2394
+ "proc-macro2",
2395
+ "quote",
2396
+ "syn",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "target-lexicon"
2401
+ version = "0.13.5"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2404
+
2405
+ [[package]]
2406
+ name = "tempfile"
2407
+ version = "3.27.0"
2408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2409
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2410
+ dependencies = [
2411
+ "fastrand",
2412
+ "getrandom 0.4.2",
2413
+ "once_cell",
2414
+ "rustix",
2415
+ "windows-sys 0.61.2",
2416
+ ]
2417
+
2418
+ [[package]]
2419
+ name = "thiserror"
2420
+ version = "1.0.69"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2423
+ dependencies = [
2424
+ "thiserror-impl 1.0.69",
2425
+ ]
2426
+
2427
+ [[package]]
2428
+ name = "thiserror"
2429
+ version = "2.0.18"
2430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2431
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2432
+ dependencies = [
2433
+ "thiserror-impl 2.0.18",
2434
+ ]
2435
+
2436
+ [[package]]
2437
+ name = "thiserror-impl"
2438
+ version = "1.0.69"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2441
+ dependencies = [
2442
+ "proc-macro2",
2443
+ "quote",
2444
+ "syn",
2445
+ ]
2446
+
2447
+ [[package]]
2448
+ name = "thiserror-impl"
2449
+ version = "2.0.18"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2452
+ dependencies = [
2453
+ "proc-macro2",
2454
+ "quote",
2455
+ "syn",
2456
+ ]
2457
+
2458
+ [[package]]
2459
+ name = "thread_local"
2460
+ version = "1.1.9"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2463
+ dependencies = [
2464
+ "cfg-if",
2465
+ ]
2466
+
2467
+ [[package]]
2468
+ name = "time"
2469
+ version = "0.3.47"
2470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2471
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2472
+ dependencies = [
2473
+ "deranged",
2474
+ "itoa",
2475
+ "num-conv",
2476
+ "powerfmt",
2477
+ "serde_core",
2478
+ "time-core",
2479
+ "time-macros",
2480
+ ]
2481
+
2482
+ [[package]]
2483
+ name = "time-core"
2484
+ version = "0.1.8"
2485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2486
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2487
+
2488
+ [[package]]
2489
+ name = "time-macros"
2490
+ version = "0.2.27"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2493
+ dependencies = [
2494
+ "num-conv",
2495
+ "time-core",
2496
+ ]
2497
+
2498
+ [[package]]
2499
+ name = "tinystr"
2500
+ version = "0.8.2"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2503
+ dependencies = [
2504
+ "displaydoc",
2505
+ "zerovec",
2506
+ ]
2507
+
2508
+ [[package]]
2509
+ name = "tinytemplate"
2510
+ version = "1.2.1"
2511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2512
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2513
+ dependencies = [
2514
+ "serde",
2515
+ "serde_json",
2516
+ ]
2517
+
2518
+ [[package]]
2519
+ name = "tokio"
2520
+ version = "1.50.0"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
2523
+ dependencies = [
2524
+ "bytes",
2525
+ "libc",
2526
+ "mio",
2527
+ "parking_lot",
2528
+ "pin-project-lite",
2529
+ "signal-hook-registry",
2530
+ "socket2",
2531
+ "tokio-macros",
2532
+ "windows-sys 0.61.2",
2533
+ ]
2534
+
2535
+ [[package]]
2536
+ name = "tokio-macros"
2537
+ version = "2.6.1"
2538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2539
+ checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
2540
+ dependencies = [
2541
+ "proc-macro2",
2542
+ "quote",
2543
+ "syn",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "tokio-util"
2548
+ version = "0.7.18"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2551
+ dependencies = [
2552
+ "bytes",
2553
+ "futures-core",
2554
+ "futures-sink",
2555
+ "pin-project-lite",
2556
+ "tokio",
2557
+ ]
2558
+
2559
+ [[package]]
2560
+ name = "tracing"
2561
+ version = "0.1.44"
2562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2563
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2564
+ dependencies = [
2565
+ "pin-project-lite",
2566
+ "tracing-attributes",
2567
+ "tracing-core",
2568
+ ]
2569
+
2570
+ [[package]]
2571
+ name = "tracing-appender"
2572
+ version = "0.2.4"
2573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2574
+ checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf"
2575
+ dependencies = [
2576
+ "crossbeam-channel",
2577
+ "thiserror 2.0.18",
2578
+ "time",
2579
+ "tracing-subscriber",
2580
+ ]
2581
+
2582
+ [[package]]
2583
+ name = "tracing-attributes"
2584
+ version = "0.1.31"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2587
+ dependencies = [
2588
+ "proc-macro2",
2589
+ "quote",
2590
+ "syn",
2591
+ ]
2592
+
2593
+ [[package]]
2594
+ name = "tracing-core"
2595
+ version = "0.1.36"
2596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2597
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2598
+ dependencies = [
2599
+ "once_cell",
2600
+ "valuable",
2601
+ ]
2602
+
2603
+ [[package]]
2604
+ name = "tracing-log"
2605
+ version = "0.2.0"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2608
+ dependencies = [
2609
+ "log",
2610
+ "once_cell",
2611
+ "tracing-core",
2612
+ ]
2613
+
2614
+ [[package]]
2615
+ name = "tracing-subscriber"
2616
+ version = "0.3.23"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2619
+ dependencies = [
2620
+ "matchers",
2621
+ "nu-ansi-term",
2622
+ "once_cell",
2623
+ "regex-automata",
2624
+ "sharded-slab",
2625
+ "smallvec",
2626
+ "thread_local",
2627
+ "tracing",
2628
+ "tracing-core",
2629
+ "tracing-log",
2630
+ ]
2631
+
2632
+ [[package]]
2633
+ name = "unarray"
2634
+ version = "0.1.4"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
2637
+
2638
+ [[package]]
2639
+ name = "unicode-ident"
2640
+ version = "1.0.24"
2641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2642
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2643
+
2644
+ [[package]]
2645
+ name = "unicode-xid"
2646
+ version = "0.2.6"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2649
+
2650
+ [[package]]
2651
+ name = "unindent"
2652
+ version = "0.2.4"
2653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2654
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2655
+
2656
+ [[package]]
2657
+ name = "url"
2658
+ version = "2.5.8"
2659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2660
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2661
+ dependencies = [
2662
+ "form_urlencoded",
2663
+ "idna",
2664
+ "percent-encoding",
2665
+ "serde",
2666
+ ]
2667
+
2668
+ [[package]]
2669
+ name = "utf8_iter"
2670
+ version = "1.0.4"
2671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2672
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2673
+
2674
+ [[package]]
2675
+ name = "utf8parse"
2676
+ version = "0.2.2"
2677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2678
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2679
+
2680
+ [[package]]
2681
+ name = "valuable"
2682
+ version = "0.1.1"
2683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2684
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2685
+
2686
+ [[package]]
2687
+ name = "vcpkg"
2688
+ version = "0.2.15"
2689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2690
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2691
+
2692
+ [[package]]
2693
+ name = "version_check"
2694
+ version = "0.9.5"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2697
+
2698
+ [[package]]
2699
+ name = "walkdir"
2700
+ version = "2.5.0"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2703
+ dependencies = [
2704
+ "same-file",
2705
+ "winapi-util",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "wasi"
2710
+ version = "0.11.1+wasi-snapshot-preview1"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2713
+
2714
+ [[package]]
2715
+ name = "wasip2"
2716
+ version = "1.0.2+wasi-0.2.9"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2719
+ dependencies = [
2720
+ "wit-bindgen",
2721
+ ]
2722
+
2723
+ [[package]]
2724
+ name = "wasip3"
2725
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2727
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2728
+ dependencies = [
2729
+ "wit-bindgen",
2730
+ ]
2731
+
2732
+ [[package]]
2733
+ name = "wasm-bindgen"
2734
+ version = "0.2.114"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
2737
+ dependencies = [
2738
+ "cfg-if",
2739
+ "once_cell",
2740
+ "rustversion",
2741
+ "wasm-bindgen-macro",
2742
+ "wasm-bindgen-shared",
2743
+ ]
2744
+
2745
+ [[package]]
2746
+ name = "wasm-bindgen-macro"
2747
+ version = "0.2.114"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
2750
+ dependencies = [
2751
+ "quote",
2752
+ "wasm-bindgen-macro-support",
2753
+ ]
2754
+
2755
+ [[package]]
2756
+ name = "wasm-bindgen-macro-support"
2757
+ version = "0.2.114"
2758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2759
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
2760
+ dependencies = [
2761
+ "bumpalo",
2762
+ "proc-macro2",
2763
+ "quote",
2764
+ "syn",
2765
+ "wasm-bindgen-shared",
2766
+ ]
2767
+
2768
+ [[package]]
2769
+ name = "wasm-bindgen-shared"
2770
+ version = "0.2.114"
2771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2772
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
2773
+ dependencies = [
2774
+ "unicode-ident",
2775
+ ]
2776
+
2777
+ [[package]]
2778
+ name = "wasm-encoder"
2779
+ version = "0.244.0"
2780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2781
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2782
+ dependencies = [
2783
+ "leb128fmt",
2784
+ "wasmparser",
2785
+ ]
2786
+
2787
+ [[package]]
2788
+ name = "wasm-metadata"
2789
+ version = "0.244.0"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2792
+ dependencies = [
2793
+ "anyhow",
2794
+ "indexmap",
2795
+ "wasm-encoder",
2796
+ "wasmparser",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "wasmparser"
2801
+ version = "0.244.0"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2804
+ dependencies = [
2805
+ "bitflags 2.11.0",
2806
+ "hashbrown 0.15.5",
2807
+ "indexmap",
2808
+ "semver",
2809
+ ]
2810
+
2811
+ [[package]]
2812
+ name = "web-sys"
2813
+ version = "0.3.91"
2814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2815
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
2816
+ dependencies = [
2817
+ "js-sys",
2818
+ "wasm-bindgen",
2819
+ ]
2820
+
2821
+ [[package]]
2822
+ name = "winapi"
2823
+ version = "0.3.9"
2824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2825
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2826
+ dependencies = [
2827
+ "winapi-i686-pc-windows-gnu",
2828
+ "winapi-x86_64-pc-windows-gnu",
2829
+ ]
2830
+
2831
+ [[package]]
2832
+ name = "winapi-i686-pc-windows-gnu"
2833
+ version = "0.4.0"
2834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2835
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2836
+
2837
+ [[package]]
2838
+ name = "winapi-util"
2839
+ version = "0.1.11"
2840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2841
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2842
+ dependencies = [
2843
+ "windows-sys 0.61.2",
2844
+ ]
2845
+
2846
+ [[package]]
2847
+ name = "winapi-x86_64-pc-windows-gnu"
2848
+ version = "0.4.0"
2849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2850
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2851
+
2852
+ [[package]]
2853
+ name = "windows-core"
2854
+ version = "0.62.2"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2857
+ dependencies = [
2858
+ "windows-implement",
2859
+ "windows-interface",
2860
+ "windows-link",
2861
+ "windows-result",
2862
+ "windows-strings",
2863
+ ]
2864
+
2865
+ [[package]]
2866
+ name = "windows-implement"
2867
+ version = "0.60.2"
2868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2869
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2870
+ dependencies = [
2871
+ "proc-macro2",
2872
+ "quote",
2873
+ "syn",
2874
+ ]
2875
+
2876
+ [[package]]
2877
+ name = "windows-interface"
2878
+ version = "0.59.3"
2879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2880
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2881
+ dependencies = [
2882
+ "proc-macro2",
2883
+ "quote",
2884
+ "syn",
2885
+ ]
2886
+
2887
+ [[package]]
2888
+ name = "windows-link"
2889
+ version = "0.2.1"
2890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2891
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2892
+
2893
+ [[package]]
2894
+ name = "windows-result"
2895
+ version = "0.4.1"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2898
+ dependencies = [
2899
+ "windows-link",
2900
+ ]
2901
+
2902
+ [[package]]
2903
+ name = "windows-strings"
2904
+ version = "0.5.1"
2905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2906
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2907
+ dependencies = [
2908
+ "windows-link",
2909
+ ]
2910
+
2911
+ [[package]]
2912
+ name = "windows-sys"
2913
+ version = "0.48.0"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2916
+ dependencies = [
2917
+ "windows-targets 0.48.5",
2918
+ ]
2919
+
2920
+ [[package]]
2921
+ name = "windows-sys"
2922
+ version = "0.60.2"
2923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2924
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2925
+ dependencies = [
2926
+ "windows-targets 0.53.5",
2927
+ ]
2928
+
2929
+ [[package]]
2930
+ name = "windows-sys"
2931
+ version = "0.61.2"
2932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2933
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2934
+ dependencies = [
2935
+ "windows-link",
2936
+ ]
2937
+
2938
+ [[package]]
2939
+ name = "windows-targets"
2940
+ version = "0.48.5"
2941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2942
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2943
+ dependencies = [
2944
+ "windows_aarch64_gnullvm 0.48.5",
2945
+ "windows_aarch64_msvc 0.48.5",
2946
+ "windows_i686_gnu 0.48.5",
2947
+ "windows_i686_msvc 0.48.5",
2948
+ "windows_x86_64_gnu 0.48.5",
2949
+ "windows_x86_64_gnullvm 0.48.5",
2950
+ "windows_x86_64_msvc 0.48.5",
2951
+ ]
2952
+
2953
+ [[package]]
2954
+ name = "windows-targets"
2955
+ version = "0.53.5"
2956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2957
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2958
+ dependencies = [
2959
+ "windows-link",
2960
+ "windows_aarch64_gnullvm 0.53.1",
2961
+ "windows_aarch64_msvc 0.53.1",
2962
+ "windows_i686_gnu 0.53.1",
2963
+ "windows_i686_gnullvm",
2964
+ "windows_i686_msvc 0.53.1",
2965
+ "windows_x86_64_gnu 0.53.1",
2966
+ "windows_x86_64_gnullvm 0.53.1",
2967
+ "windows_x86_64_msvc 0.53.1",
2968
+ ]
2969
+
2970
+ [[package]]
2971
+ name = "windows_aarch64_gnullvm"
2972
+ version = "0.48.5"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2975
+
2976
+ [[package]]
2977
+ name = "windows_aarch64_gnullvm"
2978
+ version = "0.53.1"
2979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2980
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2981
+
2982
+ [[package]]
2983
+ name = "windows_aarch64_msvc"
2984
+ version = "0.48.5"
2985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2986
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2987
+
2988
+ [[package]]
2989
+ name = "windows_aarch64_msvc"
2990
+ version = "0.53.1"
2991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2992
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2993
+
2994
+ [[package]]
2995
+ name = "windows_i686_gnu"
2996
+ version = "0.48.5"
2997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2998
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2999
+
3000
+ [[package]]
3001
+ name = "windows_i686_gnu"
3002
+ version = "0.53.1"
3003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3004
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3005
+
3006
+ [[package]]
3007
+ name = "windows_i686_gnullvm"
3008
+ version = "0.53.1"
3009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3010
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3011
+
3012
+ [[package]]
3013
+ name = "windows_i686_msvc"
3014
+ version = "0.48.5"
3015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3016
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3017
+
3018
+ [[package]]
3019
+ name = "windows_i686_msvc"
3020
+ version = "0.53.1"
3021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3022
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3023
+
3024
+ [[package]]
3025
+ name = "windows_x86_64_gnu"
3026
+ version = "0.48.5"
3027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3028
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3029
+
3030
+ [[package]]
3031
+ name = "windows_x86_64_gnu"
3032
+ version = "0.53.1"
3033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3034
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3035
+
3036
+ [[package]]
3037
+ name = "windows_x86_64_gnullvm"
3038
+ version = "0.48.5"
3039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3040
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3041
+
3042
+ [[package]]
3043
+ name = "windows_x86_64_gnullvm"
3044
+ version = "0.53.1"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3047
+
3048
+ [[package]]
3049
+ name = "windows_x86_64_msvc"
3050
+ version = "0.48.5"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3053
+
3054
+ [[package]]
3055
+ name = "windows_x86_64_msvc"
3056
+ version = "0.53.1"
3057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3058
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3059
+
3060
+ [[package]]
3061
+ name = "wit-bindgen"
3062
+ version = "0.51.0"
3063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3064
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3065
+ dependencies = [
3066
+ "wit-bindgen-rust-macro",
3067
+ ]
3068
+
3069
+ [[package]]
3070
+ name = "wit-bindgen-core"
3071
+ version = "0.51.0"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3074
+ dependencies = [
3075
+ "anyhow",
3076
+ "heck",
3077
+ "wit-parser",
3078
+ ]
3079
+
3080
+ [[package]]
3081
+ name = "wit-bindgen-rust"
3082
+ version = "0.51.0"
3083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3084
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3085
+ dependencies = [
3086
+ "anyhow",
3087
+ "heck",
3088
+ "indexmap",
3089
+ "prettyplease",
3090
+ "syn",
3091
+ "wasm-metadata",
3092
+ "wit-bindgen-core",
3093
+ "wit-component",
3094
+ ]
3095
+
3096
+ [[package]]
3097
+ name = "wit-bindgen-rust-macro"
3098
+ version = "0.51.0"
3099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3100
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3101
+ dependencies = [
3102
+ "anyhow",
3103
+ "prettyplease",
3104
+ "proc-macro2",
3105
+ "quote",
3106
+ "syn",
3107
+ "wit-bindgen-core",
3108
+ "wit-bindgen-rust",
3109
+ ]
3110
+
3111
+ [[package]]
3112
+ name = "wit-component"
3113
+ version = "0.244.0"
3114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3115
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3116
+ dependencies = [
3117
+ "anyhow",
3118
+ "bitflags 2.11.0",
3119
+ "indexmap",
3120
+ "log",
3121
+ "serde",
3122
+ "serde_derive",
3123
+ "serde_json",
3124
+ "wasm-encoder",
3125
+ "wasm-metadata",
3126
+ "wasmparser",
3127
+ "wit-parser",
3128
+ ]
3129
+
3130
+ [[package]]
3131
+ name = "wit-parser"
3132
+ version = "0.244.0"
3133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3134
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3135
+ dependencies = [
3136
+ "anyhow",
3137
+ "id-arena",
3138
+ "indexmap",
3139
+ "log",
3140
+ "semver",
3141
+ "serde",
3142
+ "serde_derive",
3143
+ "serde_json",
3144
+ "unicode-xid",
3145
+ "wasmparser",
3146
+ ]
3147
+
3148
+ [[package]]
3149
+ name = "writeable"
3150
+ version = "0.6.2"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3153
+
3154
+ [[package]]
3155
+ name = "xxhash-rust"
3156
+ version = "0.8.15"
3157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3158
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
3159
+
3160
+ [[package]]
3161
+ name = "yoke"
3162
+ version = "0.8.1"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3165
+ dependencies = [
3166
+ "stable_deref_trait",
3167
+ "yoke-derive",
3168
+ "zerofrom",
3169
+ ]
3170
+
3171
+ [[package]]
3172
+ name = "yoke-derive"
3173
+ version = "0.8.1"
3174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3175
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3176
+ dependencies = [
3177
+ "proc-macro2",
3178
+ "quote",
3179
+ "syn",
3180
+ "synstructure",
3181
+ ]
3182
+
3183
+ [[package]]
3184
+ name = "zerocopy"
3185
+ version = "0.8.47"
3186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3187
+ checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
3188
+ dependencies = [
3189
+ "zerocopy-derive",
3190
+ ]
3191
+
3192
+ [[package]]
3193
+ name = "zerocopy-derive"
3194
+ version = "0.8.47"
3195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3196
+ checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
3197
+ dependencies = [
3198
+ "proc-macro2",
3199
+ "quote",
3200
+ "syn",
3201
+ ]
3202
+
3203
+ [[package]]
3204
+ name = "zerofrom"
3205
+ version = "0.1.6"
3206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3207
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3208
+ dependencies = [
3209
+ "zerofrom-derive",
3210
+ ]
3211
+
3212
+ [[package]]
3213
+ name = "zerofrom-derive"
3214
+ version = "0.1.6"
3215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3216
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3217
+ dependencies = [
3218
+ "proc-macro2",
3219
+ "quote",
3220
+ "syn",
3221
+ "synstructure",
3222
+ ]
3223
+
3224
+ [[package]]
3225
+ name = "zerotrie"
3226
+ version = "0.2.3"
3227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3228
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3229
+ dependencies = [
3230
+ "displaydoc",
3231
+ "yoke",
3232
+ "zerofrom",
3233
+ ]
3234
+
3235
+ [[package]]
3236
+ name = "zerovec"
3237
+ version = "0.11.5"
3238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3239
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3240
+ dependencies = [
3241
+ "yoke",
3242
+ "zerofrom",
3243
+ "zerovec-derive",
3244
+ ]
3245
+
3246
+ [[package]]
3247
+ name = "zerovec-derive"
3248
+ version = "0.11.2"
3249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3250
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3251
+ dependencies = [
3252
+ "proc-macro2",
3253
+ "quote",
3254
+ "syn",
3255
+ ]
3256
+
3257
+ [[package]]
3258
+ name = "zlob"
3259
+ version = "1.4.1"
3260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3261
+ checksum = "466e82062db3527af78a7627a0e066f2420f8d2e573d530956fb9192956dc7b6"
3262
+ dependencies = [
3263
+ "bindgen",
3264
+ "bitflags 2.11.0",
3265
+ ]
3266
+
3267
+ [[package]]
3268
+ name = "zmij"
3269
+ version = "1.0.21"
3270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3271
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"