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