beancount-format 0.0.2__tar.gz → 0.1.16__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 (60) hide show
  1. beancount_format-0.1.16/Cargo.lock +1447 -0
  2. beancount_format-0.1.16/Cargo.toml +29 -0
  3. beancount_format-0.1.16/LICENSE +21 -0
  4. beancount_format-0.1.16/PKG-INFO +53 -0
  5. beancount_format-0.1.16/crates/beancount-formatter/Cargo.toml +22 -0
  6. beancount_format-0.1.16/crates/beancount-formatter/src/configuration/configuration.rs +24 -0
  7. beancount_format-0.1.16/crates/beancount-formatter/src/configuration/mod.rs +6 -0
  8. beancount_format-0.1.16/crates/beancount-formatter/src/configuration/new_line_kind.rs +47 -0
  9. beancount_format-0.1.16/crates/beancount-formatter/src/format.rs +752 -0
  10. beancount_format-0.1.16/crates/beancount-formatter/src/lib.rs +6 -0
  11. beancount_format-0.1.16/crates/beancount-formatter/src/parse.rs +7 -0
  12. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/applies_configured_crlf_newlines.config.json +3 -0
  13. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/applies_configured_crlf_newlines.expected.bean +1 -0
  14. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/applies_configured_crlf_newlines.input.bean +1 -0
  15. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/caps_blank_lines_between_directives.expected.bean +4 -0
  16. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/caps_blank_lines_between_directives.input.bean +5 -0
  17. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/formats_all_directives.config.json +4 -0
  18. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/formats_all_directives.expected.bean +22 -0
  19. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/formats_all_directives.input.bean +21 -0
  20. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/formats_transaction_preserves_postings.expected.bean +3 -0
  21. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/formats_transaction_preserves_postings.input.bean +3 -0
  22. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/formats_without_changes_returns_none.expected.bean +1 -0
  23. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/formats_without_changes_returns_none.input.bean +1 -0
  24. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/normalizes_tabs_and_trailing_spaces.expected.bean +1 -0
  25. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/normalizes_tabs_and_trailing_spaces.input.bean +1 -0
  26. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/preserve-meta.expected.bean +2 -0
  27. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/preserve-meta.input.bean +2 -0
  28. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/preserve_comments.expected.bean +5 -0
  29. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/preserve_comments.input.bean +5 -0
  30. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/preserve_file_path_header.expected.bean +7 -0
  31. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/preserve_file_path_header.input.bean +7 -0
  32. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/support_input_without_eol.expected.bean +1 -0
  33. beancount_format-0.1.16/crates/beancount-formatter/tests/format-and-check/support_input_without_eol.input.bean +1 -0
  34. beancount_format-0.1.16/crates/beancount-formatter/tests/format_cases.rs +167 -0
  35. beancount_format-0.1.16/crates/beancount-formatter-cli/Cargo.toml +26 -0
  36. beancount_format-0.1.16/crates/beancount-formatter-cli/src/lib.rs +301 -0
  37. beancount_format-0.1.16/crates/beancount-formatter-cli/src/main.rs +13 -0
  38. beancount_format-0.1.16/crates/beancount-formatter-cli/tests/cli_e2e.rs +144 -0
  39. beancount_format-0.1.16/crates/beancount-formatter-py/Cargo.toml +18 -0
  40. beancount_format-0.1.16/crates/beancount-formatter-py/src/lib.rs +53 -0
  41. beancount_format-0.1.16/pyproject.toml +37 -0
  42. beancount_format-0.1.16/python/README.md +37 -0
  43. beancount_format-0.1.16/python/src/beancount_format/__init__.py +19 -0
  44. beancount_format-0.1.16/python/src/beancount_format/beancount_format.pyi +13 -0
  45. beancount_format-0.0.2/.github/renovate.json +0 -6
  46. beancount_format-0.0.2/.github/workflows/build.yaml +0 -24
  47. beancount_format-0.0.2/.github/workflows/lint.yaml +0 -44
  48. beancount_format-0.0.2/.github/workflows/release.yaml +0 -50
  49. beancount_format-0.0.2/.gitignore +0 -116
  50. beancount_format-0.0.2/.pre-commit-config.yaml +0 -41
  51. beancount_format-0.0.2/.pre-commit-hooks.yaml +0 -7
  52. beancount_format-0.0.2/LICENSE +0 -24
  53. beancount_format-0.0.2/PKG-INFO +0 -41
  54. beancount_format-0.0.2/beancount_format/__init__.py +0 -0
  55. beancount_format-0.0.2/beancount_format/__main__.py +0 -4
  56. beancount_format-0.0.2/beancount_format/cli.py +0 -48
  57. beancount_format-0.0.2/beancount_format/format.py +0 -664
  58. beancount_format-0.0.2/pyproject.toml +0 -128
  59. beancount_format-0.0.2/readme.md +0 -19
  60. beancount_format-0.0.2/taskfile.yaml +0 -25
@@ -0,0 +1,1447 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.7.8"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
10
+ dependencies = [
11
+ "getrandom 0.2.17",
12
+ "once_cell",
13
+ "version_check",
14
+ ]
15
+
16
+ [[package]]
17
+ name = "aho-corasick"
18
+ version = "1.1.4"
19
+ source = "registry+https://github.com/rust-lang/crates.io-index"
20
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
21
+ dependencies = [
22
+ "memchr",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "allocator-api2"
27
+ version = "0.2.21"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
30
+
31
+ [[package]]
32
+ name = "anstream"
33
+ version = "0.6.21"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
36
+ dependencies = [
37
+ "anstyle",
38
+ "anstyle-parse",
39
+ "anstyle-query",
40
+ "anstyle-wincon",
41
+ "colorchoice",
42
+ "is_terminal_polyfill",
43
+ "utf8parse",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "anstyle"
48
+ version = "1.0.13"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
51
+
52
+ [[package]]
53
+ name = "anstyle-parse"
54
+ version = "0.2.7"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
57
+ dependencies = [
58
+ "utf8parse",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "anstyle-query"
63
+ version = "1.1.5"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
66
+ dependencies = [
67
+ "windows-sys",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anstyle-wincon"
72
+ version = "3.0.11"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
75
+ dependencies = [
76
+ "anstyle",
77
+ "once_cell_polyfill",
78
+ "windows-sys",
79
+ ]
80
+
81
+ [[package]]
82
+ name = "anyhow"
83
+ version = "1.0.100"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
86
+
87
+ [[package]]
88
+ name = "arrayvec"
89
+ version = "0.7.6"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
92
+
93
+ [[package]]
94
+ name = "assert_cmd"
95
+ version = "2.1.2"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "9c5bcfa8749ac45dd12cb11055aeeb6b27a3895560d60d71e3c23bf979e60514"
98
+ dependencies = [
99
+ "anstyle",
100
+ "bstr",
101
+ "libc",
102
+ "predicates",
103
+ "predicates-core",
104
+ "predicates-tree",
105
+ "wait-timeout",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "assert_fs"
110
+ version = "1.1.3"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "a652f6cb1f516886fcfee5e7a5c078b9ade62cfcb889524efe5a64d682dd27a9"
113
+ dependencies = [
114
+ "anstyle",
115
+ "doc-comment",
116
+ "globwalk",
117
+ "predicates",
118
+ "predicates-core",
119
+ "predicates-tree",
120
+ "tempfile",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "autocfg"
125
+ version = "1.5.0"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
128
+
129
+ [[package]]
130
+ name = "beancount-formatter"
131
+ version = "0.1.16"
132
+ dependencies = [
133
+ "anyhow",
134
+ "beancount-parser",
135
+ "ropey",
136
+ "serde",
137
+ "serde_json",
138
+ "similar",
139
+ "tree-sitter",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "beancount-formatter-cli"
144
+ version = "0.1.16"
145
+ dependencies = [
146
+ "anyhow",
147
+ "assert_cmd",
148
+ "assert_fs",
149
+ "beancount-formatter",
150
+ "clap",
151
+ "predicates",
152
+ "serde",
153
+ "toml",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "beancount-formatter-py"
158
+ version = "0.1.16"
159
+ dependencies = [
160
+ "beancount-formatter",
161
+ "beancount-formatter-cli",
162
+ "pyo3",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "beancount-parser"
167
+ version = "3.3.0-alpha.0"
168
+ source = "git+https://github.com/trim21/beancount.git?rev=8b4e3311258194fe3127862dd4132028e97cc01d#8b4e3311258194fe3127862dd4132028e97cc01d"
169
+ dependencies = [
170
+ "anyhow",
171
+ "beancount-tree-sitter",
172
+ "chrono",
173
+ "path-clean",
174
+ "ropey",
175
+ "rust_decimal",
176
+ "serde_json",
177
+ "smallvec",
178
+ "tree-sitter",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "beancount-tree-sitter"
183
+ version = "2.4.2"
184
+ source = "git+https://github.com/trim21/beancount.git?rev=8b4e3311258194fe3127862dd4132028e97cc01d#8b4e3311258194fe3127862dd4132028e97cc01d"
185
+ dependencies = [
186
+ "cc",
187
+ "tree-sitter",
188
+ "tree-sitter-language",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "bitflags"
193
+ version = "2.10.0"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
196
+
197
+ [[package]]
198
+ name = "bitvec"
199
+ version = "1.0.1"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
202
+ dependencies = [
203
+ "funty",
204
+ "radium",
205
+ "tap",
206
+ "wyz",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "borsh"
211
+ version = "1.6.0"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
214
+ dependencies = [
215
+ "borsh-derive",
216
+ "cfg_aliases",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "borsh-derive"
221
+ version = "1.6.0"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c"
224
+ dependencies = [
225
+ "once_cell",
226
+ "proc-macro-crate",
227
+ "proc-macro2",
228
+ "quote",
229
+ "syn 2.0.114",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "bstr"
234
+ version = "1.12.1"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
237
+ dependencies = [
238
+ "memchr",
239
+ "regex-automata",
240
+ "serde",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "bumpalo"
245
+ version = "3.19.1"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
248
+ dependencies = [
249
+ "allocator-api2",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "bytecheck"
254
+ version = "0.6.12"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
257
+ dependencies = [
258
+ "bytecheck_derive",
259
+ "ptr_meta",
260
+ "simdutf8",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "bytecheck_derive"
265
+ version = "0.6.12"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
268
+ dependencies = [
269
+ "proc-macro2",
270
+ "quote",
271
+ "syn 1.0.109",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "bytes"
276
+ version = "1.11.0"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
279
+
280
+ [[package]]
281
+ name = "cc"
282
+ version = "1.2.54"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "6354c81bbfd62d9cfa9cb3c773c2b7b2a3a482d569de977fd0e961f6e7c00583"
285
+ dependencies = [
286
+ "find-msvc-tools",
287
+ "shlex",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "cfg-if"
292
+ version = "1.0.4"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
295
+
296
+ [[package]]
297
+ name = "cfg_aliases"
298
+ version = "0.2.1"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
301
+
302
+ [[package]]
303
+ name = "chrono"
304
+ version = "0.4.43"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
307
+ dependencies = [
308
+ "num-traits",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "clap"
313
+ version = "4.5.54"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
316
+ dependencies = [
317
+ "clap_builder",
318
+ "clap_derive",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "clap_builder"
323
+ version = "4.5.54"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
326
+ dependencies = [
327
+ "anstream",
328
+ "anstyle",
329
+ "clap_lex",
330
+ "strsim",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "clap_derive"
335
+ version = "4.5.49"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
338
+ dependencies = [
339
+ "heck",
340
+ "proc-macro2",
341
+ "quote",
342
+ "syn 2.0.114",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "clap_lex"
347
+ version = "0.7.7"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
350
+
351
+ [[package]]
352
+ name = "colorchoice"
353
+ version = "1.0.4"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
356
+
357
+ [[package]]
358
+ name = "crossbeam-deque"
359
+ version = "0.8.6"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
362
+ dependencies = [
363
+ "crossbeam-epoch",
364
+ "crossbeam-utils",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "crossbeam-epoch"
369
+ version = "0.9.18"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
372
+ dependencies = [
373
+ "crossbeam-utils",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "crossbeam-utils"
378
+ version = "0.8.21"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
381
+
382
+ [[package]]
383
+ name = "difflib"
384
+ version = "0.4.0"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
387
+
388
+ [[package]]
389
+ name = "dlmalloc"
390
+ version = "0.2.12"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "6738d2e996274e499bc7b0d693c858b7720b9cd2543a0643a3087e6cb0a4fa16"
393
+ dependencies = [
394
+ "cfg-if",
395
+ "libc",
396
+ "windows-sys",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "doc-comment"
401
+ version = "0.3.4"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "780955b8b195a21ab8e4ac6b60dd1dbdcec1dc6c51c0617964b08c81785e12c9"
404
+
405
+ [[package]]
406
+ name = "dprint-core"
407
+ version = "0.67.4"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "2c1d827947704a9495f705d6aeed270fa21a67f825f22902c28f38dc3af7a9ae"
410
+ dependencies = [
411
+ "anyhow",
412
+ "bumpalo",
413
+ "hashbrown 0.15.5",
414
+ "indexmap",
415
+ "rustc-hash",
416
+ "serde",
417
+ "serde_json",
418
+ "unicode-width",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "dprint-plugin-beancount"
423
+ version = "0.1.16"
424
+ dependencies = [
425
+ "anyhow",
426
+ "beancount-formatter",
427
+ "dlmalloc",
428
+ "dprint-core",
429
+ "serde_json",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "equivalent"
434
+ version = "1.0.2"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
437
+
438
+ [[package]]
439
+ name = "errno"
440
+ version = "0.3.14"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
443
+ dependencies = [
444
+ "libc",
445
+ "windows-sys",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "fastrand"
450
+ version = "2.3.0"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
453
+
454
+ [[package]]
455
+ name = "find-msvc-tools"
456
+ version = "0.1.8"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
459
+
460
+ [[package]]
461
+ name = "float-cmp"
462
+ version = "0.10.0"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
465
+ dependencies = [
466
+ "num-traits",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "foldhash"
471
+ version = "0.1.5"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
474
+
475
+ [[package]]
476
+ name = "funty"
477
+ version = "2.0.0"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
480
+
481
+ [[package]]
482
+ name = "getrandom"
483
+ version = "0.2.17"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
486
+ dependencies = [
487
+ "cfg-if",
488
+ "libc",
489
+ "wasi",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "getrandom"
494
+ version = "0.3.4"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
497
+ dependencies = [
498
+ "cfg-if",
499
+ "libc",
500
+ "r-efi",
501
+ "wasip2",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "globset"
506
+ version = "0.4.18"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
509
+ dependencies = [
510
+ "aho-corasick",
511
+ "bstr",
512
+ "log",
513
+ "regex-automata",
514
+ "regex-syntax",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "globwalk"
519
+ version = "0.9.1"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
522
+ dependencies = [
523
+ "bitflags",
524
+ "ignore",
525
+ "walkdir",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "hashbrown"
530
+ version = "0.12.3"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
533
+ dependencies = [
534
+ "ahash",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "hashbrown"
539
+ version = "0.15.5"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
542
+ dependencies = [
543
+ "allocator-api2",
544
+ "equivalent",
545
+ "foldhash",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "hashbrown"
550
+ version = "0.16.1"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
553
+
554
+ [[package]]
555
+ name = "heck"
556
+ version = "0.5.0"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
559
+
560
+ [[package]]
561
+ name = "ignore"
562
+ version = "0.4.25"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
565
+ dependencies = [
566
+ "crossbeam-deque",
567
+ "globset",
568
+ "log",
569
+ "memchr",
570
+ "regex-automata",
571
+ "same-file",
572
+ "walkdir",
573
+ "winapi-util",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "indexmap"
578
+ version = "2.13.0"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
581
+ dependencies = [
582
+ "equivalent",
583
+ "hashbrown 0.16.1",
584
+ "serde",
585
+ "serde_core",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "indoc"
590
+ version = "2.0.7"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
593
+ dependencies = [
594
+ "rustversion",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "is_terminal_polyfill"
599
+ version = "1.70.2"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
602
+
603
+ [[package]]
604
+ name = "itoa"
605
+ version = "1.0.17"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
608
+
609
+ [[package]]
610
+ name = "js-sys"
611
+ version = "0.3.85"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
614
+ dependencies = [
615
+ "once_cell",
616
+ "wasm-bindgen",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "libc"
621
+ version = "0.2.180"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
624
+
625
+ [[package]]
626
+ name = "linux-raw-sys"
627
+ version = "0.11.0"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
630
+
631
+ [[package]]
632
+ name = "log"
633
+ version = "0.4.29"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
636
+
637
+ [[package]]
638
+ name = "memchr"
639
+ version = "2.7.6"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
642
+
643
+ [[package]]
644
+ name = "memoffset"
645
+ version = "0.9.1"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
648
+ dependencies = [
649
+ "autocfg",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "normalize-line-endings"
654
+ version = "0.3.0"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
657
+
658
+ [[package]]
659
+ name = "num-traits"
660
+ version = "0.2.19"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
663
+ dependencies = [
664
+ "autocfg",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "once_cell"
669
+ version = "1.21.3"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
672
+
673
+ [[package]]
674
+ name = "once_cell_polyfill"
675
+ version = "1.70.2"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
678
+
679
+ [[package]]
680
+ name = "path-clean"
681
+ version = "1.0.1"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "17359afc20d7ab31fdb42bb844c8b3bb1dabd7dcf7e68428492da7f16966fcef"
684
+
685
+ [[package]]
686
+ name = "portable-atomic"
687
+ version = "1.13.0"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
690
+
691
+ [[package]]
692
+ name = "ppv-lite86"
693
+ version = "0.2.21"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
696
+ dependencies = [
697
+ "zerocopy",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "predicates"
702
+ version = "3.1.3"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
705
+ dependencies = [
706
+ "anstyle",
707
+ "difflib",
708
+ "float-cmp",
709
+ "normalize-line-endings",
710
+ "predicates-core",
711
+ "regex",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "predicates-core"
716
+ version = "1.0.9"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
719
+
720
+ [[package]]
721
+ name = "predicates-tree"
722
+ version = "1.0.12"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
725
+ dependencies = [
726
+ "predicates-core",
727
+ "termtree",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "proc-macro-crate"
732
+ version = "3.4.0"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
735
+ dependencies = [
736
+ "toml_edit",
737
+ ]
738
+
739
+ [[package]]
740
+ name = "proc-macro2"
741
+ version = "1.0.106"
742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
743
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
744
+ dependencies = [
745
+ "unicode-ident",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "ptr_meta"
750
+ version = "0.1.4"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
753
+ dependencies = [
754
+ "ptr_meta_derive",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "ptr_meta_derive"
759
+ version = "0.1.4"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
762
+ dependencies = [
763
+ "proc-macro2",
764
+ "quote",
765
+ "syn 1.0.109",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "pyo3"
770
+ version = "0.27.2"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
773
+ dependencies = [
774
+ "indoc",
775
+ "libc",
776
+ "memoffset",
777
+ "once_cell",
778
+ "portable-atomic",
779
+ "pyo3-build-config",
780
+ "pyo3-ffi",
781
+ "pyo3-macros",
782
+ "unindent",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "pyo3-build-config"
787
+ version = "0.27.2"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
790
+ dependencies = [
791
+ "target-lexicon",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "pyo3-ffi"
796
+ version = "0.27.2"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
799
+ dependencies = [
800
+ "libc",
801
+ "pyo3-build-config",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "pyo3-macros"
806
+ version = "0.27.2"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
809
+ dependencies = [
810
+ "proc-macro2",
811
+ "pyo3-macros-backend",
812
+ "quote",
813
+ "syn 2.0.114",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "pyo3-macros-backend"
818
+ version = "0.27.2"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
821
+ dependencies = [
822
+ "heck",
823
+ "proc-macro2",
824
+ "pyo3-build-config",
825
+ "quote",
826
+ "syn 2.0.114",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "quote"
831
+ version = "1.0.44"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
834
+ dependencies = [
835
+ "proc-macro2",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "r-efi"
840
+ version = "5.3.0"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
843
+
844
+ [[package]]
845
+ name = "radium"
846
+ version = "0.7.0"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
849
+
850
+ [[package]]
851
+ name = "rand"
852
+ version = "0.8.5"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
855
+ dependencies = [
856
+ "libc",
857
+ "rand_chacha",
858
+ "rand_core",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "rand_chacha"
863
+ version = "0.3.1"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
866
+ dependencies = [
867
+ "ppv-lite86",
868
+ "rand_core",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "rand_core"
873
+ version = "0.6.4"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
876
+ dependencies = [
877
+ "getrandom 0.2.17",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "regex"
882
+ version = "1.12.2"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
885
+ dependencies = [
886
+ "aho-corasick",
887
+ "memchr",
888
+ "regex-automata",
889
+ "regex-syntax",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "regex-automata"
894
+ version = "0.4.13"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
897
+ dependencies = [
898
+ "aho-corasick",
899
+ "memchr",
900
+ "regex-syntax",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "regex-syntax"
905
+ version = "0.8.8"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
908
+
909
+ [[package]]
910
+ name = "rend"
911
+ version = "0.4.2"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
914
+ dependencies = [
915
+ "bytecheck",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "rkyv"
920
+ version = "0.7.46"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
923
+ dependencies = [
924
+ "bitvec",
925
+ "bytecheck",
926
+ "bytes",
927
+ "hashbrown 0.12.3",
928
+ "ptr_meta",
929
+ "rend",
930
+ "rkyv_derive",
931
+ "seahash",
932
+ "tinyvec",
933
+ "uuid",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "rkyv_derive"
938
+ version = "0.7.46"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
941
+ dependencies = [
942
+ "proc-macro2",
943
+ "quote",
944
+ "syn 1.0.109",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "ropey"
949
+ version = "1.6.1"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "93411e420bcd1a75ddd1dc3caf18c23155eda2c090631a85af21ba19e97093b5"
952
+ dependencies = [
953
+ "smallvec",
954
+ "str_indices",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "rust_decimal"
959
+ version = "1.40.0"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0"
962
+ dependencies = [
963
+ "arrayvec",
964
+ "borsh",
965
+ "bytes",
966
+ "num-traits",
967
+ "rand",
968
+ "rkyv",
969
+ "serde",
970
+ "serde_json",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "rustc-hash"
975
+ version = "2.1.1"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
978
+
979
+ [[package]]
980
+ name = "rustix"
981
+ version = "1.1.3"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
984
+ dependencies = [
985
+ "bitflags",
986
+ "errno",
987
+ "libc",
988
+ "linux-raw-sys",
989
+ "windows-sys",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "rustversion"
994
+ version = "1.0.22"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
997
+
998
+ [[package]]
999
+ name = "same-file"
1000
+ version = "1.0.6"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1003
+ dependencies = [
1004
+ "winapi-util",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "seahash"
1009
+ version = "4.1.0"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1012
+
1013
+ [[package]]
1014
+ name = "serde"
1015
+ version = "1.0.228"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1018
+ dependencies = [
1019
+ "serde_core",
1020
+ "serde_derive",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "serde_core"
1025
+ version = "1.0.228"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1028
+ dependencies = [
1029
+ "serde_derive",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "serde_derive"
1034
+ version = "1.0.228"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1037
+ dependencies = [
1038
+ "proc-macro2",
1039
+ "quote",
1040
+ "syn 2.0.114",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "serde_json"
1045
+ version = "1.0.149"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1048
+ dependencies = [
1049
+ "indexmap",
1050
+ "itoa",
1051
+ "memchr",
1052
+ "serde",
1053
+ "serde_core",
1054
+ "zmij",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "serde_spanned"
1059
+ version = "1.0.4"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
1062
+ dependencies = [
1063
+ "serde_core",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "shlex"
1068
+ version = "1.3.0"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1071
+
1072
+ [[package]]
1073
+ name = "simdutf8"
1074
+ version = "0.1.5"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1077
+
1078
+ [[package]]
1079
+ name = "similar"
1080
+ version = "2.7.0"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1083
+ dependencies = [
1084
+ "bstr",
1085
+ "unicode-segmentation",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "smallvec"
1090
+ version = "1.15.1"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1093
+
1094
+ [[package]]
1095
+ name = "str_indices"
1096
+ version = "0.4.4"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "d08889ec5408683408db66ad89e0e1f93dff55c73a4ccc71c427d5b277ee47e6"
1099
+
1100
+ [[package]]
1101
+ name = "streaming-iterator"
1102
+ version = "0.1.9"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
1105
+
1106
+ [[package]]
1107
+ name = "strsim"
1108
+ version = "0.11.1"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1111
+
1112
+ [[package]]
1113
+ name = "syn"
1114
+ version = "1.0.109"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1117
+ dependencies = [
1118
+ "proc-macro2",
1119
+ "quote",
1120
+ "unicode-ident",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "syn"
1125
+ version = "2.0.114"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
1128
+ dependencies = [
1129
+ "proc-macro2",
1130
+ "quote",
1131
+ "unicode-ident",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "tap"
1136
+ version = "1.0.1"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1139
+
1140
+ [[package]]
1141
+ name = "target-lexicon"
1142
+ version = "0.13.4"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
1145
+
1146
+ [[package]]
1147
+ name = "tempfile"
1148
+ version = "3.24.0"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
1151
+ dependencies = [
1152
+ "fastrand",
1153
+ "getrandom 0.3.4",
1154
+ "once_cell",
1155
+ "rustix",
1156
+ "windows-sys",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "termtree"
1161
+ version = "0.5.1"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1164
+
1165
+ [[package]]
1166
+ name = "tinyvec"
1167
+ version = "1.10.0"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
1170
+ dependencies = [
1171
+ "tinyvec_macros",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "tinyvec_macros"
1176
+ version = "0.1.1"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1179
+
1180
+ [[package]]
1181
+ name = "toml"
1182
+ version = "0.9.11+spec-1.1.0"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46"
1185
+ dependencies = [
1186
+ "indexmap",
1187
+ "serde_core",
1188
+ "serde_spanned",
1189
+ "toml_datetime",
1190
+ "toml_parser",
1191
+ "toml_writer",
1192
+ "winnow",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "toml_datetime"
1197
+ version = "0.7.5+spec-1.1.0"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
1200
+ dependencies = [
1201
+ "serde_core",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "toml_edit"
1206
+ version = "0.23.10+spec-1.0.0"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
1209
+ dependencies = [
1210
+ "indexmap",
1211
+ "toml_datetime",
1212
+ "toml_parser",
1213
+ "winnow",
1214
+ ]
1215
+
1216
+ [[package]]
1217
+ name = "toml_parser"
1218
+ version = "1.0.6+spec-1.1.0"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
1221
+ dependencies = [
1222
+ "winnow",
1223
+ ]
1224
+
1225
+ [[package]]
1226
+ name = "toml_writer"
1227
+ version = "1.0.6+spec-1.1.0"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
1230
+
1231
+ [[package]]
1232
+ name = "tree-sitter"
1233
+ version = "0.26.3"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "974d205cc395652cfa8b37daa053fe56eebd429acf8dc055503fee648dae981e"
1236
+ dependencies = [
1237
+ "cc",
1238
+ "regex",
1239
+ "regex-syntax",
1240
+ "serde_json",
1241
+ "streaming-iterator",
1242
+ "tree-sitter-language",
1243
+ ]
1244
+
1245
+ [[package]]
1246
+ name = "tree-sitter-language"
1247
+ version = "0.1.7"
1248
+ source = "git+https://github.com/trim21/tree-sitter.git?rev=b714e2a7c01e8d5abab526f23e40b77c33babcb4#b714e2a7c01e8d5abab526f23e40b77c33babcb4"
1249
+
1250
+ [[package]]
1251
+ name = "unicode-ident"
1252
+ version = "1.0.22"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1255
+
1256
+ [[package]]
1257
+ name = "unicode-segmentation"
1258
+ version = "1.12.0"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1261
+
1262
+ [[package]]
1263
+ name = "unicode-width"
1264
+ version = "0.2.2"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1267
+
1268
+ [[package]]
1269
+ name = "unindent"
1270
+ version = "0.2.4"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1273
+
1274
+ [[package]]
1275
+ name = "utf8parse"
1276
+ version = "0.2.2"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1279
+
1280
+ [[package]]
1281
+ name = "uuid"
1282
+ version = "1.20.0"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
1285
+ dependencies = [
1286
+ "js-sys",
1287
+ "wasm-bindgen",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "version_check"
1292
+ version = "0.9.5"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1295
+
1296
+ [[package]]
1297
+ name = "wait-timeout"
1298
+ version = "0.2.1"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1301
+ dependencies = [
1302
+ "libc",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "walkdir"
1307
+ version = "2.5.0"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1310
+ dependencies = [
1311
+ "same-file",
1312
+ "winapi-util",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "wasi"
1317
+ version = "0.11.1+wasi-snapshot-preview1"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1320
+
1321
+ [[package]]
1322
+ name = "wasip2"
1323
+ version = "1.0.2+wasi-0.2.9"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1326
+ dependencies = [
1327
+ "wit-bindgen",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "wasm-bindgen"
1332
+ version = "0.2.108"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
1335
+ dependencies = [
1336
+ "cfg-if",
1337
+ "once_cell",
1338
+ "rustversion",
1339
+ "wasm-bindgen-macro",
1340
+ "wasm-bindgen-shared",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "wasm-bindgen-macro"
1345
+ version = "0.2.108"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
1348
+ dependencies = [
1349
+ "quote",
1350
+ "wasm-bindgen-macro-support",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "wasm-bindgen-macro-support"
1355
+ version = "0.2.108"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
1358
+ dependencies = [
1359
+ "bumpalo",
1360
+ "proc-macro2",
1361
+ "quote",
1362
+ "syn 2.0.114",
1363
+ "wasm-bindgen-shared",
1364
+ ]
1365
+
1366
+ [[package]]
1367
+ name = "wasm-bindgen-shared"
1368
+ version = "0.2.108"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
1371
+ dependencies = [
1372
+ "unicode-ident",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "winapi-util"
1377
+ version = "0.1.11"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1380
+ dependencies = [
1381
+ "windows-sys",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "windows-link"
1386
+ version = "0.2.1"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1389
+
1390
+ [[package]]
1391
+ name = "windows-sys"
1392
+ version = "0.61.2"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1395
+ dependencies = [
1396
+ "windows-link",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "winnow"
1401
+ version = "0.7.14"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
1404
+ dependencies = [
1405
+ "memchr",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "wit-bindgen"
1410
+ version = "0.51.0"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1413
+
1414
+ [[package]]
1415
+ name = "wyz"
1416
+ version = "0.5.1"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
1419
+ dependencies = [
1420
+ "tap",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "zerocopy"
1425
+ version = "0.8.34"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "71ddd76bcebeed25db614f82bf31a9f4222d3fbba300e6fb6c00afa26cbd4d9d"
1428
+ dependencies = [
1429
+ "zerocopy-derive",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "zerocopy-derive"
1434
+ version = "0.8.34"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "d8187381b52e32220d50b255276aa16a084ec0a9017a0ca2152a1f55c539758d"
1437
+ dependencies = [
1438
+ "proc-macro2",
1439
+ "quote",
1440
+ "syn 2.0.114",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "zmij"
1445
+ version = "1.0.17"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439"