jsslint 1.0.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 (70) hide show
  1. jsslint-1.0.1/Cargo.lock +1062 -0
  2. jsslint-1.0.1/Cargo.toml +18 -0
  3. jsslint-1.0.1/PKG-INFO +28 -0
  4. jsslint-1.0.1/README.md +14 -0
  5. jsslint-1.0.1/jsslint-core/Cargo.toml +23 -0
  6. jsslint-1.0.1/jsslint-core/build.rs +220 -0
  7. jsslint-1.0.1/jsslint-core/examples/dump_tex.rs +10 -0
  8. jsslint-1.0.1/jsslint-core/specs/003-jss-rule-catalogue/catalogue.yaml +1588 -0
  9. jsslint-1.0.1/jsslint-core/specs/003-jss-rule-catalogue/latex-macro-specs.json +262 -0
  10. jsslint-1.0.1/jsslint-core/specs/003-jss-rule-catalogue/terms.json +60 -0
  11. jsslint-1.0.1/jsslint-core/src/bib/debug.rs +51 -0
  12. jsslint-1.0.1/jsslint-core/src/bib/mod.rs +12 -0
  13. jsslint-1.0.1/jsslint-core/src/bib/model.rs +81 -0
  14. jsslint-1.0.1/jsslint-core/src/bib/parser.rs +403 -0
  15. jsslint-1.0.1/jsslint-core/src/catalogue.rs +57 -0
  16. jsslint-1.0.1/jsslint-core/src/config.rs +282 -0
  17. jsslint-1.0.1/jsslint-core/src/conformance.rs +351 -0
  18. jsslint-1.0.1/jsslint-core/src/diff.rs +313 -0
  19. jsslint-1.0.1/jsslint-core/src/engine.rs +693 -0
  20. jsslint-1.0.1/jsslint-core/src/explain.rs +164 -0
  21. jsslint-1.0.1/jsslint-core/src/fixer.rs +511 -0
  22. jsslint-1.0.1/jsslint-core/src/html_output.rs +168 -0
  23. jsslint-1.0.1/jsslint-core/src/json_output.rs +184 -0
  24. jsslint-1.0.1/jsslint-core/src/lib.rs +31 -0
  25. jsslint-1.0.1/jsslint-core/src/lsp.rs +159 -0
  26. jsslint-1.0.1/jsslint-core/src/report.rs +202 -0
  27. jsslint-1.0.1/jsslint-core/src/rules/abbreviations.rs +132 -0
  28. jsslint-1.0.1/jsslint-core/src/rules/bibtex.rs +318 -0
  29. jsslint-1.0.1/jsslint-core/src/rules/capitalization.rs +801 -0
  30. jsslint-1.0.1/jsslint-core/src/rules/citations.rs +677 -0
  31. jsslint-1.0.1/jsslint-core/src/rules/code_style.rs +267 -0
  32. jsslint-1.0.1/jsslint-core/src/rules/code_width.rs +57 -0
  33. jsslint-1.0.1/jsslint-core/src/rules/crossrefs.rs +1037 -0
  34. jsslint-1.0.1/jsslint-core/src/rules/house_style.rs +276 -0
  35. jsslint-1.0.1/jsslint-core/src/rules/markup.rs +1020 -0
  36. jsslint-1.0.1/jsslint-core/src/rules/mod.rs +279 -0
  37. jsslint-1.0.1/jsslint-core/src/rules/naming.rs +180 -0
  38. jsslint-1.0.1/jsslint-core/src/rules/operators.rs +662 -0
  39. jsslint-1.0.1/jsslint-core/src/rules/preamble.rs +599 -0
  40. jsslint-1.0.1/jsslint-core/src/rules/references.rs +492 -0
  41. jsslint-1.0.1/jsslint-core/src/rules/structure.rs +437 -0
  42. jsslint-1.0.1/jsslint-core/src/rules/tex_common.rs +64 -0
  43. jsslint-1.0.1/jsslint-core/src/rules/typography.rs +278 -0
  44. jsslint-1.0.1/jsslint-core/src/sarif.rs +294 -0
  45. jsslint-1.0.1/jsslint-core/src/terminal.rs +615 -0
  46. jsslint-1.0.1/jsslint-core/src/terms.rs +72 -0
  47. jsslint-1.0.1/jsslint-core/src/tex/debug.rs +52 -0
  48. jsslint-1.0.1/jsslint-core/src/tex/extract.rs +81 -0
  49. jsslint-1.0.1/jsslint-core/src/tex/mod.rs +40 -0
  50. jsslint-1.0.1/jsslint-core/src/tex/neutralize.rs +329 -0
  51. jsslint-1.0.1/jsslint-core/src/tex/node.rs +120 -0
  52. jsslint-1.0.1/jsslint-core/src/tex/parser.rs +665 -0
  53. jsslint-1.0.1/jsslint-core/src/tex/position.rs +41 -0
  54. jsslint-1.0.1/jsslint-core/src/tex/prose.rs +331 -0
  55. jsslint-1.0.1/jsslint-core/src/tex/specs.rs +63 -0
  56. jsslint-1.0.1/jsslint-core/tests/bib_parity.rs +99 -0
  57. jsslint-1.0.1/jsslint-core/tests/bib_rules_parity.rs +205 -0
  58. jsslint-1.0.1/jsslint-core/tests/common/mod.rs +22 -0
  59. jsslint-1.0.1/jsslint-core/tests/engine_parity.rs +140 -0
  60. jsslint-1.0.1/jsslint-core/tests/fixer_parity.rs +305 -0
  61. jsslint-1.0.1/jsslint-core/tests/lsp_parity.rs +259 -0
  62. jsslint-1.0.1/jsslint-core/tests/parity.rs +161 -0
  63. jsslint-1.0.1/jsslint-core/tests/parser_parity.rs +118 -0
  64. jsslint-1.0.1/jsslint-core/tests/sarif_parity.rs +169 -0
  65. jsslint-1.0.1/jsslint-core/tests/terminal_parity.rs +245 -0
  66. jsslint-1.0.1/jsslint-core/tests/tex_rules_parity.rs +273 -0
  67. jsslint-1.0.1/jsslint-py/Cargo.toml +29 -0
  68. jsslint-1.0.1/jsslint-py/README.md +14 -0
  69. jsslint-1.0.1/jsslint-py/src/lib.rs +88 -0
  70. jsslint-1.0.1/pyproject.toml +25 -0
@@ -0,0 +1,1062 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anstream"
16
+ version = "1.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "1.0.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+ dependencies = [
50
+ "windows-sys",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.11"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "bitflags"
66
+ version = "1.3.2"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
69
+
70
+ [[package]]
71
+ name = "bitflags"
72
+ version = "2.13.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
75
+
76
+ [[package]]
77
+ name = "bumpalo"
78
+ version = "3.20.3"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
81
+
82
+ [[package]]
83
+ name = "cc"
84
+ version = "1.2.66"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
87
+ dependencies = [
88
+ "find-msvc-tools",
89
+ "shlex",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "cfg-if"
94
+ version = "1.0.4"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
97
+
98
+ [[package]]
99
+ name = "clap"
100
+ version = "4.6.1"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
103
+ dependencies = [
104
+ "clap_builder",
105
+ "clap_derive",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "clap_builder"
110
+ version = "4.6.0"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
113
+ dependencies = [
114
+ "anstream",
115
+ "anstyle",
116
+ "clap_lex",
117
+ "strsim",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "clap_derive"
122
+ version = "4.6.1"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
125
+ dependencies = [
126
+ "heck",
127
+ "proc-macro2",
128
+ "quote",
129
+ "syn",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "clap_lex"
134
+ version = "1.1.0"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
137
+
138
+ [[package]]
139
+ name = "colorchoice"
140
+ version = "1.0.5"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
143
+
144
+ [[package]]
145
+ name = "crossbeam-channel"
146
+ version = "0.5.16"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
149
+ dependencies = [
150
+ "crossbeam-utils",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "crossbeam-utils"
155
+ version = "0.8.22"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
158
+
159
+ [[package]]
160
+ name = "difflib"
161
+ version = "0.4.0"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
164
+
165
+ [[package]]
166
+ name = "displaydoc"
167
+ version = "0.2.6"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
170
+ dependencies = [
171
+ "proc-macro2",
172
+ "quote",
173
+ "syn",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "equivalent"
178
+ version = "1.0.2"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
181
+
182
+ [[package]]
183
+ name = "fallible-iterator"
184
+ version = "0.3.0"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
187
+
188
+ [[package]]
189
+ name = "fallible-streaming-iterator"
190
+ version = "0.1.9"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
193
+
194
+ [[package]]
195
+ name = "find-msvc-tools"
196
+ version = "0.1.9"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
199
+
200
+ [[package]]
201
+ name = "fluent-uri"
202
+ version = "0.1.4"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d"
205
+ dependencies = [
206
+ "bitflags 1.3.2",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "form_urlencoded"
211
+ version = "1.2.2"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
214
+ dependencies = [
215
+ "percent-encoding",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "futures-core"
220
+ version = "0.3.32"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
223
+
224
+ [[package]]
225
+ name = "futures-task"
226
+ version = "0.3.32"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
229
+
230
+ [[package]]
231
+ name = "futures-util"
232
+ version = "0.3.32"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
235
+ dependencies = [
236
+ "futures-core",
237
+ "futures-task",
238
+ "pin-project-lite",
239
+ "slab",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "hashbrown"
244
+ version = "0.17.1"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
247
+
248
+ [[package]]
249
+ name = "heck"
250
+ version = "0.5.0"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
253
+
254
+ [[package]]
255
+ name = "icu_collections"
256
+ version = "2.2.0"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
259
+ dependencies = [
260
+ "displaydoc",
261
+ "potential_utf",
262
+ "utf8_iter",
263
+ "yoke",
264
+ "zerofrom",
265
+ "zerovec",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "icu_locale_core"
270
+ version = "2.2.0"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
273
+ dependencies = [
274
+ "displaydoc",
275
+ "litemap",
276
+ "tinystr",
277
+ "writeable",
278
+ "zerovec",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "icu_normalizer"
283
+ version = "2.2.0"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
286
+ dependencies = [
287
+ "icu_collections",
288
+ "icu_normalizer_data",
289
+ "icu_properties",
290
+ "icu_provider",
291
+ "smallvec",
292
+ "zerovec",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "icu_normalizer_data"
297
+ version = "2.2.0"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
300
+
301
+ [[package]]
302
+ name = "icu_properties"
303
+ version = "2.2.0"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
306
+ dependencies = [
307
+ "icu_collections",
308
+ "icu_locale_core",
309
+ "icu_properties_data",
310
+ "icu_provider",
311
+ "zerotrie",
312
+ "zerovec",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "icu_properties_data"
317
+ version = "2.2.0"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
320
+
321
+ [[package]]
322
+ name = "icu_provider"
323
+ version = "2.2.0"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
326
+ dependencies = [
327
+ "displaydoc",
328
+ "icu_locale_core",
329
+ "writeable",
330
+ "yoke",
331
+ "zerofrom",
332
+ "zerotrie",
333
+ "zerovec",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "idna"
338
+ version = "1.1.0"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
341
+ dependencies = [
342
+ "idna_adapter",
343
+ "smallvec",
344
+ "utf8_iter",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "idna_adapter"
349
+ version = "1.2.2"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
352
+ dependencies = [
353
+ "icu_normalizer",
354
+ "icu_properties",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "indexmap"
359
+ version = "2.14.0"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
362
+ dependencies = [
363
+ "equivalent",
364
+ "hashbrown",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "is_terminal_polyfill"
369
+ version = "1.70.2"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
372
+
373
+ [[package]]
374
+ name = "itoa"
375
+ version = "1.0.18"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
378
+
379
+ [[package]]
380
+ name = "js-sys"
381
+ version = "0.3.103"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
384
+ dependencies = [
385
+ "cfg-if",
386
+ "futures-util",
387
+ "wasm-bindgen",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "jsslint-cli"
392
+ version = "1.0.1"
393
+ dependencies = [
394
+ "clap",
395
+ "crossbeam-channel",
396
+ "jsslint-core",
397
+ "libc",
398
+ "lsp-server",
399
+ "lsp-types",
400
+ "rusqlite",
401
+ "serde",
402
+ "serde_json",
403
+ "toml",
404
+ "url",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "jsslint-core"
409
+ version = "1.0.1"
410
+ dependencies = [
411
+ "difflib",
412
+ "regex",
413
+ "serde",
414
+ "serde_json",
415
+ "serde_yaml",
416
+ "toml",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "jsslint-py"
421
+ version = "1.0.1"
422
+ dependencies = [
423
+ "jsslint-core",
424
+ "pyo3",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "jsslint-wasm"
429
+ version = "1.0.1"
430
+ dependencies = [
431
+ "jsslint-core",
432
+ "serde",
433
+ "serde-wasm-bindgen",
434
+ "wasm-bindgen",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "libc"
439
+ version = "0.2.186"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
442
+
443
+ [[package]]
444
+ name = "libsqlite3-sys"
445
+ version = "0.38.1"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "f6c19a05435c21ac299d71b6a9c13db3e3f47c520517d58990a462a1397a61db"
448
+ dependencies = [
449
+ "cc",
450
+ "pkg-config",
451
+ "vcpkg",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "litemap"
456
+ version = "0.8.2"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
459
+
460
+ [[package]]
461
+ name = "log"
462
+ version = "0.4.33"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
465
+
466
+ [[package]]
467
+ name = "lsp-server"
468
+ version = "0.8.0"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "0ad8be6fe0ca81b8298bfbbe8a77e9fcd8895ad6c84cd7794d5ebadcbb09ae43"
471
+ dependencies = [
472
+ "crossbeam-channel",
473
+ "log",
474
+ "serde",
475
+ "serde_derive",
476
+ "serde_json",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "lsp-types"
481
+ version = "0.97.0"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "53353550a17c04ac46c585feb189c2db82154fc84b79c7a66c96c2c644f66071"
484
+ dependencies = [
485
+ "bitflags 1.3.2",
486
+ "fluent-uri",
487
+ "serde",
488
+ "serde_json",
489
+ "serde_repr",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "memchr"
494
+ version = "2.8.3"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
497
+
498
+ [[package]]
499
+ name = "once_cell"
500
+ version = "1.21.4"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
503
+
504
+ [[package]]
505
+ name = "once_cell_polyfill"
506
+ version = "1.70.2"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
509
+
510
+ [[package]]
511
+ name = "percent-encoding"
512
+ version = "2.3.2"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
515
+
516
+ [[package]]
517
+ name = "pin-project-lite"
518
+ version = "0.2.17"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
521
+
522
+ [[package]]
523
+ name = "pkg-config"
524
+ version = "0.3.33"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
527
+
528
+ [[package]]
529
+ name = "portable-atomic"
530
+ version = "1.13.1"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
533
+
534
+ [[package]]
535
+ name = "potential_utf"
536
+ version = "0.1.5"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
539
+ dependencies = [
540
+ "zerovec",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "proc-macro2"
545
+ version = "1.0.106"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
548
+ dependencies = [
549
+ "unicode-ident",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "pyo3"
554
+ version = "0.29.0"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
557
+ dependencies = [
558
+ "libc",
559
+ "once_cell",
560
+ "portable-atomic",
561
+ "pyo3-build-config",
562
+ "pyo3-ffi",
563
+ "pyo3-macros",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "pyo3-build-config"
568
+ version = "0.29.0"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
571
+ dependencies = [
572
+ "target-lexicon",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "pyo3-ffi"
577
+ version = "0.29.0"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
580
+ dependencies = [
581
+ "libc",
582
+ "pyo3-build-config",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "pyo3-macros"
587
+ version = "0.29.0"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
590
+ dependencies = [
591
+ "proc-macro2",
592
+ "pyo3-macros-backend",
593
+ "quote",
594
+ "syn",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "pyo3-macros-backend"
599
+ version = "0.29.0"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
602
+ dependencies = [
603
+ "heck",
604
+ "proc-macro2",
605
+ "quote",
606
+ "syn",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "quote"
611
+ version = "1.0.46"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
614
+ dependencies = [
615
+ "proc-macro2",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "regex"
620
+ version = "1.13.0"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
623
+ dependencies = [
624
+ "aho-corasick",
625
+ "memchr",
626
+ "regex-automata",
627
+ "regex-syntax",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "regex-automata"
632
+ version = "0.4.15"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "1f388202e4b80542a0921078cc23b6333bcf1409c1e3f86404cae4766a6131db"
635
+ dependencies = [
636
+ "aho-corasick",
637
+ "memchr",
638
+ "regex-syntax",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "regex-syntax"
643
+ version = "0.8.11"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
646
+
647
+ [[package]]
648
+ name = "rusqlite"
649
+ version = "0.40.1"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "11438310b19e3109b6446c33d1ed5e889428cf2e278407bc7896bc4aaea43323"
652
+ dependencies = [
653
+ "bitflags 2.13.0",
654
+ "fallible-iterator",
655
+ "fallible-streaming-iterator",
656
+ "libsqlite3-sys",
657
+ "smallvec",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "rustversion"
662
+ version = "1.0.23"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
665
+
666
+ [[package]]
667
+ name = "ryu"
668
+ version = "1.0.23"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
671
+
672
+ [[package]]
673
+ name = "serde"
674
+ version = "1.0.228"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
677
+ dependencies = [
678
+ "serde_core",
679
+ "serde_derive",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "serde-wasm-bindgen"
684
+ version = "0.6.5"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
687
+ dependencies = [
688
+ "js-sys",
689
+ "serde",
690
+ "wasm-bindgen",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "serde_core"
695
+ version = "1.0.228"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
698
+ dependencies = [
699
+ "serde_derive",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "serde_derive"
704
+ version = "1.0.228"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
707
+ dependencies = [
708
+ "proc-macro2",
709
+ "quote",
710
+ "syn",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "serde_json"
715
+ version = "1.0.150"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
718
+ dependencies = [
719
+ "indexmap",
720
+ "itoa",
721
+ "memchr",
722
+ "serde",
723
+ "serde_core",
724
+ "zmij",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "serde_repr"
729
+ version = "0.1.20"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
732
+ dependencies = [
733
+ "proc-macro2",
734
+ "quote",
735
+ "syn",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "serde_spanned"
740
+ version = "1.1.1"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
743
+ dependencies = [
744
+ "serde_core",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "serde_yaml"
749
+ version = "0.9.34+deprecated"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
752
+ dependencies = [
753
+ "indexmap",
754
+ "itoa",
755
+ "ryu",
756
+ "serde",
757
+ "unsafe-libyaml",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "shlex"
762
+ version = "2.0.1"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
765
+
766
+ [[package]]
767
+ name = "slab"
768
+ version = "0.4.12"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
771
+
772
+ [[package]]
773
+ name = "smallvec"
774
+ version = "1.15.2"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
777
+
778
+ [[package]]
779
+ name = "stable_deref_trait"
780
+ version = "1.2.1"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
783
+
784
+ [[package]]
785
+ name = "strsim"
786
+ version = "0.11.1"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
789
+
790
+ [[package]]
791
+ name = "syn"
792
+ version = "2.0.118"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
795
+ dependencies = [
796
+ "proc-macro2",
797
+ "quote",
798
+ "unicode-ident",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "synstructure"
803
+ version = "0.13.2"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
806
+ dependencies = [
807
+ "proc-macro2",
808
+ "quote",
809
+ "syn",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "target-lexicon"
814
+ version = "0.13.5"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
817
+
818
+ [[package]]
819
+ name = "tinystr"
820
+ version = "0.8.3"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
823
+ dependencies = [
824
+ "displaydoc",
825
+ "zerovec",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "toml"
830
+ version = "1.1.2+spec-1.1.0"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
833
+ dependencies = [
834
+ "indexmap",
835
+ "serde_core",
836
+ "serde_spanned",
837
+ "toml_datetime",
838
+ "toml_parser",
839
+ "toml_writer",
840
+ "winnow",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "toml_datetime"
845
+ version = "1.1.1+spec-1.1.0"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
848
+ dependencies = [
849
+ "serde_core",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "toml_parser"
854
+ version = "1.1.2+spec-1.1.0"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
857
+ dependencies = [
858
+ "winnow",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "toml_writer"
863
+ version = "1.1.1+spec-1.1.0"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
866
+
867
+ [[package]]
868
+ name = "unicode-ident"
869
+ version = "1.0.24"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
872
+
873
+ [[package]]
874
+ name = "unsafe-libyaml"
875
+ version = "0.2.11"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
878
+
879
+ [[package]]
880
+ name = "url"
881
+ version = "2.5.8"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
884
+ dependencies = [
885
+ "form_urlencoded",
886
+ "idna",
887
+ "percent-encoding",
888
+ "serde",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "utf8_iter"
893
+ version = "1.0.4"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
896
+
897
+ [[package]]
898
+ name = "utf8parse"
899
+ version = "0.2.2"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
902
+
903
+ [[package]]
904
+ name = "vcpkg"
905
+ version = "0.2.15"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
908
+
909
+ [[package]]
910
+ name = "wasm-bindgen"
911
+ version = "0.2.126"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
914
+ dependencies = [
915
+ "cfg-if",
916
+ "once_cell",
917
+ "rustversion",
918
+ "wasm-bindgen-macro",
919
+ "wasm-bindgen-shared",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "wasm-bindgen-macro"
924
+ version = "0.2.126"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
927
+ dependencies = [
928
+ "quote",
929
+ "wasm-bindgen-macro-support",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "wasm-bindgen-macro-support"
934
+ version = "0.2.126"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
937
+ dependencies = [
938
+ "bumpalo",
939
+ "proc-macro2",
940
+ "quote",
941
+ "syn",
942
+ "wasm-bindgen-shared",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "wasm-bindgen-shared"
947
+ version = "0.2.126"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
950
+ dependencies = [
951
+ "unicode-ident",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "windows-link"
956
+ version = "0.2.1"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
959
+
960
+ [[package]]
961
+ name = "windows-sys"
962
+ version = "0.61.2"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
965
+ dependencies = [
966
+ "windows-link",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "winnow"
971
+ version = "1.0.3"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
974
+
975
+ [[package]]
976
+ name = "writeable"
977
+ version = "0.6.3"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
980
+
981
+ [[package]]
982
+ name = "yoke"
983
+ version = "0.8.3"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
986
+ dependencies = [
987
+ "stable_deref_trait",
988
+ "yoke-derive",
989
+ "zerofrom",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "yoke-derive"
994
+ version = "0.8.2"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
997
+ dependencies = [
998
+ "proc-macro2",
999
+ "quote",
1000
+ "syn",
1001
+ "synstructure",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "zerofrom"
1006
+ version = "0.1.8"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
1009
+ dependencies = [
1010
+ "zerofrom-derive",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "zerofrom-derive"
1015
+ version = "0.1.7"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1018
+ dependencies = [
1019
+ "proc-macro2",
1020
+ "quote",
1021
+ "syn",
1022
+ "synstructure",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "zerotrie"
1027
+ version = "0.2.4"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
1030
+ dependencies = [
1031
+ "displaydoc",
1032
+ "yoke",
1033
+ "zerofrom",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "zerovec"
1038
+ version = "0.11.6"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
1041
+ dependencies = [
1042
+ "yoke",
1043
+ "zerofrom",
1044
+ "zerovec-derive",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "zerovec-derive"
1049
+ version = "0.11.3"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
1052
+ dependencies = [
1053
+ "proc-macro2",
1054
+ "quote",
1055
+ "syn",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "zmij"
1060
+ version = "1.0.21"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"