ratatui_ruby 1.4.0-x86_64-linux

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 (292) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +15 -0
  3. data/LICENSES/AGPL-3.0-or-later.txt +661 -0
  4. data/LICENSES/CC-BY-SA-4.0.txt +427 -0
  5. data/LICENSES/CC0-1.0.txt +121 -0
  6. data/LICENSES/LGPL-3.0-or-later.txt +304 -0
  7. data/LICENSES/MIT-0.txt +16 -0
  8. data/LICENSES/MIT.txt +21 -0
  9. data/REUSE.toml +42 -0
  10. data/exe/.gitkeep +0 -0
  11. data/ext/ratatui_ruby/.cargo/config.toml +13 -0
  12. data/ext/ratatui_ruby/.gitignore +4 -0
  13. data/ext/ratatui_ruby/Cargo.lock +1737 -0
  14. data/ext/ratatui_ruby/Cargo.toml +24 -0
  15. data/ext/ratatui_ruby/clippy.toml +7 -0
  16. data/ext/ratatui_ruby/extconf.rb +21 -0
  17. data/ext/ratatui_ruby/src/color.rs +82 -0
  18. data/ext/ratatui_ruby/src/errors.rs +28 -0
  19. data/ext/ratatui_ruby/src/events.rs +700 -0
  20. data/ext/ratatui_ruby/src/frame.rs +241 -0
  21. data/ext/ratatui_ruby/src/lib.rs +343 -0
  22. data/ext/ratatui_ruby/src/lib_header.rs +11 -0
  23. data/ext/ratatui_ruby/src/rendering.rs +158 -0
  24. data/ext/ratatui_ruby/src/string_width.rs +101 -0
  25. data/ext/ratatui_ruby/src/style.rs +469 -0
  26. data/ext/ratatui_ruby/src/terminal/capabilities.rs +46 -0
  27. data/ext/ratatui_ruby/src/terminal/init.rs +233 -0
  28. data/ext/ratatui_ruby/src/terminal/mod.rs +42 -0
  29. data/ext/ratatui_ruby/src/terminal/mutations.rs +158 -0
  30. data/ext/ratatui_ruby/src/terminal/queries.rs +231 -0
  31. data/ext/ratatui_ruby/src/terminal/query.rs +400 -0
  32. data/ext/ratatui_ruby/src/terminal/storage.rs +109 -0
  33. data/ext/ratatui_ruby/src/terminal/wrapper.rs +16 -0
  34. data/ext/ratatui_ruby/src/text.rs +225 -0
  35. data/ext/ratatui_ruby/src/widgets/barchart.rs +169 -0
  36. data/ext/ratatui_ruby/src/widgets/block.rs +41 -0
  37. data/ext/ratatui_ruby/src/widgets/calendar.rs +84 -0
  38. data/ext/ratatui_ruby/src/widgets/canvas.rs +183 -0
  39. data/ext/ratatui_ruby/src/widgets/center.rs +79 -0
  40. data/ext/ratatui_ruby/src/widgets/chart.rs +222 -0
  41. data/ext/ratatui_ruby/src/widgets/clear.rs +39 -0
  42. data/ext/ratatui_ruby/src/widgets/cursor.rs +32 -0
  43. data/ext/ratatui_ruby/src/widgets/gauge.rs +65 -0
  44. data/ext/ratatui_ruby/src/widgets/layout.rs +379 -0
  45. data/ext/ratatui_ruby/src/widgets/line_gauge.rs +100 -0
  46. data/ext/ratatui_ruby/src/widgets/list.rs +378 -0
  47. data/ext/ratatui_ruby/src/widgets/list_state.rs +173 -0
  48. data/ext/ratatui_ruby/src/widgets/mod.rs +26 -0
  49. data/ext/ratatui_ruby/src/widgets/overlay.rs +24 -0
  50. data/ext/ratatui_ruby/src/widgets/paragraph.rs +87 -0
  51. data/ext/ratatui_ruby/src/widgets/ratatui_logo.rs +40 -0
  52. data/ext/ratatui_ruby/src/widgets/ratatui_mascot.rs +55 -0
  53. data/ext/ratatui_ruby/src/widgets/scrollbar.rs +214 -0
  54. data/ext/ratatui_ruby/src/widgets/scrollbar_state.rs +169 -0
  55. data/ext/ratatui_ruby/src/widgets/sparkline.rs +127 -0
  56. data/ext/ratatui_ruby/src/widgets/table.rs +415 -0
  57. data/ext/ratatui_ruby/src/widgets/table_state.rs +203 -0
  58. data/ext/ratatui_ruby/src/widgets/tabs.rs +194 -0
  59. data/lib/ratatui_ruby/backend/window_size.rb +50 -0
  60. data/lib/ratatui_ruby/backend.rb +59 -0
  61. data/lib/ratatui_ruby/buffer/cell.rb +212 -0
  62. data/lib/ratatui_ruby/buffer.rb +149 -0
  63. data/lib/ratatui_ruby/cell.rb +208 -0
  64. data/lib/ratatui_ruby/debug.rb +215 -0
  65. data/lib/ratatui_ruby/draw.rb +63 -0
  66. data/lib/ratatui_ruby/event/focus_gained.rb +125 -0
  67. data/lib/ratatui_ruby/event/focus_lost.rb +127 -0
  68. data/lib/ratatui_ruby/event/key/character.rb +53 -0
  69. data/lib/ratatui_ruby/event/key/dwim.rb +301 -0
  70. data/lib/ratatui_ruby/event/key/media.rb +46 -0
  71. data/lib/ratatui_ruby/event/key/modifier.rb +107 -0
  72. data/lib/ratatui_ruby/event/key/navigation.rb +72 -0
  73. data/lib/ratatui_ruby/event/key/system.rb +47 -0
  74. data/lib/ratatui_ruby/event/key.rb +479 -0
  75. data/lib/ratatui_ruby/event/mouse.rb +291 -0
  76. data/lib/ratatui_ruby/event/none.rb +53 -0
  77. data/lib/ratatui_ruby/event/paste.rb +130 -0
  78. data/lib/ratatui_ruby/event/resize.rb +221 -0
  79. data/lib/ratatui_ruby/event/sync.rb +52 -0
  80. data/lib/ratatui_ruby/event.rb +163 -0
  81. data/lib/ratatui_ruby/frame.rb +257 -0
  82. data/lib/ratatui_ruby/labs/a11y.rb +182 -0
  83. data/lib/ratatui_ruby/labs/frame_a11y_capture.rb +50 -0
  84. data/lib/ratatui_ruby/labs.rb +47 -0
  85. data/lib/ratatui_ruby/layout/alignment.rb +91 -0
  86. data/lib/ratatui_ruby/layout/constraint.rb +337 -0
  87. data/lib/ratatui_ruby/layout/layout.rb +258 -0
  88. data/lib/ratatui_ruby/layout/position.rb +81 -0
  89. data/lib/ratatui_ruby/layout/rect.rb +733 -0
  90. data/lib/ratatui_ruby/layout/size.rb +62 -0
  91. data/lib/ratatui_ruby/layout.rb +29 -0
  92. data/lib/ratatui_ruby/list_state.rb +201 -0
  93. data/lib/ratatui_ruby/output_guard.rb +171 -0
  94. data/lib/ratatui_ruby/ratatui_ruby.so +0 -0
  95. data/lib/ratatui_ruby/scrollbar_state.rb +122 -0
  96. data/lib/ratatui_ruby/style/color.rb +149 -0
  97. data/lib/ratatui_ruby/style/style.rb +147 -0
  98. data/lib/ratatui_ruby/style.rb +19 -0
  99. data/lib/ratatui_ruby/symbols.rb +435 -0
  100. data/lib/ratatui_ruby/synthetic_events.rb +106 -0
  101. data/lib/ratatui_ruby/table_state.rb +251 -0
  102. data/lib/ratatui_ruby/terminal/capabilities.rb +316 -0
  103. data/lib/ratatui_ruby/terminal/viewport.rb +80 -0
  104. data/lib/ratatui_ruby/terminal.rb +66 -0
  105. data/lib/ratatui_ruby/terminal_lifecycle.rb +303 -0
  106. data/lib/ratatui_ruby/terminal_lifecycle.rb.bak +197 -0
  107. data/lib/ratatui_ruby/test_helper/event_injection.rb +241 -0
  108. data/lib/ratatui_ruby/test_helper/global_state.rb +111 -0
  109. data/lib/ratatui_ruby/test_helper/snapshot.rb +568 -0
  110. data/lib/ratatui_ruby/test_helper/snapshots/axis_labels_alignment.ansi +24 -0
  111. data/lib/ratatui_ruby/test_helper/snapshots/axis_labels_alignment.txt +24 -0
  112. data/lib/ratatui_ruby/test_helper/snapshots/barchart_styled_label.ansi +5 -0
  113. data/lib/ratatui_ruby/test_helper/snapshots/barchart_styled_label.txt +5 -0
  114. data/lib/ratatui_ruby/test_helper/snapshots/chart_rendering.ansi +24 -0
  115. data/lib/ratatui_ruby/test_helper/snapshots/chart_rendering.txt +24 -0
  116. data/lib/ratatui_ruby/test_helper/snapshots/half_block_marker.ansi +12 -0
  117. data/lib/ratatui_ruby/test_helper/snapshots/half_block_marker.txt +12 -0
  118. data/lib/ratatui_ruby/test_helper/snapshots/legend_position_bottom.ansi +12 -0
  119. data/lib/ratatui_ruby/test_helper/snapshots/legend_position_bottom.txt +12 -0
  120. data/lib/ratatui_ruby/test_helper/snapshots/legend_position_left.ansi +12 -0
  121. data/lib/ratatui_ruby/test_helper/snapshots/legend_position_left.txt +12 -0
  122. data/lib/ratatui_ruby/test_helper/snapshots/legend_position_right.ansi +12 -0
  123. data/lib/ratatui_ruby/test_helper/snapshots/legend_position_right.txt +12 -0
  124. data/lib/ratatui_ruby/test_helper/snapshots/legend_position_top.ansi +12 -0
  125. data/lib/ratatui_ruby/test_helper/snapshots/legend_position_top.txt +12 -0
  126. data/lib/ratatui_ruby/test_helper/snapshots/my_snapshot.txt +1 -0
  127. data/lib/ratatui_ruby/test_helper/snapshots/styled_axis_title.ansi +10 -0
  128. data/lib/ratatui_ruby/test_helper/snapshots/styled_axis_title.txt +10 -0
  129. data/lib/ratatui_ruby/test_helper/snapshots/styled_dataset_name.ansi +10 -0
  130. data/lib/ratatui_ruby/test_helper/snapshots/styled_dataset_name.txt +10 -0
  131. data/lib/ratatui_ruby/test_helper/style_assertions.rb +449 -0
  132. data/lib/ratatui_ruby/test_helper/subprocess_timeout.rb +35 -0
  133. data/lib/ratatui_ruby/test_helper/terminal.rb +187 -0
  134. data/lib/ratatui_ruby/test_helper/test_doubles.rb +86 -0
  135. data/lib/ratatui_ruby/test_helper.rb +115 -0
  136. data/lib/ratatui_ruby/text/line.rb +245 -0
  137. data/lib/ratatui_ruby/text/span.rb +158 -0
  138. data/lib/ratatui_ruby/text.rb +99 -0
  139. data/lib/ratatui_ruby/tui/buffer_factories.rb +22 -0
  140. data/lib/ratatui_ruby/tui/canvas_factories.rb +149 -0
  141. data/lib/ratatui_ruby/tui/core.rb +67 -0
  142. data/lib/ratatui_ruby/tui/layout_factories.rb +153 -0
  143. data/lib/ratatui_ruby/tui/state_factories.rb +77 -0
  144. data/lib/ratatui_ruby/tui/style_factories.rb +22 -0
  145. data/lib/ratatui_ruby/tui/text_factories.rb +86 -0
  146. data/lib/ratatui_ruby/tui/widget_factories.rb +272 -0
  147. data/lib/ratatui_ruby/tui.rb +106 -0
  148. data/lib/ratatui_ruby/version.rb +12 -0
  149. data/lib/ratatui_ruby/widgets/bar_chart/bar.rb +51 -0
  150. data/lib/ratatui_ruby/widgets/bar_chart/bar_group.rb +29 -0
  151. data/lib/ratatui_ruby/widgets/bar_chart.rb +308 -0
  152. data/lib/ratatui_ruby/widgets/block.rb +266 -0
  153. data/lib/ratatui_ruby/widgets/calendar.rb +88 -0
  154. data/lib/ratatui_ruby/widgets/canvas.rb +297 -0
  155. data/lib/ratatui_ruby/widgets/cell.rb +59 -0
  156. data/lib/ratatui_ruby/widgets/center.rb +71 -0
  157. data/lib/ratatui_ruby/widgets/chart.rb +172 -0
  158. data/lib/ratatui_ruby/widgets/clear.rb +66 -0
  159. data/lib/ratatui_ruby/widgets/coerceable_widget.rb +77 -0
  160. data/lib/ratatui_ruby/widgets/cursor.rb +54 -0
  161. data/lib/ratatui_ruby/widgets/gauge.rb +146 -0
  162. data/lib/ratatui_ruby/widgets/line_gauge.rb +158 -0
  163. data/lib/ratatui_ruby/widgets/list.rb +252 -0
  164. data/lib/ratatui_ruby/widgets/list_item.rb +55 -0
  165. data/lib/ratatui_ruby/widgets/overlay.rb +55 -0
  166. data/lib/ratatui_ruby/widgets/paragraph.rb +113 -0
  167. data/lib/ratatui_ruby/widgets/ratatui_logo.rb +35 -0
  168. data/lib/ratatui_ruby/widgets/ratatui_mascot.rb +40 -0
  169. data/lib/ratatui_ruby/widgets/row.rb +123 -0
  170. data/lib/ratatui_ruby/widgets/scrollbar.rb +147 -0
  171. data/lib/ratatui_ruby/widgets/shape/label.rb +80 -0
  172. data/lib/ratatui_ruby/widgets/sparkline.rb +153 -0
  173. data/lib/ratatui_ruby/widgets/table.rb +213 -0
  174. data/lib/ratatui_ruby/widgets/tabs.rb +91 -0
  175. data/lib/ratatui_ruby/widgets.rb +43 -0
  176. data/lib/ratatui_ruby.rb +555 -0
  177. data/sig/examples/app_all_events/app.rbs +11 -0
  178. data/sig/examples/app_all_events/model/app_model.rbs +23 -0
  179. data/sig/examples/app_all_events/model/event_entry.rbs +23 -0
  180. data/sig/examples/app_all_events/model/timestamp.rbs +11 -0
  181. data/sig/examples/app_all_events/view/app_view.rbs +8 -0
  182. data/sig/examples/app_all_events/view/controls_view.rbs +6 -0
  183. data/sig/examples/app_all_events/view/counts_view.rbs +6 -0
  184. data/sig/examples/app_all_events/view/live_view.rbs +6 -0
  185. data/sig/examples/app_all_events/view/log_view.rbs +6 -0
  186. data/sig/examples/app_all_events/view.rbs +14 -0
  187. data/sig/examples/app_cli_rich_moments/app.rbs +12 -0
  188. data/sig/examples/app_color_picker/app.rbs +17 -0
  189. data/sig/examples/app_external_editor/app.rbs +12 -0
  190. data/sig/examples/app_login_form/app.rbs +11 -0
  191. data/sig/examples/app_stateful_interaction/app.rbs +39 -0
  192. data/sig/examples/verify_quickstart_dsl/app.rbs +17 -0
  193. data/sig/examples/verify_quickstart_lifecycle/app.rbs +17 -0
  194. data/sig/examples/verify_readme_usage/app.rbs +17 -0
  195. data/sig/examples/widget_block_demo/app.rbs +38 -0
  196. data/sig/examples/widget_box_demo/app.rbs +17 -0
  197. data/sig/examples/widget_calendar_demo/app.rbs +17 -0
  198. data/sig/examples/widget_cell_demo/app.rbs +17 -0
  199. data/sig/examples/widget_chart_demo/app.rbs +17 -0
  200. data/sig/examples/widget_gauge_demo/app.rbs +17 -0
  201. data/sig/examples/widget_layout_split/app.rbs +16 -0
  202. data/sig/examples/widget_line_gauge_demo/app.rbs +17 -0
  203. data/sig/examples/widget_list_demo/app.rbs +17 -0
  204. data/sig/examples/widget_map_demo/app.rbs +17 -0
  205. data/sig/examples/widget_popup_demo/app.rbs +17 -0
  206. data/sig/examples/widget_ratatui_logo_demo/app.rbs +17 -0
  207. data/sig/examples/widget_ratatui_mascot_demo/app.rbs +17 -0
  208. data/sig/examples/widget_rect/app.rbs +18 -0
  209. data/sig/examples/widget_render/app.rbs +16 -0
  210. data/sig/examples/widget_rich_text/app.rbs +17 -0
  211. data/sig/examples/widget_scroll_text/app.rbs +17 -0
  212. data/sig/examples/widget_scrollbar_demo/app.rbs +17 -0
  213. data/sig/examples/widget_sparkline_demo/app.rbs +16 -0
  214. data/sig/examples/widget_style_colors/app.rbs +20 -0
  215. data/sig/examples/widget_table_demo/app.rbs +17 -0
  216. data/sig/examples/widget_text_width/app.rbs +16 -0
  217. data/sig/generated/event_key_predicates.rbs +1348 -0
  218. data/sig/manifest.yaml +5 -0
  219. data/sig/patches/data.rbs +26 -0
  220. data/sig/patches/debugger__.rbs +8 -0
  221. data/sig/ratatui_ruby/backend/window_size.rbs +17 -0
  222. data/sig/ratatui_ruby/backend.rbs +12 -0
  223. data/sig/ratatui_ruby/buffer/cell.rbs +46 -0
  224. data/sig/ratatui_ruby/buffer.rbs +18 -0
  225. data/sig/ratatui_ruby/cell.rbs +44 -0
  226. data/sig/ratatui_ruby/clear.rbs +18 -0
  227. data/sig/ratatui_ruby/constraint.rbs +26 -0
  228. data/sig/ratatui_ruby/debug.rbs +45 -0
  229. data/sig/ratatui_ruby/draw.rbs +30 -0
  230. data/sig/ratatui_ruby/event.rbs +249 -0
  231. data/sig/ratatui_ruby/frame.rbs +23 -0
  232. data/sig/ratatui_ruby/interfaces.rbs +25 -0
  233. data/sig/ratatui_ruby/labs.rbs +90 -0
  234. data/sig/ratatui_ruby/layout/alignment.rbs +26 -0
  235. data/sig/ratatui_ruby/layout/constraint.rbs +39 -0
  236. data/sig/ratatui_ruby/layout/layout.rbs +45 -0
  237. data/sig/ratatui_ruby/layout/position.rbs +18 -0
  238. data/sig/ratatui_ruby/layout/rect.rbs +64 -0
  239. data/sig/ratatui_ruby/layout/size.rbs +18 -0
  240. data/sig/ratatui_ruby/list_state.rbs +23 -0
  241. data/sig/ratatui_ruby/output_guard.rbs +23 -0
  242. data/sig/ratatui_ruby/ratatui_ruby.rbs +113 -0
  243. data/sig/ratatui_ruby/rect.rbs +17 -0
  244. data/sig/ratatui_ruby/scrollbar_state.rbs +24 -0
  245. data/sig/ratatui_ruby/session.rbs +93 -0
  246. data/sig/ratatui_ruby/style/color.rbs +22 -0
  247. data/sig/ratatui_ruby/style/style.rbs +29 -0
  248. data/sig/ratatui_ruby/symbols.rbs +141 -0
  249. data/sig/ratatui_ruby/synthetic_events.rbs +24 -0
  250. data/sig/ratatui_ruby/table_state.rbs +27 -0
  251. data/sig/ratatui_ruby/terminal/capabilities.rbs +38 -0
  252. data/sig/ratatui_ruby/terminal/viewport.rbs +33 -0
  253. data/sig/ratatui_ruby/terminal_lifecycle.rbs +39 -0
  254. data/sig/ratatui_ruby/test_helper/event_injection.rbs +22 -0
  255. data/sig/ratatui_ruby/test_helper/snapshot.rbs +37 -0
  256. data/sig/ratatui_ruby/test_helper/style_assertions.rbs +77 -0
  257. data/sig/ratatui_ruby/test_helper/terminal.rbs +20 -0
  258. data/sig/ratatui_ruby/test_helper/test_doubles.rbs +32 -0
  259. data/sig/ratatui_ruby/test_helper.rbs +18 -0
  260. data/sig/ratatui_ruby/text/line.rbs +27 -0
  261. data/sig/ratatui_ruby/text/span.rbs +23 -0
  262. data/sig/ratatui_ruby/text.rbs +12 -0
  263. data/sig/ratatui_ruby/tui/buffer_factories.rbs +16 -0
  264. data/sig/ratatui_ruby/tui/canvas_factories.rbs +38 -0
  265. data/sig/ratatui_ruby/tui/core.rbs +23 -0
  266. data/sig/ratatui_ruby/tui/layout_factories.rbs +39 -0
  267. data/sig/ratatui_ruby/tui/state_factories.rbs +23 -0
  268. data/sig/ratatui_ruby/tui/style_factories.rbs +18 -0
  269. data/sig/ratatui_ruby/tui/text_factories.rbs +23 -0
  270. data/sig/ratatui_ruby/tui/widget_factories.rbs +138 -0
  271. data/sig/ratatui_ruby/tui.rbs +25 -0
  272. data/sig/ratatui_ruby/version.rbs +12 -0
  273. data/sig/ratatui_ruby/widgets/bar_chart.rbs +95 -0
  274. data/sig/ratatui_ruby/widgets/block.rbs +51 -0
  275. data/sig/ratatui_ruby/widgets/calendar.rbs +45 -0
  276. data/sig/ratatui_ruby/widgets/canvas.rbs +95 -0
  277. data/sig/ratatui_ruby/widgets/chart.rbs +91 -0
  278. data/sig/ratatui_ruby/widgets/coerceable_widget.rbs +26 -0
  279. data/sig/ratatui_ruby/widgets/gauge.rbs +44 -0
  280. data/sig/ratatui_ruby/widgets/line_gauge.rbs +48 -0
  281. data/sig/ratatui_ruby/widgets/list.rbs +63 -0
  282. data/sig/ratatui_ruby/widgets/misc.rbs +158 -0
  283. data/sig/ratatui_ruby/widgets/paragraph.rbs +45 -0
  284. data/sig/ratatui_ruby/widgets/row.rbs +43 -0
  285. data/sig/ratatui_ruby/widgets/scrollbar.rbs +53 -0
  286. data/sig/ratatui_ruby/widgets/shape/label.rbs +37 -0
  287. data/sig/ratatui_ruby/widgets/sparkline.rbs +45 -0
  288. data/sig/ratatui_ruby/widgets/table.rbs +78 -0
  289. data/sig/ratatui_ruby/widgets/tabs.rbs +44 -0
  290. data/sig/ratatui_ruby/widgets.rbs +16 -0
  291. data/vendor/goodcop/base.yml +1047 -0
  292. metadata +729 -0
@@ -0,0 +1,1737 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
20
+ [[package]]
21
+ name = "anyhow"
22
+ version = "1.0.100"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
25
+
26
+ [[package]]
27
+ name = "approx"
28
+ version = "0.5.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
31
+ dependencies = [
32
+ "num-traits",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "atomic"
37
+ version = "0.6.1"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340"
40
+ dependencies = [
41
+ "bytemuck",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "autocfg"
46
+ version = "1.5.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
49
+
50
+ [[package]]
51
+ name = "base64"
52
+ version = "0.22.1"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
55
+
56
+ [[package]]
57
+ name = "bindgen"
58
+ version = "0.69.5"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
61
+ dependencies = [
62
+ "bitflags 2.10.0",
63
+ "cexpr",
64
+ "clang-sys",
65
+ "itertools 0.12.1",
66
+ "lazy_static",
67
+ "lazycell",
68
+ "proc-macro2",
69
+ "quote",
70
+ "regex",
71
+ "rustc-hash",
72
+ "shlex",
73
+ "syn 2.0.111",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "bit-set"
78
+ version = "0.5.3"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
81
+ dependencies = [
82
+ "bit-vec",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "bit-vec"
87
+ version = "0.6.3"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
90
+
91
+ [[package]]
92
+ name = "bitflags"
93
+ version = "1.3.2"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
96
+
97
+ [[package]]
98
+ name = "bitflags"
99
+ version = "2.10.0"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
102
+
103
+ [[package]]
104
+ name = "block-buffer"
105
+ version = "0.10.4"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
108
+ dependencies = [
109
+ "generic-array",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "bumpalo"
114
+ version = "3.19.1"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
117
+
118
+ [[package]]
119
+ name = "by_address"
120
+ version = "1.2.1"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
123
+
124
+ [[package]]
125
+ name = "bytemuck"
126
+ version = "1.24.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
129
+
130
+ [[package]]
131
+ name = "castaway"
132
+ version = "0.2.4"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
135
+ dependencies = [
136
+ "rustversion",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "cexpr"
141
+ version = "0.6.0"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
144
+ dependencies = [
145
+ "nom",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "cfg-if"
150
+ version = "1.0.4"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
153
+
154
+ [[package]]
155
+ name = "cfg_aliases"
156
+ version = "0.2.1"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
159
+
160
+ [[package]]
161
+ name = "clang-sys"
162
+ version = "1.8.1"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
165
+ dependencies = [
166
+ "glob",
167
+ "libc",
168
+ "libloading",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "compact_str"
173
+ version = "0.9.0"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
176
+ dependencies = [
177
+ "castaway",
178
+ "cfg-if",
179
+ "itoa",
180
+ "rustversion",
181
+ "ryu",
182
+ "static_assertions",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "convert_case"
187
+ version = "0.10.0"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
190
+ dependencies = [
191
+ "unicode-segmentation",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "cpufeatures"
196
+ version = "0.2.17"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
199
+ dependencies = [
200
+ "libc",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "crossterm"
205
+ version = "0.29.0"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
208
+ dependencies = [
209
+ "bitflags 2.10.0",
210
+ "crossterm_winapi",
211
+ "derive_more",
212
+ "document-features",
213
+ "mio",
214
+ "parking_lot",
215
+ "rustix",
216
+ "signal-hook",
217
+ "signal-hook-mio",
218
+ "winapi",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "crossterm_winapi"
223
+ version = "0.9.1"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
226
+ dependencies = [
227
+ "winapi",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "crypto-common"
232
+ version = "0.1.7"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
235
+ dependencies = [
236
+ "generic-array",
237
+ "typenum",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "csscolorparser"
242
+ version = "0.6.2"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "eb2a7d3066da2de787b7f032c736763eb7ae5d355f81a68bab2675a96008b0bf"
245
+ dependencies = [
246
+ "lab",
247
+ "phf",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "darling"
252
+ version = "0.20.11"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
255
+ dependencies = [
256
+ "darling_core",
257
+ "darling_macro",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "darling_core"
262
+ version = "0.20.11"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
265
+ dependencies = [
266
+ "fnv",
267
+ "ident_case",
268
+ "proc-macro2",
269
+ "quote",
270
+ "strsim",
271
+ "syn 2.0.111",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "darling_macro"
276
+ version = "0.20.11"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
279
+ dependencies = [
280
+ "darling_core",
281
+ "quote",
282
+ "syn 2.0.111",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "deltae"
287
+ version = "0.3.2"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "5729f5117e208430e437df2f4843f5e5952997175992d1414f94c57d61e270b4"
290
+
291
+ [[package]]
292
+ name = "deranged"
293
+ version = "0.5.5"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
296
+ dependencies = [
297
+ "powerfmt",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "derive_more"
302
+ version = "2.1.1"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
305
+ dependencies = [
306
+ "derive_more-impl",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "derive_more-impl"
311
+ version = "2.1.1"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
314
+ dependencies = [
315
+ "convert_case",
316
+ "proc-macro2",
317
+ "quote",
318
+ "rustc_version",
319
+ "syn 2.0.111",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "digest"
324
+ version = "0.10.7"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
327
+ dependencies = [
328
+ "block-buffer",
329
+ "crypto-common",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "document-features"
334
+ version = "0.2.12"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
337
+ dependencies = [
338
+ "litrs",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "either"
343
+ version = "1.15.0"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
346
+
347
+ [[package]]
348
+ name = "equivalent"
349
+ version = "1.0.2"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
352
+
353
+ [[package]]
354
+ name = "errno"
355
+ version = "0.3.14"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
358
+ dependencies = [
359
+ "libc",
360
+ "windows-sys",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "euclid"
365
+ version = "0.22.11"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "ad9cdb4b747e485a12abb0e6566612956c7a1bafa3bdb8d682c5b6d403589e48"
368
+ dependencies = [
369
+ "num-traits",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "fancy-regex"
374
+ version = "0.11.0"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
377
+ dependencies = [
378
+ "bit-set",
379
+ "regex",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "fast-srgb8"
384
+ version = "1.0.0"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1"
387
+
388
+ [[package]]
389
+ name = "filedescriptor"
390
+ version = "0.8.3"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "e40758ed24c9b2eeb76c35fb0aebc66c626084edd827e07e1552279814c6682d"
393
+ dependencies = [
394
+ "libc",
395
+ "thiserror 1.0.69",
396
+ "winapi",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "finl_unicode"
401
+ version = "1.4.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "9844ddc3a6e533d62bba727eb6c28b5d360921d5175e9ff0f1e621a5c590a4d5"
404
+
405
+ [[package]]
406
+ name = "fixedbitset"
407
+ version = "0.4.2"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
410
+
411
+ [[package]]
412
+ name = "fnv"
413
+ version = "1.0.7"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
416
+
417
+ [[package]]
418
+ name = "foldhash"
419
+ version = "0.2.0"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
422
+
423
+ [[package]]
424
+ name = "generic-array"
425
+ version = "0.14.7"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
428
+ dependencies = [
429
+ "typenum",
430
+ "version_check",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "getrandom"
435
+ version = "0.3.4"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
438
+ dependencies = [
439
+ "cfg-if",
440
+ "libc",
441
+ "r-efi",
442
+ "wasip2",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "glob"
447
+ version = "0.3.3"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
450
+
451
+ [[package]]
452
+ name = "hashbrown"
453
+ version = "0.16.1"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
456
+ dependencies = [
457
+ "allocator-api2",
458
+ "equivalent",
459
+ "foldhash",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "heck"
464
+ version = "0.5.0"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
467
+
468
+ [[package]]
469
+ name = "hex"
470
+ version = "0.4.3"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
473
+
474
+ [[package]]
475
+ name = "ident_case"
476
+ version = "1.0.1"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
479
+
480
+ [[package]]
481
+ name = "indoc"
482
+ version = "2.0.7"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
485
+ dependencies = [
486
+ "rustversion",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "instability"
491
+ version = "0.3.10"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "6778b0196eefee7df739db78758e5cf9b37412268bfa5650bfeed028aed20d9c"
494
+ dependencies = [
495
+ "darling",
496
+ "indoc",
497
+ "proc-macro2",
498
+ "quote",
499
+ "syn 2.0.111",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "itertools"
504
+ version = "0.12.1"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
507
+ dependencies = [
508
+ "either",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "itertools"
513
+ version = "0.13.0"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
516
+ dependencies = [
517
+ "either",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "itertools"
522
+ version = "0.14.0"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
525
+ dependencies = [
526
+ "either",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "itoa"
531
+ version = "1.0.16"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "7ee5b5339afb4c41626dde77b7a611bd4f2c202b897852b4bcf5d03eddc61010"
534
+
535
+ [[package]]
536
+ name = "js-sys"
537
+ version = "0.3.83"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
540
+ dependencies = [
541
+ "once_cell",
542
+ "wasm-bindgen",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "kasuari"
547
+ version = "0.4.11"
548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
549
+ checksum = "8fe90c1150662e858c7d5f945089b7517b0a80d8bf7ba4b1b5ffc984e7230a5b"
550
+ dependencies = [
551
+ "hashbrown",
552
+ "portable-atomic",
553
+ "thiserror 2.0.17",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "lab"
558
+ version = "0.11.0"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "bf36173d4167ed999940f804952e6b08197cae5ad5d572eb4db150ce8ad5d58f"
561
+
562
+ [[package]]
563
+ name = "lazy_static"
564
+ version = "1.5.0"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
567
+
568
+ [[package]]
569
+ name = "lazycell"
570
+ version = "1.3.0"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
573
+
574
+ [[package]]
575
+ name = "libc"
576
+ version = "0.2.178"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
579
+
580
+ [[package]]
581
+ name = "libloading"
582
+ version = "0.8.9"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
585
+ dependencies = [
586
+ "cfg-if",
587
+ "windows-link",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "line-clipping"
592
+ version = "0.3.5"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "5f4de44e98ddbf09375cbf4d17714d18f39195f4f4894e8524501726fd9a8a4a"
595
+ dependencies = [
596
+ "bitflags 2.10.0",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "linux-raw-sys"
601
+ version = "0.11.0"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
604
+
605
+ [[package]]
606
+ name = "litrs"
607
+ version = "1.0.0"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
610
+
611
+ [[package]]
612
+ name = "lock_api"
613
+ version = "0.4.14"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
616
+ dependencies = [
617
+ "scopeguard",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "log"
622
+ version = "0.4.29"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
625
+
626
+ [[package]]
627
+ name = "lru"
628
+ version = "0.16.2"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "96051b46fc183dc9cd4a223960ef37b9af631b55191852a8274bfef064cda20f"
631
+ dependencies = [
632
+ "hashbrown",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "mac_address"
637
+ version = "1.1.8"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "c0aeb26bf5e836cc1c341c8106051b573f1766dfa05aa87f0b98be5e51b02303"
640
+ dependencies = [
641
+ "nix",
642
+ "winapi",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "magnus"
647
+ version = "0.8.2"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
650
+ dependencies = [
651
+ "magnus-macros",
652
+ "rb-sys",
653
+ "rb-sys-env",
654
+ "seq-macro",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "magnus-macros"
659
+ version = "0.8.0"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
662
+ dependencies = [
663
+ "proc-macro2",
664
+ "quote",
665
+ "syn 2.0.111",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "memchr"
670
+ version = "2.7.6"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
673
+
674
+ [[package]]
675
+ name = "memmem"
676
+ version = "0.1.1"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "a64a92489e2744ce060c349162be1c5f33c6969234104dbd99ddb5feb08b8c15"
679
+
680
+ [[package]]
681
+ name = "memoffset"
682
+ version = "0.9.1"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
685
+ dependencies = [
686
+ "autocfg",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "minimal-lexical"
691
+ version = "0.2.1"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
694
+
695
+ [[package]]
696
+ name = "mio"
697
+ version = "1.1.1"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
700
+ dependencies = [
701
+ "libc",
702
+ "log",
703
+ "wasi",
704
+ "windows-sys",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "nix"
709
+ version = "0.29.0"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
712
+ dependencies = [
713
+ "bitflags 2.10.0",
714
+ "cfg-if",
715
+ "cfg_aliases",
716
+ "libc",
717
+ "memoffset",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "nom"
722
+ version = "7.1.3"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
725
+ dependencies = [
726
+ "memchr",
727
+ "minimal-lexical",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "num-conv"
732
+ version = "0.1.0"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
735
+
736
+ [[package]]
737
+ name = "num-derive"
738
+ version = "0.4.2"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
741
+ dependencies = [
742
+ "proc-macro2",
743
+ "quote",
744
+ "syn 2.0.111",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "num-traits"
749
+ version = "0.2.19"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
752
+ dependencies = [
753
+ "autocfg",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "num_threads"
758
+ version = "0.1.7"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
761
+ dependencies = [
762
+ "libc",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "once_cell"
767
+ version = "1.21.3"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
770
+
771
+ [[package]]
772
+ name = "ordered-float"
773
+ version = "4.6.0"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
776
+ dependencies = [
777
+ "num-traits",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "palette"
782
+ version = "0.7.6"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6"
785
+ dependencies = [
786
+ "approx",
787
+ "fast-srgb8",
788
+ "palette_derive",
789
+ "phf",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "palette_derive"
794
+ version = "0.7.6"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30"
797
+ dependencies = [
798
+ "by_address",
799
+ "proc-macro2",
800
+ "quote",
801
+ "syn 2.0.111",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "parking_lot"
806
+ version = "0.12.5"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
809
+ dependencies = [
810
+ "lock_api",
811
+ "parking_lot_core",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "parking_lot_core"
816
+ version = "0.9.12"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
819
+ dependencies = [
820
+ "cfg-if",
821
+ "libc",
822
+ "redox_syscall",
823
+ "smallvec",
824
+ "windows-link",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "pest"
829
+ version = "2.8.4"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "cbcfd20a6d4eeba40179f05735784ad32bdaef05ce8e8af05f180d45bb3e7e22"
832
+ dependencies = [
833
+ "memchr",
834
+ "ucd-trie",
835
+ ]
836
+
837
+ [[package]]
838
+ name = "pest_derive"
839
+ version = "2.8.4"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "51f72981ade67b1ca6adc26ec221be9f463f2b5839c7508998daa17c23d94d7f"
842
+ dependencies = [
843
+ "pest",
844
+ "pest_generator",
845
+ ]
846
+
847
+ [[package]]
848
+ name = "pest_generator"
849
+ version = "2.8.4"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "dee9efd8cdb50d719a80088b76f81aec7c41ed6d522ee750178f83883d271625"
852
+ dependencies = [
853
+ "pest",
854
+ "pest_meta",
855
+ "proc-macro2",
856
+ "quote",
857
+ "syn 2.0.111",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "pest_meta"
862
+ version = "2.8.4"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "bf1d70880e76bdc13ba52eafa6239ce793d85c8e43896507e43dd8984ff05b82"
865
+ dependencies = [
866
+ "pest",
867
+ "sha2",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "phf"
872
+ version = "0.11.3"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
875
+ dependencies = [
876
+ "phf_macros",
877
+ "phf_shared",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "phf_codegen"
882
+ version = "0.11.3"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
885
+ dependencies = [
886
+ "phf_generator",
887
+ "phf_shared",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "phf_generator"
892
+ version = "0.11.3"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
895
+ dependencies = [
896
+ "phf_shared",
897
+ "rand",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "phf_macros"
902
+ version = "0.11.3"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
905
+ dependencies = [
906
+ "phf_generator",
907
+ "phf_shared",
908
+ "proc-macro2",
909
+ "quote",
910
+ "syn 2.0.111",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "phf_shared"
915
+ version = "0.11.3"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
918
+ dependencies = [
919
+ "siphasher",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "portable-atomic"
924
+ version = "1.13.0"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
927
+
928
+ [[package]]
929
+ name = "powerfmt"
930
+ version = "0.2.0"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
933
+
934
+ [[package]]
935
+ name = "proc-macro2"
936
+ version = "1.0.103"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
939
+ dependencies = [
940
+ "unicode-ident",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "quote"
945
+ version = "1.0.42"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
948
+ dependencies = [
949
+ "proc-macro2",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "r-efi"
954
+ version = "5.3.0"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
957
+
958
+ [[package]]
959
+ name = "rand"
960
+ version = "0.8.5"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
963
+ dependencies = [
964
+ "rand_core",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "rand_core"
969
+ version = "0.6.4"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
972
+
973
+ [[package]]
974
+ name = "ratatui"
975
+ version = "0.30.0"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "d1ce67fb8ba4446454d1c8dbaeda0557ff5e94d39d5e5ed7f10a65eb4c8266bc"
978
+ dependencies = [
979
+ "instability",
980
+ "palette",
981
+ "ratatui-core",
982
+ "ratatui-crossterm",
983
+ "ratatui-macros",
984
+ "ratatui-termwiz",
985
+ "ratatui-widgets",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "ratatui-core"
990
+ version = "0.1.0"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "5ef8dea09a92caaf73bff7adb70b76162e5937524058a7e5bff37869cbbec293"
993
+ dependencies = [
994
+ "bitflags 2.10.0",
995
+ "compact_str",
996
+ "hashbrown",
997
+ "indoc",
998
+ "itertools 0.14.0",
999
+ "kasuari",
1000
+ "lru",
1001
+ "palette",
1002
+ "strum",
1003
+ "thiserror 2.0.17",
1004
+ "unicode-segmentation",
1005
+ "unicode-truncate",
1006
+ "unicode-width 0.2.0",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "ratatui-crossterm"
1011
+ version = "0.1.0"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "577c9b9f652b4c121fb25c6a391dd06406d3b092ba68827e6d2f09550edc54b3"
1014
+ dependencies = [
1015
+ "cfg-if",
1016
+ "crossterm",
1017
+ "instability",
1018
+ "ratatui-core",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "ratatui-macros"
1023
+ version = "0.7.0"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "a7f1342a13e83e4bb9d0b793d0ea762be633f9582048c892ae9041ef39c936f4"
1026
+ dependencies = [
1027
+ "ratatui-core",
1028
+ "ratatui-widgets",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "ratatui-termwiz"
1033
+ version = "0.1.0"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "0f76fe0bd0ed4295f0321b1676732e2454024c15a35d01904ddb315afd3d545c"
1036
+ dependencies = [
1037
+ "ratatui-core",
1038
+ "termwiz",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "ratatui-widgets"
1043
+ version = "0.3.0"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "d7dbfa023cd4e604c2553483820c5fe8aa9d71a42eea5aa77c6e7f35756612db"
1046
+ dependencies = [
1047
+ "bitflags 2.10.0",
1048
+ "hashbrown",
1049
+ "indoc",
1050
+ "instability",
1051
+ "itertools 0.14.0",
1052
+ "line-clipping",
1053
+ "ratatui-core",
1054
+ "strum",
1055
+ "time",
1056
+ "unicode-segmentation",
1057
+ "unicode-width 0.2.0",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "ratatui_ruby"
1062
+ version = "1.4.0"
1063
+ dependencies = [
1064
+ "bumpalo",
1065
+ "lazy_static",
1066
+ "magnus",
1067
+ "ratatui",
1068
+ "rb-sys",
1069
+ "time",
1070
+ "unicode-width 0.1.14",
1071
+ ]
1072
+
1073
+ [[package]]
1074
+ name = "rb-sys"
1075
+ version = "0.9.123"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "45fb1a185af97ee456f1c9e56dbe6e2e662bec4fdeaf83c4c28e0e6adfb18816"
1078
+ dependencies = [
1079
+ "rb-sys-build",
1080
+ ]
1081
+
1082
+ [[package]]
1083
+ name = "rb-sys-build"
1084
+ version = "0.9.123"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "a58ebd02d7a6033e6a5f6f8d150c1e9f16506039092b84a73e6bedce6d3adf41"
1087
+ dependencies = [
1088
+ "bindgen",
1089
+ "lazy_static",
1090
+ "proc-macro2",
1091
+ "quote",
1092
+ "regex",
1093
+ "shell-words",
1094
+ "syn 2.0.111",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "rb-sys-env"
1099
+ version = "0.2.2"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
1102
+
1103
+ [[package]]
1104
+ name = "redox_syscall"
1105
+ version = "0.5.18"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1108
+ dependencies = [
1109
+ "bitflags 2.10.0",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "regex"
1114
+ version = "1.12.2"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1117
+ dependencies = [
1118
+ "aho-corasick",
1119
+ "memchr",
1120
+ "regex-automata",
1121
+ "regex-syntax",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "regex-automata"
1126
+ version = "0.4.13"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1129
+ dependencies = [
1130
+ "aho-corasick",
1131
+ "memchr",
1132
+ "regex-syntax",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "regex-syntax"
1137
+ version = "0.8.8"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1140
+
1141
+ [[package]]
1142
+ name = "rustc-hash"
1143
+ version = "1.1.0"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1146
+
1147
+ [[package]]
1148
+ name = "rustc_version"
1149
+ version = "0.4.1"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1152
+ dependencies = [
1153
+ "semver",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "rustix"
1158
+ version = "1.1.3"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
1161
+ dependencies = [
1162
+ "bitflags 2.10.0",
1163
+ "errno",
1164
+ "libc",
1165
+ "linux-raw-sys",
1166
+ "windows-sys",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "rustversion"
1171
+ version = "1.0.22"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1174
+
1175
+ [[package]]
1176
+ name = "ryu"
1177
+ version = "1.0.21"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "62049b2877bf12821e8f9ad256ee38fdc31db7387ec2d3b3f403024de2034aea"
1180
+
1181
+ [[package]]
1182
+ name = "scopeguard"
1183
+ version = "1.2.0"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1186
+
1187
+ [[package]]
1188
+ name = "semver"
1189
+ version = "1.0.27"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1192
+
1193
+ [[package]]
1194
+ name = "seq-macro"
1195
+ version = "0.3.6"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1198
+
1199
+ [[package]]
1200
+ name = "serde"
1201
+ version = "1.0.228"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1204
+ dependencies = [
1205
+ "serde_core",
1206
+ "serde_derive",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "serde_core"
1211
+ version = "1.0.228"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1214
+ dependencies = [
1215
+ "serde_derive",
1216
+ ]
1217
+
1218
+ [[package]]
1219
+ name = "serde_derive"
1220
+ version = "1.0.228"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1223
+ dependencies = [
1224
+ "proc-macro2",
1225
+ "quote",
1226
+ "syn 2.0.111",
1227
+ ]
1228
+
1229
+ [[package]]
1230
+ name = "sha2"
1231
+ version = "0.10.9"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1234
+ dependencies = [
1235
+ "cfg-if",
1236
+ "cpufeatures",
1237
+ "digest",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "shell-words"
1242
+ version = "1.1.1"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
1245
+
1246
+ [[package]]
1247
+ name = "shlex"
1248
+ version = "1.3.0"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1251
+
1252
+ [[package]]
1253
+ name = "signal-hook"
1254
+ version = "0.3.18"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
1257
+ dependencies = [
1258
+ "libc",
1259
+ "signal-hook-registry",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "signal-hook-mio"
1264
+ version = "0.2.5"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
1267
+ dependencies = [
1268
+ "libc",
1269
+ "mio",
1270
+ "signal-hook",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "signal-hook-registry"
1275
+ version = "1.4.7"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad"
1278
+ dependencies = [
1279
+ "libc",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "siphasher"
1284
+ version = "1.0.1"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1287
+
1288
+ [[package]]
1289
+ name = "smallvec"
1290
+ version = "1.15.1"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1293
+
1294
+ [[package]]
1295
+ name = "static_assertions"
1296
+ version = "1.1.0"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1299
+
1300
+ [[package]]
1301
+ name = "strsim"
1302
+ version = "0.11.1"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1305
+
1306
+ [[package]]
1307
+ name = "strum"
1308
+ version = "0.27.2"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
1311
+ dependencies = [
1312
+ "strum_macros",
1313
+ ]
1314
+
1315
+ [[package]]
1316
+ name = "strum_macros"
1317
+ version = "0.27.2"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
1320
+ dependencies = [
1321
+ "heck",
1322
+ "proc-macro2",
1323
+ "quote",
1324
+ "syn 2.0.111",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "syn"
1329
+ version = "1.0.109"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1332
+ dependencies = [
1333
+ "proc-macro2",
1334
+ "quote",
1335
+ "unicode-ident",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "syn"
1340
+ version = "2.0.111"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
1343
+ dependencies = [
1344
+ "proc-macro2",
1345
+ "quote",
1346
+ "unicode-ident",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "terminfo"
1351
+ version = "0.9.0"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "d4ea810f0692f9f51b382fff5893887bb4580f5fa246fde546e0b13e7fcee662"
1354
+ dependencies = [
1355
+ "fnv",
1356
+ "nom",
1357
+ "phf",
1358
+ "phf_codegen",
1359
+ ]
1360
+
1361
+ [[package]]
1362
+ name = "termios"
1363
+ version = "0.3.3"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "411c5bf740737c7918b8b1fe232dca4dc9f8e754b8ad5e20966814001ed0ac6b"
1366
+ dependencies = [
1367
+ "libc",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "termwiz"
1372
+ version = "0.23.3"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "4676b37242ccbd1aabf56edb093a4827dc49086c0ffd764a5705899e0f35f8f7"
1375
+ dependencies = [
1376
+ "anyhow",
1377
+ "base64",
1378
+ "bitflags 2.10.0",
1379
+ "fancy-regex",
1380
+ "filedescriptor",
1381
+ "finl_unicode",
1382
+ "fixedbitset",
1383
+ "hex",
1384
+ "lazy_static",
1385
+ "libc",
1386
+ "log",
1387
+ "memmem",
1388
+ "nix",
1389
+ "num-derive",
1390
+ "num-traits",
1391
+ "ordered-float",
1392
+ "pest",
1393
+ "pest_derive",
1394
+ "phf",
1395
+ "sha2",
1396
+ "signal-hook",
1397
+ "siphasher",
1398
+ "terminfo",
1399
+ "termios",
1400
+ "thiserror 1.0.69",
1401
+ "ucd-trie",
1402
+ "unicode-segmentation",
1403
+ "vtparse",
1404
+ "wezterm-bidi",
1405
+ "wezterm-blob-leases",
1406
+ "wezterm-color-types",
1407
+ "wezterm-dynamic",
1408
+ "wezterm-input-types",
1409
+ "winapi",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "thiserror"
1414
+ version = "1.0.69"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1417
+ dependencies = [
1418
+ "thiserror-impl 1.0.69",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "thiserror"
1423
+ version = "2.0.17"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1426
+ dependencies = [
1427
+ "thiserror-impl 2.0.17",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "thiserror-impl"
1432
+ version = "1.0.69"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1435
+ dependencies = [
1436
+ "proc-macro2",
1437
+ "quote",
1438
+ "syn 2.0.111",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "thiserror-impl"
1443
+ version = "2.0.17"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1446
+ dependencies = [
1447
+ "proc-macro2",
1448
+ "quote",
1449
+ "syn 2.0.111",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "time"
1454
+ version = "0.3.44"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
1457
+ dependencies = [
1458
+ "deranged",
1459
+ "libc",
1460
+ "num-conv",
1461
+ "num_threads",
1462
+ "powerfmt",
1463
+ "serde",
1464
+ "time-core",
1465
+ "time-macros",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "time-core"
1470
+ version = "0.1.6"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
1473
+
1474
+ [[package]]
1475
+ name = "time-macros"
1476
+ version = "0.2.24"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
1479
+ dependencies = [
1480
+ "num-conv",
1481
+ "time-core",
1482
+ ]
1483
+
1484
+ [[package]]
1485
+ name = "typenum"
1486
+ version = "1.19.0"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1489
+
1490
+ [[package]]
1491
+ name = "ucd-trie"
1492
+ version = "0.1.7"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
1495
+
1496
+ [[package]]
1497
+ name = "unicode-ident"
1498
+ version = "1.0.22"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1501
+
1502
+ [[package]]
1503
+ name = "unicode-segmentation"
1504
+ version = "1.12.0"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1507
+
1508
+ [[package]]
1509
+ name = "unicode-truncate"
1510
+ version = "2.0.0"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "8fbf03860ff438702f3910ca5f28f8dac63c1c11e7efb5012b8b175493606330"
1513
+ dependencies = [
1514
+ "itertools 0.13.0",
1515
+ "unicode-segmentation",
1516
+ "unicode-width 0.2.0",
1517
+ ]
1518
+
1519
+ [[package]]
1520
+ name = "unicode-width"
1521
+ version = "0.1.14"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1524
+
1525
+ [[package]]
1526
+ name = "unicode-width"
1527
+ version = "0.2.0"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
1530
+
1531
+ [[package]]
1532
+ name = "utf8parse"
1533
+ version = "0.2.2"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1536
+
1537
+ [[package]]
1538
+ name = "uuid"
1539
+ version = "1.19.0"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
1542
+ dependencies = [
1543
+ "atomic",
1544
+ "getrandom",
1545
+ "js-sys",
1546
+ "wasm-bindgen",
1547
+ ]
1548
+
1549
+ [[package]]
1550
+ name = "version_check"
1551
+ version = "0.9.5"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1554
+
1555
+ [[package]]
1556
+ name = "vtparse"
1557
+ version = "0.6.2"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "6d9b2acfb050df409c972a37d3b8e08cdea3bddb0c09db9d53137e504cfabed0"
1560
+ dependencies = [
1561
+ "utf8parse",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "wasi"
1566
+ version = "0.11.1+wasi-snapshot-preview1"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1569
+
1570
+ [[package]]
1571
+ name = "wasip2"
1572
+ version = "1.0.1+wasi-0.2.4"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1575
+ dependencies = [
1576
+ "wit-bindgen",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "wasm-bindgen"
1581
+ version = "0.2.106"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
1584
+ dependencies = [
1585
+ "cfg-if",
1586
+ "once_cell",
1587
+ "rustversion",
1588
+ "wasm-bindgen-macro",
1589
+ "wasm-bindgen-shared",
1590
+ ]
1591
+
1592
+ [[package]]
1593
+ name = "wasm-bindgen-macro"
1594
+ version = "0.2.106"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
1597
+ dependencies = [
1598
+ "quote",
1599
+ "wasm-bindgen-macro-support",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "wasm-bindgen-macro-support"
1604
+ version = "0.2.106"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
1607
+ dependencies = [
1608
+ "bumpalo",
1609
+ "proc-macro2",
1610
+ "quote",
1611
+ "syn 2.0.111",
1612
+ "wasm-bindgen-shared",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "wasm-bindgen-shared"
1617
+ version = "0.2.106"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
1620
+ dependencies = [
1621
+ "unicode-ident",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "wezterm-bidi"
1626
+ version = "0.2.3"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "0c0a6e355560527dd2d1cf7890652f4f09bb3433b6aadade4c9b5ed76de5f3ec"
1629
+ dependencies = [
1630
+ "log",
1631
+ "wezterm-dynamic",
1632
+ ]
1633
+
1634
+ [[package]]
1635
+ name = "wezterm-blob-leases"
1636
+ version = "0.1.1"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "692daff6d93d94e29e4114544ef6d5c942a7ed998b37abdc19b17136ea428eb7"
1639
+ dependencies = [
1640
+ "getrandom",
1641
+ "mac_address",
1642
+ "sha2",
1643
+ "thiserror 1.0.69",
1644
+ "uuid",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "wezterm-color-types"
1649
+ version = "0.3.0"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "7de81ef35c9010270d63772bebef2f2d6d1f2d20a983d27505ac850b8c4b4296"
1652
+ dependencies = [
1653
+ "csscolorparser",
1654
+ "deltae",
1655
+ "lazy_static",
1656
+ "wezterm-dynamic",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "wezterm-dynamic"
1661
+ version = "0.2.1"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "5f2ab60e120fd6eaa68d9567f3226e876684639d22a4219b313ff69ec0ccd5ac"
1664
+ dependencies = [
1665
+ "log",
1666
+ "ordered-float",
1667
+ "strsim",
1668
+ "thiserror 1.0.69",
1669
+ "wezterm-dynamic-derive",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "wezterm-dynamic-derive"
1674
+ version = "0.1.1"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "46c0cf2d539c645b448eaffec9ec494b8b19bd5077d9e58cb1ae7efece8d575b"
1677
+ dependencies = [
1678
+ "proc-macro2",
1679
+ "quote",
1680
+ "syn 1.0.109",
1681
+ ]
1682
+
1683
+ [[package]]
1684
+ name = "wezterm-input-types"
1685
+ version = "0.1.0"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "7012add459f951456ec9d6c7e6fc340b1ce15d6fc9629f8c42853412c029e57e"
1688
+ dependencies = [
1689
+ "bitflags 1.3.2",
1690
+ "euclid",
1691
+ "lazy_static",
1692
+ "serde",
1693
+ "wezterm-dynamic",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "winapi"
1698
+ version = "0.3.9"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1701
+ dependencies = [
1702
+ "winapi-i686-pc-windows-gnu",
1703
+ "winapi-x86_64-pc-windows-gnu",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "winapi-i686-pc-windows-gnu"
1708
+ version = "0.4.0"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1711
+
1712
+ [[package]]
1713
+ name = "winapi-x86_64-pc-windows-gnu"
1714
+ version = "0.4.0"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1717
+
1718
+ [[package]]
1719
+ name = "windows-link"
1720
+ version = "0.2.1"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1723
+
1724
+ [[package]]
1725
+ name = "windows-sys"
1726
+ version = "0.61.2"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1729
+ dependencies = [
1730
+ "windows-link",
1731
+ ]
1732
+
1733
+ [[package]]
1734
+ name = "wit-bindgen"
1735
+ version = "0.46.0"
1736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1737
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"