reconcile-text 0.9.4__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 (117) hide show
  1. reconcile_text-0.9.4/Cargo.lock +1072 -0
  2. reconcile_text-0.9.4/Cargo.toml +108 -0
  3. reconcile_text-0.9.4/LICENSE +21 -0
  4. reconcile_text-0.9.4/PKG-INFO +269 -0
  5. reconcile_text-0.9.4/README.md +249 -0
  6. reconcile_text-0.9.4/docs/advanced-python.md +92 -0
  7. reconcile_text-0.9.4/docs/advanced-ts.md +70 -0
  8. reconcile_text-0.9.4/examples/compare-with-diff-match-patch.rs +95 -0
  9. reconcile_text-0.9.4/examples/merge-file.rs +58 -0
  10. reconcile_text-0.9.4/examples/merge_file.py +38 -0
  11. reconcile_text-0.9.4/pyproject.toml +52 -0
  12. reconcile_text-0.9.4/python/reconcile_text/__init__.py +165 -0
  13. reconcile_text-0.9.4/python/reconcile_text/_native.pyi +24 -0
  14. reconcile_text-0.9.4/python/reconcile_text/py.typed +0 -0
  15. reconcile_text-0.9.4/reconcile-python/.gitignore +10 -0
  16. reconcile_text-0.9.4/reconcile-python/Cargo.lock +161 -0
  17. reconcile_text-0.9.4/reconcile-python/Cargo.toml +17 -0
  18. reconcile_text-0.9.4/reconcile-python/README.md +249 -0
  19. reconcile_text-0.9.4/reconcile-python/src/lib.rs +235 -0
  20. reconcile_text-0.9.4/reconcile-python/tests/test_reconcile.py +179 -0
  21. reconcile_text-0.9.4/reconcile-python/uv.lock +279 -0
  22. reconcile_text-0.9.4/rust-toolchain.toml +4 -0
  23. reconcile_text-0.9.4/rustfmt.toml +1 -0
  24. reconcile_text-0.9.4/scripts/build-website.sh +14 -0
  25. reconcile_text-0.9.4/scripts/bump-version.sh +61 -0
  26. reconcile_text-0.9.4/scripts/dev-website.sh +13 -0
  27. reconcile_text-0.9.4/scripts/lint.sh +30 -0
  28. reconcile_text-0.9.4/scripts/test.sh +36 -0
  29. reconcile_text-0.9.4/src/lib.rs +227 -0
  30. reconcile_text-0.9.4/src/operation_transformation/diff_error.rs +26 -0
  31. reconcile_text-0.9.4/src/operation_transformation/edited_text.rs +676 -0
  32. reconcile_text-0.9.4/src/operation_transformation/operation.rs +477 -0
  33. reconcile_text-0.9.4/src/operation_transformation/snapshots/reconcile_text__operation_transformation__edited_text__tests__calculate_operations.snap +28 -0
  34. reconcile_text-0.9.4/src/operation_transformation/snapshots/reconcile_text__operation_transformation__edited_text__tests__calculate_operations_with_no_diff.snap +18 -0
  35. reconcile_text-0.9.4/src/operation_transformation/utils/cook_operations.rs +49 -0
  36. reconcile_text-0.9.4/src/operation_transformation/utils/elongate_operations.rs +126 -0
  37. reconcile_text-0.9.4/src/operation_transformation/utils.rs +2 -0
  38. reconcile_text-0.9.4/src/operation_transformation.rs +171 -0
  39. reconcile_text-0.9.4/src/raw_operation.rs +76 -0
  40. reconcile_text-0.9.4/src/tokenizer/character_tokenizer.rs +26 -0
  41. reconcile_text-0.9.4/src/tokenizer/line_tokenizer.rs +80 -0
  42. reconcile_text-0.9.4/src/tokenizer/markdown_tokenizer.rs +290 -0
  43. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__character_tokenizer__tests__with_snapshots-2.snap +145 -0
  44. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__character_tokenizer__tests__with_snapshots.snap +6 -0
  45. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__line_tokenizer__tests__with_snapshots-10.snap +36 -0
  46. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__line_tokenizer__tests__with_snapshots-11.snap +36 -0
  47. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__line_tokenizer__tests__with_snapshots-2.snap +13 -0
  48. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__line_tokenizer__tests__with_snapshots-3.snap +25 -0
  49. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__line_tokenizer__tests__with_snapshots-4.snap +31 -0
  50. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__line_tokenizer__tests__with_snapshots-5.snap +25 -0
  51. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__line_tokenizer__tests__with_snapshots-6.snap +49 -0
  52. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__line_tokenizer__tests__with_snapshots-7.snap +13 -0
  53. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__line_tokenizer__tests__with_snapshots-8.snap +19 -0
  54. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__line_tokenizer__tests__with_snapshots-9.snap +31 -0
  55. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__line_tokenizer__tests__with_snapshots.snap +6 -0
  56. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__blockquote.snap +48 -0
  57. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__bold_not_confused_with_list.snap +24 -0
  58. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__code_fence.snap +72 -0
  59. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__crlf.snap +48 -0
  60. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__empty.snap +5 -0
  61. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__heading_only.snap +12 -0
  62. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__headings-2.snap +24 -0
  63. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__headings-3.snap +24 -0
  64. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__headings.snap +24 -0
  65. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__indented_list.snap +36 -0
  66. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__inline_formatting.snap +60 -0
  67. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__link.snap +36 -0
  68. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__list_with_star_marker.snap +48 -0
  69. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__mixed_content.snap +120 -0
  70. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__multiline_paragraph.snap +78 -0
  71. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__ordered_list.snap +36 -0
  72. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__ordered_task_list.snap +48 -0
  73. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__plain_text.snap +24 -0
  74. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__task_list.snap +48 -0
  75. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__unicode.snap +60 -0
  76. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__markdown_tokenizer__tests__unordered_list.snap +72 -0
  77. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__word_tokenizer__tests__with_snapshots-2.snap +6 -0
  78. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__word_tokenizer__tests__with_snapshots-3.snap +25 -0
  79. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__word_tokenizer__tests__with_snapshots-4.snap +55 -0
  80. reconcile_text-0.9.4/src/tokenizer/snapshots/reconcile_text__tokenizer__word_tokenizer__tests__with_snapshots.snap +25 -0
  81. reconcile_text-0.9.4/src/tokenizer/token.rs +80 -0
  82. reconcile_text-0.9.4/src/tokenizer/word_tokenizer.rs +70 -0
  83. reconcile_text-0.9.4/src/tokenizer.rs +53 -0
  84. reconcile_text-0.9.4/src/types/cursor_position.rs +43 -0
  85. reconcile_text-0.9.4/src/types/history.rs +28 -0
  86. reconcile_text-0.9.4/src/types/number_or_text.rs +119 -0
  87. reconcile_text-0.9.4/src/types/side.rs +22 -0
  88. reconcile_text-0.9.4/src/types/span_with_history.rs +34 -0
  89. reconcile_text-0.9.4/src/types/text_with_cursors.rs +78 -0
  90. reconcile_text-0.9.4/src/types.rs +6 -0
  91. reconcile_text-0.9.4/src/utils/common_prefix_len.rs +47 -0
  92. reconcile_text-0.9.4/src/utils/common_suffix_len.rs +48 -0
  93. reconcile_text-0.9.4/src/utils/find_longest_prefix_contained_within.rs +105 -0
  94. reconcile_text-0.9.4/src/utils/myers_diff.rs +370 -0
  95. reconcile_text-0.9.4/src/utils/snapshots/reconcile_text__utils__myers_diff__tests__complex_diff.snap +67 -0
  96. reconcile_text-0.9.4/src/utils/snapshots/reconcile_text__utils__myers_diff__tests__delete_only.snap +27 -0
  97. reconcile_text-0.9.4/src/utils/snapshots/reconcile_text__utils__myers_diff__tests__identical_content.snap +37 -0
  98. reconcile_text-0.9.4/src/utils/snapshots/reconcile_text__utils__myers_diff__tests__insert_only.snap +27 -0
  99. reconcile_text-0.9.4/src/utils/snapshots/reconcile_text__utils__myers_diff__tests__prefix_and_suffix.snap +57 -0
  100. reconcile_text-0.9.4/src/utils/string_builder.rs +167 -0
  101. reconcile_text-0.9.4/src/utils.rs +5 -0
  102. reconcile_text-0.9.4/src/wasm.rs +182 -0
  103. reconcile_text-0.9.4/tests/example_document.rs +104 -0
  104. reconcile_text-0.9.4/tests/examples/README.md +16 -0
  105. reconcile_text-0.9.4/tests/examples/deletes.yml +37 -0
  106. reconcile_text-0.9.4/tests/examples/deletes_and_inserts.yml +12 -0
  107. reconcile_text-0.9.4/tests/examples/idempotent_inserts.yml +24 -0
  108. reconcile_text-0.9.4/tests/examples/multiline.yml +63 -0
  109. reconcile_text-0.9.4/tests/examples/replacing.yml +19 -0
  110. reconcile_text-0.9.4/tests/examples/utf-8.yml +10 -0
  111. reconcile_text-0.9.4/tests/examples/various.yml +136 -0
  112. reconcile_text-0.9.4/tests/resources/blns.txt +742 -0
  113. reconcile_text-0.9.4/tests/resources/kun_lu.txt +6438 -0
  114. reconcile_text-0.9.4/tests/resources/pride_and_prejudice.txt +14910 -0
  115. reconcile_text-0.9.4/tests/resources/room_with_a_view.txt +9105 -0
  116. reconcile_text-0.9.4/tests/test.rs +126 -0
  117. reconcile_text-0.9.4/tests/wasm.rs +70 -0
@@ -0,0 +1,1072 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "android_system_properties"
7
+ version = "0.1.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
10
+ dependencies = [
11
+ "libc",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anyhow"
16
+ version = "1.0.102"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
19
+
20
+ [[package]]
21
+ name = "async-trait"
22
+ version = "0.1.89"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
25
+ dependencies = [
26
+ "proc-macro2",
27
+ "quote",
28
+ "syn",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "autocfg"
33
+ version = "1.5.0"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
36
+
37
+ [[package]]
38
+ name = "bitflags"
39
+ version = "2.11.0"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
42
+
43
+ [[package]]
44
+ name = "bumpalo"
45
+ version = "3.20.2"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
48
+
49
+ [[package]]
50
+ name = "cast"
51
+ version = "0.3.0"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
54
+
55
+ [[package]]
56
+ name = "cc"
57
+ version = "1.2.56"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
60
+ dependencies = [
61
+ "find-msvc-tools",
62
+ "shlex",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "cfg-if"
67
+ version = "1.0.4"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
70
+
71
+ [[package]]
72
+ name = "chrono"
73
+ version = "0.4.44"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
76
+ dependencies = [
77
+ "iana-time-zone",
78
+ "js-sys",
79
+ "num-traits",
80
+ "wasm-bindgen",
81
+ "windows-link",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "console"
86
+ version = "0.15.11"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
89
+ dependencies = [
90
+ "encode_unicode",
91
+ "libc",
92
+ "once_cell",
93
+ "windows-sys 0.59.0",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "console_error_panic_hook"
98
+ version = "0.1.7"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
101
+ dependencies = [
102
+ "cfg-if",
103
+ "wasm-bindgen",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "core-foundation-sys"
108
+ version = "0.8.7"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
111
+
112
+ [[package]]
113
+ name = "diff"
114
+ version = "0.1.13"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
117
+
118
+ [[package]]
119
+ name = "diff-match-patch-rs"
120
+ version = "0.5.1"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "f1e836eb966678daed8789e698dbdb1016a260c3cdaca6172585e13580c4e4be"
123
+ dependencies = [
124
+ "chrono",
125
+ "percent-encoding",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "encode_unicode"
130
+ version = "1.0.0"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
133
+
134
+ [[package]]
135
+ name = "equivalent"
136
+ version = "1.0.2"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
139
+
140
+ [[package]]
141
+ name = "errno"
142
+ version = "0.3.14"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
145
+ dependencies = [
146
+ "libc",
147
+ "windows-sys 0.61.2",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "fastrand"
152
+ version = "2.3.0"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
155
+
156
+ [[package]]
157
+ name = "find-msvc-tools"
158
+ version = "0.1.9"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
161
+
162
+ [[package]]
163
+ name = "foldhash"
164
+ version = "0.1.5"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
167
+
168
+ [[package]]
169
+ name = "futures-core"
170
+ version = "0.3.32"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
173
+
174
+ [[package]]
175
+ name = "futures-task"
176
+ version = "0.3.32"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
179
+
180
+ [[package]]
181
+ name = "futures-util"
182
+ version = "0.3.32"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
185
+ dependencies = [
186
+ "futures-core",
187
+ "futures-task",
188
+ "pin-project-lite",
189
+ "slab",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "getrandom"
194
+ version = "0.4.2"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
197
+ dependencies = [
198
+ "cfg-if",
199
+ "libc",
200
+ "r-efi",
201
+ "wasip2",
202
+ "wasip3",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "hashbrown"
207
+ version = "0.15.5"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
210
+ dependencies = [
211
+ "foldhash",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "hashbrown"
216
+ version = "0.16.1"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
219
+
220
+ [[package]]
221
+ name = "heck"
222
+ version = "0.5.0"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
225
+
226
+ [[package]]
227
+ name = "iana-time-zone"
228
+ version = "0.1.65"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
231
+ dependencies = [
232
+ "android_system_properties",
233
+ "core-foundation-sys",
234
+ "iana-time-zone-haiku",
235
+ "js-sys",
236
+ "log",
237
+ "wasm-bindgen",
238
+ "windows-core",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "iana-time-zone-haiku"
243
+ version = "0.1.2"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
246
+ dependencies = [
247
+ "cc",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "id-arena"
252
+ version = "2.3.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
255
+
256
+ [[package]]
257
+ name = "indexmap"
258
+ version = "2.13.0"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
261
+ dependencies = [
262
+ "equivalent",
263
+ "hashbrown 0.16.1",
264
+ "serde",
265
+ "serde_core",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "insta"
270
+ version = "1.46.3"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "e82db8c87c7f1ccecb34ce0c24399b8a73081427f3c7c50a5d597925356115e4"
273
+ dependencies = [
274
+ "console",
275
+ "once_cell",
276
+ "similar",
277
+ "tempfile",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "itoa"
282
+ version = "1.0.17"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
285
+
286
+ [[package]]
287
+ name = "js-sys"
288
+ version = "0.3.91"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
291
+ dependencies = [
292
+ "once_cell",
293
+ "wasm-bindgen",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "leb128fmt"
298
+ version = "0.1.0"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
301
+
302
+ [[package]]
303
+ name = "libc"
304
+ version = "0.2.183"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
307
+
308
+ [[package]]
309
+ name = "libm"
310
+ version = "0.2.16"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
313
+
314
+ [[package]]
315
+ name = "linux-raw-sys"
316
+ version = "0.12.1"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
319
+
320
+ [[package]]
321
+ name = "log"
322
+ version = "0.4.29"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
325
+
326
+ [[package]]
327
+ name = "memchr"
328
+ version = "2.8.0"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
331
+
332
+ [[package]]
333
+ name = "minicov"
334
+ version = "0.3.8"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
337
+ dependencies = [
338
+ "cc",
339
+ "walkdir",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "nu-ansi-term"
344
+ version = "0.50.3"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
347
+ dependencies = [
348
+ "windows-sys 0.61.2",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "num-traits"
353
+ version = "0.2.19"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
356
+ dependencies = [
357
+ "autocfg",
358
+ "libm",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "once_cell"
363
+ version = "1.21.3"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
366
+
367
+ [[package]]
368
+ name = "oorandom"
369
+ version = "11.1.5"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
372
+
373
+ [[package]]
374
+ name = "percent-encoding"
375
+ version = "2.3.2"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
378
+
379
+ [[package]]
380
+ name = "pin-project-lite"
381
+ version = "0.2.17"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
384
+
385
+ [[package]]
386
+ name = "pretty_assertions"
387
+ version = "1.4.1"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
390
+ dependencies = [
391
+ "diff",
392
+ "yansi",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "prettyplease"
397
+ version = "0.2.37"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
400
+ dependencies = [
401
+ "proc-macro2",
402
+ "syn",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "proc-macro2"
407
+ version = "1.0.106"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
410
+ dependencies = [
411
+ "unicode-ident",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "quote"
416
+ version = "1.0.45"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
419
+ dependencies = [
420
+ "proc-macro2",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "r-efi"
425
+ version = "6.0.0"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
428
+
429
+ [[package]]
430
+ name = "reconcile-text"
431
+ version = "0.9.4"
432
+ dependencies = [
433
+ "console_error_panic_hook",
434
+ "diff-match-patch-rs",
435
+ "insta",
436
+ "pretty_assertions",
437
+ "serde",
438
+ "serde_yaml",
439
+ "test-case",
440
+ "thiserror",
441
+ "wasm-bindgen",
442
+ "wasm-bindgen-test",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "rustix"
447
+ version = "1.1.4"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
450
+ dependencies = [
451
+ "bitflags",
452
+ "errno",
453
+ "libc",
454
+ "linux-raw-sys",
455
+ "windows-sys 0.61.2",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "rustversion"
460
+ version = "1.0.22"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
463
+
464
+ [[package]]
465
+ name = "ryu"
466
+ version = "1.0.23"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
469
+
470
+ [[package]]
471
+ name = "same-file"
472
+ version = "1.0.6"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
475
+ dependencies = [
476
+ "winapi-util",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "semver"
481
+ version = "1.0.27"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
484
+
485
+ [[package]]
486
+ name = "serde"
487
+ version = "1.0.228"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
490
+ dependencies = [
491
+ "serde_core",
492
+ "serde_derive",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "serde_core"
497
+ version = "1.0.228"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
500
+ dependencies = [
501
+ "serde_derive",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "serde_derive"
506
+ version = "1.0.228"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
509
+ dependencies = [
510
+ "proc-macro2",
511
+ "quote",
512
+ "syn",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "serde_json"
517
+ version = "1.0.149"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
520
+ dependencies = [
521
+ "itoa",
522
+ "memchr",
523
+ "serde",
524
+ "serde_core",
525
+ "zmij",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "serde_yaml"
530
+ version = "0.9.34+deprecated"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
533
+ dependencies = [
534
+ "indexmap",
535
+ "itoa",
536
+ "ryu",
537
+ "serde",
538
+ "unsafe-libyaml",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "shlex"
543
+ version = "1.3.0"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
546
+
547
+ [[package]]
548
+ name = "similar"
549
+ version = "2.7.0"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
552
+
553
+ [[package]]
554
+ name = "slab"
555
+ version = "0.4.12"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
558
+
559
+ [[package]]
560
+ name = "syn"
561
+ version = "2.0.117"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
564
+ dependencies = [
565
+ "proc-macro2",
566
+ "quote",
567
+ "unicode-ident",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "tempfile"
572
+ version = "3.27.0"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
575
+ dependencies = [
576
+ "fastrand",
577
+ "getrandom",
578
+ "once_cell",
579
+ "rustix",
580
+ "windows-sys 0.61.2",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "test-case"
585
+ version = "3.3.1"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "eb2550dd13afcd286853192af8601920d959b14c401fcece38071d53bf0768a8"
588
+ dependencies = [
589
+ "test-case-macros",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "test-case-core"
594
+ version = "3.3.1"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
597
+ dependencies = [
598
+ "cfg-if",
599
+ "proc-macro2",
600
+ "quote",
601
+ "syn",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "test-case-macros"
606
+ version = "3.3.1"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
609
+ dependencies = [
610
+ "proc-macro2",
611
+ "quote",
612
+ "syn",
613
+ "test-case-core",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "thiserror"
618
+ version = "2.0.18"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
621
+ dependencies = [
622
+ "thiserror-impl",
623
+ ]
624
+
625
+ [[package]]
626
+ name = "thiserror-impl"
627
+ version = "2.0.18"
628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
629
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
630
+ dependencies = [
631
+ "proc-macro2",
632
+ "quote",
633
+ "syn",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "unicode-ident"
638
+ version = "1.0.24"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
641
+
642
+ [[package]]
643
+ name = "unicode-xid"
644
+ version = "0.2.6"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
647
+
648
+ [[package]]
649
+ name = "unsafe-libyaml"
650
+ version = "0.2.11"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
653
+
654
+ [[package]]
655
+ name = "walkdir"
656
+ version = "2.5.0"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
659
+ dependencies = [
660
+ "same-file",
661
+ "winapi-util",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "wasip2"
666
+ version = "1.0.2+wasi-0.2.9"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
669
+ dependencies = [
670
+ "wit-bindgen",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "wasip3"
675
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
678
+ dependencies = [
679
+ "wit-bindgen",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "wasm-bindgen"
684
+ version = "0.2.114"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
687
+ dependencies = [
688
+ "cfg-if",
689
+ "once_cell",
690
+ "rustversion",
691
+ "wasm-bindgen-macro",
692
+ "wasm-bindgen-shared",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "wasm-bindgen-futures"
697
+ version = "0.4.64"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
700
+ dependencies = [
701
+ "cfg-if",
702
+ "futures-util",
703
+ "js-sys",
704
+ "once_cell",
705
+ "wasm-bindgen",
706
+ "web-sys",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "wasm-bindgen-macro"
711
+ version = "0.2.114"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
714
+ dependencies = [
715
+ "quote",
716
+ "wasm-bindgen-macro-support",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "wasm-bindgen-macro-support"
721
+ version = "0.2.114"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
724
+ dependencies = [
725
+ "bumpalo",
726
+ "proc-macro2",
727
+ "quote",
728
+ "syn",
729
+ "wasm-bindgen-shared",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "wasm-bindgen-shared"
734
+ version = "0.2.114"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
737
+ dependencies = [
738
+ "unicode-ident",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "wasm-bindgen-test"
743
+ version = "0.3.64"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "6311c867385cc7d5602463b31825d454d0837a3aba7cdb5e56d5201792a3f7fe"
746
+ dependencies = [
747
+ "async-trait",
748
+ "cast",
749
+ "js-sys",
750
+ "libm",
751
+ "minicov",
752
+ "nu-ansi-term",
753
+ "num-traits",
754
+ "oorandom",
755
+ "serde",
756
+ "serde_json",
757
+ "wasm-bindgen",
758
+ "wasm-bindgen-futures",
759
+ "wasm-bindgen-test-macro",
760
+ "wasm-bindgen-test-shared",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "wasm-bindgen-test-macro"
765
+ version = "0.3.64"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "67008cdde4769831958536b0f11b3bdd0380bde882be17fff9c2f34bb4549abd"
768
+ dependencies = [
769
+ "proc-macro2",
770
+ "quote",
771
+ "syn",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "wasm-bindgen-test-shared"
776
+ version = "0.2.114"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "cfe29135b180b72b04c74aa97b2b4a2ef275161eff9a6c7955ea9eaedc7e1d4e"
779
+
780
+ [[package]]
781
+ name = "wasm-encoder"
782
+ version = "0.244.0"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
785
+ dependencies = [
786
+ "leb128fmt",
787
+ "wasmparser",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "wasm-metadata"
792
+ version = "0.244.0"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
795
+ dependencies = [
796
+ "anyhow",
797
+ "indexmap",
798
+ "wasm-encoder",
799
+ "wasmparser",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "wasmparser"
804
+ version = "0.244.0"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
807
+ dependencies = [
808
+ "bitflags",
809
+ "hashbrown 0.15.5",
810
+ "indexmap",
811
+ "semver",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "web-sys"
816
+ version = "0.3.91"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
819
+ dependencies = [
820
+ "js-sys",
821
+ "wasm-bindgen",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "winapi-util"
826
+ version = "0.1.11"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
829
+ dependencies = [
830
+ "windows-sys 0.61.2",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "windows-core"
835
+ version = "0.62.2"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
838
+ dependencies = [
839
+ "windows-implement",
840
+ "windows-interface",
841
+ "windows-link",
842
+ "windows-result",
843
+ "windows-strings",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "windows-implement"
848
+ version = "0.60.2"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
851
+ dependencies = [
852
+ "proc-macro2",
853
+ "quote",
854
+ "syn",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "windows-interface"
859
+ version = "0.59.3"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
862
+ dependencies = [
863
+ "proc-macro2",
864
+ "quote",
865
+ "syn",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "windows-link"
870
+ version = "0.2.1"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
873
+
874
+ [[package]]
875
+ name = "windows-result"
876
+ version = "0.4.1"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
879
+ dependencies = [
880
+ "windows-link",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "windows-strings"
885
+ version = "0.5.1"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
888
+ dependencies = [
889
+ "windows-link",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "windows-sys"
894
+ version = "0.59.0"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
897
+ dependencies = [
898
+ "windows-targets",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "windows-sys"
903
+ version = "0.61.2"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
906
+ dependencies = [
907
+ "windows-link",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "windows-targets"
912
+ version = "0.52.6"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
915
+ dependencies = [
916
+ "windows_aarch64_gnullvm",
917
+ "windows_aarch64_msvc",
918
+ "windows_i686_gnu",
919
+ "windows_i686_gnullvm",
920
+ "windows_i686_msvc",
921
+ "windows_x86_64_gnu",
922
+ "windows_x86_64_gnullvm",
923
+ "windows_x86_64_msvc",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "windows_aarch64_gnullvm"
928
+ version = "0.52.6"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
931
+
932
+ [[package]]
933
+ name = "windows_aarch64_msvc"
934
+ version = "0.52.6"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
937
+
938
+ [[package]]
939
+ name = "windows_i686_gnu"
940
+ version = "0.52.6"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
943
+
944
+ [[package]]
945
+ name = "windows_i686_gnullvm"
946
+ version = "0.52.6"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
949
+
950
+ [[package]]
951
+ name = "windows_i686_msvc"
952
+ version = "0.52.6"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
955
+
956
+ [[package]]
957
+ name = "windows_x86_64_gnu"
958
+ version = "0.52.6"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
961
+
962
+ [[package]]
963
+ name = "windows_x86_64_gnullvm"
964
+ version = "0.52.6"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
967
+
968
+ [[package]]
969
+ name = "windows_x86_64_msvc"
970
+ version = "0.52.6"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
973
+
974
+ [[package]]
975
+ name = "wit-bindgen"
976
+ version = "0.51.0"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
979
+ dependencies = [
980
+ "wit-bindgen-rust-macro",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "wit-bindgen-core"
985
+ version = "0.51.0"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
988
+ dependencies = [
989
+ "anyhow",
990
+ "heck",
991
+ "wit-parser",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "wit-bindgen-rust"
996
+ version = "0.51.0"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
999
+ dependencies = [
1000
+ "anyhow",
1001
+ "heck",
1002
+ "indexmap",
1003
+ "prettyplease",
1004
+ "syn",
1005
+ "wasm-metadata",
1006
+ "wit-bindgen-core",
1007
+ "wit-component",
1008
+ ]
1009
+
1010
+ [[package]]
1011
+ name = "wit-bindgen-rust-macro"
1012
+ version = "0.51.0"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1015
+ dependencies = [
1016
+ "anyhow",
1017
+ "prettyplease",
1018
+ "proc-macro2",
1019
+ "quote",
1020
+ "syn",
1021
+ "wit-bindgen-core",
1022
+ "wit-bindgen-rust",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "wit-component"
1027
+ version = "0.244.0"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1030
+ dependencies = [
1031
+ "anyhow",
1032
+ "bitflags",
1033
+ "indexmap",
1034
+ "log",
1035
+ "serde",
1036
+ "serde_derive",
1037
+ "serde_json",
1038
+ "wasm-encoder",
1039
+ "wasm-metadata",
1040
+ "wasmparser",
1041
+ "wit-parser",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "wit-parser"
1046
+ version = "0.244.0"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1049
+ dependencies = [
1050
+ "anyhow",
1051
+ "id-arena",
1052
+ "indexmap",
1053
+ "log",
1054
+ "semver",
1055
+ "serde",
1056
+ "serde_derive",
1057
+ "serde_json",
1058
+ "unicode-xid",
1059
+ "wasmparser",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "yansi"
1064
+ version = "1.0.1"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
1067
+
1068
+ [[package]]
1069
+ name = "zmij"
1070
+ version = "1.0.21"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"