kalast 0.5.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. kalast-0.5.0/Cargo.lock +4592 -0
  2. kalast-0.5.0/Cargo.toml +138 -0
  3. kalast-0.5.0/PKG-INFO +99 -0
  4. kalast-0.5.0/README.rst +80 -0
  5. kalast-0.5.0/kalast/__init__.py +37 -0
  6. kalast-0.5.0/kalast/__main__.py +46 -0
  7. kalast-0.5.0/kalast/_util.py +197 -0
  8. kalast-0.5.0/kalast/app/__init__.py +40 -0
  9. kalast-0.5.0/kalast/app/_core.py +3 -0
  10. kalast-0.5.0/kalast/app/_core.pyi +272 -0
  11. kalast-0.5.0/kalast/app/body.py +3 -0
  12. kalast-0.5.0/kalast/app/body.pyi +11 -0
  13. kalast-0.5.0/kalast/app/config.py +6 -0
  14. kalast-0.5.0/kalast/app/config.pyi +831 -0
  15. kalast-0.5.0/kalast/app/frame.py +4 -0
  16. kalast-0.5.0/kalast/app/frame.pyi +162 -0
  17. kalast-0.5.0/kalast/app/gpu.py +3 -0
  18. kalast-0.5.0/kalast/app/gpu.pyi +15 -0
  19. kalast-0.5.0/kalast/app/simulation.py +3 -0
  20. kalast-0.5.0/kalast/app/simulation.pyi +330 -0
  21. kalast-0.5.0/kalast/astro.py +3 -0
  22. kalast-0.5.0/kalast/editor.py +213 -0
  23. kalast-0.5.0/kalast/entity.py +30 -0
  24. kalast-0.5.0/kalast/entity.pyi +48 -0
  25. kalast-0.5.0/kalast/gpu/__init__.py +1 -0
  26. kalast-0.5.0/kalast/gpu/compute.py +3 -0
  27. kalast-0.5.0/kalast/gpu/config.py +5 -0
  28. kalast-0.5.0/kalast/gpu/scene.py +3 -0
  29. kalast-0.5.0/kalast/gpu/win.py +7 -0
  30. kalast-0.5.0/kalast/io/__init__.py +0 -0
  31. kalast-0.5.0/kalast/io/read.py +176 -0
  32. kalast-0.5.0/kalast/io/read_binary.py +43 -0
  33. kalast-0.5.0/kalast/lightcurve.py +7 -0
  34. kalast-0.5.0/kalast/lightcurve.pyi +95 -0
  35. kalast-0.5.0/kalast/math.py +11 -0
  36. kalast-0.5.0/kalast/math.pyi +10 -0
  37. kalast-0.5.0/kalast/mesh.py +32 -0
  38. kalast-0.5.0/kalast/mesh.pyi +155 -0
  39. kalast-0.5.0/kalast/plot/__init__.py +1 -0
  40. kalast-0.5.0/kalast/plot/cbar.py +136 -0
  41. kalast-0.5.0/kalast/plot/paper.mplstyle +40 -0
  42. kalast-0.5.0/kalast/plot/smap.py +326 -0
  43. kalast-0.5.0/kalast/plot/style.py +22 -0
  44. kalast-0.5.0/kalast/plot/style1.mplstyle +28 -0
  45. kalast-0.5.0/kalast/plot/tool.py +374 -0
  46. kalast-0.5.0/kalast/plot/util.py +170 -0
  47. kalast-0.5.0/kalast/py.typed +0 -0
  48. kalast-0.5.0/kalast/routines/__init__.py +3 -0
  49. kalast-0.5.0/kalast/routines/setup.py +8 -0
  50. kalast-0.5.0/kalast/routines/setup.pyi +45 -0
  51. kalast-0.5.0/kalast/scattering.py +10 -0
  52. kalast-0.5.0/kalast/scattering.pyi +64 -0
  53. kalast-0.5.0/kalast/spice.py +68 -0
  54. kalast-0.5.0/kalast/tiri_alignment.py +82 -0
  55. kalast-0.5.0/kalast/tiri_timing.py +48 -0
  56. kalast-0.5.0/kalast/tpm/__init__.py +11 -0
  57. kalast-0.5.0/kalast/tpm/column.py +3 -0
  58. kalast-0.5.0/kalast/tpm/column.pyi +16 -0
  59. kalast-0.5.0/kalast/tpm/core.py +15 -0
  60. kalast-0.5.0/kalast/tpm/emit.py +9 -0
  61. kalast-0.5.0/kalast/tpm/explicit.py +362 -0
  62. kalast-0.5.0/kalast/tpm/heating.py +471 -0
  63. kalast-0.5.0/kalast/tpm/implicit.py +345 -0
  64. kalast-0.5.0/kalast/tpm/nonuniform.py +131 -0
  65. kalast-0.5.0/kalast/tpm/properties.py +13 -0
  66. kalast-0.5.0/kalast/tpm/properties.pyi +25 -0
  67. kalast-0.5.0/kalast/tpm/radiance.py +243 -0
  68. kalast-0.5.0/kalast/tpm/routine.py +201 -0
  69. kalast-0.5.0/kalast/tpm/routine.pyi +1 -0
  70. kalast-0.5.0/kalast/util.py +148 -0
  71. kalast-0.5.0/macros/Cargo.toml +26 -0
  72. kalast-0.5.0/macros/src/lib.rs +219 -0
  73. kalast-0.5.0/pyproject.toml +45 -0
  74. kalast-0.5.0/res/DejaVuSans.ttf +0 -0
  75. kalast-0.5.0/res/cube.obj +20 -0
  76. kalast-0.5.0/res/happy-tree.png +0 -0
  77. kalast-0.5.0/res/ico3.obj +1924 -0
  78. kalast-0.5.0/res/plane_crater_1024-5000_h=0.437.obj +3141 -0
  79. kalast-0.5.0/shaders/axes.wgsl +45 -0
  80. kalast-0.5.0/shaders/colorbar.wgsl +108 -0
  81. kalast-0.5.0/shaders/compute.wgsl +27 -0
  82. kalast-0.5.0/shaders/cubes_shadow.wgsl +115 -0
  83. kalast-0.5.0/shaders/depth_render.wgsl +39 -0
  84. kalast-0.5.0/shaders/equirectangular.wgsl +87 -0
  85. kalast-0.5.0/shaders/facet_id.wgsl +88 -0
  86. kalast-0.5.0/shaders/facet_shadow.wgsl +141 -0
  87. kalast-0.5.0/shaders/gizmo.wgsl +81 -0
  88. kalast-0.5.0/shaders/grid.wgsl +339 -0
  89. kalast-0.5.0/shaders/hdr.wgsl +53 -0
  90. kalast-0.5.0/shaders/hemicube.wgsl +59 -0
  91. kalast-0.5.0/shaders/hemicube_accumulate.wgsl +56 -0
  92. kalast-0.5.0/shaders/light_render.wgsl +70 -0
  93. kalast-0.5.0/shaders/light_save.wgsl +43 -0
  94. kalast-0.5.0/shaders/mesh.wgsl +128 -0
  95. kalast-0.5.0/shaders/mesh_flat.wgsl +92 -0
  96. kalast-0.5.0/shaders/mesh_old.wgsl +143 -0
  97. kalast-0.5.0/shaders/mesh_shadow.wgsl +485 -0
  98. kalast-0.5.0/shaders/occlusion.wgsl +74 -0
  99. kalast-0.5.0/shaders/pentagon.wgsl +24 -0
  100. kalast-0.5.0/shaders/radiance.wgsl +52 -0
  101. kalast-0.5.0/shaders/shader_main.wgsl +148 -0
  102. kalast-0.5.0/shaders/shadow.wgsl +64 -0
  103. kalast-0.5.0/shaders/sky.wgsl +46 -0
  104. kalast-0.5.0/shaders/texture.wgsl +29 -0
  105. kalast-0.5.0/shaders/tpm.wgsl +152 -0
  106. kalast-0.5.0/shaders/triangle.wgsl +19 -0
  107. kalast-0.5.0/shaders/triangle_color_xy.wgsl +21 -0
  108. kalast-0.5.0/shaders/uniform_camera.wgsl +35 -0
  109. kalast-0.5.0/shaders/vertices_color.wgsl +24 -0
  110. kalast-0.5.0/shaders/vertices_tex.wgsl +39 -0
  111. kalast-0.5.0/shaders/with_depth.wgsl +48 -0
  112. kalast-0.5.0/src/app/axes.rs +396 -0
  113. kalast-0.5.0/src/app/body.rs +21 -0
  114. kalast-0.5.0/src/app/cargo.rs +416 -0
  115. kalast-0.5.0/src/app/config.rs +1340 -0
  116. kalast-0.5.0/src/app/facet_id.rs +470 -0
  117. kalast-0.5.0/src/app/facet_shadow.rs +262 -0
  118. kalast-0.5.0/src/app/frame.rs +1691 -0
  119. kalast-0.5.0/src/app/gizmo.rs +519 -0
  120. kalast-0.5.0/src/app/gpu.rs +1697 -0
  121. kalast-0.5.0/src/app/gpu_timing.rs +304 -0
  122. kalast-0.5.0/src/app/gui/config_panel.rs +339 -0
  123. kalast-0.5.0/src/app/gui/mod.rs +1330 -0
  124. kalast-0.5.0/src/app/gui/simulation_panel.rs +970 -0
  125. kalast-0.5.0/src/app/hemicube.rs +630 -0
  126. kalast-0.5.0/src/app/hosted.rs +189 -0
  127. kalast-0.5.0/src/app/macos.rs +60 -0
  128. kalast-0.5.0/src/app/mod.rs +2822 -0
  129. kalast-0.5.0/src/app/occlusion.rs +366 -0
  130. kalast-0.5.0/src/app/pass/axes.rs +89 -0
  131. kalast-0.5.0/src/app/pass/colorbar.rs +43 -0
  132. kalast-0.5.0/src/app/pass/depth.rs +121 -0
  133. kalast-0.5.0/src/app/pass/gizmo.rs +90 -0
  134. kalast-0.5.0/src/app/pass/grid.rs +109 -0
  135. kalast-0.5.0/src/app/pass/light_cube.rs +55 -0
  136. kalast-0.5.0/src/app/pass/mod.rs +167 -0
  137. kalast-0.5.0/src/app/pass/render.rs +300 -0
  138. kalast-0.5.0/src/app/pass/shadow.rs +82 -0
  139. kalast-0.5.0/src/app/simulation.rs +1068 -0
  140. kalast-0.5.0/src/app/uniform.rs +293 -0
  141. kalast-0.5.0/src/app/window.rs +2765 -0
  142. kalast-0.5.0/src/astro.rs +0 -0
  143. kalast-0.5.0/src/bin/kalast.rs +149 -0
  144. kalast-0.5.0/src/entity.rs +316 -0
  145. kalast-0.5.0/src/gpu.rs +80 -0
  146. kalast-0.5.0/src/lib.rs +57 -0
  147. kalast-0.5.0/src/lightcurve.rs +792 -0
  148. kalast-0.5.0/src/math.rs +164 -0
  149. kalast-0.5.0/src/mesh.rs +1829 -0
  150. kalast-0.5.0/src/meshes/cube.rs +29 -0
  151. kalast-0.5.0/src/meshes/mod.rs +1 -0
  152. kalast-0.5.0/src/py/app/body.rs +40 -0
  153. kalast-0.5.0/src/py/app/config.rs +375 -0
  154. kalast-0.5.0/src/py/app/config_gen.rs +1343 -0
  155. kalast-0.5.0/src/py/app/frame.rs +414 -0
  156. kalast-0.5.0/src/py/app/gpu.rs +56 -0
  157. kalast-0.5.0/src/py/app/mod.rs +454 -0
  158. kalast-0.5.0/src/py/app/simulation.rs +660 -0
  159. kalast-0.5.0/src/py/entity.rs +395 -0
  160. kalast-0.5.0/src/py/mesh.rs +946 -0
  161. kalast-0.5.0/src/py/mod.rs +365 -0
  162. kalast-0.5.0/src/py/routines/mod.rs +1 -0
  163. kalast-0.5.0/src/py/routines/setup.rs +413 -0
  164. kalast-0.5.0/src/py/spice.rs +1 -0
  165. kalast-0.5.0/src/py/tpm/column.rs +59 -0
  166. kalast-0.5.0/src/py/tpm/gpu.rs +283 -0
  167. kalast-0.5.0/src/py/tpm/mod.rs +3 -0
  168. kalast-0.5.0/src/py/tpm/properties.rs +142 -0
  169. kalast-0.5.0/src/py/tpm/roughness.rs +122 -0
  170. kalast-0.5.0/src/py/util.rs +173 -0
  171. kalast-0.5.0/src/routines/mod.rs +1 -0
  172. kalast-0.5.0/src/routines/setup.rs +360 -0
  173. kalast-0.5.0/src/scattering.rs +862 -0
  174. kalast-0.5.0/src/shadowing.rs +674 -0
  175. kalast-0.5.0/src/spice.rs +0 -0
  176. kalast-0.5.0/src/tpm/column.rs +27 -0
  177. kalast-0.5.0/src/tpm/core.rs +327 -0
  178. kalast-0.5.0/src/tpm/emit.rs +132 -0
  179. kalast-0.5.0/src/tpm/gpu.rs +491 -0
  180. kalast-0.5.0/src/tpm/mod.rs +8 -0
  181. kalast-0.5.0/src/tpm/properties.rs +176 -0
  182. kalast-0.5.0/src/tpm/radiance.rs +341 -0
  183. kalast-0.5.0/src/tpm/roughness.rs +350 -0
  184. kalast-0.5.0/src/tpm/routine.rs +53 -0
  185. kalast-0.5.0/src/util.rs +52 -0
@@ -0,0 +1,4592 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ab_glyph"
7
+ version = "0.2.32"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "01c0457472c38ea5bd1c3b5ada5e368271cb550be7a4ca4a0b4634e9913f6cc2"
10
+ dependencies = [
11
+ "ab_glyph_rasterizer",
12
+ "owned_ttf_parser",
13
+ ]
14
+
15
+ [[package]]
16
+ name = "ab_glyph_rasterizer"
17
+ version = "0.1.10"
18
+ source = "registry+https://github.com/rust-lang/crates.io-index"
19
+ checksum = "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618"
20
+
21
+ [[package]]
22
+ name = "accesskit"
23
+ version = "0.24.1"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "d3b7f7f85a7e5f68090000ed7622545829afd484d210358702ae4cb97dd0c320"
26
+ dependencies = [
27
+ "uuid",
28
+ ]
29
+
30
+ [[package]]
31
+ name = "adler2"
32
+ version = "2.0.1"
33
+ source = "registry+https://github.com/rust-lang/crates.io-index"
34
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
35
+
36
+ [[package]]
37
+ name = "ahash"
38
+ version = "0.8.12"
39
+ source = "registry+https://github.com/rust-lang/crates.io-index"
40
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
41
+ dependencies = [
42
+ "cfg-if",
43
+ "getrandom 0.3.4",
44
+ "once_cell",
45
+ "version_check",
46
+ "zerocopy",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "aho-corasick"
51
+ version = "1.1.5"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
54
+ dependencies = [
55
+ "memchr",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "allocator-api2"
60
+ version = "0.2.21"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
63
+
64
+ [[package]]
65
+ name = "android-activity"
66
+ version = "0.6.1"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "0f2a1bb052857d5dd49572219344a7332b31b76405648eabac5bc68978251bcd"
69
+ dependencies = [
70
+ "android-properties",
71
+ "bitflags 2.13.2",
72
+ "cc",
73
+ "jni",
74
+ "libc",
75
+ "log",
76
+ "ndk",
77
+ "ndk-context",
78
+ "ndk-sys",
79
+ "num_enum",
80
+ "thiserror 2.0.20",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "android-properties"
85
+ version = "0.2.2"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
88
+
89
+ [[package]]
90
+ name = "android_system_properties"
91
+ version = "0.1.6"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
94
+ dependencies = [
95
+ "libc",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "anstream"
100
+ version = "1.0.0"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
103
+ dependencies = [
104
+ "anstyle",
105
+ "anstyle-parse",
106
+ "anstyle-query",
107
+ "anstyle-wincon",
108
+ "colorchoice",
109
+ "is_terminal_polyfill",
110
+ "utf8parse",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "anstyle"
115
+ version = "1.0.14"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
118
+
119
+ [[package]]
120
+ name = "anstyle-parse"
121
+ version = "1.0.0"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
124
+ dependencies = [
125
+ "utf8parse",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "anstyle-query"
130
+ version = "1.1.5"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
133
+ dependencies = [
134
+ "windows-sys 0.61.2",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "anstyle-wincon"
139
+ version = "3.0.11"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
142
+ dependencies = [
143
+ "anstyle",
144
+ "once_cell_polyfill",
145
+ "windows-sys 0.61.2",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "anyhow"
150
+ version = "1.0.104"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
153
+
154
+ [[package]]
155
+ name = "approx"
156
+ version = "0.5.1"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
159
+ dependencies = [
160
+ "num-traits",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "arboard"
165
+ version = "3.6.1"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf"
168
+ dependencies = [
169
+ "clipboard-win",
170
+ "image",
171
+ "log",
172
+ "objc2 0.6.4",
173
+ "objc2-app-kit 0.3.2",
174
+ "objc2-core-foundation",
175
+ "objc2-core-graphics",
176
+ "objc2-foundation 0.3.2",
177
+ "parking_lot",
178
+ "percent-encoding",
179
+ "windows-sys 0.60.2",
180
+ "x11rb",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "arrayref"
185
+ version = "0.3.9"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
188
+
189
+ [[package]]
190
+ name = "arrayvec"
191
+ version = "0.7.8"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
194
+ dependencies = [
195
+ "serde",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "as-raw-xcb-connection"
200
+ version = "1.0.1"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b"
203
+
204
+ [[package]]
205
+ name = "ash"
206
+ version = "0.38.0+1.3.281"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f"
209
+ dependencies = [
210
+ "libloading",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "atomic-waker"
215
+ version = "1.1.2"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
218
+
219
+ [[package]]
220
+ name = "autocfg"
221
+ version = "1.5.1"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
224
+
225
+ [[package]]
226
+ name = "bit-set"
227
+ version = "0.10.0"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "09ec2f926cc3060f09db9ebc5b52823d85268d24bb917e472c0c4bea35780a7d"
230
+ dependencies = [
231
+ "bit-vec",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "bit-vec"
236
+ version = "0.9.1"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
239
+
240
+ [[package]]
241
+ name = "bitflags"
242
+ version = "1.3.2"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
245
+
246
+ [[package]]
247
+ name = "bitflags"
248
+ version = "2.13.2"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
251
+ dependencies = [
252
+ "serde_core",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "block2"
257
+ version = "0.5.1"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
260
+ dependencies = [
261
+ "objc2 0.5.2",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "block2"
266
+ version = "0.6.2"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
269
+ dependencies = [
270
+ "objc2 0.6.4",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "bumpalo"
275
+ version = "3.20.3"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
278
+
279
+ [[package]]
280
+ name = "bytemuck"
281
+ version = "1.25.2"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
284
+ dependencies = [
285
+ "bytemuck_derive",
286
+ ]
287
+
288
+ [[package]]
289
+ name = "bytemuck_derive"
290
+ version = "1.12.1"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "6a1f896587b6f2c069c73d2f0913e2d590c3990285cd2f0b6aa02b786b4c679c"
293
+ dependencies = [
294
+ "proc-macro2",
295
+ "quote",
296
+ "syn 3.0.6",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "byteorder-lite"
301
+ version = "0.1.0"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
304
+
305
+ [[package]]
306
+ name = "bytes"
307
+ version = "1.12.1"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
310
+
311
+ [[package]]
312
+ name = "calloop"
313
+ version = "0.13.0"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec"
316
+ dependencies = [
317
+ "bitflags 2.13.2",
318
+ "log",
319
+ "polling",
320
+ "rustix 0.38.44",
321
+ "slab",
322
+ "thiserror 1.0.69",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "calloop"
327
+ version = "0.14.4"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "4dbf9978365bac10f54d1d4b04f7ce4427e51f71d61f2fe15e3fed5166474df7"
330
+ dependencies = [
331
+ "bitflags 2.13.2",
332
+ "polling",
333
+ "rustix 1.1.5",
334
+ "slab",
335
+ "tracing",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "calloop-wayland-source"
340
+ version = "0.3.0"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20"
343
+ dependencies = [
344
+ "calloop 0.13.0",
345
+ "rustix 0.38.44",
346
+ "wayland-backend",
347
+ "wayland-client",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "calloop-wayland-source"
352
+ version = "0.4.1"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "138efcf0940a02ebf0cc8d1eff41a1682a46b431630f4c52450d6265876021fa"
355
+ dependencies = [
356
+ "calloop 0.14.4",
357
+ "rustix 1.1.5",
358
+ "wayland-backend",
359
+ "wayland-client",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "cc"
364
+ version = "1.4.7"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "54413ede23c2daf518f35156dfde027feb2374004d63bd497f983c8db9c0e313"
367
+ dependencies = [
368
+ "find-msvc-tools",
369
+ "jobserver",
370
+ "libc",
371
+ "shlex",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "cfg-if"
376
+ version = "1.0.5"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "4e7648175b45a9a48536d676f68d918270699102aa8dab5496df06904c914600"
379
+
380
+ [[package]]
381
+ name = "cfg_aliases"
382
+ version = "0.2.2"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
385
+
386
+ [[package]]
387
+ name = "chacha20"
388
+ version = "0.10.2"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
391
+ dependencies = [
392
+ "cfg-if",
393
+ "cpufeatures",
394
+ "rand_core",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "clipboard-win"
399
+ version = "5.4.1"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
402
+ dependencies = [
403
+ "error-code",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "codespan-reporting"
408
+ version = "0.13.1"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
411
+ dependencies = [
412
+ "serde",
413
+ "termcolor",
414
+ "unicode-width",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "color"
419
+ version = "0.3.3"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "2ec7c5eb7a16992b1904d76c517d170ab353b0e0b3d5a0c81a8a0cd1037893cf"
422
+ dependencies = [
423
+ "bytemuck",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "colorchoice"
428
+ version = "1.0.5"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
431
+
432
+ [[package]]
433
+ name = "combine"
434
+ version = "4.6.8"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "cfc320937d09e6de266b31b9afb480f197d7a861be86be7cb2ea7e5d1bfffc5e"
437
+ dependencies = [
438
+ "bytes",
439
+ "memchr",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "concurrent-queue"
444
+ version = "2.5.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
447
+ dependencies = [
448
+ "crossbeam-utils",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "confique"
453
+ version = "0.2.6"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "12d6d568e8e1848c6e7df28ca716ab21f3d61c48760102c1848b5e0299793069"
456
+ dependencies = [
457
+ "confique-macro",
458
+ "json5",
459
+ "serde",
460
+ "serde_yaml",
461
+ "toml",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "confique-macro"
466
+ version = "0.0.10"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "e367f4d469a9fb1c3da5d4983f445c26dffa20eb293552287e8e9389e028e7dc"
469
+ dependencies = [
470
+ "heck 0.3.3",
471
+ "proc-macro2",
472
+ "quote",
473
+ "syn 1.0.109",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "core-foundation"
478
+ version = "0.9.4"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
481
+ dependencies = [
482
+ "core-foundation-sys",
483
+ "libc",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "core-foundation-sys"
488
+ version = "0.8.7"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
491
+
492
+ [[package]]
493
+ name = "core-graphics"
494
+ version = "0.23.2"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
497
+ dependencies = [
498
+ "bitflags 1.3.2",
499
+ "core-foundation",
500
+ "core-graphics-types",
501
+ "foreign-types",
502
+ "libc",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "core-graphics-types"
507
+ version = "0.1.3"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
510
+ dependencies = [
511
+ "bitflags 1.3.2",
512
+ "core-foundation",
513
+ "libc",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "cpufeatures"
518
+ version = "0.3.1"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
521
+ dependencies = [
522
+ "libc",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "crc32fast"
527
+ version = "1.5.2"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "01a7799fd6b852db0e61728dde9a204c423b44d689dbd432522543614b490e78"
530
+ dependencies = [
531
+ "cfg-if",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "crossbeam"
536
+ version = "0.8.5"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "e71406cd8807725f7ac2f999a4cdd32e98f829fdf65f528343cebf945e41df1e"
539
+ dependencies = [
540
+ "crossbeam-channel",
541
+ "crossbeam-deque",
542
+ "crossbeam-epoch",
543
+ "crossbeam-queue",
544
+ "crossbeam-utils",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "crossbeam-channel"
549
+ version = "0.5.17"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "98b0cc327b5bc766e7fda9c9260cc0fa81b43a8e240440422dff70788e3f9ef1"
552
+ dependencies = [
553
+ "crossbeam-utils",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "crossbeam-deque"
558
+ version = "0.8.8"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "622f3fc73690be383c7214310406f28a90e6edeadc3cea882f9d71e495b9711a"
561
+ dependencies = [
562
+ "crossbeam-epoch",
563
+ "crossbeam-utils",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "crossbeam-epoch"
568
+ version = "0.9.21"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "dc74980687109a3b14c72fd458107bf0baa1da1a1a805e178d15501ba9b86d9d"
571
+ dependencies = [
572
+ "crossbeam-utils",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "crossbeam-queue"
577
+ version = "0.3.14"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "03e8bd762f7479489c70ed6c768ddca99d7296857de437a68dcb2a94365b3fae"
580
+ dependencies = [
581
+ "crossbeam-utils",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "crossbeam-utils"
586
+ version = "0.8.23"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
589
+
590
+ [[package]]
591
+ name = "crunchy"
592
+ version = "0.2.4"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
595
+
596
+ [[package]]
597
+ name = "cursor-icon"
598
+ version = "1.2.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
601
+
602
+ [[package]]
603
+ name = "defmt"
604
+ version = "1.1.1"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
607
+ dependencies = [
608
+ "bitflags 1.3.2",
609
+ "defmt-macros",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "defmt-macros"
614
+ version = "1.1.1"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
617
+ dependencies = [
618
+ "defmt-parser",
619
+ "proc-macro2",
620
+ "quote",
621
+ "syn 2.0.119",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "defmt-parser"
626
+ version = "1.0.0"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
629
+ dependencies = [
630
+ "thiserror 2.0.20",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "dispatch"
635
+ version = "0.2.0"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
638
+
639
+ [[package]]
640
+ name = "dispatch2"
641
+ version = "0.3.1"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
644
+ dependencies = [
645
+ "bitflags 2.13.2",
646
+ "objc2 0.6.4",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "displaydoc"
651
+ version = "0.2.7"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
654
+ dependencies = [
655
+ "proc-macro2",
656
+ "quote",
657
+ "syn 3.0.6",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "dlib"
662
+ version = "0.5.3"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "ab8ecd87370524b461f8557c119c405552c396ed91fc0a8eec68679eab26f94a"
665
+ dependencies = [
666
+ "libloading",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "document-features"
671
+ version = "0.2.12"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
674
+ dependencies = [
675
+ "litrs",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "downcast-rs"
680
+ version = "1.2.1"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
683
+
684
+ [[package]]
685
+ name = "dpi"
686
+ version = "0.1.2"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
689
+
690
+ [[package]]
691
+ name = "ecolor"
692
+ version = "0.36.2"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "0656a7530b9e2841ee7a5f983965bdd9840c32f4012f759cfd44b912cced6b34"
695
+ dependencies = [
696
+ "bytemuck",
697
+ "emath",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "egui"
702
+ version = "0.36.2"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "dc938cc27cd911415e1e4d151bc56ff9df063d8db081374e87aeb805ea74b2ba"
705
+ dependencies = [
706
+ "accesskit",
707
+ "ahash",
708
+ "bitflags 2.13.2",
709
+ "emath",
710
+ "epaint",
711
+ "itertools 0.15.0",
712
+ "log",
713
+ "nohash-hasher",
714
+ "profiling",
715
+ "smallvec",
716
+ "unicode-segmentation",
717
+ "web-sys",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "egui-wgpu"
722
+ version = "0.36.2"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "5cef1f6d1bba40b09a4d0d62cb822b81030922cfbf65c5373398c3a3caafc5bd"
725
+ dependencies = [
726
+ "ahash",
727
+ "bytemuck",
728
+ "document-features",
729
+ "epaint",
730
+ "log",
731
+ "profiling",
732
+ "thiserror 2.0.20",
733
+ "type-map",
734
+ "web-time",
735
+ "wgpu",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "egui-winit"
740
+ version = "0.36.2"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "98466000559d66ba4db786a30448b01483946add4188e7f10f522a27b4fb89cc"
743
+ dependencies = [
744
+ "arboard",
745
+ "bytemuck",
746
+ "egui",
747
+ "log",
748
+ "objc2 0.6.4",
749
+ "objc2-foundation 0.3.2",
750
+ "objc2-ui-kit 0.3.2",
751
+ "profiling",
752
+ "raw-window-handle",
753
+ "smithay-clipboard",
754
+ "web-time",
755
+ "webbrowser",
756
+ "winit",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "either"
761
+ version = "1.18.0"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
764
+
765
+ [[package]]
766
+ name = "emath"
767
+ version = "0.36.2"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "52c8d4141cf0f60fb2f7aefaf352d3ffa5171ef0ab09731c64391801e95e48f1"
770
+ dependencies = [
771
+ "bytemuck",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "env_filter"
776
+ version = "2.0.0"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
779
+ dependencies = [
780
+ "log",
781
+ "regex",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "env_logger"
786
+ version = "0.11.11"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
789
+ dependencies = [
790
+ "anstream",
791
+ "anstyle",
792
+ "env_filter",
793
+ "jiff",
794
+ "log",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "epaint"
799
+ version = "0.36.2"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "a0ec0308dc23130fc1a7d4623a8534c2ed069c6dc84e258ee4f3de99615aa1a3"
802
+ dependencies = [
803
+ "ahash",
804
+ "bytemuck",
805
+ "ecolor",
806
+ "emath",
807
+ "epaint_default_fonts",
808
+ "font-types",
809
+ "harfrust",
810
+ "log",
811
+ "nohash-hasher",
812
+ "parking_lot",
813
+ "profiling",
814
+ "self_cell",
815
+ "skrifa",
816
+ "smallvec",
817
+ "unicode-general-category",
818
+ "unicode-segmentation",
819
+ "vello_cpu",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "epaint_default_fonts"
824
+ version = "0.36.2"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "773fa9c96dd0dbef887e39d0ed6177f141cce4d68e6041df77570aa3702dfa13"
827
+
828
+ [[package]]
829
+ name = "equivalent"
830
+ version = "1.0.2"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
833
+
834
+ [[package]]
835
+ name = "errno"
836
+ version = "0.3.14"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
839
+ dependencies = [
840
+ "libc",
841
+ "windows-sys 0.61.2",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "error-code"
846
+ version = "3.4.0"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "0b5343afd4a8365a643ac588dab4cf234a190c7f6c88c9f6dd6ffe00837661b7"
849
+
850
+ [[package]]
851
+ name = "euclid"
852
+ version = "0.22.14"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
855
+ dependencies = [
856
+ "num-traits",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "fax"
861
+ version = "0.2.7"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "caf1079563223d5d59d83c85886a56e586cfd5c1a26292e971a0fa266531ac5a"
864
+
865
+ [[package]]
866
+ name = "fdeflate"
867
+ version = "0.3.7"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
870
+ dependencies = [
871
+ "simd-adler32",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "fearless_simd"
876
+ version = "0.4.1"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "b97b65636e5b9ef369943878ac74335ba1c55c1cb6adbf1e2c293c624248d693"
879
+
880
+ [[package]]
881
+ name = "find-msvc-tools"
882
+ version = "0.1.13"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "ef25905e51abafe4dcea6c15fec58c57b601cdbd0ee53d22ea1d3016c587d39b"
885
+
886
+ [[package]]
887
+ name = "flate2"
888
+ version = "1.1.10"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
891
+ dependencies = [
892
+ "crc32fast",
893
+ "miniz_oxide 0.9.1",
894
+ "zlib-rs",
895
+ ]
896
+
897
+ [[package]]
898
+ name = "foldhash"
899
+ version = "0.2.0"
900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
901
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
902
+
903
+ [[package]]
904
+ name = "font-types"
905
+ version = "0.12.5"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "b8eb065f3251655b3c90e22e5e363f310fc5332fb3402e37bbc94752283248f6"
908
+ dependencies = [
909
+ "bytemuck",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "foreign-types"
914
+ version = "0.5.0"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
917
+ dependencies = [
918
+ "foreign-types-macros",
919
+ "foreign-types-shared",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "foreign-types-macros"
924
+ version = "0.2.4"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225"
927
+ dependencies = [
928
+ "proc-macro2",
929
+ "quote",
930
+ "syn 3.0.6",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "foreign-types-shared"
935
+ version = "0.3.1"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
938
+
939
+ [[package]]
940
+ name = "form_urlencoded"
941
+ version = "1.2.2"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
944
+ dependencies = [
945
+ "percent-encoding",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "futures-core"
950
+ version = "0.3.34"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
953
+
954
+ [[package]]
955
+ name = "futures-executor"
956
+ version = "0.3.34"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
959
+ dependencies = [
960
+ "futures-core",
961
+ "futures-task",
962
+ "futures-util",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "futures-macro"
967
+ version = "0.3.34"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
970
+ dependencies = [
971
+ "proc-macro2",
972
+ "quote",
973
+ "syn 3.0.6",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "futures-task"
978
+ version = "0.3.34"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
981
+
982
+ [[package]]
983
+ name = "futures-timer"
984
+ version = "3.0.4"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "af43fadb8a98512d547e37b4e92e0ced13e205c061b87b4623eff01d918d6968"
987
+
988
+ [[package]]
989
+ name = "futures-util"
990
+ version = "0.3.34"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
993
+ dependencies = [
994
+ "futures-core",
995
+ "futures-macro",
996
+ "futures-task",
997
+ "pin-project-lite",
998
+ "slab",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "gethostname"
1003
+ version = "1.1.0"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
1006
+ dependencies = [
1007
+ "rustix 1.1.5",
1008
+ "windows-link",
1009
+ ]
1010
+
1011
+ [[package]]
1012
+ name = "getrandom"
1013
+ version = "0.3.4"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1016
+ dependencies = [
1017
+ "cfg-if",
1018
+ "libc",
1019
+ "r-efi 5.3.0",
1020
+ "wasip2",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "getrandom"
1025
+ version = "0.4.3"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
1028
+ dependencies = [
1029
+ "cfg-if",
1030
+ "libc",
1031
+ "r-efi 6.0.0",
1032
+ "rand_core",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "gl_generator"
1037
+ version = "0.14.0"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
1040
+ dependencies = [
1041
+ "khronos_api",
1042
+ "log",
1043
+ "xml-rs",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "glam"
1048
+ version = "0.32.1"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "f70749695b063ecbf6b62949ccccde2e733ec3ecbbd71d467dca4e5c6c97cca0"
1051
+ dependencies = [
1052
+ "bytemuck",
1053
+ "serde_core",
1054
+ ]
1055
+
1056
+ [[package]]
1057
+ name = "glifo"
1058
+ version = "0.2.0"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "ed4a1bb24121291d27230c1b1b44e07d6a9b28cefdb32fe1581dfb84e14f940a"
1061
+ dependencies = [
1062
+ "bytemuck",
1063
+ "foldhash",
1064
+ "hashbrown 0.17.1",
1065
+ "log",
1066
+ "peniko",
1067
+ "skrifa",
1068
+ "smallvec",
1069
+ "vello_common",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "glob"
1074
+ version = "0.3.4"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
1077
+
1078
+ [[package]]
1079
+ name = "glow"
1080
+ version = "0.17.0"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "29038e1c483364cc6bb3cf78feee1816002e127c331a1eec55a4d202b9e1adb5"
1083
+ dependencies = [
1084
+ "js-sys",
1085
+ "slotmap",
1086
+ "wasm-bindgen",
1087
+ "web-sys",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "glutin_wgl_sys"
1092
+ version = "0.6.1"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
1095
+ dependencies = [
1096
+ "gl_generator",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "glyph_brush"
1101
+ version = "0.7.12"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "0060f4ed4ef64a5876d9836d7d6c9ed43a463f3ca431682bec1c326064c8c93e"
1104
+ dependencies = [
1105
+ "glyph_brush_draw_cache",
1106
+ "glyph_brush_layout",
1107
+ "ordered-float",
1108
+ "rustc-hash 2.1.3",
1109
+ "twox-hash",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "glyph_brush_draw_cache"
1114
+ version = "0.1.6"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "4bb6c910def52365fef3f439a6b50a4d5c11b28eec4cf6c191f6dfea18e88d7f"
1117
+ dependencies = [
1118
+ "ab_glyph",
1119
+ "crossbeam-channel",
1120
+ "crossbeam-deque",
1121
+ "linked-hash-map",
1122
+ "rayon",
1123
+ "rustc-hash 2.1.3",
1124
+ ]
1125
+
1126
+ [[package]]
1127
+ name = "glyph_brush_layout"
1128
+ version = "0.2.4"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "7b1e288bfd2f6c0313f78bf5aa538356ad481a3bb97e9b7f93220ab0066c5992"
1131
+ dependencies = [
1132
+ "ab_glyph",
1133
+ "approx",
1134
+ "xi-unicode",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "gpu-allocator"
1139
+ version = "0.28.0"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "51255ea7cfaadb6c5f1528d43e92a82acb2b96c43365989a28b2d44ee38f8795"
1142
+ dependencies = [
1143
+ "ash",
1144
+ "hashbrown 0.16.1",
1145
+ "log",
1146
+ "presser",
1147
+ "thiserror 2.0.20",
1148
+ "windows",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "guillotiere"
1153
+ version = "0.7.0"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "6b17e70c989c36bad147b27a58d148c0741c51448aa5653436547323e524d0ab"
1156
+ dependencies = [
1157
+ "euclid",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "half"
1162
+ version = "2.7.1"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1165
+ dependencies = [
1166
+ "cfg-if",
1167
+ "crunchy",
1168
+ "num-traits",
1169
+ "zerocopy",
1170
+ ]
1171
+
1172
+ [[package]]
1173
+ name = "harfrust"
1174
+ version = "0.12.0"
1175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1176
+ checksum = "c03d949a14aa089bbb282f7dd76a498a7f684428e4257202efc119ec010376f9"
1177
+ dependencies = [
1178
+ "bitflags 2.13.2",
1179
+ "bytemuck",
1180
+ "read-fonts",
1181
+ "smallvec",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "hashbrown"
1186
+ version = "0.16.1"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1189
+ dependencies = [
1190
+ "allocator-api2",
1191
+ "equivalent",
1192
+ "foldhash",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "hashbrown"
1197
+ version = "0.17.1"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1200
+ dependencies = [
1201
+ "foldhash",
1202
+ "serde",
1203
+ "serde_core",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "heck"
1208
+ version = "0.3.3"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
1211
+ dependencies = [
1212
+ "unicode-segmentation",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "heck"
1217
+ version = "0.5.0"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1220
+
1221
+ [[package]]
1222
+ name = "hermit-abi"
1223
+ version = "0.5.3"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "e17592d60ebacc7d5e169f4663c5f84f9161cc90328abcfe8456f41e4dfcb284"
1226
+
1227
+ [[package]]
1228
+ name = "icu_collections"
1229
+ version = "2.3.0"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513"
1232
+ dependencies = [
1233
+ "displaydoc",
1234
+ "potential_utf",
1235
+ "utf8_iter",
1236
+ "yoke",
1237
+ "zerofrom",
1238
+ "zerovec",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "icu_locale_core"
1243
+ version = "2.3.0"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb"
1246
+ dependencies = [
1247
+ "displaydoc",
1248
+ "litemap",
1249
+ "tinystr",
1250
+ "writeable",
1251
+ "zerovec",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "icu_normalizer"
1256
+ version = "2.3.0"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f"
1259
+ dependencies = [
1260
+ "icu_collections",
1261
+ "icu_normalizer_data",
1262
+ "icu_properties",
1263
+ "icu_provider",
1264
+ "smallvec",
1265
+ "zerovec",
1266
+ ]
1267
+
1268
+ [[package]]
1269
+ name = "icu_normalizer_data"
1270
+ version = "2.3.0"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0"
1273
+
1274
+ [[package]]
1275
+ name = "icu_properties"
1276
+ version = "2.3.0"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148"
1279
+ dependencies = [
1280
+ "displaydoc",
1281
+ "icu_collections",
1282
+ "icu_locale_core",
1283
+ "icu_properties_data",
1284
+ "icu_provider",
1285
+ "zerotrie",
1286
+ "zerovec",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "icu_properties_data"
1291
+ version = "2.3.0"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa"
1294
+
1295
+ [[package]]
1296
+ name = "icu_provider"
1297
+ version = "2.3.1"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73"
1300
+ dependencies = [
1301
+ "displaydoc",
1302
+ "icu_locale_core",
1303
+ "writeable",
1304
+ "yoke",
1305
+ "zerofrom",
1306
+ "zerotrie",
1307
+ "zerovec",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "idna"
1312
+ version = "1.1.0"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1315
+ dependencies = [
1316
+ "idna_adapter",
1317
+ "smallvec",
1318
+ "utf8_iter",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "idna_adapter"
1323
+ version = "1.2.2"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1326
+ dependencies = [
1327
+ "icu_normalizer",
1328
+ "icu_properties",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "image"
1333
+ version = "0.25.10"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
1336
+ dependencies = [
1337
+ "bytemuck",
1338
+ "byteorder-lite",
1339
+ "moxcms",
1340
+ "num-traits",
1341
+ "png",
1342
+ "tiff",
1343
+ "zune-core",
1344
+ "zune-jpeg",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "indexmap"
1349
+ version = "2.14.2"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
1352
+ dependencies = [
1353
+ "equivalent",
1354
+ "hashbrown 0.17.1",
1355
+ "serde",
1356
+ "serde_core",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "inventory"
1361
+ version = "0.3.24"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
1364
+ dependencies = [
1365
+ "rustversion",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "is_terminal_polyfill"
1370
+ version = "1.70.2"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1373
+
1374
+ [[package]]
1375
+ name = "itertools"
1376
+ version = "0.14.0"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1379
+ dependencies = [
1380
+ "either",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "itertools"
1385
+ version = "0.15.0"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
1388
+ dependencies = [
1389
+ "either",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "itoa"
1394
+ version = "1.0.18"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1397
+
1398
+ [[package]]
1399
+ name = "jiff"
1400
+ version = "0.2.37"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "0ab1baf72f08796de0260609515130699b890ac25f30e610ad894bc5856cafdb"
1403
+ dependencies = [
1404
+ "defmt",
1405
+ "jiff-core",
1406
+ "jiff-static",
1407
+ "log",
1408
+ "portable-atomic",
1409
+ "portable-atomic-util",
1410
+ "serde_core",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "jiff-core"
1415
+ version = "0.1.1"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "5e52fe76043ccecc9005d2305ebaadf7d7fc0cc89ca6baa10a94d6bc68c7128c"
1418
+ dependencies = [
1419
+ "defmt",
1420
+ "log",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "jiff-static"
1425
+ version = "0.2.37"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "378268a1116ad67ae6228701118ac9f491d78fda38a40a1f1a9e1348de6f7212"
1428
+ dependencies = [
1429
+ "jiff-core",
1430
+ "proc-macro2",
1431
+ "quote",
1432
+ "syn 2.0.119",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "jni"
1437
+ version = "0.22.4"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1440
+ dependencies = [
1441
+ "cfg-if",
1442
+ "combine",
1443
+ "jni-macros",
1444
+ "jni-sys 0.4.1",
1445
+ "log",
1446
+ "simd_cesu8",
1447
+ "thiserror 2.0.20",
1448
+ "walkdir",
1449
+ "windows-link",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "jni-macros"
1454
+ version = "0.22.4"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1457
+ dependencies = [
1458
+ "proc-macro2",
1459
+ "quote",
1460
+ "rustc_version",
1461
+ "simd_cesu8",
1462
+ "syn 2.0.119",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "jni-sys"
1467
+ version = "0.3.1"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
1470
+ dependencies = [
1471
+ "jni-sys 0.4.1",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "jni-sys"
1476
+ version = "0.4.1"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1479
+ dependencies = [
1480
+ "jni-sys-macros",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "jni-sys-macros"
1485
+ version = "0.4.1"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1488
+ dependencies = [
1489
+ "quote",
1490
+ "syn 2.0.119",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "jobserver"
1495
+ version = "0.1.35"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
1498
+ dependencies = [
1499
+ "getrandom 0.4.3",
1500
+ "libc",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "js-sys"
1505
+ version = "0.3.105"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
1508
+ dependencies = [
1509
+ "cfg-if",
1510
+ "futures-util",
1511
+ "wasm-bindgen",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "json5"
1516
+ version = "0.4.1"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
1519
+ dependencies = [
1520
+ "pest",
1521
+ "pest_derive",
1522
+ "serde",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "kalast"
1527
+ version = "0.5.0"
1528
+ dependencies = [
1529
+ "anyhow",
1530
+ "bytemuck",
1531
+ "confique",
1532
+ "crossbeam",
1533
+ "egui",
1534
+ "egui-wgpu",
1535
+ "egui-winit",
1536
+ "env_logger",
1537
+ "glam",
1538
+ "image",
1539
+ "itertools 0.14.0",
1540
+ "kalast_macros",
1541
+ "lazy_static",
1542
+ "libc",
1543
+ "libloading",
1544
+ "memoffset",
1545
+ "ndarray",
1546
+ "numpy",
1547
+ "objc2 0.6.4",
1548
+ "objc2-app-kit 0.3.2",
1549
+ "once_cell",
1550
+ "paste",
1551
+ "pollster",
1552
+ "pyo3",
1553
+ "raw-window-handle",
1554
+ "rstest",
1555
+ "serde",
1556
+ "serial_test",
1557
+ "snafu",
1558
+ "tobj",
1559
+ "wgpu",
1560
+ "wgpu_text",
1561
+ "winit",
1562
+ "zerocopy",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "kalast_macros"
1567
+ version = "0.5.0"
1568
+ dependencies = [
1569
+ "proc-macro2",
1570
+ "quote",
1571
+ "syn 2.0.119",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "khronos-egl"
1576
+ version = "6.0.0"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
1579
+ dependencies = [
1580
+ "libc",
1581
+ "libloading",
1582
+ "pkg-config",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "khronos_api"
1587
+ version = "3.1.0"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
1590
+
1591
+ [[package]]
1592
+ name = "kurbo"
1593
+ version = "0.13.1"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "4b60dfc32f652b926df6192e55525b16d186c69d47876c3ead4da5cc9f8450e2"
1596
+ dependencies = [
1597
+ "arrayvec",
1598
+ "euclid",
1599
+ "polycool",
1600
+ "smallvec",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "lazy_static"
1605
+ version = "1.5.0"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1608
+
1609
+ [[package]]
1610
+ name = "libc"
1611
+ version = "0.2.189"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
1614
+
1615
+ [[package]]
1616
+ name = "libloading"
1617
+ version = "0.8.9"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1620
+ dependencies = [
1621
+ "cfg-if",
1622
+ "windows-link",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "libm"
1627
+ version = "0.2.16"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1630
+
1631
+ [[package]]
1632
+ name = "libredox"
1633
+ version = "0.1.24"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "6480ccc157a1389bb2e4891b24751b0f798ba640d22386f23143fbcc89da195a"
1636
+ dependencies = [
1637
+ "bitflags 2.13.2",
1638
+ "libc",
1639
+ "plain",
1640
+ "redox_syscall 0.9.4",
1641
+ ]
1642
+
1643
+ [[package]]
1644
+ name = "linebender_resource_handle"
1645
+ version = "0.1.1"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "d4a5ff6bcca6c4867b1c4fd4ef63e4db7436ef363e0ad7531d1558856bae64f4"
1648
+
1649
+ [[package]]
1650
+ name = "linked-hash-map"
1651
+ version = "0.5.6"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1654
+
1655
+ [[package]]
1656
+ name = "linux-raw-sys"
1657
+ version = "0.4.15"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1660
+
1661
+ [[package]]
1662
+ name = "linux-raw-sys"
1663
+ version = "0.12.1"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1666
+
1667
+ [[package]]
1668
+ name = "litemap"
1669
+ version = "0.8.3"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae"
1672
+
1673
+ [[package]]
1674
+ name = "litrs"
1675
+ version = "1.0.0"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1678
+
1679
+ [[package]]
1680
+ name = "lock_api"
1681
+ version = "0.4.14"
1682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1683
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1684
+ dependencies = [
1685
+ "scopeguard",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "log"
1690
+ version = "0.4.34"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
1693
+
1694
+ [[package]]
1695
+ name = "macro_rules_attribute"
1696
+ version = "0.2.3"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "b3ae8f6d608c795738406608304d30a2dfbdc8e58e44f7ba43236da5208ded3c"
1699
+ dependencies = [
1700
+ "macro_rules_attribute-proc_macro",
1701
+ "pastey",
1702
+ ]
1703
+
1704
+ [[package]]
1705
+ name = "macro_rules_attribute-proc_macro"
1706
+ version = "0.2.3"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "fc04a4c58212d57930a24bf47d3fa87485264a3a054e9c10e042eb373573ad3c"
1709
+
1710
+ [[package]]
1711
+ name = "matrixmultiply"
1712
+ version = "0.3.11"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
1715
+ dependencies = [
1716
+ "autocfg",
1717
+ "rawpointer",
1718
+ ]
1719
+
1720
+ [[package]]
1721
+ name = "memchr"
1722
+ version = "2.8.3"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
1725
+
1726
+ [[package]]
1727
+ name = "memmap2"
1728
+ version = "0.9.11"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
1731
+ dependencies = [
1732
+ "libc",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "memoffset"
1737
+ version = "0.9.1"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1740
+ dependencies = [
1741
+ "autocfg",
1742
+ ]
1743
+
1744
+ [[package]]
1745
+ name = "miniz_oxide"
1746
+ version = "0.8.9"
1747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1748
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1749
+ dependencies = [
1750
+ "adler2",
1751
+ "simd-adler32",
1752
+ ]
1753
+
1754
+ [[package]]
1755
+ name = "miniz_oxide"
1756
+ version = "0.9.1"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c"
1759
+ dependencies = [
1760
+ "adler2",
1761
+ "simd-adler32",
1762
+ ]
1763
+
1764
+ [[package]]
1765
+ name = "moxcms"
1766
+ version = "0.8.1"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
1769
+ dependencies = [
1770
+ "num-traits",
1771
+ "pxfm",
1772
+ ]
1773
+
1774
+ [[package]]
1775
+ name = "naga"
1776
+ version = "30.0.1"
1777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1778
+ checksum = "a616d2fb8c89516ac2723a581f69d6c18576046bed761bd6b305e5618e6ae130"
1779
+ dependencies = [
1780
+ "arrayvec",
1781
+ "bit-set",
1782
+ "bitflags 2.13.2",
1783
+ "cfg-if",
1784
+ "cfg_aliases",
1785
+ "codespan-reporting",
1786
+ "half",
1787
+ "hashbrown 0.17.1",
1788
+ "indexmap",
1789
+ "libm",
1790
+ "log",
1791
+ "naga-types",
1792
+ "num-traits",
1793
+ "once_cell",
1794
+ "rustc-hash 1.1.0",
1795
+ "spirv",
1796
+ "thiserror 2.0.20",
1797
+ "unicode-ident",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "naga-types"
1802
+ version = "30.0.1"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "590afbf58a6f4f62873cd5cff4468061844bafa1cdf399cc954537c22d768d49"
1805
+ dependencies = [
1806
+ "hashbrown 0.17.1",
1807
+ "indexmap",
1808
+ "rustc-hash 1.1.0",
1809
+ "serde",
1810
+ "thiserror 2.0.20",
1811
+ ]
1812
+
1813
+ [[package]]
1814
+ name = "ndarray"
1815
+ version = "0.17.2"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
1818
+ dependencies = [
1819
+ "matrixmultiply",
1820
+ "num-complex",
1821
+ "num-integer",
1822
+ "num-traits",
1823
+ "portable-atomic",
1824
+ "portable-atomic-util",
1825
+ "rawpointer",
1826
+ ]
1827
+
1828
+ [[package]]
1829
+ name = "ndk"
1830
+ version = "0.9.0"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
1833
+ dependencies = [
1834
+ "bitflags 2.13.2",
1835
+ "jni-sys 0.3.1",
1836
+ "log",
1837
+ "ndk-sys",
1838
+ "num_enum",
1839
+ "raw-window-handle",
1840
+ "thiserror 1.0.69",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "ndk-context"
1845
+ version = "0.1.1"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1848
+
1849
+ [[package]]
1850
+ name = "ndk-sys"
1851
+ version = "0.6.0+11769913"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
1854
+ dependencies = [
1855
+ "jni-sys 0.3.1",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "nohash-hasher"
1860
+ version = "0.2.0"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1863
+
1864
+ [[package]]
1865
+ name = "num-complex"
1866
+ version = "0.4.6"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1869
+ dependencies = [
1870
+ "num-traits",
1871
+ ]
1872
+
1873
+ [[package]]
1874
+ name = "num-integer"
1875
+ version = "0.1.47"
1876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1877
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
1878
+ dependencies = [
1879
+ "num-traits",
1880
+ ]
1881
+
1882
+ [[package]]
1883
+ name = "num-traits"
1884
+ version = "0.2.19"
1885
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1886
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1887
+ dependencies = [
1888
+ "autocfg",
1889
+ "libm",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "num_enum"
1894
+ version = "0.7.6"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
1897
+ dependencies = [
1898
+ "num_enum_derive",
1899
+ "rustversion",
1900
+ ]
1901
+
1902
+ [[package]]
1903
+ name = "num_enum_derive"
1904
+ version = "0.7.6"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
1907
+ dependencies = [
1908
+ "proc-macro-crate",
1909
+ "proc-macro2",
1910
+ "quote",
1911
+ "syn 2.0.119",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "numpy"
1916
+ version = "0.28.0"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
1919
+ dependencies = [
1920
+ "libc",
1921
+ "ndarray",
1922
+ "num-complex",
1923
+ "num-integer",
1924
+ "num-traits",
1925
+ "pyo3",
1926
+ "pyo3-build-config",
1927
+ "rustc-hash 2.1.3",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "objc-sys"
1932
+ version = "0.3.5"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
1935
+
1936
+ [[package]]
1937
+ name = "objc2"
1938
+ version = "0.5.2"
1939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1940
+ checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
1941
+ dependencies = [
1942
+ "objc-sys",
1943
+ "objc2-encode",
1944
+ ]
1945
+
1946
+ [[package]]
1947
+ name = "objc2"
1948
+ version = "0.6.4"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
1951
+ dependencies = [
1952
+ "objc2-encode",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "objc2-app-kit"
1957
+ version = "0.2.2"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
1960
+ dependencies = [
1961
+ "bitflags 2.13.2",
1962
+ "block2 0.5.1",
1963
+ "libc",
1964
+ "objc2 0.5.2",
1965
+ "objc2-core-data 0.2.2",
1966
+ "objc2-core-image 0.2.2",
1967
+ "objc2-foundation 0.2.2",
1968
+ "objc2-quartz-core 0.2.2",
1969
+ ]
1970
+
1971
+ [[package]]
1972
+ name = "objc2-app-kit"
1973
+ version = "0.3.2"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
1976
+ dependencies = [
1977
+ "bitflags 2.13.2",
1978
+ "block2 0.6.2",
1979
+ "libc",
1980
+ "objc2 0.6.4",
1981
+ "objc2-cloud-kit 0.3.2",
1982
+ "objc2-core-data 0.3.2",
1983
+ "objc2-core-foundation",
1984
+ "objc2-core-graphics",
1985
+ "objc2-core-image 0.3.2",
1986
+ "objc2-core-text",
1987
+ "objc2-core-video",
1988
+ "objc2-foundation 0.3.2",
1989
+ "objc2-quartz-core 0.3.2",
1990
+ ]
1991
+
1992
+ [[package]]
1993
+ name = "objc2-cloud-kit"
1994
+ version = "0.2.2"
1995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1996
+ checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009"
1997
+ dependencies = [
1998
+ "bitflags 2.13.2",
1999
+ "block2 0.5.1",
2000
+ "objc2 0.5.2",
2001
+ "objc2-core-location",
2002
+ "objc2-foundation 0.2.2",
2003
+ ]
2004
+
2005
+ [[package]]
2006
+ name = "objc2-cloud-kit"
2007
+ version = "0.3.2"
2008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2009
+ checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
2010
+ dependencies = [
2011
+ "bitflags 2.13.2",
2012
+ "objc2 0.6.4",
2013
+ "objc2-foundation 0.3.2",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "objc2-contacts"
2018
+ version = "0.2.2"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889"
2021
+ dependencies = [
2022
+ "block2 0.5.1",
2023
+ "objc2 0.5.2",
2024
+ "objc2-foundation 0.2.2",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "objc2-core-data"
2029
+ version = "0.2.2"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
2032
+ dependencies = [
2033
+ "bitflags 2.13.2",
2034
+ "block2 0.5.1",
2035
+ "objc2 0.5.2",
2036
+ "objc2-foundation 0.2.2",
2037
+ ]
2038
+
2039
+ [[package]]
2040
+ name = "objc2-core-data"
2041
+ version = "0.3.2"
2042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2043
+ checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
2044
+ dependencies = [
2045
+ "bitflags 2.13.2",
2046
+ "objc2 0.6.4",
2047
+ "objc2-foundation 0.3.2",
2048
+ ]
2049
+
2050
+ [[package]]
2051
+ name = "objc2-core-foundation"
2052
+ version = "0.3.2"
2053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2054
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
2055
+ dependencies = [
2056
+ "bitflags 2.13.2",
2057
+ "dispatch2",
2058
+ "objc2 0.6.4",
2059
+ ]
2060
+
2061
+ [[package]]
2062
+ name = "objc2-core-graphics"
2063
+ version = "0.3.2"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
2066
+ dependencies = [
2067
+ "bitflags 2.13.2",
2068
+ "dispatch2",
2069
+ "objc2 0.6.4",
2070
+ "objc2-core-foundation",
2071
+ "objc2-io-surface",
2072
+ ]
2073
+
2074
+ [[package]]
2075
+ name = "objc2-core-image"
2076
+ version = "0.2.2"
2077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2078
+ checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
2079
+ dependencies = [
2080
+ "block2 0.5.1",
2081
+ "objc2 0.5.2",
2082
+ "objc2-foundation 0.2.2",
2083
+ "objc2-metal 0.2.2",
2084
+ ]
2085
+
2086
+ [[package]]
2087
+ name = "objc2-core-image"
2088
+ version = "0.3.2"
2089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2090
+ checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
2091
+ dependencies = [
2092
+ "objc2 0.6.4",
2093
+ "objc2-foundation 0.3.2",
2094
+ ]
2095
+
2096
+ [[package]]
2097
+ name = "objc2-core-location"
2098
+ version = "0.2.2"
2099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2100
+ checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781"
2101
+ dependencies = [
2102
+ "block2 0.5.1",
2103
+ "objc2 0.5.2",
2104
+ "objc2-contacts",
2105
+ "objc2-foundation 0.2.2",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "objc2-core-text"
2110
+ version = "0.3.2"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
2113
+ dependencies = [
2114
+ "bitflags 2.13.2",
2115
+ "objc2 0.6.4",
2116
+ "objc2-core-foundation",
2117
+ "objc2-core-graphics",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "objc2-core-video"
2122
+ version = "0.3.2"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6"
2125
+ dependencies = [
2126
+ "bitflags 2.13.2",
2127
+ "objc2 0.6.4",
2128
+ "objc2-core-foundation",
2129
+ "objc2-core-graphics",
2130
+ "objc2-io-surface",
2131
+ ]
2132
+
2133
+ [[package]]
2134
+ name = "objc2-encode"
2135
+ version = "4.1.0"
2136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2137
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
2138
+
2139
+ [[package]]
2140
+ name = "objc2-foundation"
2141
+ version = "0.2.2"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
2144
+ dependencies = [
2145
+ "bitflags 2.13.2",
2146
+ "block2 0.5.1",
2147
+ "dispatch",
2148
+ "libc",
2149
+ "objc2 0.5.2",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "objc2-foundation"
2154
+ version = "0.3.2"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
2157
+ dependencies = [
2158
+ "bitflags 2.13.2",
2159
+ "objc2 0.6.4",
2160
+ "objc2-core-foundation",
2161
+ ]
2162
+
2163
+ [[package]]
2164
+ name = "objc2-io-surface"
2165
+ version = "0.3.2"
2166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2167
+ checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
2168
+ dependencies = [
2169
+ "bitflags 2.13.2",
2170
+ "objc2 0.6.4",
2171
+ "objc2-core-foundation",
2172
+ ]
2173
+
2174
+ [[package]]
2175
+ name = "objc2-link-presentation"
2176
+ version = "0.2.2"
2177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2178
+ checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398"
2179
+ dependencies = [
2180
+ "block2 0.5.1",
2181
+ "objc2 0.5.2",
2182
+ "objc2-app-kit 0.2.2",
2183
+ "objc2-foundation 0.2.2",
2184
+ ]
2185
+
2186
+ [[package]]
2187
+ name = "objc2-metal"
2188
+ version = "0.2.2"
2189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2190
+ checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
2191
+ dependencies = [
2192
+ "bitflags 2.13.2",
2193
+ "block2 0.5.1",
2194
+ "objc2 0.5.2",
2195
+ "objc2-foundation 0.2.2",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "objc2-metal"
2200
+ version = "0.3.2"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "a0125f776a10d00af4152d74616409f0d4a2053a6f57fa5b7d6aa2854ac04794"
2203
+ dependencies = [
2204
+ "bitflags 2.13.2",
2205
+ "block2 0.6.2",
2206
+ "objc2 0.6.4",
2207
+ "objc2-foundation 0.3.2",
2208
+ ]
2209
+
2210
+ [[package]]
2211
+ name = "objc2-quartz-core"
2212
+ version = "0.2.2"
2213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2214
+ checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
2215
+ dependencies = [
2216
+ "bitflags 2.13.2",
2217
+ "block2 0.5.1",
2218
+ "objc2 0.5.2",
2219
+ "objc2-foundation 0.2.2",
2220
+ "objc2-metal 0.2.2",
2221
+ ]
2222
+
2223
+ [[package]]
2224
+ name = "objc2-quartz-core"
2225
+ version = "0.3.2"
2226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2227
+ checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
2228
+ dependencies = [
2229
+ "bitflags 2.13.2",
2230
+ "objc2 0.6.4",
2231
+ "objc2-core-foundation",
2232
+ "objc2-core-graphics",
2233
+ "objc2-foundation 0.3.2",
2234
+ "objc2-metal 0.3.2",
2235
+ ]
2236
+
2237
+ [[package]]
2238
+ name = "objc2-symbols"
2239
+ version = "0.2.2"
2240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2241
+ checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc"
2242
+ dependencies = [
2243
+ "objc2 0.5.2",
2244
+ "objc2-foundation 0.2.2",
2245
+ ]
2246
+
2247
+ [[package]]
2248
+ name = "objc2-ui-kit"
2249
+ version = "0.2.2"
2250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2251
+ checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f"
2252
+ dependencies = [
2253
+ "bitflags 2.13.2",
2254
+ "block2 0.5.1",
2255
+ "objc2 0.5.2",
2256
+ "objc2-cloud-kit 0.2.2",
2257
+ "objc2-core-data 0.2.2",
2258
+ "objc2-core-image 0.2.2",
2259
+ "objc2-core-location",
2260
+ "objc2-foundation 0.2.2",
2261
+ "objc2-link-presentation",
2262
+ "objc2-quartz-core 0.2.2",
2263
+ "objc2-symbols",
2264
+ "objc2-uniform-type-identifiers",
2265
+ "objc2-user-notifications",
2266
+ ]
2267
+
2268
+ [[package]]
2269
+ name = "objc2-ui-kit"
2270
+ version = "0.3.2"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
2273
+ dependencies = [
2274
+ "bitflags 2.13.2",
2275
+ "objc2 0.6.4",
2276
+ "objc2-core-foundation",
2277
+ "objc2-foundation 0.3.2",
2278
+ ]
2279
+
2280
+ [[package]]
2281
+ name = "objc2-uniform-type-identifiers"
2282
+ version = "0.2.2"
2283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2284
+ checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe"
2285
+ dependencies = [
2286
+ "block2 0.5.1",
2287
+ "objc2 0.5.2",
2288
+ "objc2-foundation 0.2.2",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "objc2-user-notifications"
2293
+ version = "0.2.2"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3"
2296
+ dependencies = [
2297
+ "bitflags 2.13.2",
2298
+ "block2 0.5.1",
2299
+ "objc2 0.5.2",
2300
+ "objc2-core-location",
2301
+ "objc2-foundation 0.2.2",
2302
+ ]
2303
+
2304
+ [[package]]
2305
+ name = "once_cell"
2306
+ version = "1.21.4"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2309
+
2310
+ [[package]]
2311
+ name = "once_cell_polyfill"
2312
+ version = "1.70.2"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2315
+
2316
+ [[package]]
2317
+ name = "orbclient"
2318
+ version = "0.3.55"
2319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2320
+ checksum = "5df339f526ea9a60e371768d50efc2f2508c7203290731565d1f7a6f71d21747"
2321
+ dependencies = [
2322
+ "libc",
2323
+ "libredox",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "ordered-float"
2328
+ version = "5.5.0"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "8c7c9e0d9b23589f26070720bac724174bfec1083e82f7854cdd0267518343c0"
2331
+ dependencies = [
2332
+ "num-traits",
2333
+ ]
2334
+
2335
+ [[package]]
2336
+ name = "owned_ttf_parser"
2337
+ version = "0.25.1"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b"
2340
+ dependencies = [
2341
+ "ttf-parser",
2342
+ ]
2343
+
2344
+ [[package]]
2345
+ name = "parking_lot"
2346
+ version = "0.12.5"
2347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2348
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2349
+ dependencies = [
2350
+ "lock_api",
2351
+ "parking_lot_core",
2352
+ ]
2353
+
2354
+ [[package]]
2355
+ name = "parking_lot_core"
2356
+ version = "0.9.12"
2357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2358
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2359
+ dependencies = [
2360
+ "cfg-if",
2361
+ "libc",
2362
+ "redox_syscall 0.5.18",
2363
+ "smallvec",
2364
+ "windows-link",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "paste"
2369
+ version = "1.0.15"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2372
+
2373
+ [[package]]
2374
+ name = "pastey"
2375
+ version = "0.2.3"
2376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2377
+ checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
2378
+
2379
+ [[package]]
2380
+ name = "peniko"
2381
+ version = "0.6.1"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "839c8299360d2e998bdb106dc0a6cd71dcc5f4df51df1b620361bf50e283cca6"
2384
+ dependencies = [
2385
+ "bytemuck",
2386
+ "color",
2387
+ "kurbo",
2388
+ "linebender_resource_handle",
2389
+ "smallvec",
2390
+ ]
2391
+
2392
+ [[package]]
2393
+ name = "percent-encoding"
2394
+ version = "2.3.2"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2397
+
2398
+ [[package]]
2399
+ name = "pest"
2400
+ version = "2.9.1"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "6d45aeb61b4bf818e12d4205f2466f8c4748f85f4fce0146d1c03d69d753f0ad"
2403
+ dependencies = [
2404
+ "memchr",
2405
+ "ucd-trie",
2406
+ ]
2407
+
2408
+ [[package]]
2409
+ name = "pest_derive"
2410
+ version = "2.9.1"
2411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2412
+ checksum = "89cc5a242e25ed4e7704d0be240f2cfbe20a8c27e7e252d94835be93d92dc39f"
2413
+ dependencies = [
2414
+ "pest",
2415
+ "pest_generator",
2416
+ ]
2417
+
2418
+ [[package]]
2419
+ name = "pest_generator"
2420
+ version = "2.9.1"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "7abf21475cc3820fe4b2ca2dc2142902f67a02189f3b5b3a229f4febc01a43e5"
2423
+ dependencies = [
2424
+ "pest",
2425
+ "pest_meta",
2426
+ "proc-macro2",
2427
+ "quote",
2428
+ "syn 2.0.119",
2429
+ ]
2430
+
2431
+ [[package]]
2432
+ name = "pest_meta"
2433
+ version = "2.9.1"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "adba4db388f687393c18c51348d44a41d870ca9df71a2c98172ea3035dc6936e"
2436
+ dependencies = [
2437
+ "pest",
2438
+ ]
2439
+
2440
+ [[package]]
2441
+ name = "pin-project"
2442
+ version = "1.1.13"
2443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2444
+ checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
2445
+ dependencies = [
2446
+ "pin-project-internal",
2447
+ ]
2448
+
2449
+ [[package]]
2450
+ name = "pin-project-internal"
2451
+ version = "1.1.13"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
2454
+ dependencies = [
2455
+ "proc-macro2",
2456
+ "quote",
2457
+ "syn 2.0.119",
2458
+ ]
2459
+
2460
+ [[package]]
2461
+ name = "pin-project-lite"
2462
+ version = "0.2.17"
2463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2464
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2465
+
2466
+ [[package]]
2467
+ name = "pkg-config"
2468
+ version = "0.3.34"
2469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2470
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
2471
+
2472
+ [[package]]
2473
+ name = "plain"
2474
+ version = "0.2.3"
2475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2476
+ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
2477
+
2478
+ [[package]]
2479
+ name = "png"
2480
+ version = "0.18.1"
2481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2482
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
2483
+ dependencies = [
2484
+ "bitflags 2.13.2",
2485
+ "crc32fast",
2486
+ "fdeflate",
2487
+ "flate2",
2488
+ "miniz_oxide 0.8.9",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "polling"
2493
+ version = "3.11.0"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
2496
+ dependencies = [
2497
+ "cfg-if",
2498
+ "concurrent-queue",
2499
+ "hermit-abi",
2500
+ "pin-project-lite",
2501
+ "rustix 1.1.5",
2502
+ "windows-sys 0.61.2",
2503
+ ]
2504
+
2505
+ [[package]]
2506
+ name = "pollster"
2507
+ version = "0.4.0"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
2510
+
2511
+ [[package]]
2512
+ name = "polycool"
2513
+ version = "0.4.0"
2514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2515
+ checksum = "50596ddc09eb5ad5f75cacd40209568e66df71baf86e1499a0e99c4cff12a5a6"
2516
+ dependencies = [
2517
+ "arrayvec",
2518
+ ]
2519
+
2520
+ [[package]]
2521
+ name = "portable-atomic"
2522
+ version = "1.15.0"
2523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2524
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
2525
+
2526
+ [[package]]
2527
+ name = "portable-atomic-util"
2528
+ version = "0.2.8"
2529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2530
+ checksum = "10ab3eb7f3becc3a1cbc4f2c6f20267996cfc1a6467a873763411b136a122715"
2531
+ dependencies = [
2532
+ "portable-atomic",
2533
+ ]
2534
+
2535
+ [[package]]
2536
+ name = "potential_utf"
2537
+ version = "0.1.6"
2538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2539
+ checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661"
2540
+ dependencies = [
2541
+ "zerovec",
2542
+ ]
2543
+
2544
+ [[package]]
2545
+ name = "presser"
2546
+ version = "0.3.1"
2547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2548
+ checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
2549
+
2550
+ [[package]]
2551
+ name = "proc-macro-crate"
2552
+ version = "3.5.0"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
2555
+ dependencies = [
2556
+ "toml_edit 0.25.15+spec-1.1.0",
2557
+ ]
2558
+
2559
+ [[package]]
2560
+ name = "proc-macro2"
2561
+ version = "1.0.107"
2562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2563
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
2564
+ dependencies = [
2565
+ "unicode-ident",
2566
+ ]
2567
+
2568
+ [[package]]
2569
+ name = "profiling"
2570
+ version = "1.0.18"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
2573
+
2574
+ [[package]]
2575
+ name = "pxfm"
2576
+ version = "0.1.30"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "d55d956fa96f5ec02be2e13af0e20391a5aa83d6a074e3ad368959d0fab299ea"
2579
+
2580
+ [[package]]
2581
+ name = "pyo3"
2582
+ version = "0.28.3"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
2585
+ dependencies = [
2586
+ "inventory",
2587
+ "libc",
2588
+ "once_cell",
2589
+ "portable-atomic",
2590
+ "pyo3-build-config",
2591
+ "pyo3-ffi",
2592
+ "pyo3-macros",
2593
+ ]
2594
+
2595
+ [[package]]
2596
+ name = "pyo3-build-config"
2597
+ version = "0.28.3"
2598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2599
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
2600
+ dependencies = [
2601
+ "python3-dll-a",
2602
+ "target-lexicon",
2603
+ ]
2604
+
2605
+ [[package]]
2606
+ name = "pyo3-ffi"
2607
+ version = "0.28.3"
2608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2609
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
2610
+ dependencies = [
2611
+ "libc",
2612
+ "pyo3-build-config",
2613
+ ]
2614
+
2615
+ [[package]]
2616
+ name = "pyo3-macros"
2617
+ version = "0.28.3"
2618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2619
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
2620
+ dependencies = [
2621
+ "proc-macro2",
2622
+ "pyo3-macros-backend",
2623
+ "quote",
2624
+ "syn 2.0.119",
2625
+ ]
2626
+
2627
+ [[package]]
2628
+ name = "pyo3-macros-backend"
2629
+ version = "0.28.3"
2630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2631
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
2632
+ dependencies = [
2633
+ "heck 0.5.0",
2634
+ "proc-macro2",
2635
+ "pyo3-build-config",
2636
+ "quote",
2637
+ "syn 2.0.119",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "python3-dll-a"
2642
+ version = "0.2.15"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "d80ba7540edb18890d444c5aa8e1f1f99b1bdf26fb26ae383135325f4a36042b"
2645
+ dependencies = [
2646
+ "cc",
2647
+ ]
2648
+
2649
+ [[package]]
2650
+ name = "quick-error"
2651
+ version = "2.0.1"
2652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2653
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2654
+
2655
+ [[package]]
2656
+ name = "quick-xml"
2657
+ version = "0.41.0"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1"
2660
+ dependencies = [
2661
+ "memchr",
2662
+ ]
2663
+
2664
+ [[package]]
2665
+ name = "quote"
2666
+ version = "1.0.47"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
2669
+ dependencies = [
2670
+ "proc-macro2",
2671
+ ]
2672
+
2673
+ [[package]]
2674
+ name = "r-efi"
2675
+ version = "5.3.0"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2678
+
2679
+ [[package]]
2680
+ name = "r-efi"
2681
+ version = "6.0.0"
2682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2683
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2684
+
2685
+ [[package]]
2686
+ name = "rand"
2687
+ version = "0.10.2"
2688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2689
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
2690
+ dependencies = [
2691
+ "chacha20",
2692
+ "getrandom 0.4.3",
2693
+ "rand_core",
2694
+ ]
2695
+
2696
+ [[package]]
2697
+ name = "rand_core"
2698
+ version = "0.10.1"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
2701
+
2702
+ [[package]]
2703
+ name = "range-alloc"
2704
+ version = "0.1.5"
2705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2706
+ checksum = "ca45419789ae5a7899559e9512e58ca889e41f04f1f2445e9f4b290ceccd1d08"
2707
+
2708
+ [[package]]
2709
+ name = "raw-window-handle"
2710
+ version = "0.6.2"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
2713
+
2714
+ [[package]]
2715
+ name = "raw-window-metal"
2716
+ version = "1.1.0"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "40d213455a5f1dc59214213c7330e074ddf8114c9a42411eb890c767357ce135"
2719
+ dependencies = [
2720
+ "objc2 0.6.4",
2721
+ "objc2-core-foundation",
2722
+ "objc2-foundation 0.3.2",
2723
+ "objc2-quartz-core 0.3.2",
2724
+ ]
2725
+
2726
+ [[package]]
2727
+ name = "rawpointer"
2728
+ version = "0.2.1"
2729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2730
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2731
+
2732
+ [[package]]
2733
+ name = "rayon"
2734
+ version = "1.12.0"
2735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2736
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
2737
+ dependencies = [
2738
+ "either",
2739
+ "rayon-core",
2740
+ ]
2741
+
2742
+ [[package]]
2743
+ name = "rayon-core"
2744
+ version = "1.13.0"
2745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2746
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2747
+ dependencies = [
2748
+ "crossbeam-deque",
2749
+ "crossbeam-utils",
2750
+ ]
2751
+
2752
+ [[package]]
2753
+ name = "read-fonts"
2754
+ version = "0.41.0"
2755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2756
+ checksum = "046a7d674daf459825b32f5062056d6882db0d2f5a479fbd76ccfc870ac18709"
2757
+ dependencies = [
2758
+ "bytemuck",
2759
+ "font-types",
2760
+ "once_cell",
2761
+ ]
2762
+
2763
+ [[package]]
2764
+ name = "redox_syscall"
2765
+ version = "0.4.1"
2766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2767
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
2768
+ dependencies = [
2769
+ "bitflags 1.3.2",
2770
+ ]
2771
+
2772
+ [[package]]
2773
+ name = "redox_syscall"
2774
+ version = "0.5.18"
2775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2776
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2777
+ dependencies = [
2778
+ "bitflags 2.13.2",
2779
+ ]
2780
+
2781
+ [[package]]
2782
+ name = "redox_syscall"
2783
+ version = "0.9.4"
2784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2785
+ checksum = "737970939a87c6fa31e7acad13307bccbb017a073b695b6089a2c484f929e20e"
2786
+ dependencies = [
2787
+ "bitflags 2.13.2",
2788
+ ]
2789
+
2790
+ [[package]]
2791
+ name = "regex"
2792
+ version = "1.13.1"
2793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2794
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
2795
+ dependencies = [
2796
+ "aho-corasick",
2797
+ "memchr",
2798
+ "regex-automata",
2799
+ "regex-syntax",
2800
+ ]
2801
+
2802
+ [[package]]
2803
+ name = "regex-automata"
2804
+ version = "0.4.18"
2805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2806
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
2807
+ dependencies = [
2808
+ "aho-corasick",
2809
+ "memchr",
2810
+ "regex-syntax",
2811
+ ]
2812
+
2813
+ [[package]]
2814
+ name = "regex-syntax"
2815
+ version = "0.8.11"
2816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2817
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
2818
+
2819
+ [[package]]
2820
+ name = "relative-path"
2821
+ version = "1.9.3"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2824
+
2825
+ [[package]]
2826
+ name = "renderdoc-sys"
2827
+ version = "1.1.0"
2828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2829
+ checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
2830
+
2831
+ [[package]]
2832
+ name = "rstest"
2833
+ version = "0.26.1"
2834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2835
+ checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
2836
+ dependencies = [
2837
+ "futures-timer",
2838
+ "futures-util",
2839
+ "rstest_macros",
2840
+ ]
2841
+
2842
+ [[package]]
2843
+ name = "rstest_macros"
2844
+ version = "0.26.1"
2845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2846
+ checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
2847
+ dependencies = [
2848
+ "cfg-if",
2849
+ "glob",
2850
+ "proc-macro-crate",
2851
+ "proc-macro2",
2852
+ "quote",
2853
+ "regex",
2854
+ "relative-path",
2855
+ "rustc_version",
2856
+ "syn 2.0.119",
2857
+ "unicode-ident",
2858
+ ]
2859
+
2860
+ [[package]]
2861
+ name = "rustc-hash"
2862
+ version = "1.1.0"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2865
+
2866
+ [[package]]
2867
+ name = "rustc-hash"
2868
+ version = "2.1.3"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
2871
+
2872
+ [[package]]
2873
+ name = "rustc_version"
2874
+ version = "0.4.1"
2875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2876
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2877
+ dependencies = [
2878
+ "semver",
2879
+ ]
2880
+
2881
+ [[package]]
2882
+ name = "rustix"
2883
+ version = "0.38.44"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2886
+ dependencies = [
2887
+ "bitflags 2.13.2",
2888
+ "errno",
2889
+ "libc",
2890
+ "linux-raw-sys 0.4.15",
2891
+ "windows-sys 0.59.0",
2892
+ ]
2893
+
2894
+ [[package]]
2895
+ name = "rustix"
2896
+ version = "1.1.5"
2897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2898
+ checksum = "891efababe418670775f199f0d233d84843c227a0949a883ce15b37c78d6629d"
2899
+ dependencies = [
2900
+ "bitflags 2.13.2",
2901
+ "errno",
2902
+ "libc",
2903
+ "linux-raw-sys 0.12.1",
2904
+ "windows-sys 0.61.2",
2905
+ ]
2906
+
2907
+ [[package]]
2908
+ name = "rustversion"
2909
+ version = "1.0.23"
2910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2911
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
2912
+
2913
+ [[package]]
2914
+ name = "ryu"
2915
+ version = "1.0.23"
2916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2917
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2918
+
2919
+ [[package]]
2920
+ name = "same-file"
2921
+ version = "1.0.6"
2922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2923
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2924
+ dependencies = [
2925
+ "winapi-util",
2926
+ ]
2927
+
2928
+ [[package]]
2929
+ name = "scoped-tls"
2930
+ version = "1.0.1"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2933
+
2934
+ [[package]]
2935
+ name = "scopeguard"
2936
+ version = "1.2.0"
2937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2938
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2939
+
2940
+ [[package]]
2941
+ name = "sctk-adwaita"
2942
+ version = "0.10.1"
2943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2944
+ checksum = "b6277f0217056f77f1d8f49f2950ac6c278c0d607c45f5ee99328d792ede24ec"
2945
+ dependencies = [
2946
+ "ab_glyph",
2947
+ "log",
2948
+ "memmap2",
2949
+ "smithay-client-toolkit 0.19.2",
2950
+ "tiny-skia",
2951
+ ]
2952
+
2953
+ [[package]]
2954
+ name = "self_cell"
2955
+ version = "1.3.0"
2956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2957
+ checksum = "2ab42ca02749e120097e328d91d415325bdf43b1c72c4c8badf37375fe40a813"
2958
+
2959
+ [[package]]
2960
+ name = "semver"
2961
+ version = "1.0.28"
2962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2963
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2964
+
2965
+ [[package]]
2966
+ name = "serde"
2967
+ version = "1.0.229"
2968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2969
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
2970
+ dependencies = [
2971
+ "serde_core",
2972
+ "serde_derive",
2973
+ ]
2974
+
2975
+ [[package]]
2976
+ name = "serde_core"
2977
+ version = "1.0.229"
2978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
2980
+ dependencies = [
2981
+ "serde_derive",
2982
+ ]
2983
+
2984
+ [[package]]
2985
+ name = "serde_derive"
2986
+ version = "1.0.229"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
2989
+ dependencies = [
2990
+ "proc-macro2",
2991
+ "quote",
2992
+ "syn 3.0.6",
2993
+ ]
2994
+
2995
+ [[package]]
2996
+ name = "serde_spanned"
2997
+ version = "0.6.9"
2998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2999
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
3000
+ dependencies = [
3001
+ "serde",
3002
+ ]
3003
+
3004
+ [[package]]
3005
+ name = "serde_yaml"
3006
+ version = "0.9.34+deprecated"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
3009
+ dependencies = [
3010
+ "indexmap",
3011
+ "itoa",
3012
+ "ryu",
3013
+ "serde",
3014
+ "unsafe-libyaml",
3015
+ ]
3016
+
3017
+ [[package]]
3018
+ name = "serial_test"
3019
+ version = "3.5.0"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "699f4197115b8a7e7ff19c9a315a4bd6fffec26cc4626ef45ecaea389e081c6d"
3022
+ dependencies = [
3023
+ "futures-executor",
3024
+ "futures-util",
3025
+ "log",
3026
+ "once_cell",
3027
+ "parking_lot",
3028
+ "serial_test_derive",
3029
+ ]
3030
+
3031
+ [[package]]
3032
+ name = "serial_test_derive"
3033
+ version = "3.5.0"
3034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3035
+ checksum = "94e153fc76e1c6a068703d6d29c508a0b15c061c4b7e43da59cc097bc342673c"
3036
+ dependencies = [
3037
+ "proc-macro2",
3038
+ "quote",
3039
+ "syn 2.0.119",
3040
+ ]
3041
+
3042
+ [[package]]
3043
+ name = "shlex"
3044
+ version = "2.0.1"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
3047
+
3048
+ [[package]]
3049
+ name = "simd-adler32"
3050
+ version = "0.3.10"
3051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3052
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
3053
+
3054
+ [[package]]
3055
+ name = "simd_cesu8"
3056
+ version = "1.2.0"
3057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3058
+ checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520"
3059
+ dependencies = [
3060
+ "rustc_version",
3061
+ "simdutf8",
3062
+ ]
3063
+
3064
+ [[package]]
3065
+ name = "simdutf8"
3066
+ version = "0.1.5"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
3069
+
3070
+ [[package]]
3071
+ name = "skrifa"
3072
+ version = "0.44.0"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "819ab7d62b1d3e72d9d9dea5650bac30424f9111364bb94928dbf5ecad1baa68"
3075
+ dependencies = [
3076
+ "bytemuck",
3077
+ "read-fonts",
3078
+ ]
3079
+
3080
+ [[package]]
3081
+ name = "slab"
3082
+ version = "0.4.12"
3083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3084
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3085
+
3086
+ [[package]]
3087
+ name = "slotmap"
3088
+ version = "1.1.1"
3089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3090
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
3091
+ dependencies = [
3092
+ "version_check",
3093
+ ]
3094
+
3095
+ [[package]]
3096
+ name = "smallvec"
3097
+ version = "1.16.1"
3098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3099
+ checksum = "ba467056f1b547ed52077911161fc86985becbc60e8e1857c8a144dab0def891"
3100
+ dependencies = [
3101
+ "serde",
3102
+ ]
3103
+
3104
+ [[package]]
3105
+ name = "smithay-client-toolkit"
3106
+ version = "0.19.2"
3107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3108
+ checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016"
3109
+ dependencies = [
3110
+ "bitflags 2.13.2",
3111
+ "calloop 0.13.0",
3112
+ "calloop-wayland-source 0.3.0",
3113
+ "cursor-icon",
3114
+ "libc",
3115
+ "log",
3116
+ "memmap2",
3117
+ "rustix 0.38.44",
3118
+ "thiserror 1.0.69",
3119
+ "wayland-backend",
3120
+ "wayland-client",
3121
+ "wayland-csd-frame",
3122
+ "wayland-cursor",
3123
+ "wayland-protocols",
3124
+ "wayland-protocols-wlr",
3125
+ "wayland-scanner",
3126
+ "xkeysym",
3127
+ ]
3128
+
3129
+ [[package]]
3130
+ name = "smithay-client-toolkit"
3131
+ version = "0.20.0"
3132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3133
+ checksum = "0512da38f5e2b31201a93524adb8d3136276fa4fe4aafab4e1f727a82b534cc0"
3134
+ dependencies = [
3135
+ "bitflags 2.13.2",
3136
+ "calloop 0.14.4",
3137
+ "calloop-wayland-source 0.4.1",
3138
+ "cursor-icon",
3139
+ "libc",
3140
+ "log",
3141
+ "memmap2",
3142
+ "rustix 1.1.5",
3143
+ "thiserror 2.0.20",
3144
+ "wayland-backend",
3145
+ "wayland-client",
3146
+ "wayland-csd-frame",
3147
+ "wayland-cursor",
3148
+ "wayland-protocols",
3149
+ "wayland-protocols-experimental",
3150
+ "wayland-protocols-misc",
3151
+ "wayland-protocols-wlr",
3152
+ "wayland-scanner",
3153
+ "xkeysym",
3154
+ ]
3155
+
3156
+ [[package]]
3157
+ name = "smithay-clipboard"
3158
+ version = "0.7.3"
3159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3160
+ checksum = "71704c03f739f7745053bde45fa203a46c58d25bc5c4efba1d9a60e9dba81226"
3161
+ dependencies = [
3162
+ "libc",
3163
+ "smithay-client-toolkit 0.20.0",
3164
+ "wayland-backend",
3165
+ ]
3166
+
3167
+ [[package]]
3168
+ name = "smol_str"
3169
+ version = "0.2.2"
3170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3171
+ checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
3172
+ dependencies = [
3173
+ "serde",
3174
+ ]
3175
+
3176
+ [[package]]
3177
+ name = "snafu"
3178
+ version = "0.9.2"
3179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3180
+ checksum = "e45cb604038abb7b926b679887b3226d8d0f23874b66623625a0454be425a4b7"
3181
+ dependencies = [
3182
+ "snafu-derive",
3183
+ ]
3184
+
3185
+ [[package]]
3186
+ name = "snafu-derive"
3187
+ version = "0.9.2"
3188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3189
+ checksum = "287f59010008f0d7cf5e3b03196d666c1acc46c8d3e9cf34c28a1a7157601e72"
3190
+ dependencies = [
3191
+ "heck 0.5.0",
3192
+ "proc-macro2",
3193
+ "quote",
3194
+ "syn 2.0.119",
3195
+ ]
3196
+
3197
+ [[package]]
3198
+ name = "spirv"
3199
+ version = "0.4.0+sdk-1.4.341.0"
3200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3201
+ checksum = "d9571ea910ebd84c86af4b3ed27f9dbdc6ad06f17c5f96146b2b671e2976744f"
3202
+ dependencies = [
3203
+ "bitflags 2.13.2",
3204
+ ]
3205
+
3206
+ [[package]]
3207
+ name = "stable_deref_trait"
3208
+ version = "1.2.1"
3209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3210
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3211
+
3212
+ [[package]]
3213
+ name = "static_assertions"
3214
+ version = "1.1.0"
3215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3216
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3217
+
3218
+ [[package]]
3219
+ name = "strict-num"
3220
+ version = "0.1.1"
3221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3222
+ checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
3223
+
3224
+ [[package]]
3225
+ name = "syn"
3226
+ version = "1.0.109"
3227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3228
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3229
+ dependencies = [
3230
+ "proc-macro2",
3231
+ "quote",
3232
+ "unicode-ident",
3233
+ ]
3234
+
3235
+ [[package]]
3236
+ name = "syn"
3237
+ version = "2.0.119"
3238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3239
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
3240
+ dependencies = [
3241
+ "proc-macro2",
3242
+ "quote",
3243
+ "unicode-ident",
3244
+ ]
3245
+
3246
+ [[package]]
3247
+ name = "syn"
3248
+ version = "3.0.6"
3249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3250
+ checksum = "8593e8e72159ed2257d083c7a454a85cbf854f37a0966d8d483aff8c8a3ebcee"
3251
+ dependencies = [
3252
+ "proc-macro2",
3253
+ "quote",
3254
+ "unicode-ident",
3255
+ ]
3256
+
3257
+ [[package]]
3258
+ name = "synstructure"
3259
+ version = "0.14.0"
3260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3261
+ checksum = "901704edd0dfe137f1987838ee4f259e4e063c31371bdb423f7ae38ec6f77f02"
3262
+ dependencies = [
3263
+ "proc-macro2",
3264
+ "quote",
3265
+ "syn 3.0.6",
3266
+ ]
3267
+
3268
+ [[package]]
3269
+ name = "target-lexicon"
3270
+ version = "0.13.5"
3271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3272
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
3273
+
3274
+ [[package]]
3275
+ name = "termcolor"
3276
+ version = "1.4.1"
3277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3278
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
3279
+ dependencies = [
3280
+ "winapi-util",
3281
+ ]
3282
+
3283
+ [[package]]
3284
+ name = "thiserror"
3285
+ version = "1.0.69"
3286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3287
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3288
+ dependencies = [
3289
+ "thiserror-impl 1.0.69",
3290
+ ]
3291
+
3292
+ [[package]]
3293
+ name = "thiserror"
3294
+ version = "2.0.20"
3295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3296
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
3297
+ dependencies = [
3298
+ "thiserror-impl 2.0.20",
3299
+ ]
3300
+
3301
+ [[package]]
3302
+ name = "thiserror-impl"
3303
+ version = "1.0.69"
3304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3305
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3306
+ dependencies = [
3307
+ "proc-macro2",
3308
+ "quote",
3309
+ "syn 2.0.119",
3310
+ ]
3311
+
3312
+ [[package]]
3313
+ name = "thiserror-impl"
3314
+ version = "2.0.20"
3315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3316
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
3317
+ dependencies = [
3318
+ "proc-macro2",
3319
+ "quote",
3320
+ "syn 3.0.6",
3321
+ ]
3322
+
3323
+ [[package]]
3324
+ name = "tiff"
3325
+ version = "0.11.3"
3326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3327
+ checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
3328
+ dependencies = [
3329
+ "fax",
3330
+ "flate2",
3331
+ "half",
3332
+ "quick-error",
3333
+ "weezl",
3334
+ "zune-jpeg",
3335
+ ]
3336
+
3337
+ [[package]]
3338
+ name = "tiny-skia"
3339
+ version = "0.11.4"
3340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3341
+ checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
3342
+ dependencies = [
3343
+ "arrayref",
3344
+ "arrayvec",
3345
+ "bytemuck",
3346
+ "cfg-if",
3347
+ "log",
3348
+ "tiny-skia-path",
3349
+ ]
3350
+
3351
+ [[package]]
3352
+ name = "tiny-skia-path"
3353
+ version = "0.11.4"
3354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3355
+ checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
3356
+ dependencies = [
3357
+ "arrayref",
3358
+ "bytemuck",
3359
+ "strict-num",
3360
+ ]
3361
+
3362
+ [[package]]
3363
+ name = "tinystr"
3364
+ version = "0.8.4"
3365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3366
+ checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643"
3367
+ dependencies = [
3368
+ "displaydoc",
3369
+ "zerovec",
3370
+ ]
3371
+
3372
+ [[package]]
3373
+ name = "tobj"
3374
+ version = "4.0.5"
3375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3376
+ checksum = "6eb8e04167c1c0c76b5de63226fd733485ad63ef71e40de31e16272f47b099e2"
3377
+ dependencies = [
3378
+ "ahash",
3379
+ ]
3380
+
3381
+ [[package]]
3382
+ name = "toml"
3383
+ version = "0.8.23"
3384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3385
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
3386
+ dependencies = [
3387
+ "serde",
3388
+ "serde_spanned",
3389
+ "toml_datetime 0.6.11",
3390
+ "toml_edit 0.22.27",
3391
+ ]
3392
+
3393
+ [[package]]
3394
+ name = "toml_datetime"
3395
+ version = "0.6.11"
3396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3397
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
3398
+ dependencies = [
3399
+ "serde",
3400
+ ]
3401
+
3402
+ [[package]]
3403
+ name = "toml_datetime"
3404
+ version = "1.1.1+spec-1.1.0"
3405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3406
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
3407
+ dependencies = [
3408
+ "serde_core",
3409
+ ]
3410
+
3411
+ [[package]]
3412
+ name = "toml_edit"
3413
+ version = "0.22.27"
3414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3415
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
3416
+ dependencies = [
3417
+ "indexmap",
3418
+ "serde",
3419
+ "serde_spanned",
3420
+ "toml_datetime 0.6.11",
3421
+ "toml_write",
3422
+ "winnow 0.7.15",
3423
+ ]
3424
+
3425
+ [[package]]
3426
+ name = "toml_edit"
3427
+ version = "0.25.15+spec-1.1.0"
3428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3429
+ checksum = "1340ea94a5856333492c9064b02c778b191dd2c853778d9609debdcdfea3a614"
3430
+ dependencies = [
3431
+ "indexmap",
3432
+ "toml_datetime 1.1.1+spec-1.1.0",
3433
+ "toml_parser",
3434
+ "winnow 1.0.4",
3435
+ ]
3436
+
3437
+ [[package]]
3438
+ name = "toml_parser"
3439
+ version = "1.1.3+spec-1.1.0"
3440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3441
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
3442
+ dependencies = [
3443
+ "winnow 1.0.4",
3444
+ ]
3445
+
3446
+ [[package]]
3447
+ name = "toml_write"
3448
+ version = "0.1.2"
3449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3450
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
3451
+
3452
+ [[package]]
3453
+ name = "tracing"
3454
+ version = "0.1.44"
3455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3456
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3457
+ dependencies = [
3458
+ "log",
3459
+ "pin-project-lite",
3460
+ "tracing-core",
3461
+ ]
3462
+
3463
+ [[package]]
3464
+ name = "tracing-core"
3465
+ version = "0.1.36"
3466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3467
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3468
+
3469
+ [[package]]
3470
+ name = "ttf-parser"
3471
+ version = "0.25.1"
3472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3473
+ checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
3474
+
3475
+ [[package]]
3476
+ name = "twox-hash"
3477
+ version = "2.1.4"
3478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3479
+ checksum = "5283634e518fe9e82c7b20520bb4bc209009fd16c82077c802f8111ecbb0117a"
3480
+ dependencies = [
3481
+ "rand",
3482
+ ]
3483
+
3484
+ [[package]]
3485
+ name = "type-map"
3486
+ version = "0.5.1"
3487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3488
+ checksum = "cb30dbbd9036155e74adad6812e9898d03ec374946234fbcebd5dfc7b9187b90"
3489
+ dependencies = [
3490
+ "rustc-hash 2.1.3",
3491
+ ]
3492
+
3493
+ [[package]]
3494
+ name = "ucd-trie"
3495
+ version = "0.1.7"
3496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3497
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
3498
+
3499
+ [[package]]
3500
+ name = "unicode-general-category"
3501
+ version = "1.1.0"
3502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3503
+ checksum = "0b993bddc193ae5bd0d623b49ec06ac3e9312875fdae725a975c51db1cc1677f"
3504
+
3505
+ [[package]]
3506
+ name = "unicode-ident"
3507
+ version = "1.0.26"
3508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3509
+ checksum = "d245f478577f809a851594d02313b640fb437e0bb33866753cff937863096954"
3510
+
3511
+ [[package]]
3512
+ name = "unicode-segmentation"
3513
+ version = "1.13.3"
3514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3515
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
3516
+
3517
+ [[package]]
3518
+ name = "unicode-width"
3519
+ version = "0.2.2"
3520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3521
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3522
+
3523
+ [[package]]
3524
+ name = "unsafe-libyaml"
3525
+ version = "0.2.11"
3526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3527
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
3528
+
3529
+ [[package]]
3530
+ name = "url"
3531
+ version = "2.5.8"
3532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3533
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3534
+ dependencies = [
3535
+ "form_urlencoded",
3536
+ "idna",
3537
+ "percent-encoding",
3538
+ "serde",
3539
+ ]
3540
+
3541
+ [[package]]
3542
+ name = "utf8_iter"
3543
+ version = "1.0.4"
3544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3545
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3546
+
3547
+ [[package]]
3548
+ name = "utf8parse"
3549
+ version = "0.2.2"
3550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3551
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3552
+
3553
+ [[package]]
3554
+ name = "uuid"
3555
+ version = "1.26.1"
3556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3557
+ checksum = "2ef6dac1e96601b4fb3acccccff2139741fcb757cb9a36089bf5be91cfb285ce"
3558
+
3559
+ [[package]]
3560
+ name = "vello_common"
3561
+ version = "0.1.0"
3562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3563
+ checksum = "b2e9aed918117e8152c9eddfd8362d73c465c23f26c44786aa331707b8a64fa2"
3564
+ dependencies = [
3565
+ "bytemuck",
3566
+ "fearless_simd",
3567
+ "guillotiere",
3568
+ "log",
3569
+ "peniko",
3570
+ "smallvec",
3571
+ "thiserror 2.0.20",
3572
+ ]
3573
+
3574
+ [[package]]
3575
+ name = "vello_cpu"
3576
+ version = "0.1.0"
3577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3578
+ checksum = "ac7349e1f55f6b801c7c277958df4ea53e7f20f21e8014910ad888b2ecda93ea"
3579
+ dependencies = [
3580
+ "bytemuck",
3581
+ "glifo",
3582
+ "hashbrown 0.17.1",
3583
+ "vello_common",
3584
+ ]
3585
+
3586
+ [[package]]
3587
+ name = "version_check"
3588
+ version = "0.9.5"
3589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3590
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3591
+
3592
+ [[package]]
3593
+ name = "walkdir"
3594
+ version = "2.5.0"
3595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3596
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3597
+ dependencies = [
3598
+ "same-file",
3599
+ "winapi-util",
3600
+ ]
3601
+
3602
+ [[package]]
3603
+ name = "wasip2"
3604
+ version = "1.0.4+wasi-0.2.12"
3605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3606
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
3607
+ dependencies = [
3608
+ "wit-bindgen",
3609
+ ]
3610
+
3611
+ [[package]]
3612
+ name = "wasm-bindgen"
3613
+ version = "0.2.128"
3614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3615
+ checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
3616
+ dependencies = [
3617
+ "cfg-if",
3618
+ "once_cell",
3619
+ "rustversion",
3620
+ "wasm-bindgen-macro",
3621
+ "wasm-bindgen-shared",
3622
+ ]
3623
+
3624
+ [[package]]
3625
+ name = "wasm-bindgen-futures"
3626
+ version = "0.4.78"
3627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3628
+ checksum = "6ef4c5d3d2cdf5c54f4231181768f5510842e350db025faf1f7163b1030ed928"
3629
+ dependencies = [
3630
+ "js-sys",
3631
+ "wasm-bindgen",
3632
+ ]
3633
+
3634
+ [[package]]
3635
+ name = "wasm-bindgen-macro"
3636
+ version = "0.2.128"
3637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3638
+ checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
3639
+ dependencies = [
3640
+ "quote",
3641
+ "wasm-bindgen-macro-support",
3642
+ ]
3643
+
3644
+ [[package]]
3645
+ name = "wasm-bindgen-macro-support"
3646
+ version = "0.2.128"
3647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3648
+ checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
3649
+ dependencies = [
3650
+ "bumpalo",
3651
+ "proc-macro2",
3652
+ "quote",
3653
+ "syn 3.0.6",
3654
+ "wasm-bindgen-shared",
3655
+ ]
3656
+
3657
+ [[package]]
3658
+ name = "wasm-bindgen-shared"
3659
+ version = "0.2.128"
3660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3661
+ checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
3662
+ dependencies = [
3663
+ "unicode-ident",
3664
+ ]
3665
+
3666
+ [[package]]
3667
+ name = "wayland-backend"
3668
+ version = "0.3.17"
3669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3670
+ checksum = "38a91b4eaddff87b1cd1074985e3713da4af2c49742d1b356b2c01670a67a078"
3671
+ dependencies = [
3672
+ "cc",
3673
+ "downcast-rs",
3674
+ "rustix 1.1.5",
3675
+ "scoped-tls",
3676
+ "smallvec",
3677
+ "wayland-sys",
3678
+ ]
3679
+
3680
+ [[package]]
3681
+ name = "wayland-client"
3682
+ version = "0.31.15"
3683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3684
+ checksum = "e3c36a0f861ad76d0901f2800b46321410d9f73f2ea88aac0650d86c32688073"
3685
+ dependencies = [
3686
+ "bitflags 2.13.2",
3687
+ "rustix 1.1.5",
3688
+ "wayland-backend",
3689
+ "wayland-scanner",
3690
+ ]
3691
+
3692
+ [[package]]
3693
+ name = "wayland-csd-frame"
3694
+ version = "0.3.0"
3695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3696
+ checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e"
3697
+ dependencies = [
3698
+ "bitflags 2.13.2",
3699
+ "cursor-icon",
3700
+ "wayland-backend",
3701
+ ]
3702
+
3703
+ [[package]]
3704
+ name = "wayland-cursor"
3705
+ version = "0.31.14"
3706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3707
+ checksum = "4a52d18780be9b1314328a3de5f930b73d2200112e3849ca6cb11822793fb34d"
3708
+ dependencies = [
3709
+ "rustix 1.1.5",
3710
+ "wayland-client",
3711
+ "xcursor",
3712
+ ]
3713
+
3714
+ [[package]]
3715
+ name = "wayland-protocols"
3716
+ version = "0.32.13"
3717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3718
+ checksum = "23d0c813de3daa2ed6520af85a3bd49b0e722a3078506899aa9686fea58dc4b6"
3719
+ dependencies = [
3720
+ "bitflags 2.13.2",
3721
+ "wayland-backend",
3722
+ "wayland-client",
3723
+ "wayland-scanner",
3724
+ ]
3725
+
3726
+ [[package]]
3727
+ name = "wayland-protocols-experimental"
3728
+ version = "20250721.0.1"
3729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3730
+ checksum = "40a1f863128dcaaec790d7b4b396cc9b9a7a079e878e18c47e6c2d2c5a8dcbb1"
3731
+ dependencies = [
3732
+ "bitflags 2.13.2",
3733
+ "wayland-backend",
3734
+ "wayland-client",
3735
+ "wayland-protocols",
3736
+ "wayland-scanner",
3737
+ ]
3738
+
3739
+ [[package]]
3740
+ name = "wayland-protocols-misc"
3741
+ version = "0.3.12"
3742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3743
+ checksum = "6e9567599ef23e09b8dad6e429e5738d4509dfc46b3b21f32841a304d16b29c8"
3744
+ dependencies = [
3745
+ "bitflags 2.13.2",
3746
+ "wayland-backend",
3747
+ "wayland-client",
3748
+ "wayland-protocols",
3749
+ "wayland-scanner",
3750
+ ]
3751
+
3752
+ [[package]]
3753
+ name = "wayland-protocols-plasma"
3754
+ version = "0.3.12"
3755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3756
+ checksum = "2b6d8cf1eb2c1c31ed1f5643c88a6e53538129d4af80030c8cabd1f9fa884d91"
3757
+ dependencies = [
3758
+ "bitflags 2.13.2",
3759
+ "wayland-backend",
3760
+ "wayland-client",
3761
+ "wayland-protocols",
3762
+ "wayland-scanner",
3763
+ ]
3764
+
3765
+ [[package]]
3766
+ name = "wayland-protocols-wlr"
3767
+ version = "0.3.12"
3768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3769
+ checksum = "eb04e52f7836d7c7976c78ca0250d61e33873c34156a2a1fc9474828ec268234"
3770
+ dependencies = [
3771
+ "bitflags 2.13.2",
3772
+ "wayland-backend",
3773
+ "wayland-client",
3774
+ "wayland-protocols",
3775
+ "wayland-scanner",
3776
+ ]
3777
+
3778
+ [[package]]
3779
+ name = "wayland-scanner"
3780
+ version = "0.31.11"
3781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3782
+ checksum = "338e30461b3a2b67d70eb30a6d89f8e0c93a833e07d2ae89085cd070c4a00ac0"
3783
+ dependencies = [
3784
+ "proc-macro2",
3785
+ "quick-xml",
3786
+ "quote",
3787
+ ]
3788
+
3789
+ [[package]]
3790
+ name = "wayland-sys"
3791
+ version = "0.31.11"
3792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3793
+ checksum = "d8eab23fefc9e41f8e841df4a9c707e8a8c4ed26e944ef69297184de2785e3be"
3794
+ dependencies = [
3795
+ "dlib",
3796
+ "log",
3797
+ "once_cell",
3798
+ "pkg-config",
3799
+ ]
3800
+
3801
+ [[package]]
3802
+ name = "web-sys"
3803
+ version = "0.3.105"
3804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3805
+ checksum = "9fbddc4a036f00ec4f18c83445bd3115cb306a91da554919a099d9222fe4a7f8"
3806
+ dependencies = [
3807
+ "js-sys",
3808
+ "wasm-bindgen",
3809
+ ]
3810
+
3811
+ [[package]]
3812
+ name = "web-time"
3813
+ version = "1.1.0"
3814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3815
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3816
+ dependencies = [
3817
+ "js-sys",
3818
+ "wasm-bindgen",
3819
+ ]
3820
+
3821
+ [[package]]
3822
+ name = "webbrowser"
3823
+ version = "1.2.4"
3824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3825
+ checksum = "62c35be770821a214dbc362fc26908c853e776c0004294d0b10b8a6bad582f94"
3826
+ dependencies = [
3827
+ "jni",
3828
+ "log",
3829
+ "ndk-context",
3830
+ "objc2 0.6.4",
3831
+ "objc2-app-kit 0.3.2",
3832
+ "objc2-foundation 0.3.2",
3833
+ "url",
3834
+ "web-sys",
3835
+ ]
3836
+
3837
+ [[package]]
3838
+ name = "weezl"
3839
+ version = "0.1.12"
3840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3841
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
3842
+
3843
+ [[package]]
3844
+ name = "wgpu"
3845
+ version = "30.0.1"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "527ccdf43dd5b2e8676eed9984ce00e2bbb0a1b85b70c1969dcb6cd2eb55ab9e"
3848
+ dependencies = [
3849
+ "arrayvec",
3850
+ "bitflags 2.13.2",
3851
+ "bytemuck",
3852
+ "cfg-if",
3853
+ "cfg_aliases",
3854
+ "document-features",
3855
+ "hashbrown 0.17.1",
3856
+ "js-sys",
3857
+ "log",
3858
+ "naga",
3859
+ "parking_lot",
3860
+ "portable-atomic",
3861
+ "profiling",
3862
+ "raw-window-handle",
3863
+ "smallvec",
3864
+ "static_assertions",
3865
+ "wasm-bindgen",
3866
+ "wasm-bindgen-futures",
3867
+ "web-sys",
3868
+ "wgpu-core",
3869
+ "wgpu-hal",
3870
+ "wgpu-types",
3871
+ ]
3872
+
3873
+ [[package]]
3874
+ name = "wgpu-core"
3875
+ version = "30.0.1"
3876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3877
+ checksum = "14c018fce9b6270aa203c2fdd56f3cce996713534bd757e4ea58c8560b121f14"
3878
+ dependencies = [
3879
+ "arrayvec",
3880
+ "bit-set",
3881
+ "bit-vec",
3882
+ "bitflags 2.13.2",
3883
+ "bytemuck",
3884
+ "cfg_aliases",
3885
+ "document-features",
3886
+ "hashbrown 0.17.1",
3887
+ "indexmap",
3888
+ "log",
3889
+ "macro_rules_attribute",
3890
+ "naga",
3891
+ "naga-types",
3892
+ "once_cell",
3893
+ "parking_lot",
3894
+ "portable-atomic",
3895
+ "profiling",
3896
+ "raw-window-handle",
3897
+ "rustc-hash 1.1.0",
3898
+ "serde",
3899
+ "smallvec",
3900
+ "thiserror 2.0.20",
3901
+ "wgpu-core-deps-apple",
3902
+ "wgpu-core-deps-emscripten",
3903
+ "wgpu-core-deps-wasm",
3904
+ "wgpu-core-deps-windows-linux-android",
3905
+ "wgpu-hal",
3906
+ "wgpu-naga-bridge",
3907
+ "wgpu-types",
3908
+ ]
3909
+
3910
+ [[package]]
3911
+ name = "wgpu-core-deps-apple"
3912
+ version = "30.0.1"
3913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3914
+ checksum = "061f3d319a40d39d00b1ecc2c33b89fe21d4e6fe01859df3500a3a8ecccd6b68"
3915
+ dependencies = [
3916
+ "wgpu-hal",
3917
+ ]
3918
+
3919
+ [[package]]
3920
+ name = "wgpu-core-deps-emscripten"
3921
+ version = "30.0.1"
3922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3923
+ checksum = "d98b86cf4abf524a902dd35f18ca6a3f08fc2ae9847c8f10b48e30491b1f0b86"
3924
+ dependencies = [
3925
+ "wgpu-hal",
3926
+ ]
3927
+
3928
+ [[package]]
3929
+ name = "wgpu-core-deps-wasm"
3930
+ version = "30.0.1"
3931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3932
+ checksum = "d260ca2ca8adc654f513a869bf3cac0b47f5b8d3f87803d6942015f8de597aae"
3933
+ dependencies = [
3934
+ "wgpu-hal",
3935
+ ]
3936
+
3937
+ [[package]]
3938
+ name = "wgpu-core-deps-windows-linux-android"
3939
+ version = "30.0.1"
3940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3941
+ checksum = "7586165fd5f6d881cb9ce4bb71f40d6caab2c0f1837e3fc1d9788a197fb6004f"
3942
+ dependencies = [
3943
+ "wgpu-hal",
3944
+ ]
3945
+
3946
+ [[package]]
3947
+ name = "wgpu-hal"
3948
+ version = "30.0.1"
3949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3950
+ checksum = "b6b7fb58561a792bc237628ba0792e332de418fefe145f13b5ed8201e6d52f58"
3951
+ dependencies = [
3952
+ "android_system_properties",
3953
+ "arrayvec",
3954
+ "ash",
3955
+ "bit-set",
3956
+ "bitflags 2.13.2",
3957
+ "block2 0.6.2",
3958
+ "bytemuck",
3959
+ "cfg-if",
3960
+ "cfg_aliases",
3961
+ "glow",
3962
+ "glutin_wgl_sys",
3963
+ "gpu-allocator",
3964
+ "hashbrown 0.17.1",
3965
+ "js-sys",
3966
+ "khronos-egl",
3967
+ "libc",
3968
+ "libloading",
3969
+ "log",
3970
+ "naga",
3971
+ "naga-types",
3972
+ "ndk-sys",
3973
+ "objc2 0.6.4",
3974
+ "objc2-core-foundation",
3975
+ "objc2-core-graphics",
3976
+ "objc2-foundation 0.3.2",
3977
+ "objc2-metal 0.3.2",
3978
+ "objc2-quartz-core 0.3.2",
3979
+ "once_cell",
3980
+ "ordered-float",
3981
+ "parking_lot",
3982
+ "portable-atomic",
3983
+ "portable-atomic-util",
3984
+ "profiling",
3985
+ "range-alloc",
3986
+ "raw-window-handle",
3987
+ "raw-window-metal",
3988
+ "renderdoc-sys",
3989
+ "smallvec",
3990
+ "static_assertions",
3991
+ "thiserror 2.0.20",
3992
+ "wasm-bindgen",
3993
+ "wayland-sys",
3994
+ "web-sys",
3995
+ "wgpu-naga-bridge",
3996
+ "wgpu-types",
3997
+ "windows",
3998
+ "windows-core",
3999
+ "windows-result",
4000
+ ]
4001
+
4002
+ [[package]]
4003
+ name = "wgpu-naga-bridge"
4004
+ version = "30.0.1"
4005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4006
+ checksum = "d2f62e73117bb7a62bfd9c5a5841438a823f6566c6442a808ee269d2d055c081"
4007
+ dependencies = [
4008
+ "naga",
4009
+ "wgpu-types",
4010
+ ]
4011
+
4012
+ [[package]]
4013
+ name = "wgpu-types"
4014
+ version = "30.0.1"
4015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4016
+ checksum = "99dad6f1fbdbbdb4c278a6508b059d44688f5cebddf78d005a46a31340269286"
4017
+ dependencies = [
4018
+ "bitflags 2.13.2",
4019
+ "bytemuck",
4020
+ "js-sys",
4021
+ "log",
4022
+ "naga-types",
4023
+ "raw-window-handle",
4024
+ "serde",
4025
+ "static_assertions",
4026
+ "web-sys",
4027
+ ]
4028
+
4029
+ [[package]]
4030
+ name = "wgpu_text"
4031
+ version = "30.0.0"
4032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4033
+ checksum = "92f10f47ff92dbe1c8ba868555e3b940cc698435f8437117a85565fa5b2eb39c"
4034
+ dependencies = [
4035
+ "bytemuck",
4036
+ "glyph_brush",
4037
+ "log",
4038
+ "wgpu",
4039
+ ]
4040
+
4041
+ [[package]]
4042
+ name = "winapi-util"
4043
+ version = "0.1.11"
4044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4045
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4046
+ dependencies = [
4047
+ "windows-sys 0.61.2",
4048
+ ]
4049
+
4050
+ [[package]]
4051
+ name = "windows"
4052
+ version = "0.62.2"
4053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4054
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
4055
+ dependencies = [
4056
+ "windows-collections",
4057
+ "windows-core",
4058
+ "windows-future",
4059
+ "windows-numerics",
4060
+ ]
4061
+
4062
+ [[package]]
4063
+ name = "windows-collections"
4064
+ version = "0.3.2"
4065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4066
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
4067
+ dependencies = [
4068
+ "windows-core",
4069
+ ]
4070
+
4071
+ [[package]]
4072
+ name = "windows-core"
4073
+ version = "0.62.2"
4074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4075
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4076
+ dependencies = [
4077
+ "windows-implement",
4078
+ "windows-interface",
4079
+ "windows-link",
4080
+ "windows-result",
4081
+ "windows-strings",
4082
+ ]
4083
+
4084
+ [[package]]
4085
+ name = "windows-future"
4086
+ version = "0.3.2"
4087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4088
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
4089
+ dependencies = [
4090
+ "windows-core",
4091
+ "windows-link",
4092
+ "windows-threading",
4093
+ ]
4094
+
4095
+ [[package]]
4096
+ name = "windows-implement"
4097
+ version = "0.60.2"
4098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4099
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4100
+ dependencies = [
4101
+ "proc-macro2",
4102
+ "quote",
4103
+ "syn 2.0.119",
4104
+ ]
4105
+
4106
+ [[package]]
4107
+ name = "windows-interface"
4108
+ version = "0.59.3"
4109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4110
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4111
+ dependencies = [
4112
+ "proc-macro2",
4113
+ "quote",
4114
+ "syn 2.0.119",
4115
+ ]
4116
+
4117
+ [[package]]
4118
+ name = "windows-link"
4119
+ version = "0.2.1"
4120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4121
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4122
+
4123
+ [[package]]
4124
+ name = "windows-numerics"
4125
+ version = "0.3.1"
4126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4127
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
4128
+ dependencies = [
4129
+ "windows-core",
4130
+ "windows-link",
4131
+ ]
4132
+
4133
+ [[package]]
4134
+ name = "windows-result"
4135
+ version = "0.4.1"
4136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4137
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4138
+ dependencies = [
4139
+ "windows-link",
4140
+ ]
4141
+
4142
+ [[package]]
4143
+ name = "windows-strings"
4144
+ version = "0.5.1"
4145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4146
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4147
+ dependencies = [
4148
+ "windows-link",
4149
+ ]
4150
+
4151
+ [[package]]
4152
+ name = "windows-sys"
4153
+ version = "0.52.0"
4154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4155
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4156
+ dependencies = [
4157
+ "windows-targets 0.52.6",
4158
+ ]
4159
+
4160
+ [[package]]
4161
+ name = "windows-sys"
4162
+ version = "0.59.0"
4163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4164
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4165
+ dependencies = [
4166
+ "windows-targets 0.52.6",
4167
+ ]
4168
+
4169
+ [[package]]
4170
+ name = "windows-sys"
4171
+ version = "0.60.2"
4172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4173
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4174
+ dependencies = [
4175
+ "windows-targets 0.53.5",
4176
+ ]
4177
+
4178
+ [[package]]
4179
+ name = "windows-sys"
4180
+ version = "0.61.2"
4181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4182
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4183
+ dependencies = [
4184
+ "windows-link",
4185
+ ]
4186
+
4187
+ [[package]]
4188
+ name = "windows-targets"
4189
+ version = "0.52.6"
4190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4191
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4192
+ dependencies = [
4193
+ "windows_aarch64_gnullvm 0.52.6",
4194
+ "windows_aarch64_msvc 0.52.6",
4195
+ "windows_i686_gnu 0.52.6",
4196
+ "windows_i686_gnullvm 0.52.6",
4197
+ "windows_i686_msvc 0.52.6",
4198
+ "windows_x86_64_gnu 0.52.6",
4199
+ "windows_x86_64_gnullvm 0.52.6",
4200
+ "windows_x86_64_msvc 0.52.6",
4201
+ ]
4202
+
4203
+ [[package]]
4204
+ name = "windows-targets"
4205
+ version = "0.53.5"
4206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4207
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4208
+ dependencies = [
4209
+ "windows-link",
4210
+ "windows_aarch64_gnullvm 0.53.1",
4211
+ "windows_aarch64_msvc 0.53.1",
4212
+ "windows_i686_gnu 0.53.1",
4213
+ "windows_i686_gnullvm 0.53.1",
4214
+ "windows_i686_msvc 0.53.1",
4215
+ "windows_x86_64_gnu 0.53.1",
4216
+ "windows_x86_64_gnullvm 0.53.1",
4217
+ "windows_x86_64_msvc 0.53.1",
4218
+ ]
4219
+
4220
+ [[package]]
4221
+ name = "windows-threading"
4222
+ version = "0.2.1"
4223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4224
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
4225
+ dependencies = [
4226
+ "windows-link",
4227
+ ]
4228
+
4229
+ [[package]]
4230
+ name = "windows_aarch64_gnullvm"
4231
+ version = "0.52.6"
4232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4233
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4234
+
4235
+ [[package]]
4236
+ name = "windows_aarch64_gnullvm"
4237
+ version = "0.53.1"
4238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4239
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4240
+
4241
+ [[package]]
4242
+ name = "windows_aarch64_msvc"
4243
+ version = "0.52.6"
4244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4245
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4246
+
4247
+ [[package]]
4248
+ name = "windows_aarch64_msvc"
4249
+ version = "0.53.1"
4250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4251
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4252
+
4253
+ [[package]]
4254
+ name = "windows_i686_gnu"
4255
+ version = "0.52.6"
4256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4257
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4258
+
4259
+ [[package]]
4260
+ name = "windows_i686_gnu"
4261
+ version = "0.53.1"
4262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4263
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4264
+
4265
+ [[package]]
4266
+ name = "windows_i686_gnullvm"
4267
+ version = "0.52.6"
4268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4269
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4270
+
4271
+ [[package]]
4272
+ name = "windows_i686_gnullvm"
4273
+ version = "0.53.1"
4274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4275
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4276
+
4277
+ [[package]]
4278
+ name = "windows_i686_msvc"
4279
+ version = "0.52.6"
4280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4281
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4282
+
4283
+ [[package]]
4284
+ name = "windows_i686_msvc"
4285
+ version = "0.53.1"
4286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4287
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4288
+
4289
+ [[package]]
4290
+ name = "windows_x86_64_gnu"
4291
+ version = "0.52.6"
4292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4293
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4294
+
4295
+ [[package]]
4296
+ name = "windows_x86_64_gnu"
4297
+ version = "0.53.1"
4298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4299
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4300
+
4301
+ [[package]]
4302
+ name = "windows_x86_64_gnullvm"
4303
+ version = "0.52.6"
4304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4305
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4306
+
4307
+ [[package]]
4308
+ name = "windows_x86_64_gnullvm"
4309
+ version = "0.53.1"
4310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4311
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4312
+
4313
+ [[package]]
4314
+ name = "windows_x86_64_msvc"
4315
+ version = "0.52.6"
4316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4317
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4318
+
4319
+ [[package]]
4320
+ name = "windows_x86_64_msvc"
4321
+ version = "0.53.1"
4322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4323
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4324
+
4325
+ [[package]]
4326
+ name = "winit"
4327
+ version = "0.30.13"
4328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4329
+ checksum = "a6755fa58a9f8350bd1e472d4c3fcc25f824ec358933bba33306d0b63df5978d"
4330
+ dependencies = [
4331
+ "ahash",
4332
+ "android-activity",
4333
+ "atomic-waker",
4334
+ "bitflags 2.13.2",
4335
+ "block2 0.5.1",
4336
+ "bytemuck",
4337
+ "calloop 0.13.0",
4338
+ "cfg_aliases",
4339
+ "concurrent-queue",
4340
+ "core-foundation",
4341
+ "core-graphics",
4342
+ "cursor-icon",
4343
+ "dpi",
4344
+ "js-sys",
4345
+ "libc",
4346
+ "memmap2",
4347
+ "ndk",
4348
+ "objc2 0.5.2",
4349
+ "objc2-app-kit 0.2.2",
4350
+ "objc2-foundation 0.2.2",
4351
+ "objc2-ui-kit 0.2.2",
4352
+ "orbclient",
4353
+ "percent-encoding",
4354
+ "pin-project",
4355
+ "raw-window-handle",
4356
+ "redox_syscall 0.4.1",
4357
+ "rustix 0.38.44",
4358
+ "sctk-adwaita",
4359
+ "smithay-client-toolkit 0.19.2",
4360
+ "smol_str",
4361
+ "tracing",
4362
+ "unicode-segmentation",
4363
+ "wasm-bindgen",
4364
+ "wasm-bindgen-futures",
4365
+ "wayland-backend",
4366
+ "wayland-client",
4367
+ "wayland-protocols",
4368
+ "wayland-protocols-plasma",
4369
+ "web-sys",
4370
+ "web-time",
4371
+ "windows-sys 0.52.0",
4372
+ "x11-dl",
4373
+ "x11rb",
4374
+ "xkbcommon-dl",
4375
+ ]
4376
+
4377
+ [[package]]
4378
+ name = "winnow"
4379
+ version = "0.7.15"
4380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4381
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
4382
+ dependencies = [
4383
+ "memchr",
4384
+ ]
4385
+
4386
+ [[package]]
4387
+ name = "winnow"
4388
+ version = "1.0.4"
4389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4390
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
4391
+ dependencies = [
4392
+ "memchr",
4393
+ ]
4394
+
4395
+ [[package]]
4396
+ name = "wit-bindgen"
4397
+ version = "0.57.1"
4398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4399
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4400
+
4401
+ [[package]]
4402
+ name = "writeable"
4403
+ version = "0.6.4"
4404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4405
+ checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc"
4406
+
4407
+ [[package]]
4408
+ name = "x11-dl"
4409
+ version = "2.21.0"
4410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4411
+ checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
4412
+ dependencies = [
4413
+ "libc",
4414
+ "once_cell",
4415
+ "pkg-config",
4416
+ ]
4417
+
4418
+ [[package]]
4419
+ name = "x11rb"
4420
+ version = "0.13.2"
4421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4422
+ checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
4423
+ dependencies = [
4424
+ "as-raw-xcb-connection",
4425
+ "gethostname",
4426
+ "libc",
4427
+ "libloading",
4428
+ "once_cell",
4429
+ "rustix 1.1.5",
4430
+ "x11rb-protocol",
4431
+ ]
4432
+
4433
+ [[package]]
4434
+ name = "x11rb-protocol"
4435
+ version = "0.13.2"
4436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4437
+ checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
4438
+
4439
+ [[package]]
4440
+ name = "xcursor"
4441
+ version = "0.3.11"
4442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4443
+ checksum = "163b33ed8786455e2fa5d72f554057ce3f3182425434f756cd39c99839d88e23"
4444
+
4445
+ [[package]]
4446
+ name = "xi-unicode"
4447
+ version = "0.3.0"
4448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4449
+ checksum = "a67300977d3dc3f8034dae89778f502b6ba20b269527b3223ba59c0cf393bb8a"
4450
+
4451
+ [[package]]
4452
+ name = "xkbcommon-dl"
4453
+ version = "0.4.2"
4454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4455
+ checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
4456
+ dependencies = [
4457
+ "bitflags 2.13.2",
4458
+ "dlib",
4459
+ "log",
4460
+ "once_cell",
4461
+ "xkeysym",
4462
+ ]
4463
+
4464
+ [[package]]
4465
+ name = "xkeysym"
4466
+ version = "0.2.1"
4467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4468
+ checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
4469
+
4470
+ [[package]]
4471
+ name = "xml-rs"
4472
+ version = "0.8.29"
4473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4474
+ checksum = "e450f9b2ed1dff33c94c12589a87338689467b9c4f5d8a5710bd09a847d2c8a7"
4475
+
4476
+ [[package]]
4477
+ name = "yoke"
4478
+ version = "0.8.3"
4479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4480
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
4481
+ dependencies = [
4482
+ "stable_deref_trait",
4483
+ "yoke-derive",
4484
+ "zerofrom",
4485
+ ]
4486
+
4487
+ [[package]]
4488
+ name = "yoke-derive"
4489
+ version = "0.8.3"
4490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4491
+ checksum = "33811428bee40dbceb6d545e95754741d17a6aef9a4849f0fd62e2ba4f412a78"
4492
+ dependencies = [
4493
+ "proc-macro2",
4494
+ "quote",
4495
+ "syn 3.0.6",
4496
+ "synstructure",
4497
+ ]
4498
+
4499
+ [[package]]
4500
+ name = "zerocopy"
4501
+ version = "0.8.57"
4502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4503
+ checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
4504
+ dependencies = [
4505
+ "zerocopy-derive",
4506
+ ]
4507
+
4508
+ [[package]]
4509
+ name = "zerocopy-derive"
4510
+ version = "0.8.57"
4511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4512
+ checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
4513
+ dependencies = [
4514
+ "proc-macro2",
4515
+ "quote",
4516
+ "syn 2.0.119",
4517
+ ]
4518
+
4519
+ [[package]]
4520
+ name = "zerofrom"
4521
+ version = "0.1.8"
4522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4523
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4524
+ dependencies = [
4525
+ "zerofrom-derive",
4526
+ ]
4527
+
4528
+ [[package]]
4529
+ name = "zerofrom-derive"
4530
+ version = "0.1.8"
4531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4532
+ checksum = "f75b4683f6c7f45248d4d64056a24298c6281e0993356d7d1b4a1a962ef10d4a"
4533
+ dependencies = [
4534
+ "proc-macro2",
4535
+ "quote",
4536
+ "syn 3.0.6",
4537
+ "synstructure",
4538
+ ]
4539
+
4540
+ [[package]]
4541
+ name = "zerotrie"
4542
+ version = "0.2.5"
4543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4544
+ checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f"
4545
+ dependencies = [
4546
+ "displaydoc",
4547
+ "yoke",
4548
+ "zerofrom",
4549
+ ]
4550
+
4551
+ [[package]]
4552
+ name = "zerovec"
4553
+ version = "0.11.8"
4554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4555
+ checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8"
4556
+ dependencies = [
4557
+ "yoke",
4558
+ "zerofrom",
4559
+ "zerovec-derive",
4560
+ ]
4561
+
4562
+ [[package]]
4563
+ name = "zerovec-derive"
4564
+ version = "0.11.6"
4565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4566
+ checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da"
4567
+ dependencies = [
4568
+ "proc-macro2",
4569
+ "quote",
4570
+ "syn 3.0.6",
4571
+ ]
4572
+
4573
+ [[package]]
4574
+ name = "zlib-rs"
4575
+ version = "0.6.8"
4576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4577
+ checksum = "b268e58e7c693d7c271f93ffc4ba3b380412554231c85bf61ca7af91042a4112"
4578
+
4579
+ [[package]]
4580
+ name = "zune-core"
4581
+ version = "0.5.3"
4582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4583
+ checksum = "d56377fd46368984a170bc5aac5567e52ca5da874caa60bea39fcbca78fb658b"
4584
+
4585
+ [[package]]
4586
+ name = "zune-jpeg"
4587
+ version = "0.5.15"
4588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4589
+ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
4590
+ dependencies = [
4591
+ "zune-core",
4592
+ ]