chordsketch 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. chordsketch-0.2.0/Cargo.lock +1691 -0
  2. chordsketch-0.2.0/Cargo.toml +13 -0
  3. chordsketch-0.2.0/PKG-INFO +24 -0
  4. chordsketch-0.2.0/chordsketch/__init__.py +19 -0
  5. chordsketch-0.2.0/chordsketch/py.typed +0 -0
  6. chordsketch-0.2.0/crates/core/Cargo.toml +18 -0
  7. chordsketch-0.2.0/crates/core/README.md +34 -0
  8. chordsketch-0.2.0/crates/core/examples/multi_song.rs +31 -0
  9. chordsketch-0.2.0/crates/core/examples/parse_song.rs +23 -0
  10. chordsketch-0.2.0/crates/core/examples/transpose.rs +39 -0
  11. chordsketch-0.2.0/crates/core/src/ast.rs +3593 -0
  12. chordsketch-0.2.0/crates/core/src/chord.rs +845 -0
  13. chordsketch-0.2.0/crates/core/src/chord_diagram.rs +1063 -0
  14. chordsketch-0.2.0/crates/core/src/config.rs +1853 -0
  15. chordsketch-0.2.0/crates/core/src/escape.rs +74 -0
  16. chordsketch-0.2.0/crates/core/src/external_tool.rs +668 -0
  17. chordsketch-0.2.0/crates/core/src/image_path.rs +118 -0
  18. chordsketch-0.2.0/crates/core/src/inline_markup.rs +998 -0
  19. chordsketch-0.2.0/crates/core/src/lexer.rs +669 -0
  20. chordsketch-0.2.0/crates/core/src/lib.rs +58 -0
  21. chordsketch-0.2.0/crates/core/src/parser.rs +3985 -0
  22. chordsketch-0.2.0/crates/core/src/render_result.rs +64 -0
  23. chordsketch-0.2.0/crates/core/src/rrjson.rs +1954 -0
  24. chordsketch-0.2.0/crates/core/src/selector.rs +495 -0
  25. chordsketch-0.2.0/crates/core/src/token.rs +132 -0
  26. chordsketch-0.2.0/crates/core/src/transpose.rs +453 -0
  27. chordsketch-0.2.0/crates/core/tests/chord_notation_golden.rs +170 -0
  28. chordsketch-0.2.0/crates/core/tests/error_fixtures/empty-directive/expected_error.txt +1 -0
  29. chordsketch-0.2.0/crates/core/tests/error_fixtures/empty-directive/input.cho +1 -0
  30. chordsketch-0.2.0/crates/core/tests/error_fixtures/unclosed-chord/expected_error.txt +1 -0
  31. chordsketch-0.2.0/crates/core/tests/error_fixtures/unclosed-chord/input.cho +2 -0
  32. chordsketch-0.2.0/crates/core/tests/error_fixtures/unclosed-directive/expected_error.txt +1 -0
  33. chordsketch-0.2.0/crates/core/tests/error_fixtures/unclosed-directive/input.cho +2 -0
  34. chordsketch-0.2.0/crates/core/tests/fixtures/chord_notation.cho +8 -0
  35. chordsketch-0.2.0/crates/core/tests/fixtures/chords-in-lyrics/expected.txt +125 -0
  36. chordsketch-0.2.0/crates/core/tests/fixtures/chords-in-lyrics/input.cho +4 -0
  37. chordsketch-0.2.0/crates/core/tests/fixtures/chorus-recall/expected.txt +203 -0
  38. chordsketch-0.2.0/crates/core/tests/fixtures/chorus-recall/input.cho +17 -0
  39. chordsketch-0.2.0/crates/core/tests/fixtures/config-override/expected.txt +104 -0
  40. chordsketch-0.2.0/crates/core/tests/fixtures/config-override/input.cho +4 -0
  41. chordsketch-0.2.0/crates/core/tests/fixtures/custom-sections/expected.txt +183 -0
  42. chordsketch-0.2.0/crates/core/tests/fixtures/custom-sections/input.cho +13 -0
  43. chordsketch-0.2.0/crates/core/tests/fixtures/define-chord-directives/expected.txt +121 -0
  44. chordsketch-0.2.0/crates/core/tests/fixtures/define-chord-directives/input.cho +4 -0
  45. chordsketch-0.2.0/crates/core/tests/fixtures/define-copy-display/expected.txt +114 -0
  46. chordsketch-0.2.0/crates/core/tests/fixtures/define-copy-display/input.cho +5 -0
  47. chordsketch-0.2.0/crates/core/tests/fixtures/define-copyall-fingers/expected.txt +102 -0
  48. chordsketch-0.2.0/crates/core/tests/fixtures/define-copyall-fingers/input.cho +4 -0
  49. chordsketch-0.2.0/crates/core/tests/fixtures/define-display-keys/expected.txt +104 -0
  50. chordsketch-0.2.0/crates/core/tests/fixtures/define-display-keys/input.cho +4 -0
  51. chordsketch-0.2.0/crates/core/tests/fixtures/delegate-environments/expected.txt +212 -0
  52. chordsketch-0.2.0/crates/core/tests/fixtures/delegate-environments/input.cho +18 -0
  53. chordsketch-0.2.0/crates/core/tests/fixtures/diagrams-directive/expected.txt +125 -0
  54. chordsketch-0.2.0/crates/core/tests/fixtures/diagrams-directive/input.cho +5 -0
  55. chordsketch-0.2.0/crates/core/tests/fixtures/directives/expected.txt +52 -0
  56. chordsketch-0.2.0/crates/core/tests/fixtures/directives/input.cho +3 -0
  57. chordsketch-0.2.0/crates/core/tests/fixtures/font-size-color-directives/expected.txt +126 -0
  58. chordsketch-0.2.0/crates/core/tests/fixtures/font-size-color-directives/input.cho +10 -0
  59. chordsketch-0.2.0/crates/core/tests/fixtures/formatting-directives/expected.txt +246 -0
  60. chordsketch-0.2.0/crates/core/tests/fixtures/formatting-directives/input.cho +22 -0
  61. chordsketch-0.2.0/crates/core/tests/fixtures/grid-verbatim/expected.txt +87 -0
  62. chordsketch-0.2.0/crates/core/tests/fixtures/grid-verbatim/input.cho +5 -0
  63. chordsketch-0.2.0/crates/core/tests/fixtures/image-directive/expected.txt +124 -0
  64. chordsketch-0.2.0/crates/core/tests/fixtures/image-directive/input.cho +5 -0
  65. chordsketch-0.2.0/crates/core/tests/fixtures/inline-markup/expected.txt +347 -0
  66. chordsketch-0.2.0/crates/core/tests/fixtures/inline-markup/input.cho +12 -0
  67. chordsketch-0.2.0/crates/core/tests/fixtures/meta-directive/expected.txt +256 -0
  68. chordsketch-0.2.0/crates/core/tests/fixtures/meta-directive/input.cho +16 -0
  69. chordsketch-0.2.0/crates/core/tests/fixtures/metadata-extended/expected.txt +142 -0
  70. chordsketch-0.2.0/crates/core/tests/fixtures/metadata-extended/input.cho +10 -0
  71. chordsketch-0.2.0/crates/core/tests/fixtures/minimal-song/expected.txt +47 -0
  72. chordsketch-0.2.0/crates/core/tests/fixtures/minimal-song/input.cho +2 -0
  73. chordsketch-0.2.0/crates/core/tests/fixtures/multi-song/expected.txt +297 -0
  74. chordsketch-0.2.0/crates/core/tests/fixtures/multi-song/expected_multi.txt +320 -0
  75. chordsketch-0.2.0/crates/core/tests/fixtures/multi-song/input.cho +13 -0
  76. chordsketch-0.2.0/crates/core/tests/fixtures/page-control-directives/expected.txt +204 -0
  77. chordsketch-0.2.0/crates/core/tests/fixtures/page-control-directives/input.cho +13 -0
  78. chordsketch-0.2.0/crates/core/tests/fixtures/selector-suffix/expected.txt +153 -0
  79. chordsketch-0.2.0/crates/core/tests/fixtures/selector-suffix/input.cho +10 -0
  80. chordsketch-0.2.0/crates/core/tests/fixtures/short_aliases.cho +20 -0
  81. chordsketch-0.2.0/crates/core/tests/fixtures/standard_directives.cho +23 -0
  82. chordsketch-0.2.0/crates/core/tests/fixtures/tab-verbatim/expected.txt +98 -0
  83. chordsketch-0.2.0/crates/core/tests/fixtures/tab-verbatim/input.cho +6 -0
  84. chordsketch-0.2.0/crates/core/tests/fixtures/transpose-directive/expected.txt +198 -0
  85. chordsketch-0.2.0/crates/core/tests/fixtures/transpose-directive/input.cho +7 -0
  86. chordsketch-0.2.0/crates/core/tests/golden.rs +216 -0
  87. chordsketch-0.2.0/crates/core/tests/golden_directives.rs +594 -0
  88. chordsketch-0.2.0/crates/core/tests/golden_errors.rs +155 -0
  89. chordsketch-0.2.0/crates/core/tests/golden_meta.rs +157 -0
  90. chordsketch-0.2.0/crates/core/tests/golden_multi_song.rs +52 -0
  91. chordsketch-0.2.0/crates/ffi/Cargo.toml +32 -0
  92. chordsketch-0.2.0/crates/ffi/build.rs +4 -0
  93. chordsketch-0.2.0/crates/ffi/src/bin/uniffi-bindgen.rs +3 -0
  94. chordsketch-0.2.0/crates/ffi/src/chordsketch.udl +45 -0
  95. chordsketch-0.2.0/crates/ffi/src/lib.rs +280 -0
  96. chordsketch-0.2.0/crates/render-html/Cargo.toml +16 -0
  97. chordsketch-0.2.0/crates/render-html/README.md +36 -0
  98. chordsketch-0.2.0/crates/render-html/src/lib.rs +3257 -0
  99. chordsketch-0.2.0/crates/render-html/tests/fixtures/image-directive/expected.html +36 -0
  100. chordsketch-0.2.0/crates/render-html/tests/fixtures/image-directive/input.cho +6 -0
  101. chordsketch-0.2.0/crates/render-html/tests/fixtures/svg-section/expected.html +39 -0
  102. chordsketch-0.2.0/crates/render-html/tests/fixtures/svg-section/input.cho +7 -0
  103. chordsketch-0.2.0/crates/render-html/tests/golden_image.rs +21 -0
  104. chordsketch-0.2.0/crates/render-html/tests/golden_svg_section.rs +22 -0
  105. chordsketch-0.2.0/crates/render-pdf/Cargo.toml +25 -0
  106. chordsketch-0.2.0/crates/render-pdf/README.md +37 -0
  107. chordsketch-0.2.0/crates/render-pdf/src/lib.rs +4989 -0
  108. chordsketch-0.2.0/crates/render-text/Cargo.toml +17 -0
  109. chordsketch-0.2.0/crates/render-text/README.md +34 -0
  110. chordsketch-0.2.0/crates/render-text/examples/render_text.rs +20 -0
  111. chordsketch-0.2.0/crates/render-text/src/lib.rs +1162 -0
  112. chordsketch-0.2.0/crates/render-text/tests/fixtures/chord-alignment/expected.txt +6 -0
  113. chordsketch-0.2.0/crates/render-text/tests/fixtures/chord-alignment/input.cho +3 -0
  114. chordsketch-0.2.0/crates/render-text/tests/fixtures/chords-over-lyrics/expected.txt +4 -0
  115. chordsketch-0.2.0/crates/render-text/tests/fixtures/chords-over-lyrics/input.cho +2 -0
  116. chordsketch-0.2.0/crates/render-text/tests/fixtures/comments/expected.txt +3 -0
  117. chordsketch-0.2.0/crates/render-text/tests/fixtures/comments/input.cho +3 -0
  118. chordsketch-0.2.0/crates/render-text/tests/fixtures/define-display/expected.txt +3 -0
  119. chordsketch-0.2.0/crates/render-text/tests/fixtures/define-display/input.cho +3 -0
  120. chordsketch-0.2.0/crates/render-text/tests/fixtures/define-display-transposed/expected.txt +3 -0
  121. chordsketch-0.2.0/crates/render-text/tests/fixtures/define-display-transposed/input.cho +4 -0
  122. chordsketch-0.2.0/crates/render-text/tests/fixtures/directives-and-sections/expected.txt +16 -0
  123. chordsketch-0.2.0/crates/render-text/tests/fixtures/directives-and-sections/input.cho +18 -0
  124. chordsketch-0.2.0/crates/render-text/tests/fixtures/empty-lines/expected.txt +5 -0
  125. chordsketch-0.2.0/crates/render-text/tests/fixtures/empty-lines/input.cho +5 -0
  126. chordsketch-0.2.0/crates/render-text/tests/fixtures/full-song/expected.txt +20 -0
  127. chordsketch-0.2.0/crates/render-text/tests/fixtures/full-song/input.cho +20 -0
  128. chordsketch-0.2.0/crates/render-text/tests/fixtures/metadata-header/expected.txt +5 -0
  129. chordsketch-0.2.0/crates/render-text/tests/fixtures/metadata-header/input.cho +7 -0
  130. chordsketch-0.2.0/crates/render-text/tests/fixtures/minimal-song/expected.txt +3 -0
  131. chordsketch-0.2.0/crates/render-text/tests/fixtures/minimal-song/input.cho +3 -0
  132. chordsketch-0.2.0/crates/render-text/tests/fixtures/text-before-chord/expected.txt +4 -0
  133. chordsketch-0.2.0/crates/render-text/tests/fixtures/text-before-chord/input.cho +2 -0
  134. chordsketch-0.2.0/crates/render-text/tests/fixtures/unicode-lyrics/expected.txt +4 -0
  135. chordsketch-0.2.0/crates/render-text/tests/fixtures/unicode-lyrics/input.cho +2 -0
  136. chordsketch-0.2.0/crates/render-text/tests/golden.rs +203 -0
  137. chordsketch-0.2.0/pyproject.toml +36 -0
@@ -0,0 +1,1691 @@
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 = "anstream"
22
+ version = "1.0.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anyhow"
72
+ version = "1.0.102"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
75
+
76
+ [[package]]
77
+ name = "askama"
78
+ version = "0.14.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "f75363874b771be265f4ffe307ca705ef6f3baa19011c149da8674a87f1b75c4"
81
+ dependencies = [
82
+ "askama_derive",
83
+ "itoa",
84
+ "percent-encoding",
85
+ "serde",
86
+ "serde_json",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "askama_derive"
91
+ version = "0.14.0"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "129397200fe83088e8a68407a8e2b1f826cf0086b21ccdb866a722c8bcd3a94f"
94
+ dependencies = [
95
+ "askama_parser",
96
+ "basic-toml",
97
+ "memchr",
98
+ "proc-macro2",
99
+ "quote",
100
+ "rustc-hash",
101
+ "serde",
102
+ "serde_derive",
103
+ "syn",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "askama_parser"
108
+ version = "0.14.0"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "d6ab5630b3d5eaf232620167977f95eb51f3432fc76852328774afbd242d4358"
111
+ dependencies = [
112
+ "memchr",
113
+ "serde",
114
+ "serde_derive",
115
+ "winnow 0.7.15",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "assert_cmd"
120
+ version = "2.2.0"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "9a686bbee5efb88a82df0621b236e74d925f470e5445d3220a5648b892ec99c9"
123
+ dependencies = [
124
+ "anstyle",
125
+ "bstr",
126
+ "libc",
127
+ "predicates",
128
+ "predicates-core",
129
+ "predicates-tree",
130
+ "wait-timeout",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "async-trait"
135
+ version = "0.1.89"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
138
+ dependencies = [
139
+ "proc-macro2",
140
+ "quote",
141
+ "syn",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "autocfg"
146
+ version = "1.5.0"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
149
+
150
+ [[package]]
151
+ name = "basic-toml"
152
+ version = "0.1.10"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "ba62675e8242a4c4e806d12f11d136e626e6c8361d6b829310732241652a178a"
155
+ dependencies = [
156
+ "serde",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "bitflags"
161
+ version = "2.11.0"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
164
+
165
+ [[package]]
166
+ name = "bstr"
167
+ version = "1.12.1"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
170
+ dependencies = [
171
+ "memchr",
172
+ "regex-automata",
173
+ "serde",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "bumpalo"
178
+ version = "3.20.2"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
181
+
182
+ [[package]]
183
+ name = "bytes"
184
+ version = "1.11.1"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
187
+
188
+ [[package]]
189
+ name = "camino"
190
+ version = "1.2.2"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
193
+ dependencies = [
194
+ "serde_core",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "cargo-platform"
199
+ version = "0.1.9"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
202
+ dependencies = [
203
+ "serde",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "cargo_metadata"
208
+ version = "0.19.2"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
211
+ dependencies = [
212
+ "camino",
213
+ "cargo-platform",
214
+ "semver",
215
+ "serde",
216
+ "serde_json",
217
+ "thiserror",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "cast"
222
+ version = "0.3.0"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
225
+
226
+ [[package]]
227
+ name = "cc"
228
+ version = "1.2.59"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
231
+ dependencies = [
232
+ "find-msvc-tools",
233
+ "shlex",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "cfg-if"
238
+ version = "1.0.4"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
241
+
242
+ [[package]]
243
+ name = "chordsketch"
244
+ version = "0.2.0"
245
+ dependencies = [
246
+ "assert_cmd",
247
+ "chordsketch-core",
248
+ "chordsketch-render-html",
249
+ "chordsketch-render-pdf",
250
+ "chordsketch-render-text",
251
+ "clap",
252
+ "clap_complete",
253
+ "predicates",
254
+ "tempfile",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "chordsketch-core"
259
+ version = "0.2.0"
260
+ dependencies = [
261
+ "tempfile",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "chordsketch-ffi"
266
+ version = "0.2.0"
267
+ dependencies = [
268
+ "chordsketch-core",
269
+ "chordsketch-render-html",
270
+ "chordsketch-render-pdf",
271
+ "chordsketch-render-text",
272
+ "thiserror",
273
+ "uniffi",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "chordsketch-napi"
278
+ version = "0.2.0"
279
+ dependencies = [
280
+ "chordsketch-core",
281
+ "chordsketch-render-html",
282
+ "chordsketch-render-pdf",
283
+ "chordsketch-render-text",
284
+ "napi",
285
+ "napi-build",
286
+ "napi-derive",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "chordsketch-render-html"
291
+ version = "0.2.0"
292
+ dependencies = [
293
+ "chordsketch-core",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "chordsketch-render-pdf"
298
+ version = "0.2.0"
299
+ dependencies = [
300
+ "chordsketch-core",
301
+ "flate2",
302
+ "libc",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "chordsketch-render-text"
307
+ version = "0.2.0"
308
+ dependencies = [
309
+ "chordsketch-core",
310
+ "unicode-width",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "chordsketch-wasm"
315
+ version = "0.2.0"
316
+ dependencies = [
317
+ "chordsketch-core",
318
+ "chordsketch-render-html",
319
+ "chordsketch-render-pdf",
320
+ "chordsketch-render-text",
321
+ "console_error_panic_hook",
322
+ "js-sys",
323
+ "serde",
324
+ "serde-wasm-bindgen",
325
+ "wasm-bindgen",
326
+ "wasm-bindgen-test",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "clap"
331
+ version = "4.6.0"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
334
+ dependencies = [
335
+ "clap_builder",
336
+ "clap_derive",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "clap_builder"
341
+ version = "4.6.0"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
344
+ dependencies = [
345
+ "anstream",
346
+ "anstyle",
347
+ "clap_lex",
348
+ "strsim",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "clap_complete"
353
+ version = "4.6.0"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "19c9f1dde76b736e3681f28cec9d5a61299cbaae0fce80a68e43724ad56031eb"
356
+ dependencies = [
357
+ "clap",
358
+ ]
359
+
360
+ [[package]]
361
+ name = "clap_derive"
362
+ version = "4.6.0"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
365
+ dependencies = [
366
+ "heck",
367
+ "proc-macro2",
368
+ "quote",
369
+ "syn",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "clap_lex"
374
+ version = "1.1.0"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
377
+
378
+ [[package]]
379
+ name = "colorchoice"
380
+ version = "1.0.5"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
383
+
384
+ [[package]]
385
+ name = "console_error_panic_hook"
386
+ version = "0.1.7"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
389
+ dependencies = [
390
+ "cfg-if",
391
+ "wasm-bindgen",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "convert_case"
396
+ version = "0.8.0"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
399
+ dependencies = [
400
+ "unicode-segmentation",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "crc32fast"
405
+ version = "1.5.0"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
408
+ dependencies = [
409
+ "cfg-if",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "ctor"
414
+ version = "0.6.3"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e"
417
+ dependencies = [
418
+ "ctor-proc-macro",
419
+ "dtor",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "ctor-proc-macro"
424
+ version = "0.0.7"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
427
+
428
+ [[package]]
429
+ name = "difflib"
430
+ version = "0.4.0"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
433
+
434
+ [[package]]
435
+ name = "dtor"
436
+ version = "0.1.1"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
439
+ dependencies = [
440
+ "dtor-proc-macro",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "dtor-proc-macro"
445
+ version = "0.0.6"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
448
+
449
+ [[package]]
450
+ name = "equivalent"
451
+ version = "1.0.2"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
454
+
455
+ [[package]]
456
+ name = "errno"
457
+ version = "0.3.14"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
460
+ dependencies = [
461
+ "libc",
462
+ "windows-sys",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "fastrand"
467
+ version = "2.4.0"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
470
+
471
+ [[package]]
472
+ name = "find-msvc-tools"
473
+ version = "0.1.9"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
476
+
477
+ [[package]]
478
+ name = "flate2"
479
+ version = "1.1.9"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
482
+ dependencies = [
483
+ "crc32fast",
484
+ "libz-sys",
485
+ "miniz_oxide",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "float-cmp"
490
+ version = "0.10.0"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
493
+ dependencies = [
494
+ "num-traits",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "foldhash"
499
+ version = "0.1.5"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
502
+
503
+ [[package]]
504
+ name = "fs-err"
505
+ version = "2.11.0"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
508
+ dependencies = [
509
+ "autocfg",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "futures-core"
514
+ version = "0.3.32"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
517
+
518
+ [[package]]
519
+ name = "futures-task"
520
+ version = "0.3.32"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
523
+
524
+ [[package]]
525
+ name = "futures-util"
526
+ version = "0.3.32"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
529
+ dependencies = [
530
+ "futures-core",
531
+ "futures-task",
532
+ "pin-project-lite",
533
+ "slab",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "getrandom"
538
+ version = "0.4.2"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
541
+ dependencies = [
542
+ "cfg-if",
543
+ "libc",
544
+ "r-efi",
545
+ "wasip2",
546
+ "wasip3",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "glob"
551
+ version = "0.3.3"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
554
+
555
+ [[package]]
556
+ name = "goblin"
557
+ version = "0.8.2"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47"
560
+ dependencies = [
561
+ "log",
562
+ "plain",
563
+ "scroll",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "hashbrown"
568
+ version = "0.15.5"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
571
+ dependencies = [
572
+ "foldhash",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "hashbrown"
577
+ version = "0.16.1"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
580
+
581
+ [[package]]
582
+ name = "heck"
583
+ version = "0.5.0"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
586
+
587
+ [[package]]
588
+ name = "id-arena"
589
+ version = "2.3.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
592
+
593
+ [[package]]
594
+ name = "indexmap"
595
+ version = "2.13.1"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
598
+ dependencies = [
599
+ "equivalent",
600
+ "hashbrown 0.16.1",
601
+ "serde",
602
+ "serde_core",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "is_terminal_polyfill"
607
+ version = "1.70.2"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
610
+
611
+ [[package]]
612
+ name = "itoa"
613
+ version = "1.0.18"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
616
+
617
+ [[package]]
618
+ name = "js-sys"
619
+ version = "0.3.94"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
622
+ dependencies = [
623
+ "cfg-if",
624
+ "futures-util",
625
+ "once_cell",
626
+ "wasm-bindgen",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "leb128fmt"
631
+ version = "0.1.0"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
634
+
635
+ [[package]]
636
+ name = "libc"
637
+ version = "0.2.184"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
640
+
641
+ [[package]]
642
+ name = "libloading"
643
+ version = "0.8.9"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
646
+ dependencies = [
647
+ "cfg-if",
648
+ "windows-link",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "libm"
653
+ version = "0.2.16"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
656
+
657
+ [[package]]
658
+ name = "libz-sys"
659
+ version = "1.1.28"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "fc3a226e576f50782b3305c5ccf458698f92798987f551c6a02efe8276721e22"
662
+ dependencies = [
663
+ "cc",
664
+ "pkg-config",
665
+ "vcpkg",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "linux-raw-sys"
670
+ version = "0.12.1"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
673
+
674
+ [[package]]
675
+ name = "log"
676
+ version = "0.4.29"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
679
+
680
+ [[package]]
681
+ name = "memchr"
682
+ version = "2.8.0"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
685
+
686
+ [[package]]
687
+ name = "minicov"
688
+ version = "0.3.8"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
691
+ dependencies = [
692
+ "cc",
693
+ "walkdir",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "minimal-lexical"
698
+ version = "0.2.1"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
701
+
702
+ [[package]]
703
+ name = "miniz_oxide"
704
+ version = "0.8.9"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
707
+ dependencies = [
708
+ "adler2",
709
+ "simd-adler32",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "napi"
714
+ version = "3.4.0"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "c3a1135cfe16ca43ac82ac05858554fc39c037d8e4592f2b4a83d7ef8e822f43"
717
+ dependencies = [
718
+ "bitflags",
719
+ "ctor",
720
+ "napi-build",
721
+ "napi-sys",
722
+ "nohash-hasher",
723
+ "rustc-hash",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "napi-build"
728
+ version = "2.2.4"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "3ae82775d1b06f3f07efd0666e59bbc175da8383bc372051031d7a447e94fbea"
731
+
732
+ [[package]]
733
+ name = "napi-derive"
734
+ version = "3.3.0"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "78665d6bdf10e9a4e6b38123efb0f66962e6197c1aea2f07cff3f159a374696d"
737
+ dependencies = [
738
+ "convert_case",
739
+ "ctor",
740
+ "napi-derive-backend",
741
+ "proc-macro2",
742
+ "quote",
743
+ "syn",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "napi-derive-backend"
748
+ version = "3.0.0"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "42d55d01423e7264de3acc13b258fa48ca7cf38a4d25db848908ec3c1304a85a"
751
+ dependencies = [
752
+ "convert_case",
753
+ "proc-macro2",
754
+ "quote",
755
+ "semver",
756
+ "syn",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "napi-sys"
761
+ version = "3.0.1"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "1ed8f0e23a62a3ce0fbb6527cdc056e9282ddd9916b068c46f8923e18eed5ee6"
764
+ dependencies = [
765
+ "libloading",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "nohash-hasher"
770
+ version = "0.2.0"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
773
+
774
+ [[package]]
775
+ name = "nom"
776
+ version = "7.1.3"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
779
+ dependencies = [
780
+ "memchr",
781
+ "minimal-lexical",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "normalize-line-endings"
786
+ version = "0.3.0"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
789
+
790
+ [[package]]
791
+ name = "nu-ansi-term"
792
+ version = "0.50.3"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
795
+ dependencies = [
796
+ "windows-sys",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "num-traits"
801
+ version = "0.2.19"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
804
+ dependencies = [
805
+ "autocfg",
806
+ "libm",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "once_cell"
811
+ version = "1.21.4"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
814
+
815
+ [[package]]
816
+ name = "once_cell_polyfill"
817
+ version = "1.70.2"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
820
+
821
+ [[package]]
822
+ name = "oorandom"
823
+ version = "11.1.5"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
826
+
827
+ [[package]]
828
+ name = "percent-encoding"
829
+ version = "2.3.2"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
832
+
833
+ [[package]]
834
+ name = "pin-project-lite"
835
+ version = "0.2.17"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
838
+
839
+ [[package]]
840
+ name = "pkg-config"
841
+ version = "0.3.32"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
844
+
845
+ [[package]]
846
+ name = "plain"
847
+ version = "0.2.3"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
850
+
851
+ [[package]]
852
+ name = "predicates"
853
+ version = "3.1.4"
854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
855
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
856
+ dependencies = [
857
+ "anstyle",
858
+ "difflib",
859
+ "float-cmp",
860
+ "normalize-line-endings",
861
+ "predicates-core",
862
+ "regex",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "predicates-core"
867
+ version = "1.0.10"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
870
+
871
+ [[package]]
872
+ name = "predicates-tree"
873
+ version = "1.0.13"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
876
+ dependencies = [
877
+ "predicates-core",
878
+ "termtree",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "prettyplease"
883
+ version = "0.2.37"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
886
+ dependencies = [
887
+ "proc-macro2",
888
+ "syn",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "proc-macro2"
893
+ version = "1.0.106"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
896
+ dependencies = [
897
+ "unicode-ident",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "quote"
902
+ version = "1.0.45"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
905
+ dependencies = [
906
+ "proc-macro2",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "r-efi"
911
+ version = "6.0.0"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
914
+
915
+ [[package]]
916
+ name = "regex"
917
+ version = "1.12.3"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
920
+ dependencies = [
921
+ "aho-corasick",
922
+ "memchr",
923
+ "regex-automata",
924
+ "regex-syntax",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "regex-automata"
929
+ version = "0.4.14"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
932
+ dependencies = [
933
+ "aho-corasick",
934
+ "memchr",
935
+ "regex-syntax",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "regex-syntax"
940
+ version = "0.8.10"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
943
+
944
+ [[package]]
945
+ name = "rustc-hash"
946
+ version = "2.1.2"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
949
+
950
+ [[package]]
951
+ name = "rustix"
952
+ version = "1.1.4"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
955
+ dependencies = [
956
+ "bitflags",
957
+ "errno",
958
+ "libc",
959
+ "linux-raw-sys",
960
+ "windows-sys",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "rustversion"
965
+ version = "1.0.22"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
968
+
969
+ [[package]]
970
+ name = "same-file"
971
+ version = "1.0.6"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
974
+ dependencies = [
975
+ "winapi-util",
976
+ ]
977
+
978
+ [[package]]
979
+ name = "scroll"
980
+ version = "0.12.0"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "6ab8598aa408498679922eff7fa985c25d58a90771bd6be794434c5277eab1a6"
983
+ dependencies = [
984
+ "scroll_derive",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "scroll_derive"
989
+ version = "0.12.1"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d"
992
+ dependencies = [
993
+ "proc-macro2",
994
+ "quote",
995
+ "syn",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "semver"
1000
+ version = "1.0.28"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1003
+ dependencies = [
1004
+ "serde",
1005
+ "serde_core",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "serde"
1010
+ version = "1.0.228"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1013
+ dependencies = [
1014
+ "serde_core",
1015
+ "serde_derive",
1016
+ ]
1017
+
1018
+ [[package]]
1019
+ name = "serde-wasm-bindgen"
1020
+ version = "0.6.5"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
1023
+ dependencies = [
1024
+ "js-sys",
1025
+ "serde",
1026
+ "wasm-bindgen",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "serde_core"
1031
+ version = "1.0.228"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1034
+ dependencies = [
1035
+ "serde_derive",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "serde_derive"
1040
+ version = "1.0.228"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1043
+ dependencies = [
1044
+ "proc-macro2",
1045
+ "quote",
1046
+ "syn",
1047
+ ]
1048
+
1049
+ [[package]]
1050
+ name = "serde_json"
1051
+ version = "1.0.149"
1052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1053
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1054
+ dependencies = [
1055
+ "itoa",
1056
+ "memchr",
1057
+ "serde",
1058
+ "serde_core",
1059
+ "zmij",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "serde_spanned"
1064
+ version = "1.1.1"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1067
+ dependencies = [
1068
+ "serde_core",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "shlex"
1073
+ version = "1.3.0"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1076
+
1077
+ [[package]]
1078
+ name = "simd-adler32"
1079
+ version = "0.3.9"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1082
+
1083
+ [[package]]
1084
+ name = "siphasher"
1085
+ version = "1.0.2"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
1088
+
1089
+ [[package]]
1090
+ name = "slab"
1091
+ version = "0.4.12"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1094
+
1095
+ [[package]]
1096
+ name = "smawk"
1097
+ version = "0.3.2"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
1100
+
1101
+ [[package]]
1102
+ name = "static_assertions"
1103
+ version = "1.1.0"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1106
+
1107
+ [[package]]
1108
+ name = "strsim"
1109
+ version = "0.11.1"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1112
+
1113
+ [[package]]
1114
+ name = "syn"
1115
+ version = "2.0.117"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1118
+ dependencies = [
1119
+ "proc-macro2",
1120
+ "quote",
1121
+ "unicode-ident",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "tempfile"
1126
+ version = "3.27.0"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1129
+ dependencies = [
1130
+ "fastrand",
1131
+ "getrandom",
1132
+ "once_cell",
1133
+ "rustix",
1134
+ "windows-sys",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "termtree"
1139
+ version = "0.5.1"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1142
+
1143
+ [[package]]
1144
+ name = "textwrap"
1145
+ version = "0.16.2"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
1148
+ dependencies = [
1149
+ "smawk",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "thiserror"
1154
+ version = "2.0.18"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1157
+ dependencies = [
1158
+ "thiserror-impl",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "thiserror-impl"
1163
+ version = "2.0.18"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1166
+ dependencies = [
1167
+ "proc-macro2",
1168
+ "quote",
1169
+ "syn",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "toml"
1174
+ version = "0.9.12+spec-1.1.0"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
1177
+ dependencies = [
1178
+ "indexmap",
1179
+ "serde_core",
1180
+ "serde_spanned",
1181
+ "toml_datetime",
1182
+ "toml_parser",
1183
+ "toml_writer",
1184
+ "winnow 0.7.15",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "toml_datetime"
1189
+ version = "0.7.5+spec-1.1.0"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
1192
+ dependencies = [
1193
+ "serde_core",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "toml_parser"
1198
+ version = "1.1.2+spec-1.1.0"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1201
+ dependencies = [
1202
+ "winnow 1.0.1",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "toml_writer"
1207
+ version = "1.1.1+spec-1.1.0"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
1210
+
1211
+ [[package]]
1212
+ name = "unicode-ident"
1213
+ version = "1.0.24"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1216
+
1217
+ [[package]]
1218
+ name = "unicode-segmentation"
1219
+ version = "1.13.2"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
1222
+
1223
+ [[package]]
1224
+ name = "unicode-width"
1225
+ version = "0.2.2"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1228
+
1229
+ [[package]]
1230
+ name = "unicode-xid"
1231
+ version = "0.2.6"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1234
+
1235
+ [[package]]
1236
+ name = "uniffi"
1237
+ version = "0.31.0"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "b8c6dec3fc6645f71a16a3fa9ff57991028153bd194ca97f4b55e610c73ce66a"
1240
+ dependencies = [
1241
+ "anyhow",
1242
+ "camino",
1243
+ "cargo_metadata",
1244
+ "clap",
1245
+ "uniffi_bindgen",
1246
+ "uniffi_build",
1247
+ "uniffi_core",
1248
+ "uniffi_macros",
1249
+ "uniffi_pipeline",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "uniffi_bindgen"
1254
+ version = "0.31.0"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "4ed0150801958d4825da56a41c71f000a457ac3a4613fa9647df78ac4b6b6881"
1257
+ dependencies = [
1258
+ "anyhow",
1259
+ "askama",
1260
+ "camino",
1261
+ "cargo_metadata",
1262
+ "fs-err",
1263
+ "glob",
1264
+ "goblin",
1265
+ "heck",
1266
+ "indexmap",
1267
+ "once_cell",
1268
+ "serde",
1269
+ "tempfile",
1270
+ "textwrap",
1271
+ "toml",
1272
+ "uniffi_internal_macros",
1273
+ "uniffi_meta",
1274
+ "uniffi_pipeline",
1275
+ "uniffi_udl",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "uniffi_build"
1280
+ version = "0.31.0"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "b78fd9271a4c2e85bd2c266c5a9ede1fac676eb39fd77f636c27eaf67426fd5f"
1283
+ dependencies = [
1284
+ "anyhow",
1285
+ "camino",
1286
+ "uniffi_bindgen",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "uniffi_core"
1291
+ version = "0.31.0"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "b0ef62e69762fbb9386dcb6c87cd3dd05d525fa8a3a579a290892e60ddbda47e"
1294
+ dependencies = [
1295
+ "anyhow",
1296
+ "bytes",
1297
+ "once_cell",
1298
+ "static_assertions",
1299
+ ]
1300
+
1301
+ [[package]]
1302
+ name = "uniffi_internal_macros"
1303
+ version = "0.31.0"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "98f51ebca0d9a4b2aa6c644d5ede45c56f73906b96403c08a1985e75ccb64a01"
1306
+ dependencies = [
1307
+ "anyhow",
1308
+ "indexmap",
1309
+ "proc-macro2",
1310
+ "quote",
1311
+ "syn",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "uniffi_macros"
1316
+ version = "0.31.0"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "db9d12529f1223d014fd501e5f29ca0884d15d6ed5ddddd9f506e55350327dc3"
1319
+ dependencies = [
1320
+ "camino",
1321
+ "fs-err",
1322
+ "once_cell",
1323
+ "proc-macro2",
1324
+ "quote",
1325
+ "serde",
1326
+ "syn",
1327
+ "toml",
1328
+ "uniffi_meta",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "uniffi_meta"
1333
+ version = "0.31.0"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "9df6d413db2827c68588f8149d30d49b71d540d46539e435b23a7f7dbd4d4f86"
1336
+ dependencies = [
1337
+ "anyhow",
1338
+ "siphasher",
1339
+ "uniffi_internal_macros",
1340
+ "uniffi_pipeline",
1341
+ ]
1342
+
1343
+ [[package]]
1344
+ name = "uniffi_pipeline"
1345
+ version = "0.31.0"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "a806dddc8208f22efd7e95a5cdf88ed43d0f3271e8f63b47e757a8bbdb43b63a"
1348
+ dependencies = [
1349
+ "anyhow",
1350
+ "heck",
1351
+ "indexmap",
1352
+ "tempfile",
1353
+ "uniffi_internal_macros",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "uniffi_udl"
1358
+ version = "0.31.0"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "0d1a7339539bf6f6fa3e9b534dece13f778bda2d54b1a6d4e40b4d6090ac26e7"
1361
+ dependencies = [
1362
+ "anyhow",
1363
+ "textwrap",
1364
+ "uniffi_meta",
1365
+ "weedle2",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "utf8parse"
1370
+ version = "0.2.2"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1373
+
1374
+ [[package]]
1375
+ name = "vcpkg"
1376
+ version = "0.2.15"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1379
+
1380
+ [[package]]
1381
+ name = "wait-timeout"
1382
+ version = "0.2.1"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1385
+ dependencies = [
1386
+ "libc",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "walkdir"
1391
+ version = "2.5.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1394
+ dependencies = [
1395
+ "same-file",
1396
+ "winapi-util",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "wasip2"
1401
+ version = "1.0.1+wasi-0.2.4"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1404
+ dependencies = [
1405
+ "wit-bindgen 0.46.0",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "wasip3"
1410
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1413
+ dependencies = [
1414
+ "wit-bindgen 0.51.0",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "wasm-bindgen"
1419
+ version = "0.2.117"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
1422
+ dependencies = [
1423
+ "cfg-if",
1424
+ "once_cell",
1425
+ "rustversion",
1426
+ "wasm-bindgen-macro",
1427
+ "wasm-bindgen-shared",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "wasm-bindgen-futures"
1432
+ version = "0.4.67"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
1435
+ dependencies = [
1436
+ "js-sys",
1437
+ "wasm-bindgen",
1438
+ ]
1439
+
1440
+ [[package]]
1441
+ name = "wasm-bindgen-macro"
1442
+ version = "0.2.117"
1443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1444
+ checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
1445
+ dependencies = [
1446
+ "quote",
1447
+ "wasm-bindgen-macro-support",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "wasm-bindgen-macro-support"
1452
+ version = "0.2.117"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
1455
+ dependencies = [
1456
+ "bumpalo",
1457
+ "proc-macro2",
1458
+ "quote",
1459
+ "syn",
1460
+ "wasm-bindgen-shared",
1461
+ ]
1462
+
1463
+ [[package]]
1464
+ name = "wasm-bindgen-shared"
1465
+ version = "0.2.117"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
1468
+ dependencies = [
1469
+ "unicode-ident",
1470
+ ]
1471
+
1472
+ [[package]]
1473
+ name = "wasm-bindgen-test"
1474
+ version = "0.3.67"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "941c102b3f0c15b6d72a53205e09e6646aafcf2991e18412cc331dbac1806bc0"
1477
+ dependencies = [
1478
+ "async-trait",
1479
+ "cast",
1480
+ "js-sys",
1481
+ "libm",
1482
+ "minicov",
1483
+ "nu-ansi-term",
1484
+ "num-traits",
1485
+ "oorandom",
1486
+ "serde",
1487
+ "serde_json",
1488
+ "wasm-bindgen",
1489
+ "wasm-bindgen-futures",
1490
+ "wasm-bindgen-test-macro",
1491
+ "wasm-bindgen-test-shared",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "wasm-bindgen-test-macro"
1496
+ version = "0.3.67"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "a26bd6570f39bb1440fd8f01b63461faaf2a3f6078a508e4e54efa99363108d2"
1499
+ dependencies = [
1500
+ "proc-macro2",
1501
+ "quote",
1502
+ "syn",
1503
+ ]
1504
+
1505
+ [[package]]
1506
+ name = "wasm-bindgen-test-shared"
1507
+ version = "0.2.117"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "1c29582b14d5bf030b02fa232b9b57faf2afc322d2c61964dd80bad02bf76207"
1510
+
1511
+ [[package]]
1512
+ name = "wasm-encoder"
1513
+ version = "0.244.0"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1516
+ dependencies = [
1517
+ "leb128fmt",
1518
+ "wasmparser",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "wasm-metadata"
1523
+ version = "0.244.0"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1526
+ dependencies = [
1527
+ "anyhow",
1528
+ "indexmap",
1529
+ "wasm-encoder",
1530
+ "wasmparser",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "wasmparser"
1535
+ version = "0.244.0"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1538
+ dependencies = [
1539
+ "bitflags",
1540
+ "hashbrown 0.15.5",
1541
+ "indexmap",
1542
+ "semver",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "weedle2"
1547
+ version = "5.0.0"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "998d2c24ec099a87daf9467808859f9d82b61f1d9c9701251aea037f514eae0e"
1550
+ dependencies = [
1551
+ "nom",
1552
+ ]
1553
+
1554
+ [[package]]
1555
+ name = "winapi-util"
1556
+ version = "0.1.11"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1559
+ dependencies = [
1560
+ "windows-sys",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "windows-link"
1565
+ version = "0.2.1"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1568
+
1569
+ [[package]]
1570
+ name = "windows-sys"
1571
+ version = "0.61.2"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1574
+ dependencies = [
1575
+ "windows-link",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "winnow"
1580
+ version = "0.7.15"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
1583
+ dependencies = [
1584
+ "memchr",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "winnow"
1589
+ version = "1.0.1"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
1592
+
1593
+ [[package]]
1594
+ name = "wit-bindgen"
1595
+ version = "0.46.0"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1598
+
1599
+ [[package]]
1600
+ name = "wit-bindgen"
1601
+ version = "0.51.0"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1604
+ dependencies = [
1605
+ "wit-bindgen-rust-macro",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "wit-bindgen-core"
1610
+ version = "0.51.0"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1613
+ dependencies = [
1614
+ "anyhow",
1615
+ "heck",
1616
+ "wit-parser",
1617
+ ]
1618
+
1619
+ [[package]]
1620
+ name = "wit-bindgen-rust"
1621
+ version = "0.51.0"
1622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1623
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1624
+ dependencies = [
1625
+ "anyhow",
1626
+ "heck",
1627
+ "indexmap",
1628
+ "prettyplease",
1629
+ "syn",
1630
+ "wasm-metadata",
1631
+ "wit-bindgen-core",
1632
+ "wit-component",
1633
+ ]
1634
+
1635
+ [[package]]
1636
+ name = "wit-bindgen-rust-macro"
1637
+ version = "0.51.0"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1640
+ dependencies = [
1641
+ "anyhow",
1642
+ "prettyplease",
1643
+ "proc-macro2",
1644
+ "quote",
1645
+ "syn",
1646
+ "wit-bindgen-core",
1647
+ "wit-bindgen-rust",
1648
+ ]
1649
+
1650
+ [[package]]
1651
+ name = "wit-component"
1652
+ version = "0.244.0"
1653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1654
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1655
+ dependencies = [
1656
+ "anyhow",
1657
+ "bitflags",
1658
+ "indexmap",
1659
+ "log",
1660
+ "serde",
1661
+ "serde_derive",
1662
+ "serde_json",
1663
+ "wasm-encoder",
1664
+ "wasm-metadata",
1665
+ "wasmparser",
1666
+ "wit-parser",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "wit-parser"
1671
+ version = "0.244.0"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1674
+ dependencies = [
1675
+ "anyhow",
1676
+ "id-arena",
1677
+ "indexmap",
1678
+ "log",
1679
+ "semver",
1680
+ "serde",
1681
+ "serde_derive",
1682
+ "serde_json",
1683
+ "unicode-xid",
1684
+ "wasmparser",
1685
+ ]
1686
+
1687
+ [[package]]
1688
+ name = "zmij"
1689
+ version = "1.0.21"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"