ltcai 4.0.0 → 4.1.0

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 (195) hide show
  1. package/README.md +42 -33
  2. package/desktop/electron/main.cjs +44 -0
  3. package/docs/CHANGELOG.md +106 -0
  4. package/docs/REALTIME_COLLABORATION.md +3 -3
  5. package/docs/V3_FRONTEND.md +9 -8
  6. package/docs/V4_1_FRONTEND_ARCHITECTURE_REVIEW.md +65 -0
  7. package/docs/V4_1_FRONTEND_MIGRATION_REPORT.md +70 -0
  8. package/docs/V4_1_VALIDATION_REPORT.md +47 -0
  9. package/docs/V4_DIGITAL_BRAIN_RECOVERY.md +95 -45
  10. package/docs/kg-schema.md +6 -2
  11. package/docs/spec-vs-impl.md +10 -10
  12. package/frontend/index.html +24 -0
  13. package/frontend/openapi.json +14190 -0
  14. package/frontend/src/App.tsx +184 -0
  15. package/frontend/src/api/client.ts +317 -0
  16. package/frontend/src/api/openapi.ts +16637 -0
  17. package/frontend/src/components/primitives.tsx +204 -0
  18. package/frontend/src/components/ui/badge.tsx +27 -0
  19. package/frontend/src/components/ui/button.tsx +37 -0
  20. package/frontend/src/components/ui/card.tsx +22 -0
  21. package/frontend/src/components/ui/input.tsx +16 -0
  22. package/frontend/src/components/ui/textarea.tsx +16 -0
  23. package/frontend/src/lib/utils.ts +33 -0
  24. package/frontend/src/main.tsx +23 -0
  25. package/frontend/src/pages/Act.tsx +245 -0
  26. package/frontend/src/pages/Ask.tsx +200 -0
  27. package/frontend/src/pages/Brain.tsx +267 -0
  28. package/frontend/src/pages/Capture.tsx +158 -0
  29. package/frontend/src/pages/Library.tsx +187 -0
  30. package/frontend/src/pages/System.tsx +344 -0
  31. package/frontend/src/routes.ts +85 -0
  32. package/frontend/src/store/appStore.ts +54 -0
  33. package/frontend/src/styles.css +107 -0
  34. package/kg_schema.py +2 -603
  35. package/knowledge_graph.py +37 -4958
  36. package/latticeai/__init__.py +1 -1
  37. package/latticeai/api/admin.py +15 -16
  38. package/latticeai/api/agents.py +13 -6
  39. package/latticeai/api/auth.py +19 -11
  40. package/latticeai/api/invitations.py +100 -0
  41. package/latticeai/api/knowledge_graph.py +4 -11
  42. package/latticeai/api/plugins.py +3 -6
  43. package/latticeai/api/realtime.py +4 -7
  44. package/latticeai/api/setup.py +5 -4
  45. package/latticeai/api/static_routes.py +13 -16
  46. package/latticeai/api/ui_redirects.py +26 -0
  47. package/latticeai/api/workflow_designer.py +39 -6
  48. package/latticeai/api/workspace.py +24 -10
  49. package/latticeai/app_factory.py +88 -17
  50. package/latticeai/brain/_kg_common.py +1123 -0
  51. package/latticeai/brain/discovery.py +1455 -0
  52. package/latticeai/brain/documents.py +218 -0
  53. package/latticeai/brain/ingest.py +644 -0
  54. package/latticeai/brain/projection.py +561 -0
  55. package/latticeai/brain/provenance.py +401 -0
  56. package/latticeai/brain/retrieval.py +1316 -0
  57. package/latticeai/brain/schema.py +640 -0
  58. package/latticeai/brain/store.py +216 -0
  59. package/latticeai/brain/write_master.py +225 -0
  60. package/latticeai/core/invitations.py +131 -0
  61. package/latticeai/core/marketplace.py +1 -1
  62. package/latticeai/core/multi_agent.py +1 -1
  63. package/latticeai/core/policy.py +54 -0
  64. package/latticeai/core/realtime.py +65 -44
  65. package/latticeai/core/sessions.py +31 -5
  66. package/latticeai/core/users.py +147 -0
  67. package/latticeai/core/workspace_os.py +420 -20
  68. package/latticeai/services/agent_runtime.py +242 -4
  69. package/latticeai/services/run_executor.py +328 -0
  70. package/latticeai/services/workspace_service.py +27 -19
  71. package/package.json +54 -27
  72. package/scripts/build_frontend_assets.mjs +38 -0
  73. package/scripts/bump_version.py +1 -1
  74. package/scripts/export_openapi.py +31 -0
  75. package/scripts/lint_frontend.mjs +86 -0
  76. package/scripts/run_python.mjs +47 -0
  77. package/src-tauri/Cargo.lock +4833 -0
  78. package/src-tauri/Cargo.toml +19 -0
  79. package/src-tauri/build.rs +3 -0
  80. package/src-tauri/capabilities/default.json +7 -0
  81. package/src-tauri/src/main.rs +78 -0
  82. package/src-tauri/tauri.conf.json +36 -0
  83. package/static/app/asset-manifest.json +32 -0
  84. package/static/app/assets/core-CwxXejkd.js +2 -0
  85. package/static/app/assets/core-CwxXejkd.js.map +1 -0
  86. package/static/app/assets/index-CJRAzNnf.js +333 -0
  87. package/static/app/assets/index-CJRAzNnf.js.map +1 -0
  88. package/static/app/assets/index-CSwBBgf4.css +2 -0
  89. package/static/app/index.html +25 -0
  90. package/static/manifest.json +2 -2
  91. package/static/sw.js +4 -4
  92. package/scripts/build_v3_assets.mjs +0 -170
  93. package/scripts/lint_v3.mjs +0 -97
  94. package/static/account.html +0 -113
  95. package/static/activity.html +0 -73
  96. package/static/admin.html +0 -486
  97. package/static/agents.html +0 -139
  98. package/static/chat.html +0 -841
  99. package/static/css/reference/account.css +0 -439
  100. package/static/css/reference/admin.css +0 -610
  101. package/static/css/reference/base.css +0 -1661
  102. package/static/css/reference/chat.css +0 -4623
  103. package/static/css/reference/graph.css +0 -1016
  104. package/static/css/responsive.css +0 -861
  105. package/static/graph.html +0 -122
  106. package/static/platform.css +0 -104
  107. package/static/plugins.html +0 -136
  108. package/static/scripts/account.js +0 -238
  109. package/static/scripts/admin.js +0 -1614
  110. package/static/scripts/chat.js +0 -5081
  111. package/static/scripts/graph.js +0 -1804
  112. package/static/scripts/platform.js +0 -64
  113. package/static/scripts/ux.js +0 -167
  114. package/static/scripts/workspace.js +0 -948
  115. package/static/v3/asset-manifest.json +0 -56
  116. package/static/v3/css/lattice.base.49deefb5.css +0 -128
  117. package/static/v3/css/lattice.base.css +0 -128
  118. package/static/v3/css/lattice.components.cde18231.css +0 -472
  119. package/static/v3/css/lattice.components.css +0 -472
  120. package/static/v3/css/lattice.shell.29d36d85.css +0 -452
  121. package/static/v3/css/lattice.shell.css +0 -452
  122. package/static/v3/css/lattice.tokens.304cbc40.css +0 -135
  123. package/static/v3/css/lattice.tokens.css +0 -135
  124. package/static/v3/css/lattice.views.0a18b6c5.css +0 -360
  125. package/static/v3/css/lattice.views.css +0 -360
  126. package/static/v3/index.html +0 -68
  127. package/static/v3/js/app.356e6452.js +0 -26
  128. package/static/v3/js/app.js +0 -26
  129. package/static/v3/js/core/api.7a308b89.js +0 -568
  130. package/static/v3/js/core/api.js +0 -568
  131. package/static/v3/js/core/components.f25b3b93.js +0 -230
  132. package/static/v3/js/core/components.js +0 -230
  133. package/static/v3/js/core/dom.a2773eb0.js +0 -148
  134. package/static/v3/js/core/dom.js +0 -148
  135. package/static/v3/js/core/router.584570f2.js +0 -37
  136. package/static/v3/js/core/router.js +0 -37
  137. package/static/v3/js/core/routes.7222343d.js +0 -93
  138. package/static/v3/js/core/routes.js +0 -93
  139. package/static/v3/js/core/shell.a1657f20.js +0 -391
  140. package/static/v3/js/core/shell.js +0 -391
  141. package/static/v3/js/core/store.204a08b2.js +0 -113
  142. package/static/v3/js/core/store.js +0 -113
  143. package/static/v3/js/views/admin-audit.660a1fb1.js +0 -185
  144. package/static/v3/js/views/admin-audit.js +0 -185
  145. package/static/v3/js/views/admin-permissions.a7ae5f09.js +0 -177
  146. package/static/v3/js/views/admin-permissions.js +0 -177
  147. package/static/v3/js/views/admin-policies.3658fd86.js +0 -102
  148. package/static/v3/js/views/admin-policies.js +0 -102
  149. package/static/v3/js/views/admin-private-vpc.7d342d36.js +0 -135
  150. package/static/v3/js/views/admin-private-vpc.js +0 -135
  151. package/static/v3/js/views/admin-security.07c66b72.js +0 -180
  152. package/static/v3/js/views/admin-security.js +0 -180
  153. package/static/v3/js/views/admin-users.03bac88c.js +0 -168
  154. package/static/v3/js/views/admin-users.js +0 -168
  155. package/static/v3/js/views/agents.014d0b74.js +0 -541
  156. package/static/v3/js/views/agents.js +0 -541
  157. package/static/v3/js/views/chat.e6dd7dd0.js +0 -601
  158. package/static/v3/js/views/chat.js +0 -601
  159. package/static/v3/js/views/files.adad14c1.js +0 -365
  160. package/static/v3/js/views/files.js +0 -365
  161. package/static/v3/js/views/graph-canvas.17c15d65.js +0 -509
  162. package/static/v3/js/views/graph-canvas.js +0 -509
  163. package/static/v3/js/views/home.24f8b8ae.js +0 -200
  164. package/static/v3/js/views/home.js +0 -200
  165. package/static/v3/js/views/hooks.37895880.js +0 -220
  166. package/static/v3/js/views/hooks.js +0 -220
  167. package/static/v3/js/views/hybrid-search.2fb63ed9.js +0 -194
  168. package/static/v3/js/views/hybrid-search.js +0 -194
  169. package/static/v3/js/views/knowledge-graph.5e40cbeb.js +0 -509
  170. package/static/v3/js/views/knowledge-graph.js +0 -509
  171. package/static/v3/js/views/marketplace.ab0583d4.js +0 -141
  172. package/static/v3/js/views/marketplace.js +0 -141
  173. package/static/v3/js/views/mcp.99b5c6a7.js +0 -114
  174. package/static/v3/js/views/mcp.js +0 -114
  175. package/static/v3/js/views/memory.4ebdf474.js +0 -147
  176. package/static/v3/js/views/memory.js +0 -147
  177. package/static/v3/js/views/models.a1ffa147.js +0 -256
  178. package/static/v3/js/views/models.js +0 -256
  179. package/static/v3/js/views/my-computer.d9d9ae1c.js +0 -463
  180. package/static/v3/js/views/my-computer.js +0 -463
  181. package/static/v3/js/views/pipeline.c522f1ce.js +0 -157
  182. package/static/v3/js/views/pipeline.js +0 -157
  183. package/static/v3/js/views/planning.9ac3e313.js +0 -153
  184. package/static/v3/js/views/planning.js +0 -153
  185. package/static/v3/js/views/settings.8631fa5e.js +0 -318
  186. package/static/v3/js/views/settings.js +0 -318
  187. package/static/v3/js/views/skills.c6c2f965.js +0 -109
  188. package/static/v3/js/views/skills.js +0 -109
  189. package/static/v3/js/views/tools.e4f11276.js +0 -108
  190. package/static/v3/js/views/tools.js +0 -108
  191. package/static/v3/js/views/workflows.26c57290.js +0 -128
  192. package/static/v3/js/views/workflows.js +0 -128
  193. package/static/workflows.html +0 -146
  194. package/static/workspace.css +0 -1121
  195. package/static/workspace.html +0 -357
@@ -0,0 +1,4833 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "alloc-no-stdlib"
22
+ version = "2.0.4"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
25
+
26
+ [[package]]
27
+ name = "alloc-stdlib"
28
+ version = "0.2.2"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
31
+ dependencies = [
32
+ "alloc-no-stdlib",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "android_system_properties"
37
+ version = "0.1.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
40
+ dependencies = [
41
+ "libc",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anyhow"
46
+ version = "1.0.102"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
49
+
50
+ [[package]]
51
+ name = "atk"
52
+ version = "0.18.2"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b"
55
+ dependencies = [
56
+ "atk-sys",
57
+ "glib",
58
+ "libc",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "atk-sys"
63
+ version = "0.18.2"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086"
66
+ dependencies = [
67
+ "glib-sys",
68
+ "gobject-sys",
69
+ "libc",
70
+ "system-deps",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "atomic-waker"
75
+ version = "1.1.2"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
78
+
79
+ [[package]]
80
+ name = "autocfg"
81
+ version = "1.5.1"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
84
+
85
+ [[package]]
86
+ name = "base64"
87
+ version = "0.21.7"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
90
+
91
+ [[package]]
92
+ name = "base64"
93
+ version = "0.22.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
96
+
97
+ [[package]]
98
+ name = "bitflags"
99
+ version = "1.3.2"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
102
+
103
+ [[package]]
104
+ name = "bitflags"
105
+ version = "2.13.0"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
108
+ dependencies = [
109
+ "serde_core",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "block"
114
+ version = "0.1.6"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
117
+
118
+ [[package]]
119
+ name = "block-buffer"
120
+ version = "0.10.4"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
123
+ dependencies = [
124
+ "generic-array",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "block2"
129
+ version = "0.5.1"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
132
+ dependencies = [
133
+ "objc2 0.5.2",
134
+ ]
135
+
136
+ [[package]]
137
+ name = "block2"
138
+ version = "0.6.2"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
141
+ dependencies = [
142
+ "objc2 0.6.4",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "brotli"
147
+ version = "6.0.0"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
150
+ dependencies = [
151
+ "alloc-no-stdlib",
152
+ "alloc-stdlib",
153
+ "brotli-decompressor",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "brotli-decompressor"
158
+ version = "4.0.3"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
161
+ dependencies = [
162
+ "alloc-no-stdlib",
163
+ "alloc-stdlib",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "bumpalo"
168
+ version = "3.20.3"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
171
+
172
+ [[package]]
173
+ name = "bytemuck"
174
+ version = "1.25.0"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
177
+
178
+ [[package]]
179
+ name = "byteorder"
180
+ version = "1.5.0"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
183
+
184
+ [[package]]
185
+ name = "bytes"
186
+ version = "1.11.1"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
189
+ dependencies = [
190
+ "serde",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "cairo-rs"
195
+ version = "0.18.5"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2"
198
+ dependencies = [
199
+ "bitflags 2.13.0",
200
+ "cairo-sys-rs",
201
+ "glib",
202
+ "libc",
203
+ "once_cell",
204
+ "thiserror 1.0.69",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "cairo-sys-rs"
209
+ version = "0.18.2"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51"
212
+ dependencies = [
213
+ "glib-sys",
214
+ "libc",
215
+ "system-deps",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "camino"
220
+ version = "1.2.2"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
223
+ dependencies = [
224
+ "serde_core",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "cargo-platform"
229
+ version = "0.1.9"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
232
+ dependencies = [
233
+ "serde",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "cargo_metadata"
238
+ version = "0.18.1"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037"
241
+ dependencies = [
242
+ "camino",
243
+ "cargo-platform",
244
+ "semver",
245
+ "serde",
246
+ "serde_json",
247
+ "thiserror 1.0.69",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "cargo_toml"
252
+ version = "0.17.2"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "8a969e13a7589e9e3e4207e153bae624ade2b5622fb4684a4923b23ec3d57719"
255
+ dependencies = [
256
+ "serde",
257
+ "toml 0.8.2",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "cc"
262
+ version = "1.2.63"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
265
+ dependencies = [
266
+ "find-msvc-tools",
267
+ "shlex",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "cesu8"
272
+ version = "1.1.0"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
275
+
276
+ [[package]]
277
+ name = "cfb"
278
+ version = "0.7.3"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
281
+ dependencies = [
282
+ "byteorder",
283
+ "fnv",
284
+ "uuid",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "cfg-expr"
289
+ version = "0.15.8"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
292
+ dependencies = [
293
+ "smallvec",
294
+ "target-lexicon",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "cfg-if"
299
+ version = "1.0.4"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
302
+
303
+ [[package]]
304
+ name = "chrono"
305
+ version = "0.4.45"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
308
+ dependencies = [
309
+ "iana-time-zone",
310
+ "num-traits",
311
+ "serde",
312
+ "windows-link",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "cocoa"
317
+ version = "0.26.1"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "ad36507aeb7e16159dfe68db81ccc27571c3ccd4b76fb2fb72fc59e7a4b1b64c"
320
+ dependencies = [
321
+ "bitflags 2.13.0",
322
+ "block",
323
+ "cocoa-foundation",
324
+ "core-foundation",
325
+ "core-graphics",
326
+ "foreign-types",
327
+ "libc",
328
+ "objc",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "cocoa-foundation"
333
+ version = "0.2.1"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "81411967c50ee9a1fc11365f8c585f863a22a9697c89239c452292c40ba79b0d"
336
+ dependencies = [
337
+ "bitflags 2.13.0",
338
+ "block",
339
+ "core-foundation",
340
+ "core-graphics-types",
341
+ "objc",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "combine"
346
+ version = "4.6.7"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
349
+ dependencies = [
350
+ "bytes",
351
+ "memchr",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "convert_case"
356
+ version = "0.4.0"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
359
+
360
+ [[package]]
361
+ name = "core-foundation"
362
+ version = "0.10.1"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
365
+ dependencies = [
366
+ "core-foundation-sys",
367
+ "libc",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "core-foundation-sys"
372
+ version = "0.8.7"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
375
+
376
+ [[package]]
377
+ name = "core-graphics"
378
+ version = "0.24.0"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1"
381
+ dependencies = [
382
+ "bitflags 2.13.0",
383
+ "core-foundation",
384
+ "core-graphics-types",
385
+ "foreign-types",
386
+ "libc",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "core-graphics-types"
391
+ version = "0.2.0"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
394
+ dependencies = [
395
+ "bitflags 2.13.0",
396
+ "core-foundation",
397
+ "libc",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "cpufeatures"
402
+ version = "0.2.17"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
405
+ dependencies = [
406
+ "libc",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "crc32fast"
411
+ version = "1.5.0"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
414
+ dependencies = [
415
+ "cfg-if",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "crossbeam-channel"
420
+ version = "0.5.15"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
423
+ dependencies = [
424
+ "crossbeam-utils",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "crossbeam-utils"
429
+ version = "0.8.21"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
432
+
433
+ [[package]]
434
+ name = "crypto-common"
435
+ version = "0.1.7"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
438
+ dependencies = [
439
+ "generic-array",
440
+ "typenum",
441
+ ]
442
+
443
+ [[package]]
444
+ name = "cssparser"
445
+ version = "0.27.2"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
448
+ dependencies = [
449
+ "cssparser-macros",
450
+ "dtoa-short",
451
+ "itoa 0.4.8",
452
+ "matches",
453
+ "phf 0.8.0",
454
+ "proc-macro2",
455
+ "quote",
456
+ "smallvec",
457
+ "syn 1.0.109",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "cssparser-macros"
462
+ version = "0.6.1"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
465
+ dependencies = [
466
+ "quote",
467
+ "syn 2.0.117",
468
+ ]
469
+
470
+ [[package]]
471
+ name = "ctor"
472
+ version = "0.2.9"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
475
+ dependencies = [
476
+ "quote",
477
+ "syn 2.0.117",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "darling"
482
+ version = "0.21.3"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
485
+ dependencies = [
486
+ "darling_core",
487
+ "darling_macro",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "darling_core"
492
+ version = "0.21.3"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
495
+ dependencies = [
496
+ "fnv",
497
+ "ident_case",
498
+ "proc-macro2",
499
+ "quote",
500
+ "strsim",
501
+ "syn 2.0.117",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "darling_macro"
506
+ version = "0.21.3"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
509
+ dependencies = [
510
+ "darling_core",
511
+ "quote",
512
+ "syn 2.0.117",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "deranged"
517
+ version = "0.3.11"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
520
+ dependencies = [
521
+ "powerfmt",
522
+ "serde",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "derive_more"
527
+ version = "0.99.20"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
530
+ dependencies = [
531
+ "convert_case",
532
+ "proc-macro2",
533
+ "quote",
534
+ "rustc_version",
535
+ "syn 2.0.117",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "digest"
540
+ version = "0.10.7"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
543
+ dependencies = [
544
+ "block-buffer",
545
+ "crypto-common",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "dirs"
550
+ version = "5.0.1"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
553
+ dependencies = [
554
+ "dirs-sys 0.4.1",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "dirs"
559
+ version = "6.0.0"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
562
+ dependencies = [
563
+ "dirs-sys 0.5.0",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "dirs-sys"
568
+ version = "0.4.1"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
571
+ dependencies = [
572
+ "libc",
573
+ "option-ext",
574
+ "redox_users 0.4.6",
575
+ "windows-sys 0.48.0",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "dirs-sys"
580
+ version = "0.5.0"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
583
+ dependencies = [
584
+ "libc",
585
+ "option-ext",
586
+ "redox_users 0.5.2",
587
+ "windows-sys 0.61.2",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "dispatch"
592
+ version = "0.2.0"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
595
+
596
+ [[package]]
597
+ name = "dispatch2"
598
+ version = "0.3.1"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
601
+ dependencies = [
602
+ "bitflags 2.13.0",
603
+ "objc2 0.6.4",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "displaydoc"
608
+ version = "0.2.6"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
611
+ dependencies = [
612
+ "proc-macro2",
613
+ "quote",
614
+ "syn 2.0.117",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "dlopen2"
619
+ version = "0.7.0"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "9e1297103d2bbaea85724fcee6294c2d50b1081f9ad47d0f6f6f61eda65315a6"
622
+ dependencies = [
623
+ "dlopen2_derive",
624
+ "libc",
625
+ "once_cell",
626
+ "winapi",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "dlopen2_derive"
631
+ version = "0.4.3"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f"
634
+ dependencies = [
635
+ "proc-macro2",
636
+ "quote",
637
+ "syn 2.0.117",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "dpi"
642
+ version = "0.1.2"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
645
+ dependencies = [
646
+ "serde",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "dtoa"
651
+ version = "1.0.11"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
654
+
655
+ [[package]]
656
+ name = "dtoa-short"
657
+ version = "0.3.5"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
660
+ dependencies = [
661
+ "dtoa",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "dunce"
666
+ version = "1.0.5"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
669
+
670
+ [[package]]
671
+ name = "dyn-clone"
672
+ version = "1.0.20"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
675
+
676
+ [[package]]
677
+ name = "embed-resource"
678
+ version = "2.5.2"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "d506610004cfc74a6f5ee7e8c632b355de5eca1f03ee5e5e0ec11b77d4eb3d61"
681
+ dependencies = [
682
+ "cc",
683
+ "memchr",
684
+ "rustc_version",
685
+ "toml 0.8.2",
686
+ "vswhom",
687
+ "winreg",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "embed_plist"
692
+ version = "1.2.2"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
695
+
696
+ [[package]]
697
+ name = "equivalent"
698
+ version = "1.0.2"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
701
+
702
+ [[package]]
703
+ name = "erased-serde"
704
+ version = "0.4.10"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec"
707
+ dependencies = [
708
+ "serde",
709
+ "serde_core",
710
+ "typeid",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "fdeflate"
715
+ version = "0.3.7"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
718
+ dependencies = [
719
+ "simd-adler32",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "field-offset"
724
+ version = "0.3.6"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
727
+ dependencies = [
728
+ "memoffset",
729
+ "rustc_version",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "find-msvc-tools"
734
+ version = "0.1.9"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
737
+
738
+ [[package]]
739
+ name = "flate2"
740
+ version = "1.1.9"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
743
+ dependencies = [
744
+ "crc32fast",
745
+ "miniz_oxide",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "fluent-uri"
750
+ version = "0.1.4"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d"
753
+ dependencies = [
754
+ "bitflags 1.3.2",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "fnv"
759
+ version = "1.0.7"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
762
+
763
+ [[package]]
764
+ name = "foldhash"
765
+ version = "0.1.5"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
768
+
769
+ [[package]]
770
+ name = "foreign-types"
771
+ version = "0.5.0"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
774
+ dependencies = [
775
+ "foreign-types-macros",
776
+ "foreign-types-shared",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "foreign-types-macros"
781
+ version = "0.2.3"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
784
+ dependencies = [
785
+ "proc-macro2",
786
+ "quote",
787
+ "syn 2.0.117",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "foreign-types-shared"
792
+ version = "0.3.1"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
795
+
796
+ [[package]]
797
+ name = "form_urlencoded"
798
+ version = "1.2.2"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
801
+ dependencies = [
802
+ "percent-encoding",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "futf"
807
+ version = "0.1.5"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
810
+ dependencies = [
811
+ "mac",
812
+ "new_debug_unreachable",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "futures-channel"
817
+ version = "0.3.32"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
820
+ dependencies = [
821
+ "futures-core",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "futures-core"
826
+ version = "0.3.32"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
829
+
830
+ [[package]]
831
+ name = "futures-executor"
832
+ version = "0.3.32"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
835
+ dependencies = [
836
+ "futures-core",
837
+ "futures-task",
838
+ "futures-util",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "futures-io"
843
+ version = "0.3.32"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
846
+
847
+ [[package]]
848
+ name = "futures-macro"
849
+ version = "0.3.32"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
852
+ dependencies = [
853
+ "proc-macro2",
854
+ "quote",
855
+ "syn 2.0.117",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "futures-sink"
860
+ version = "0.3.32"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
863
+
864
+ [[package]]
865
+ name = "futures-task"
866
+ version = "0.3.32"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
869
+
870
+ [[package]]
871
+ name = "futures-util"
872
+ version = "0.3.32"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
875
+ dependencies = [
876
+ "futures-core",
877
+ "futures-io",
878
+ "futures-macro",
879
+ "futures-sink",
880
+ "futures-task",
881
+ "memchr",
882
+ "pin-project-lite",
883
+ "slab",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "fxhash"
888
+ version = "0.2.1"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
891
+ dependencies = [
892
+ "byteorder",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "gdk"
897
+ version = "0.18.2"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691"
900
+ dependencies = [
901
+ "cairo-rs",
902
+ "gdk-pixbuf",
903
+ "gdk-sys",
904
+ "gio",
905
+ "glib",
906
+ "libc",
907
+ "pango",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "gdk-pixbuf"
912
+ version = "0.18.5"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec"
915
+ dependencies = [
916
+ "gdk-pixbuf-sys",
917
+ "gio",
918
+ "glib",
919
+ "libc",
920
+ "once_cell",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "gdk-pixbuf-sys"
925
+ version = "0.18.0"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7"
928
+ dependencies = [
929
+ "gio-sys",
930
+ "glib-sys",
931
+ "gobject-sys",
932
+ "libc",
933
+ "system-deps",
934
+ ]
935
+
936
+ [[package]]
937
+ name = "gdk-sys"
938
+ version = "0.18.2"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7"
941
+ dependencies = [
942
+ "cairo-sys-rs",
943
+ "gdk-pixbuf-sys",
944
+ "gio-sys",
945
+ "glib-sys",
946
+ "gobject-sys",
947
+ "libc",
948
+ "pango-sys",
949
+ "pkg-config",
950
+ "system-deps",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "gdkwayland-sys"
955
+ version = "0.18.2"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69"
958
+ dependencies = [
959
+ "gdk-sys",
960
+ "glib-sys",
961
+ "gobject-sys",
962
+ "libc",
963
+ "pkg-config",
964
+ "system-deps",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "gdkx11"
969
+ version = "0.18.2"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe"
972
+ dependencies = [
973
+ "gdk",
974
+ "gdkx11-sys",
975
+ "gio",
976
+ "glib",
977
+ "libc",
978
+ "x11",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "gdkx11-sys"
983
+ version = "0.18.2"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d"
986
+ dependencies = [
987
+ "gdk-sys",
988
+ "glib-sys",
989
+ "libc",
990
+ "system-deps",
991
+ "x11",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "generic-array"
996
+ version = "0.14.7"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
999
+ dependencies = [
1000
+ "typenum",
1001
+ "version_check",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "getrandom"
1006
+ version = "0.1.16"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
1009
+ dependencies = [
1010
+ "cfg-if",
1011
+ "libc",
1012
+ "wasi 0.9.0+wasi-snapshot-preview1",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "getrandom"
1017
+ version = "0.2.17"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1020
+ dependencies = [
1021
+ "cfg-if",
1022
+ "libc",
1023
+ "wasi 0.11.1+wasi-snapshot-preview1",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "getrandom"
1028
+ version = "0.4.2"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1031
+ dependencies = [
1032
+ "cfg-if",
1033
+ "libc",
1034
+ "r-efi",
1035
+ "wasip2",
1036
+ "wasip3",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "gio"
1041
+ version = "0.18.4"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73"
1044
+ dependencies = [
1045
+ "futures-channel",
1046
+ "futures-core",
1047
+ "futures-io",
1048
+ "futures-util",
1049
+ "gio-sys",
1050
+ "glib",
1051
+ "libc",
1052
+ "once_cell",
1053
+ "pin-project-lite",
1054
+ "smallvec",
1055
+ "thiserror 1.0.69",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "gio-sys"
1060
+ version = "0.18.1"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
1063
+ dependencies = [
1064
+ "glib-sys",
1065
+ "gobject-sys",
1066
+ "libc",
1067
+ "system-deps",
1068
+ "winapi",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "glib"
1073
+ version = "0.18.5"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5"
1076
+ dependencies = [
1077
+ "bitflags 2.13.0",
1078
+ "futures-channel",
1079
+ "futures-core",
1080
+ "futures-executor",
1081
+ "futures-task",
1082
+ "futures-util",
1083
+ "gio-sys",
1084
+ "glib-macros",
1085
+ "glib-sys",
1086
+ "gobject-sys",
1087
+ "libc",
1088
+ "memchr",
1089
+ "once_cell",
1090
+ "smallvec",
1091
+ "thiserror 1.0.69",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "glib-macros"
1096
+ version = "0.18.5"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc"
1099
+ dependencies = [
1100
+ "heck 0.4.1",
1101
+ "proc-macro-crate 2.0.2",
1102
+ "proc-macro-error",
1103
+ "proc-macro2",
1104
+ "quote",
1105
+ "syn 2.0.117",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "glib-sys"
1110
+ version = "0.18.1"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
1113
+ dependencies = [
1114
+ "libc",
1115
+ "system-deps",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "glob"
1120
+ version = "0.3.3"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1123
+
1124
+ [[package]]
1125
+ name = "gobject-sys"
1126
+ version = "0.18.0"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
1129
+ dependencies = [
1130
+ "glib-sys",
1131
+ "libc",
1132
+ "system-deps",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "gtk"
1137
+ version = "0.18.2"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a"
1140
+ dependencies = [
1141
+ "atk",
1142
+ "cairo-rs",
1143
+ "field-offset",
1144
+ "futures-channel",
1145
+ "gdk",
1146
+ "gdk-pixbuf",
1147
+ "gio",
1148
+ "glib",
1149
+ "gtk-sys",
1150
+ "gtk3-macros",
1151
+ "libc",
1152
+ "pango",
1153
+ "pkg-config",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "gtk-sys"
1158
+ version = "0.18.2"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414"
1161
+ dependencies = [
1162
+ "atk-sys",
1163
+ "cairo-sys-rs",
1164
+ "gdk-pixbuf-sys",
1165
+ "gdk-sys",
1166
+ "gio-sys",
1167
+ "glib-sys",
1168
+ "gobject-sys",
1169
+ "libc",
1170
+ "pango-sys",
1171
+ "system-deps",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "gtk3-macros"
1176
+ version = "0.18.2"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d"
1179
+ dependencies = [
1180
+ "proc-macro-crate 1.3.1",
1181
+ "proc-macro-error",
1182
+ "proc-macro2",
1183
+ "quote",
1184
+ "syn 2.0.117",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "hashbrown"
1189
+ version = "0.12.3"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1192
+
1193
+ [[package]]
1194
+ name = "hashbrown"
1195
+ version = "0.15.5"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1198
+ dependencies = [
1199
+ "foldhash",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "hashbrown"
1204
+ version = "0.17.1"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
1207
+
1208
+ [[package]]
1209
+ name = "heck"
1210
+ version = "0.4.1"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1213
+
1214
+ [[package]]
1215
+ name = "heck"
1216
+ version = "0.5.0"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1219
+
1220
+ [[package]]
1221
+ name = "hex"
1222
+ version = "0.4.3"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1225
+
1226
+ [[package]]
1227
+ name = "html5ever"
1228
+ version = "0.26.0"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
1231
+ dependencies = [
1232
+ "log",
1233
+ "mac",
1234
+ "markup5ever",
1235
+ "proc-macro2",
1236
+ "quote",
1237
+ "syn 1.0.109",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "http"
1242
+ version = "1.4.2"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
1245
+ dependencies = [
1246
+ "bytes",
1247
+ "itoa 1.0.18",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "http-body"
1252
+ version = "1.0.1"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1255
+ dependencies = [
1256
+ "bytes",
1257
+ "http",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "http-body-util"
1262
+ version = "0.1.3"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1265
+ dependencies = [
1266
+ "bytes",
1267
+ "futures-core",
1268
+ "http",
1269
+ "http-body",
1270
+ "pin-project-lite",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "httparse"
1275
+ version = "1.10.1"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1278
+
1279
+ [[package]]
1280
+ name = "hyper"
1281
+ version = "1.10.1"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1284
+ dependencies = [
1285
+ "atomic-waker",
1286
+ "bytes",
1287
+ "futures-channel",
1288
+ "futures-core",
1289
+ "http",
1290
+ "http-body",
1291
+ "httparse",
1292
+ "itoa 1.0.18",
1293
+ "pin-project-lite",
1294
+ "smallvec",
1295
+ "tokio",
1296
+ "want",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "hyper-util"
1301
+ version = "0.1.20"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1304
+ dependencies = [
1305
+ "base64 0.22.1",
1306
+ "bytes",
1307
+ "futures-channel",
1308
+ "futures-util",
1309
+ "http",
1310
+ "http-body",
1311
+ "hyper",
1312
+ "ipnet",
1313
+ "libc",
1314
+ "percent-encoding",
1315
+ "pin-project-lite",
1316
+ "socket2",
1317
+ "tokio",
1318
+ "tower-service",
1319
+ "tracing",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "iana-time-zone"
1324
+ version = "0.1.65"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1327
+ dependencies = [
1328
+ "android_system_properties",
1329
+ "core-foundation-sys",
1330
+ "iana-time-zone-haiku",
1331
+ "js-sys",
1332
+ "log",
1333
+ "wasm-bindgen",
1334
+ "windows-core 0.62.2",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "iana-time-zone-haiku"
1339
+ version = "0.1.2"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1342
+ dependencies = [
1343
+ "cc",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "ico"
1348
+ version = "0.3.0"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae"
1351
+ dependencies = [
1352
+ "byteorder",
1353
+ "png",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "icu_collections"
1358
+ version = "2.2.0"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1361
+ dependencies = [
1362
+ "displaydoc",
1363
+ "potential_utf",
1364
+ "utf8_iter",
1365
+ "yoke",
1366
+ "zerofrom",
1367
+ "zerovec",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "icu_locale_core"
1372
+ version = "2.2.0"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1375
+ dependencies = [
1376
+ "displaydoc",
1377
+ "litemap",
1378
+ "tinystr",
1379
+ "writeable",
1380
+ "zerovec",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "icu_normalizer"
1385
+ version = "2.2.0"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1388
+ dependencies = [
1389
+ "icu_collections",
1390
+ "icu_normalizer_data",
1391
+ "icu_properties",
1392
+ "icu_provider",
1393
+ "smallvec",
1394
+ "zerovec",
1395
+ ]
1396
+
1397
+ [[package]]
1398
+ name = "icu_normalizer_data"
1399
+ version = "2.2.0"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1402
+
1403
+ [[package]]
1404
+ name = "icu_properties"
1405
+ version = "2.2.0"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1408
+ dependencies = [
1409
+ "icu_collections",
1410
+ "icu_locale_core",
1411
+ "icu_properties_data",
1412
+ "icu_provider",
1413
+ "zerotrie",
1414
+ "zerovec",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "icu_properties_data"
1419
+ version = "2.2.0"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1422
+
1423
+ [[package]]
1424
+ name = "icu_provider"
1425
+ version = "2.2.0"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1428
+ dependencies = [
1429
+ "displaydoc",
1430
+ "icu_locale_core",
1431
+ "writeable",
1432
+ "yoke",
1433
+ "zerofrom",
1434
+ "zerotrie",
1435
+ "zerovec",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "id-arena"
1440
+ version = "2.3.0"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1443
+
1444
+ [[package]]
1445
+ name = "ident_case"
1446
+ version = "1.0.1"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1449
+
1450
+ [[package]]
1451
+ name = "idna"
1452
+ version = "1.1.0"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1455
+ dependencies = [
1456
+ "idna_adapter",
1457
+ "smallvec",
1458
+ "utf8_iter",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "idna_adapter"
1463
+ version = "1.2.2"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1466
+ dependencies = [
1467
+ "icu_normalizer",
1468
+ "icu_properties",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "indexmap"
1473
+ version = "1.9.3"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1476
+ dependencies = [
1477
+ "autocfg",
1478
+ "hashbrown 0.12.3",
1479
+ "serde",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "indexmap"
1484
+ version = "2.14.0"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1487
+ dependencies = [
1488
+ "equivalent",
1489
+ "hashbrown 0.17.1",
1490
+ "serde",
1491
+ "serde_core",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "infer"
1496
+ version = "0.16.0"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "bc150e5ce2330295b8616ce0e3f53250e53af31759a9dbedad1621ba29151847"
1499
+ dependencies = [
1500
+ "cfb",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "instant"
1505
+ version = "0.1.13"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1508
+ dependencies = [
1509
+ "cfg-if",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "ipnet"
1514
+ version = "2.12.0"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1517
+
1518
+ [[package]]
1519
+ name = "itoa"
1520
+ version = "0.4.8"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
1523
+
1524
+ [[package]]
1525
+ name = "itoa"
1526
+ version = "1.0.18"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1529
+
1530
+ [[package]]
1531
+ name = "javascriptcore-rs"
1532
+ version = "1.1.2"
1533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1534
+ checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc"
1535
+ dependencies = [
1536
+ "bitflags 1.3.2",
1537
+ "glib",
1538
+ "javascriptcore-rs-sys",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "javascriptcore-rs-sys"
1543
+ version = "1.1.1"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124"
1546
+ dependencies = [
1547
+ "glib-sys",
1548
+ "gobject-sys",
1549
+ "libc",
1550
+ "system-deps",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "jni"
1555
+ version = "0.21.1"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1558
+ dependencies = [
1559
+ "cesu8",
1560
+ "cfg-if",
1561
+ "combine",
1562
+ "jni-sys 0.3.1",
1563
+ "log",
1564
+ "thiserror 1.0.69",
1565
+ "walkdir",
1566
+ "windows-sys 0.45.0",
1567
+ ]
1568
+
1569
+ [[package]]
1570
+ name = "jni-sys"
1571
+ version = "0.3.1"
1572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1573
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
1574
+ dependencies = [
1575
+ "jni-sys 0.4.1",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "jni-sys"
1580
+ version = "0.4.1"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1583
+ dependencies = [
1584
+ "jni-sys-macros",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "jni-sys-macros"
1589
+ version = "0.4.1"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1592
+ dependencies = [
1593
+ "quote",
1594
+ "syn 2.0.117",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "js-sys"
1599
+ version = "0.3.100"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "f2025f20d7a4fa7785846e7b63d10a76d3f1cee98ee5cb79ea59703f95e42162"
1602
+ dependencies = [
1603
+ "cfg-if",
1604
+ "futures-util",
1605
+ "wasm-bindgen",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "json-patch"
1610
+ version = "2.0.0"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "5b1fb8864823fad91877e6caea0baca82e49e8db50f8e5c9f9a453e27d3330fc"
1613
+ dependencies = [
1614
+ "jsonptr",
1615
+ "serde",
1616
+ "serde_json",
1617
+ "thiserror 1.0.69",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "jsonptr"
1622
+ version = "0.4.7"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "1c6e529149475ca0b2820835d3dce8fcc41c6b943ca608d32f35b449255e4627"
1625
+ dependencies = [
1626
+ "fluent-uri",
1627
+ "serde",
1628
+ "serde_json",
1629
+ ]
1630
+
1631
+ [[package]]
1632
+ name = "keyboard-types"
1633
+ version = "0.7.0"
1634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1635
+ checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
1636
+ dependencies = [
1637
+ "bitflags 2.13.0",
1638
+ "serde",
1639
+ "unicode-segmentation",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "kuchikiki"
1644
+ version = "0.8.2"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8"
1647
+ dependencies = [
1648
+ "cssparser",
1649
+ "html5ever",
1650
+ "indexmap 1.9.3",
1651
+ "matches",
1652
+ "selectors",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "lattice-ai-desktop"
1657
+ version = "4.1.0"
1658
+ dependencies = [
1659
+ "plist",
1660
+ "serde",
1661
+ "serde_json",
1662
+ "tauri",
1663
+ "tauri-build",
1664
+ "tauri-runtime",
1665
+ "tauri-runtime-wry",
1666
+ "tauri-utils",
1667
+ "time",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "lazy_static"
1672
+ version = "1.5.0"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1675
+
1676
+ [[package]]
1677
+ name = "leb128fmt"
1678
+ version = "0.1.0"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1681
+
1682
+ [[package]]
1683
+ name = "libappindicator"
1684
+ version = "0.9.0"
1685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1686
+ checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a"
1687
+ dependencies = [
1688
+ "glib",
1689
+ "gtk",
1690
+ "gtk-sys",
1691
+ "libappindicator-sys",
1692
+ "log",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "libappindicator-sys"
1697
+ version = "0.9.0"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf"
1700
+ dependencies = [
1701
+ "gtk-sys",
1702
+ "libloading",
1703
+ "once_cell",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "libc"
1708
+ version = "0.2.186"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1711
+
1712
+ [[package]]
1713
+ name = "libloading"
1714
+ version = "0.7.4"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
1717
+ dependencies = [
1718
+ "cfg-if",
1719
+ "winapi",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "libredox"
1724
+ version = "0.1.17"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "f02ab6bace2054fb888a3c16f990117b579d14a3088e472d63c6011fa185c9d3"
1727
+ dependencies = [
1728
+ "libc",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "litemap"
1733
+ version = "0.8.2"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1736
+
1737
+ [[package]]
1738
+ name = "lock_api"
1739
+ version = "0.4.14"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1742
+ dependencies = [
1743
+ "scopeguard",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "log"
1748
+ version = "0.4.32"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
1751
+
1752
+ [[package]]
1753
+ name = "mac"
1754
+ version = "0.1.1"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1757
+
1758
+ [[package]]
1759
+ name = "malloc_buf"
1760
+ version = "0.0.6"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
1763
+ dependencies = [
1764
+ "libc",
1765
+ ]
1766
+
1767
+ [[package]]
1768
+ name = "markup5ever"
1769
+ version = "0.11.0"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
1772
+ dependencies = [
1773
+ "log",
1774
+ "phf 0.10.1",
1775
+ "phf_codegen 0.10.0",
1776
+ "string_cache",
1777
+ "string_cache_codegen",
1778
+ "tendril",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "matches"
1783
+ version = "0.1.10"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
1786
+
1787
+ [[package]]
1788
+ name = "memchr"
1789
+ version = "2.8.2"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
1792
+
1793
+ [[package]]
1794
+ name = "memoffset"
1795
+ version = "0.9.1"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1798
+ dependencies = [
1799
+ "autocfg",
1800
+ ]
1801
+
1802
+ [[package]]
1803
+ name = "mime"
1804
+ version = "0.3.17"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1807
+
1808
+ [[package]]
1809
+ name = "miniz_oxide"
1810
+ version = "0.8.9"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1813
+ dependencies = [
1814
+ "adler2",
1815
+ "simd-adler32",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "mio"
1820
+ version = "1.2.1"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1823
+ dependencies = [
1824
+ "libc",
1825
+ "wasi 0.11.1+wasi-snapshot-preview1",
1826
+ "windows-sys 0.61.2",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "muda"
1831
+ version = "0.15.3"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "fdae9c00e61cc0579bcac625e8ad22104c60548a025bfc972dc83868a28e1484"
1834
+ dependencies = [
1835
+ "crossbeam-channel",
1836
+ "dpi",
1837
+ "gtk",
1838
+ "keyboard-types",
1839
+ "objc2 0.5.2",
1840
+ "objc2-app-kit 0.2.2",
1841
+ "objc2-foundation 0.2.2",
1842
+ "once_cell",
1843
+ "png",
1844
+ "serde",
1845
+ "thiserror 1.0.69",
1846
+ "windows-sys 0.59.0",
1847
+ ]
1848
+
1849
+ [[package]]
1850
+ name = "ndk"
1851
+ version = "0.9.0"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
1854
+ dependencies = [
1855
+ "bitflags 2.13.0",
1856
+ "jni-sys 0.3.1",
1857
+ "log",
1858
+ "ndk-sys",
1859
+ "num_enum",
1860
+ "raw-window-handle",
1861
+ "thiserror 1.0.69",
1862
+ ]
1863
+
1864
+ [[package]]
1865
+ name = "ndk-context"
1866
+ version = "0.1.1"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1869
+
1870
+ [[package]]
1871
+ name = "ndk-sys"
1872
+ version = "0.6.0+11769913"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
1875
+ dependencies = [
1876
+ "jni-sys 0.3.1",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "new_debug_unreachable"
1881
+ version = "1.0.6"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1884
+
1885
+ [[package]]
1886
+ name = "nodrop"
1887
+ version = "0.1.14"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
1890
+
1891
+ [[package]]
1892
+ name = "num-conv"
1893
+ version = "0.1.0"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1896
+
1897
+ [[package]]
1898
+ name = "num-traits"
1899
+ version = "0.2.19"
1900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1901
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1902
+ dependencies = [
1903
+ "autocfg",
1904
+ ]
1905
+
1906
+ [[package]]
1907
+ name = "num_enum"
1908
+ version = "0.7.6"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
1911
+ dependencies = [
1912
+ "num_enum_derive",
1913
+ "rustversion",
1914
+ ]
1915
+
1916
+ [[package]]
1917
+ name = "num_enum_derive"
1918
+ version = "0.7.6"
1919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1920
+ checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
1921
+ dependencies = [
1922
+ "proc-macro-crate 3.5.0",
1923
+ "proc-macro2",
1924
+ "quote",
1925
+ "syn 2.0.117",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "objc"
1930
+ version = "0.2.7"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
1933
+ dependencies = [
1934
+ "malloc_buf",
1935
+ "objc_exception",
1936
+ ]
1937
+
1938
+ [[package]]
1939
+ name = "objc-sys"
1940
+ version = "0.3.5"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
1943
+
1944
+ [[package]]
1945
+ name = "objc2"
1946
+ version = "0.5.2"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
1949
+ dependencies = [
1950
+ "objc-sys",
1951
+ "objc2-encode",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "objc2"
1956
+ version = "0.6.4"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
1959
+ dependencies = [
1960
+ "objc2-encode",
1961
+ ]
1962
+
1963
+ [[package]]
1964
+ name = "objc2-app-kit"
1965
+ version = "0.2.2"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
1968
+ dependencies = [
1969
+ "bitflags 2.13.0",
1970
+ "block2 0.5.1",
1971
+ "libc",
1972
+ "objc2 0.5.2",
1973
+ "objc2-core-data",
1974
+ "objc2-core-image",
1975
+ "objc2-foundation 0.2.2",
1976
+ "objc2-quartz-core 0.2.2",
1977
+ ]
1978
+
1979
+ [[package]]
1980
+ name = "objc2-app-kit"
1981
+ version = "0.3.2"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
1984
+ dependencies = [
1985
+ "bitflags 2.13.0",
1986
+ "objc2 0.6.4",
1987
+ "objc2-core-foundation",
1988
+ "objc2-foundation 0.3.2",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "objc2-core-data"
1993
+ version = "0.2.2"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
1996
+ dependencies = [
1997
+ "bitflags 2.13.0",
1998
+ "block2 0.5.1",
1999
+ "objc2 0.5.2",
2000
+ "objc2-foundation 0.2.2",
2001
+ ]
2002
+
2003
+ [[package]]
2004
+ name = "objc2-core-foundation"
2005
+ version = "0.3.2"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
2008
+ dependencies = [
2009
+ "bitflags 2.13.0",
2010
+ "dispatch2",
2011
+ "objc2 0.6.4",
2012
+ ]
2013
+
2014
+ [[package]]
2015
+ name = "objc2-core-graphics"
2016
+ version = "0.3.2"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
2019
+ dependencies = [
2020
+ "bitflags 2.13.0",
2021
+ "dispatch2",
2022
+ "objc2 0.6.4",
2023
+ "objc2-core-foundation",
2024
+ "objc2-io-surface",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "objc2-core-image"
2029
+ version = "0.2.2"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
2032
+ dependencies = [
2033
+ "block2 0.5.1",
2034
+ "objc2 0.5.2",
2035
+ "objc2-foundation 0.2.2",
2036
+ "objc2-metal",
2037
+ ]
2038
+
2039
+ [[package]]
2040
+ name = "objc2-encode"
2041
+ version = "4.1.0"
2042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2043
+ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
2044
+
2045
+ [[package]]
2046
+ name = "objc2-foundation"
2047
+ version = "0.2.2"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
2050
+ dependencies = [
2051
+ "bitflags 2.13.0",
2052
+ "block2 0.5.1",
2053
+ "libc",
2054
+ "objc2 0.5.2",
2055
+ ]
2056
+
2057
+ [[package]]
2058
+ name = "objc2-foundation"
2059
+ version = "0.3.2"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
2062
+ dependencies = [
2063
+ "bitflags 2.13.0",
2064
+ "block2 0.6.2",
2065
+ "objc2 0.6.4",
2066
+ "objc2-core-foundation",
2067
+ ]
2068
+
2069
+ [[package]]
2070
+ name = "objc2-io-surface"
2071
+ version = "0.3.2"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
2074
+ dependencies = [
2075
+ "bitflags 2.13.0",
2076
+ "objc2 0.6.4",
2077
+ "objc2-core-foundation",
2078
+ ]
2079
+
2080
+ [[package]]
2081
+ name = "objc2-metal"
2082
+ version = "0.2.2"
2083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2084
+ checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
2085
+ dependencies = [
2086
+ "bitflags 2.13.0",
2087
+ "block2 0.5.1",
2088
+ "objc2 0.5.2",
2089
+ "objc2-foundation 0.2.2",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "objc2-quartz-core"
2094
+ version = "0.2.2"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
2097
+ dependencies = [
2098
+ "bitflags 2.13.0",
2099
+ "block2 0.5.1",
2100
+ "objc2 0.5.2",
2101
+ "objc2-foundation 0.2.2",
2102
+ "objc2-metal",
2103
+ ]
2104
+
2105
+ [[package]]
2106
+ name = "objc2-quartz-core"
2107
+ version = "0.3.2"
2108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2109
+ checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
2110
+ dependencies = [
2111
+ "bitflags 2.13.0",
2112
+ "objc2 0.6.4",
2113
+ "objc2-core-foundation",
2114
+ "objc2-foundation 0.3.2",
2115
+ ]
2116
+
2117
+ [[package]]
2118
+ name = "objc_exception"
2119
+ version = "0.1.2"
2120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2121
+ checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
2122
+ dependencies = [
2123
+ "cc",
2124
+ ]
2125
+
2126
+ [[package]]
2127
+ name = "objc_id"
2128
+ version = "0.1.1"
2129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2130
+ checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
2131
+ dependencies = [
2132
+ "objc",
2133
+ ]
2134
+
2135
+ [[package]]
2136
+ name = "once_cell"
2137
+ version = "1.21.4"
2138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2139
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2140
+
2141
+ [[package]]
2142
+ name = "option-ext"
2143
+ version = "0.2.0"
2144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2145
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2146
+
2147
+ [[package]]
2148
+ name = "pango"
2149
+ version = "0.18.3"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4"
2152
+ dependencies = [
2153
+ "gio",
2154
+ "glib",
2155
+ "libc",
2156
+ "once_cell",
2157
+ "pango-sys",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "pango-sys"
2162
+ version = "0.18.0"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5"
2165
+ dependencies = [
2166
+ "glib-sys",
2167
+ "gobject-sys",
2168
+ "libc",
2169
+ "system-deps",
2170
+ ]
2171
+
2172
+ [[package]]
2173
+ name = "parking_lot"
2174
+ version = "0.12.5"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2177
+ dependencies = [
2178
+ "lock_api",
2179
+ "parking_lot_core",
2180
+ ]
2181
+
2182
+ [[package]]
2183
+ name = "parking_lot_core"
2184
+ version = "0.9.12"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2187
+ dependencies = [
2188
+ "cfg-if",
2189
+ "libc",
2190
+ "redox_syscall",
2191
+ "smallvec",
2192
+ "windows-link",
2193
+ ]
2194
+
2195
+ [[package]]
2196
+ name = "percent-encoding"
2197
+ version = "2.3.2"
2198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2199
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2200
+
2201
+ [[package]]
2202
+ name = "phf"
2203
+ version = "0.8.0"
2204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2205
+ checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
2206
+ dependencies = [
2207
+ "phf_macros 0.8.0",
2208
+ "phf_shared 0.8.0",
2209
+ "proc-macro-hack",
2210
+ ]
2211
+
2212
+ [[package]]
2213
+ name = "phf"
2214
+ version = "0.10.1"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
2217
+ dependencies = [
2218
+ "phf_shared 0.10.0",
2219
+ ]
2220
+
2221
+ [[package]]
2222
+ name = "phf"
2223
+ version = "0.11.3"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2226
+ dependencies = [
2227
+ "phf_macros 0.11.3",
2228
+ "phf_shared 0.11.3",
2229
+ ]
2230
+
2231
+ [[package]]
2232
+ name = "phf_codegen"
2233
+ version = "0.8.0"
2234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2235
+ checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
2236
+ dependencies = [
2237
+ "phf_generator 0.8.0",
2238
+ "phf_shared 0.8.0",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "phf_codegen"
2243
+ version = "0.10.0"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
2246
+ dependencies = [
2247
+ "phf_generator 0.10.0",
2248
+ "phf_shared 0.10.0",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "phf_generator"
2253
+ version = "0.8.0"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
2256
+ dependencies = [
2257
+ "phf_shared 0.8.0",
2258
+ "rand 0.7.3",
2259
+ ]
2260
+
2261
+ [[package]]
2262
+ name = "phf_generator"
2263
+ version = "0.10.0"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
2266
+ dependencies = [
2267
+ "phf_shared 0.10.0",
2268
+ "rand 0.8.6",
2269
+ ]
2270
+
2271
+ [[package]]
2272
+ name = "phf_generator"
2273
+ version = "0.11.3"
2274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2275
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2276
+ dependencies = [
2277
+ "phf_shared 0.11.3",
2278
+ "rand 0.8.6",
2279
+ ]
2280
+
2281
+ [[package]]
2282
+ name = "phf_macros"
2283
+ version = "0.8.0"
2284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2285
+ checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
2286
+ dependencies = [
2287
+ "phf_generator 0.8.0",
2288
+ "phf_shared 0.8.0",
2289
+ "proc-macro-hack",
2290
+ "proc-macro2",
2291
+ "quote",
2292
+ "syn 1.0.109",
2293
+ ]
2294
+
2295
+ [[package]]
2296
+ name = "phf_macros"
2297
+ version = "0.11.3"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
2300
+ dependencies = [
2301
+ "phf_generator 0.11.3",
2302
+ "phf_shared 0.11.3",
2303
+ "proc-macro2",
2304
+ "quote",
2305
+ "syn 2.0.117",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "phf_shared"
2310
+ version = "0.8.0"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
2313
+ dependencies = [
2314
+ "siphasher 0.3.11",
2315
+ ]
2316
+
2317
+ [[package]]
2318
+ name = "phf_shared"
2319
+ version = "0.10.0"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
2322
+ dependencies = [
2323
+ "siphasher 0.3.11",
2324
+ ]
2325
+
2326
+ [[package]]
2327
+ name = "phf_shared"
2328
+ version = "0.11.3"
2329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2331
+ dependencies = [
2332
+ "siphasher 1.0.3",
2333
+ ]
2334
+
2335
+ [[package]]
2336
+ name = "pin-project-lite"
2337
+ version = "0.2.17"
2338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2339
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
2340
+
2341
+ [[package]]
2342
+ name = "pkg-config"
2343
+ version = "0.3.33"
2344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2345
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
2346
+
2347
+ [[package]]
2348
+ name = "plist"
2349
+ version = "1.7.0"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016"
2352
+ dependencies = [
2353
+ "base64 0.22.1",
2354
+ "indexmap 2.14.0",
2355
+ "quick-xml",
2356
+ "serde",
2357
+ "time",
2358
+ ]
2359
+
2360
+ [[package]]
2361
+ name = "png"
2362
+ version = "0.17.16"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
2365
+ dependencies = [
2366
+ "bitflags 1.3.2",
2367
+ "crc32fast",
2368
+ "fdeflate",
2369
+ "flate2",
2370
+ "miniz_oxide",
2371
+ ]
2372
+
2373
+ [[package]]
2374
+ name = "potential_utf"
2375
+ version = "0.1.5"
2376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2377
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
2378
+ dependencies = [
2379
+ "zerovec",
2380
+ ]
2381
+
2382
+ [[package]]
2383
+ name = "powerfmt"
2384
+ version = "0.2.0"
2385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2386
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2387
+
2388
+ [[package]]
2389
+ name = "ppv-lite86"
2390
+ version = "0.2.21"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2393
+ dependencies = [
2394
+ "zerocopy",
2395
+ ]
2396
+
2397
+ [[package]]
2398
+ name = "precomputed-hash"
2399
+ version = "0.1.1"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2402
+
2403
+ [[package]]
2404
+ name = "prettyplease"
2405
+ version = "0.2.37"
2406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2407
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2408
+ dependencies = [
2409
+ "proc-macro2",
2410
+ "syn 2.0.117",
2411
+ ]
2412
+
2413
+ [[package]]
2414
+ name = "proc-macro-crate"
2415
+ version = "1.3.1"
2416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2417
+ checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
2418
+ dependencies = [
2419
+ "once_cell",
2420
+ "toml_edit 0.19.15",
2421
+ ]
2422
+
2423
+ [[package]]
2424
+ name = "proc-macro-crate"
2425
+ version = "2.0.2"
2426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2427
+ checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24"
2428
+ dependencies = [
2429
+ "toml_datetime 0.6.3",
2430
+ "toml_edit 0.20.2",
2431
+ ]
2432
+
2433
+ [[package]]
2434
+ name = "proc-macro-crate"
2435
+ version = "3.5.0"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
2438
+ dependencies = [
2439
+ "toml_edit 0.25.12+spec-1.1.0",
2440
+ ]
2441
+
2442
+ [[package]]
2443
+ name = "proc-macro-error"
2444
+ version = "1.0.4"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2447
+ dependencies = [
2448
+ "proc-macro-error-attr",
2449
+ "proc-macro2",
2450
+ "quote",
2451
+ "syn 1.0.109",
2452
+ "version_check",
2453
+ ]
2454
+
2455
+ [[package]]
2456
+ name = "proc-macro-error-attr"
2457
+ version = "1.0.4"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2460
+ dependencies = [
2461
+ "proc-macro2",
2462
+ "quote",
2463
+ "version_check",
2464
+ ]
2465
+
2466
+ [[package]]
2467
+ name = "proc-macro-hack"
2468
+ version = "0.5.20+deprecated"
2469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2470
+ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
2471
+
2472
+ [[package]]
2473
+ name = "proc-macro2"
2474
+ version = "1.0.106"
2475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2476
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2477
+ dependencies = [
2478
+ "unicode-ident",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "quick-xml"
2483
+ version = "0.32.0"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2"
2486
+ dependencies = [
2487
+ "memchr",
2488
+ ]
2489
+
2490
+ [[package]]
2491
+ name = "quote"
2492
+ version = "1.0.45"
2493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2494
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2495
+ dependencies = [
2496
+ "proc-macro2",
2497
+ ]
2498
+
2499
+ [[package]]
2500
+ name = "r-efi"
2501
+ version = "6.0.0"
2502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2503
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2504
+
2505
+ [[package]]
2506
+ name = "rand"
2507
+ version = "0.7.3"
2508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2509
+ checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
2510
+ dependencies = [
2511
+ "getrandom 0.1.16",
2512
+ "libc",
2513
+ "rand_chacha 0.2.2",
2514
+ "rand_core 0.5.1",
2515
+ "rand_hc",
2516
+ "rand_pcg",
2517
+ ]
2518
+
2519
+ [[package]]
2520
+ name = "rand"
2521
+ version = "0.8.6"
2522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2523
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
2524
+ dependencies = [
2525
+ "libc",
2526
+ "rand_chacha 0.3.1",
2527
+ "rand_core 0.6.4",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "rand_chacha"
2532
+ version = "0.2.2"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
2535
+ dependencies = [
2536
+ "ppv-lite86",
2537
+ "rand_core 0.5.1",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "rand_chacha"
2542
+ version = "0.3.1"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2545
+ dependencies = [
2546
+ "ppv-lite86",
2547
+ "rand_core 0.6.4",
2548
+ ]
2549
+
2550
+ [[package]]
2551
+ name = "rand_core"
2552
+ version = "0.5.1"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2555
+ dependencies = [
2556
+ "getrandom 0.1.16",
2557
+ ]
2558
+
2559
+ [[package]]
2560
+ name = "rand_core"
2561
+ version = "0.6.4"
2562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2563
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2564
+ dependencies = [
2565
+ "getrandom 0.2.17",
2566
+ ]
2567
+
2568
+ [[package]]
2569
+ name = "rand_hc"
2570
+ version = "0.2.0"
2571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2572
+ checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
2573
+ dependencies = [
2574
+ "rand_core 0.5.1",
2575
+ ]
2576
+
2577
+ [[package]]
2578
+ name = "rand_pcg"
2579
+ version = "0.2.1"
2580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2581
+ checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
2582
+ dependencies = [
2583
+ "rand_core 0.5.1",
2584
+ ]
2585
+
2586
+ [[package]]
2587
+ name = "raw-window-handle"
2588
+ version = "0.6.2"
2589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2590
+ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
2591
+
2592
+ [[package]]
2593
+ name = "redox_syscall"
2594
+ version = "0.5.18"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2597
+ dependencies = [
2598
+ "bitflags 2.13.0",
2599
+ ]
2600
+
2601
+ [[package]]
2602
+ name = "redox_users"
2603
+ version = "0.4.6"
2604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2605
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2606
+ dependencies = [
2607
+ "getrandom 0.2.17",
2608
+ "libredox",
2609
+ "thiserror 1.0.69",
2610
+ ]
2611
+
2612
+ [[package]]
2613
+ name = "redox_users"
2614
+ version = "0.5.2"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2617
+ dependencies = [
2618
+ "getrandom 0.2.17",
2619
+ "libredox",
2620
+ "thiserror 2.0.18",
2621
+ ]
2622
+
2623
+ [[package]]
2624
+ name = "ref-cast"
2625
+ version = "1.0.25"
2626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2627
+ checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2628
+ dependencies = [
2629
+ "ref-cast-impl",
2630
+ ]
2631
+
2632
+ [[package]]
2633
+ name = "ref-cast-impl"
2634
+ version = "1.0.25"
2635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2636
+ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2637
+ dependencies = [
2638
+ "proc-macro2",
2639
+ "quote",
2640
+ "syn 2.0.117",
2641
+ ]
2642
+
2643
+ [[package]]
2644
+ name = "regex"
2645
+ version = "1.12.4"
2646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2647
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
2648
+ dependencies = [
2649
+ "aho-corasick",
2650
+ "memchr",
2651
+ "regex-automata",
2652
+ "regex-syntax",
2653
+ ]
2654
+
2655
+ [[package]]
2656
+ name = "regex-automata"
2657
+ version = "0.4.14"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2660
+ dependencies = [
2661
+ "aho-corasick",
2662
+ "memchr",
2663
+ "regex-syntax",
2664
+ ]
2665
+
2666
+ [[package]]
2667
+ name = "regex-syntax"
2668
+ version = "0.8.11"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
2671
+
2672
+ [[package]]
2673
+ name = "reqwest"
2674
+ version = "0.12.28"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2677
+ dependencies = [
2678
+ "base64 0.22.1",
2679
+ "bytes",
2680
+ "futures-core",
2681
+ "futures-util",
2682
+ "http",
2683
+ "http-body",
2684
+ "http-body-util",
2685
+ "hyper",
2686
+ "hyper-util",
2687
+ "js-sys",
2688
+ "log",
2689
+ "percent-encoding",
2690
+ "pin-project-lite",
2691
+ "serde",
2692
+ "serde_json",
2693
+ "serde_urlencoded",
2694
+ "sync_wrapper",
2695
+ "tokio",
2696
+ "tokio-util",
2697
+ "tower",
2698
+ "tower-http",
2699
+ "tower-service",
2700
+ "url",
2701
+ "wasm-bindgen",
2702
+ "wasm-bindgen-futures",
2703
+ "wasm-streams",
2704
+ "web-sys",
2705
+ ]
2706
+
2707
+ [[package]]
2708
+ name = "rustc_version"
2709
+ version = "0.4.1"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2712
+ dependencies = [
2713
+ "semver",
2714
+ ]
2715
+
2716
+ [[package]]
2717
+ name = "rustversion"
2718
+ version = "1.0.22"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2721
+
2722
+ [[package]]
2723
+ name = "ryu"
2724
+ version = "1.0.23"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2727
+
2728
+ [[package]]
2729
+ name = "same-file"
2730
+ version = "1.0.6"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2733
+ dependencies = [
2734
+ "winapi-util",
2735
+ ]
2736
+
2737
+ [[package]]
2738
+ name = "schemars"
2739
+ version = "0.8.22"
2740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2741
+ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
2742
+ dependencies = [
2743
+ "dyn-clone",
2744
+ "indexmap 1.9.3",
2745
+ "schemars_derive",
2746
+ "serde",
2747
+ "serde_json",
2748
+ "url",
2749
+ "uuid",
2750
+ ]
2751
+
2752
+ [[package]]
2753
+ name = "schemars"
2754
+ version = "0.9.0"
2755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2756
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
2757
+ dependencies = [
2758
+ "dyn-clone",
2759
+ "ref-cast",
2760
+ "serde",
2761
+ "serde_json",
2762
+ ]
2763
+
2764
+ [[package]]
2765
+ name = "schemars"
2766
+ version = "1.2.1"
2767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2768
+ checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
2769
+ dependencies = [
2770
+ "dyn-clone",
2771
+ "ref-cast",
2772
+ "serde",
2773
+ "serde_json",
2774
+ ]
2775
+
2776
+ [[package]]
2777
+ name = "schemars_derive"
2778
+ version = "0.8.22"
2779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2780
+ checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
2781
+ dependencies = [
2782
+ "proc-macro2",
2783
+ "quote",
2784
+ "serde_derive_internals",
2785
+ "syn 2.0.117",
2786
+ ]
2787
+
2788
+ [[package]]
2789
+ name = "scopeguard"
2790
+ version = "1.2.0"
2791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2793
+
2794
+ [[package]]
2795
+ name = "selectors"
2796
+ version = "0.22.0"
2797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2798
+ checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
2799
+ dependencies = [
2800
+ "bitflags 1.3.2",
2801
+ "cssparser",
2802
+ "derive_more",
2803
+ "fxhash",
2804
+ "log",
2805
+ "matches",
2806
+ "phf 0.8.0",
2807
+ "phf_codegen 0.8.0",
2808
+ "precomputed-hash",
2809
+ "servo_arc",
2810
+ "smallvec",
2811
+ "thin-slice",
2812
+ ]
2813
+
2814
+ [[package]]
2815
+ name = "semver"
2816
+ version = "1.0.28"
2817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2818
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2819
+ dependencies = [
2820
+ "serde",
2821
+ "serde_core",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "serde"
2826
+ version = "1.0.228"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2829
+ dependencies = [
2830
+ "serde_core",
2831
+ "serde_derive",
2832
+ ]
2833
+
2834
+ [[package]]
2835
+ name = "serde-untagged"
2836
+ version = "0.1.9"
2837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2838
+ checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058"
2839
+ dependencies = [
2840
+ "erased-serde",
2841
+ "serde",
2842
+ "serde_core",
2843
+ "typeid",
2844
+ ]
2845
+
2846
+ [[package]]
2847
+ name = "serde_core"
2848
+ version = "1.0.228"
2849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2850
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2851
+ dependencies = [
2852
+ "serde_derive",
2853
+ ]
2854
+
2855
+ [[package]]
2856
+ name = "serde_derive"
2857
+ version = "1.0.228"
2858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2859
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2860
+ dependencies = [
2861
+ "proc-macro2",
2862
+ "quote",
2863
+ "syn 2.0.117",
2864
+ ]
2865
+
2866
+ [[package]]
2867
+ name = "serde_derive_internals"
2868
+ version = "0.29.1"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
2871
+ dependencies = [
2872
+ "proc-macro2",
2873
+ "quote",
2874
+ "syn 2.0.117",
2875
+ ]
2876
+
2877
+ [[package]]
2878
+ name = "serde_json"
2879
+ version = "1.0.150"
2880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2881
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2882
+ dependencies = [
2883
+ "itoa 1.0.18",
2884
+ "memchr",
2885
+ "serde",
2886
+ "serde_core",
2887
+ "zmij",
2888
+ ]
2889
+
2890
+ [[package]]
2891
+ name = "serde_repr"
2892
+ version = "0.1.20"
2893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2894
+ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
2895
+ dependencies = [
2896
+ "proc-macro2",
2897
+ "quote",
2898
+ "syn 2.0.117",
2899
+ ]
2900
+
2901
+ [[package]]
2902
+ name = "serde_spanned"
2903
+ version = "0.6.9"
2904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2905
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2906
+ dependencies = [
2907
+ "serde",
2908
+ ]
2909
+
2910
+ [[package]]
2911
+ name = "serde_urlencoded"
2912
+ version = "0.7.1"
2913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2914
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2915
+ dependencies = [
2916
+ "form_urlencoded",
2917
+ "itoa 1.0.18",
2918
+ "ryu",
2919
+ "serde",
2920
+ ]
2921
+
2922
+ [[package]]
2923
+ name = "serde_with"
2924
+ version = "3.17.0"
2925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2926
+ checksum = "381b283ce7bc6b476d903296fb59d0d36633652b633b27f64db4fb46dcbfc3b9"
2927
+ dependencies = [
2928
+ "base64 0.22.1",
2929
+ "chrono",
2930
+ "hex",
2931
+ "indexmap 1.9.3",
2932
+ "indexmap 2.14.0",
2933
+ "schemars 0.9.0",
2934
+ "schemars 1.2.1",
2935
+ "serde_core",
2936
+ "serde_json",
2937
+ "serde_with_macros",
2938
+ "time",
2939
+ ]
2940
+
2941
+ [[package]]
2942
+ name = "serde_with_macros"
2943
+ version = "3.17.0"
2944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2945
+ checksum = "a6d4e30573c8cb306ed6ab1dca8423eec9a463ea0e155f45399455e0368b27e0"
2946
+ dependencies = [
2947
+ "darling",
2948
+ "proc-macro2",
2949
+ "quote",
2950
+ "syn 2.0.117",
2951
+ ]
2952
+
2953
+ [[package]]
2954
+ name = "serialize-to-javascript"
2955
+ version = "0.1.1"
2956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2957
+ checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb"
2958
+ dependencies = [
2959
+ "serde",
2960
+ "serde_json",
2961
+ "serialize-to-javascript-impl",
2962
+ ]
2963
+
2964
+ [[package]]
2965
+ name = "serialize-to-javascript-impl"
2966
+ version = "0.1.1"
2967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2968
+ checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763"
2969
+ dependencies = [
2970
+ "proc-macro2",
2971
+ "quote",
2972
+ "syn 1.0.109",
2973
+ ]
2974
+
2975
+ [[package]]
2976
+ name = "servo_arc"
2977
+ version = "0.1.1"
2978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+ checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
2980
+ dependencies = [
2981
+ "nodrop",
2982
+ "stable_deref_trait",
2983
+ ]
2984
+
2985
+ [[package]]
2986
+ name = "sha2"
2987
+ version = "0.10.9"
2988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2989
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2990
+ dependencies = [
2991
+ "cfg-if",
2992
+ "cpufeatures",
2993
+ "digest",
2994
+ ]
2995
+
2996
+ [[package]]
2997
+ name = "shlex"
2998
+ version = "2.0.1"
2999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3000
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
3001
+
3002
+ [[package]]
3003
+ name = "simd-adler32"
3004
+ version = "0.3.9"
3005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3006
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
3007
+
3008
+ [[package]]
3009
+ name = "siphasher"
3010
+ version = "0.3.11"
3011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3012
+ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
3013
+
3014
+ [[package]]
3015
+ name = "siphasher"
3016
+ version = "1.0.3"
3017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3018
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
3019
+
3020
+ [[package]]
3021
+ name = "slab"
3022
+ version = "0.4.12"
3023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3024
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
3025
+
3026
+ [[package]]
3027
+ name = "smallvec"
3028
+ version = "1.15.2"
3029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3030
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
3031
+
3032
+ [[package]]
3033
+ name = "socket2"
3034
+ version = "0.6.4"
3035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3036
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
3037
+ dependencies = [
3038
+ "libc",
3039
+ "windows-sys 0.61.2",
3040
+ ]
3041
+
3042
+ [[package]]
3043
+ name = "softbuffer"
3044
+ version = "0.4.8"
3045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3046
+ checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3"
3047
+ dependencies = [
3048
+ "bytemuck",
3049
+ "js-sys",
3050
+ "ndk",
3051
+ "objc2 0.6.4",
3052
+ "objc2-core-foundation",
3053
+ "objc2-core-graphics",
3054
+ "objc2-foundation 0.3.2",
3055
+ "objc2-quartz-core 0.3.2",
3056
+ "raw-window-handle",
3057
+ "redox_syscall",
3058
+ "tracing",
3059
+ "wasm-bindgen",
3060
+ "web-sys",
3061
+ "windows-sys 0.61.2",
3062
+ ]
3063
+
3064
+ [[package]]
3065
+ name = "soup3"
3066
+ version = "0.5.0"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f"
3069
+ dependencies = [
3070
+ "futures-channel",
3071
+ "gio",
3072
+ "glib",
3073
+ "libc",
3074
+ "soup3-sys",
3075
+ ]
3076
+
3077
+ [[package]]
3078
+ name = "soup3-sys"
3079
+ version = "0.5.0"
3080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3081
+ checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27"
3082
+ dependencies = [
3083
+ "gio-sys",
3084
+ "glib-sys",
3085
+ "gobject-sys",
3086
+ "libc",
3087
+ "system-deps",
3088
+ ]
3089
+
3090
+ [[package]]
3091
+ name = "stable_deref_trait"
3092
+ version = "1.2.1"
3093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3094
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3095
+
3096
+ [[package]]
3097
+ name = "string_cache"
3098
+ version = "0.8.9"
3099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3100
+ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
3101
+ dependencies = [
3102
+ "new_debug_unreachable",
3103
+ "parking_lot",
3104
+ "phf_shared 0.11.3",
3105
+ "precomputed-hash",
3106
+ "serde",
3107
+ ]
3108
+
3109
+ [[package]]
3110
+ name = "string_cache_codegen"
3111
+ version = "0.5.4"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
3114
+ dependencies = [
3115
+ "phf_generator 0.11.3",
3116
+ "phf_shared 0.11.3",
3117
+ "proc-macro2",
3118
+ "quote",
3119
+ ]
3120
+
3121
+ [[package]]
3122
+ name = "strsim"
3123
+ version = "0.11.1"
3124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3125
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3126
+
3127
+ [[package]]
3128
+ name = "swift-rs"
3129
+ version = "1.0.7"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7"
3132
+ dependencies = [
3133
+ "base64 0.21.7",
3134
+ "serde",
3135
+ "serde_json",
3136
+ ]
3137
+
3138
+ [[package]]
3139
+ name = "syn"
3140
+ version = "1.0.109"
3141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3142
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3143
+ dependencies = [
3144
+ "proc-macro2",
3145
+ "quote",
3146
+ "unicode-ident",
3147
+ ]
3148
+
3149
+ [[package]]
3150
+ name = "syn"
3151
+ version = "2.0.117"
3152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3153
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
3154
+ dependencies = [
3155
+ "proc-macro2",
3156
+ "quote",
3157
+ "unicode-ident",
3158
+ ]
3159
+
3160
+ [[package]]
3161
+ name = "sync_wrapper"
3162
+ version = "1.0.2"
3163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3164
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3165
+ dependencies = [
3166
+ "futures-core",
3167
+ ]
3168
+
3169
+ [[package]]
3170
+ name = "synstructure"
3171
+ version = "0.13.2"
3172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3173
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3174
+ dependencies = [
3175
+ "proc-macro2",
3176
+ "quote",
3177
+ "syn 2.0.117",
3178
+ ]
3179
+
3180
+ [[package]]
3181
+ name = "system-deps"
3182
+ version = "6.2.2"
3183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3184
+ checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
3185
+ dependencies = [
3186
+ "cfg-expr",
3187
+ "heck 0.5.0",
3188
+ "pkg-config",
3189
+ "toml 0.8.2",
3190
+ "version-compare",
3191
+ ]
3192
+
3193
+ [[package]]
3194
+ name = "tao"
3195
+ version = "0.30.8"
3196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3197
+ checksum = "6682a07cf5bab0b8a2bd20d0a542917ab928b5edb75ebd4eda6b05cbaab872da"
3198
+ dependencies = [
3199
+ "bitflags 2.13.0",
3200
+ "cocoa",
3201
+ "core-foundation",
3202
+ "core-graphics",
3203
+ "crossbeam-channel",
3204
+ "dispatch",
3205
+ "dlopen2",
3206
+ "dpi",
3207
+ "gdkwayland-sys",
3208
+ "gdkx11-sys",
3209
+ "gtk",
3210
+ "instant",
3211
+ "jni",
3212
+ "lazy_static",
3213
+ "libc",
3214
+ "log",
3215
+ "ndk",
3216
+ "ndk-context",
3217
+ "ndk-sys",
3218
+ "objc",
3219
+ "once_cell",
3220
+ "parking_lot",
3221
+ "raw-window-handle",
3222
+ "scopeguard",
3223
+ "tao-macros",
3224
+ "unicode-segmentation",
3225
+ "url",
3226
+ "windows",
3227
+ "windows-core 0.58.0",
3228
+ "windows-version",
3229
+ "x11-dl",
3230
+ ]
3231
+
3232
+ [[package]]
3233
+ name = "tao-macros"
3234
+ version = "0.1.3"
3235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3236
+ checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd"
3237
+ dependencies = [
3238
+ "proc-macro2",
3239
+ "quote",
3240
+ "syn 2.0.117",
3241
+ ]
3242
+
3243
+ [[package]]
3244
+ name = "target-lexicon"
3245
+ version = "0.12.16"
3246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3247
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3248
+
3249
+ [[package]]
3250
+ name = "tauri"
3251
+ version = "2.0.0"
3252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3253
+ checksum = "3c9c08beea86d5095b6f5fb1c788fe8759b23c3f71927c66a69e725a91d089cd"
3254
+ dependencies = [
3255
+ "anyhow",
3256
+ "bytes",
3257
+ "dirs 5.0.1",
3258
+ "dunce",
3259
+ "embed_plist",
3260
+ "futures-util",
3261
+ "getrandom 0.2.17",
3262
+ "glob",
3263
+ "gtk",
3264
+ "heck 0.5.0",
3265
+ "http",
3266
+ "jni",
3267
+ "libc",
3268
+ "log",
3269
+ "mime",
3270
+ "muda",
3271
+ "objc2 0.5.2",
3272
+ "objc2-app-kit 0.2.2",
3273
+ "objc2-foundation 0.2.2",
3274
+ "percent-encoding",
3275
+ "plist",
3276
+ "raw-window-handle",
3277
+ "reqwest",
3278
+ "serde",
3279
+ "serde_json",
3280
+ "serde_repr",
3281
+ "serialize-to-javascript",
3282
+ "swift-rs",
3283
+ "tauri-build",
3284
+ "tauri-macros",
3285
+ "tauri-runtime",
3286
+ "tauri-runtime-wry",
3287
+ "tauri-utils",
3288
+ "thiserror 1.0.69",
3289
+ "tokio",
3290
+ "tray-icon",
3291
+ "url",
3292
+ "urlpattern",
3293
+ "webkit2gtk",
3294
+ "webview2-com",
3295
+ "window-vibrancy",
3296
+ "windows",
3297
+ ]
3298
+
3299
+ [[package]]
3300
+ name = "tauri-build"
3301
+ version = "2.0.0"
3302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3303
+ checksum = "93bb649a284aec2ab43e8df6831b8c8060d231ec8ddf05bf021d58cb67570e1f"
3304
+ dependencies = [
3305
+ "anyhow",
3306
+ "cargo_toml",
3307
+ "dirs 5.0.1",
3308
+ "glob",
3309
+ "heck 0.5.0",
3310
+ "json-patch",
3311
+ "schemars 0.8.22",
3312
+ "semver",
3313
+ "serde",
3314
+ "serde_json",
3315
+ "tauri-utils",
3316
+ "tauri-winres",
3317
+ "toml 0.8.2",
3318
+ "walkdir",
3319
+ ]
3320
+
3321
+ [[package]]
3322
+ name = "tauri-codegen"
3323
+ version = "2.0.0"
3324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3325
+ checksum = "a4511912612ba0da11aeb300e18e18b2c7067fd14aa886eac46bdcc43b4fa3ee"
3326
+ dependencies = [
3327
+ "base64 0.22.1",
3328
+ "brotli",
3329
+ "ico",
3330
+ "json-patch",
3331
+ "plist",
3332
+ "png",
3333
+ "proc-macro2",
3334
+ "quote",
3335
+ "semver",
3336
+ "serde",
3337
+ "serde_json",
3338
+ "sha2",
3339
+ "syn 2.0.117",
3340
+ "tauri-utils",
3341
+ "thiserror 1.0.69",
3342
+ "time",
3343
+ "url",
3344
+ "uuid",
3345
+ "walkdir",
3346
+ ]
3347
+
3348
+ [[package]]
3349
+ name = "tauri-macros"
3350
+ version = "2.0.0"
3351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3352
+ checksum = "62ee976578a14b779996d7b6879d7e625c8ce674bc87e223953664f37def2eef"
3353
+ dependencies = [
3354
+ "heck 0.5.0",
3355
+ "proc-macro2",
3356
+ "quote",
3357
+ "syn 2.0.117",
3358
+ "tauri-codegen",
3359
+ "tauri-utils",
3360
+ ]
3361
+
3362
+ [[package]]
3363
+ name = "tauri-runtime"
3364
+ version = "2.0.0"
3365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3366
+ checksum = "2570e1f33f332a2d2d9967ebb3903bc4e1f92b9c47e4d1b302c10ea4153fcdbb"
3367
+ dependencies = [
3368
+ "dpi",
3369
+ "gtk",
3370
+ "http",
3371
+ "jni",
3372
+ "raw-window-handle",
3373
+ "serde",
3374
+ "serde_json",
3375
+ "tauri-utils",
3376
+ "thiserror 1.0.69",
3377
+ "url",
3378
+ "windows",
3379
+ ]
3380
+
3381
+ [[package]]
3382
+ name = "tauri-runtime-wry"
3383
+ version = "2.0.0"
3384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3385
+ checksum = "8147d8f9ed418d83a90af3d64fbdca5e0e924ae28e5351da88f9568169db8665"
3386
+ dependencies = [
3387
+ "gtk",
3388
+ "http",
3389
+ "jni",
3390
+ "log",
3391
+ "objc2 0.5.2",
3392
+ "objc2-app-kit 0.2.2",
3393
+ "objc2-foundation 0.2.2",
3394
+ "percent-encoding",
3395
+ "raw-window-handle",
3396
+ "softbuffer",
3397
+ "tao",
3398
+ "tauri-runtime",
3399
+ "tauri-utils",
3400
+ "url",
3401
+ "webkit2gtk",
3402
+ "webview2-com",
3403
+ "windows",
3404
+ "wry",
3405
+ ]
3406
+
3407
+ [[package]]
3408
+ name = "tauri-utils"
3409
+ version = "2.0.0"
3410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3411
+ checksum = "f87856e9d7fa91fd710362f3c73fccbf6bfd036934908791e65bd803d54dc8a8"
3412
+ dependencies = [
3413
+ "brotli",
3414
+ "cargo_metadata",
3415
+ "ctor",
3416
+ "dunce",
3417
+ "glob",
3418
+ "html5ever",
3419
+ "infer",
3420
+ "json-patch",
3421
+ "kuchikiki",
3422
+ "log",
3423
+ "memchr",
3424
+ "phf 0.11.3",
3425
+ "proc-macro2",
3426
+ "quote",
3427
+ "regex",
3428
+ "schemars 0.8.22",
3429
+ "semver",
3430
+ "serde",
3431
+ "serde-untagged",
3432
+ "serde_json",
3433
+ "serde_with",
3434
+ "swift-rs",
3435
+ "thiserror 1.0.69",
3436
+ "toml 0.8.2",
3437
+ "url",
3438
+ "urlpattern",
3439
+ "uuid",
3440
+ "walkdir",
3441
+ ]
3442
+
3443
+ [[package]]
3444
+ name = "tauri-winres"
3445
+ version = "0.1.1"
3446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3447
+ checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb"
3448
+ dependencies = [
3449
+ "embed-resource",
3450
+ "toml 0.7.8",
3451
+ ]
3452
+
3453
+ [[package]]
3454
+ name = "tendril"
3455
+ version = "0.4.3"
3456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3457
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
3458
+ dependencies = [
3459
+ "futf",
3460
+ "mac",
3461
+ "utf-8",
3462
+ ]
3463
+
3464
+ [[package]]
3465
+ name = "thin-slice"
3466
+ version = "0.1.1"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
3469
+
3470
+ [[package]]
3471
+ name = "thiserror"
3472
+ version = "1.0.69"
3473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3474
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3475
+ dependencies = [
3476
+ "thiserror-impl 1.0.69",
3477
+ ]
3478
+
3479
+ [[package]]
3480
+ name = "thiserror"
3481
+ version = "2.0.18"
3482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3483
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
3484
+ dependencies = [
3485
+ "thiserror-impl 2.0.18",
3486
+ ]
3487
+
3488
+ [[package]]
3489
+ name = "thiserror-impl"
3490
+ version = "1.0.69"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3493
+ dependencies = [
3494
+ "proc-macro2",
3495
+ "quote",
3496
+ "syn 2.0.117",
3497
+ ]
3498
+
3499
+ [[package]]
3500
+ name = "thiserror-impl"
3501
+ version = "2.0.18"
3502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3503
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
3504
+ dependencies = [
3505
+ "proc-macro2",
3506
+ "quote",
3507
+ "syn 2.0.117",
3508
+ ]
3509
+
3510
+ [[package]]
3511
+ name = "time"
3512
+ version = "0.3.36"
3513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3514
+ checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
3515
+ dependencies = [
3516
+ "deranged",
3517
+ "itoa 1.0.18",
3518
+ "num-conv",
3519
+ "powerfmt",
3520
+ "serde",
3521
+ "time-core",
3522
+ "time-macros",
3523
+ ]
3524
+
3525
+ [[package]]
3526
+ name = "time-core"
3527
+ version = "0.1.2"
3528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3529
+ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
3530
+
3531
+ [[package]]
3532
+ name = "time-macros"
3533
+ version = "0.2.18"
3534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3535
+ checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
3536
+ dependencies = [
3537
+ "num-conv",
3538
+ "time-core",
3539
+ ]
3540
+
3541
+ [[package]]
3542
+ name = "tinystr"
3543
+ version = "0.8.3"
3544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3545
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
3546
+ dependencies = [
3547
+ "displaydoc",
3548
+ "zerovec",
3549
+ ]
3550
+
3551
+ [[package]]
3552
+ name = "tokio"
3553
+ version = "1.52.3"
3554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3555
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
3556
+ dependencies = [
3557
+ "bytes",
3558
+ "libc",
3559
+ "mio",
3560
+ "pin-project-lite",
3561
+ "socket2",
3562
+ "windows-sys 0.61.2",
3563
+ ]
3564
+
3565
+ [[package]]
3566
+ name = "tokio-util"
3567
+ version = "0.7.18"
3568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3569
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3570
+ dependencies = [
3571
+ "bytes",
3572
+ "futures-core",
3573
+ "futures-sink",
3574
+ "pin-project-lite",
3575
+ "tokio",
3576
+ ]
3577
+
3578
+ [[package]]
3579
+ name = "toml"
3580
+ version = "0.7.8"
3581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3582
+ checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
3583
+ dependencies = [
3584
+ "serde",
3585
+ "serde_spanned",
3586
+ "toml_datetime 0.6.3",
3587
+ "toml_edit 0.19.15",
3588
+ ]
3589
+
3590
+ [[package]]
3591
+ name = "toml"
3592
+ version = "0.8.2"
3593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3594
+ checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
3595
+ dependencies = [
3596
+ "serde",
3597
+ "serde_spanned",
3598
+ "toml_datetime 0.6.3",
3599
+ "toml_edit 0.20.2",
3600
+ ]
3601
+
3602
+ [[package]]
3603
+ name = "toml_datetime"
3604
+ version = "0.6.3"
3605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3606
+ checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
3607
+ dependencies = [
3608
+ "serde",
3609
+ ]
3610
+
3611
+ [[package]]
3612
+ name = "toml_datetime"
3613
+ version = "1.1.1+spec-1.1.0"
3614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3615
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
3616
+ dependencies = [
3617
+ "serde_core",
3618
+ ]
3619
+
3620
+ [[package]]
3621
+ name = "toml_edit"
3622
+ version = "0.19.15"
3623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3624
+ checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
3625
+ dependencies = [
3626
+ "indexmap 2.14.0",
3627
+ "serde",
3628
+ "serde_spanned",
3629
+ "toml_datetime 0.6.3",
3630
+ "winnow 0.5.40",
3631
+ ]
3632
+
3633
+ [[package]]
3634
+ name = "toml_edit"
3635
+ version = "0.20.2"
3636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3637
+ checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
3638
+ dependencies = [
3639
+ "indexmap 2.14.0",
3640
+ "serde",
3641
+ "serde_spanned",
3642
+ "toml_datetime 0.6.3",
3643
+ "winnow 0.5.40",
3644
+ ]
3645
+
3646
+ [[package]]
3647
+ name = "toml_edit"
3648
+ version = "0.25.12+spec-1.1.0"
3649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3650
+ checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7"
3651
+ dependencies = [
3652
+ "indexmap 2.14.0",
3653
+ "toml_datetime 1.1.1+spec-1.1.0",
3654
+ "toml_parser",
3655
+ "winnow 1.0.3",
3656
+ ]
3657
+
3658
+ [[package]]
3659
+ name = "toml_parser"
3660
+ version = "1.1.2+spec-1.1.0"
3661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3662
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
3663
+ dependencies = [
3664
+ "winnow 1.0.3",
3665
+ ]
3666
+
3667
+ [[package]]
3668
+ name = "tower"
3669
+ version = "0.5.3"
3670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3671
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
3672
+ dependencies = [
3673
+ "futures-core",
3674
+ "futures-util",
3675
+ "pin-project-lite",
3676
+ "sync_wrapper",
3677
+ "tokio",
3678
+ "tower-layer",
3679
+ "tower-service",
3680
+ ]
3681
+
3682
+ [[package]]
3683
+ name = "tower-http"
3684
+ version = "0.6.11"
3685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3686
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
3687
+ dependencies = [
3688
+ "bitflags 2.13.0",
3689
+ "bytes",
3690
+ "futures-util",
3691
+ "http",
3692
+ "http-body",
3693
+ "pin-project-lite",
3694
+ "tower",
3695
+ "tower-layer",
3696
+ "tower-service",
3697
+ "url",
3698
+ ]
3699
+
3700
+ [[package]]
3701
+ name = "tower-layer"
3702
+ version = "0.3.3"
3703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3704
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3705
+
3706
+ [[package]]
3707
+ name = "tower-service"
3708
+ version = "0.3.3"
3709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3710
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3711
+
3712
+ [[package]]
3713
+ name = "tracing"
3714
+ version = "0.1.44"
3715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3716
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
3717
+ dependencies = [
3718
+ "pin-project-lite",
3719
+ "tracing-core",
3720
+ ]
3721
+
3722
+ [[package]]
3723
+ name = "tracing-core"
3724
+ version = "0.1.36"
3725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3726
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
3727
+ dependencies = [
3728
+ "once_cell",
3729
+ ]
3730
+
3731
+ [[package]]
3732
+ name = "tray-icon"
3733
+ version = "0.19.3"
3734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3735
+ checksum = "eadd75f5002e2513eaa19b2365f533090cc3e93abd38788452d9ea85cff7b48a"
3736
+ dependencies = [
3737
+ "crossbeam-channel",
3738
+ "dirs 6.0.0",
3739
+ "libappindicator",
3740
+ "muda",
3741
+ "objc2 0.6.4",
3742
+ "objc2-app-kit 0.3.2",
3743
+ "objc2-core-foundation",
3744
+ "objc2-core-graphics",
3745
+ "objc2-foundation 0.3.2",
3746
+ "once_cell",
3747
+ "png",
3748
+ "serde",
3749
+ "thiserror 2.0.18",
3750
+ "windows-sys 0.59.0",
3751
+ ]
3752
+
3753
+ [[package]]
3754
+ name = "try-lock"
3755
+ version = "0.2.5"
3756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3757
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3758
+
3759
+ [[package]]
3760
+ name = "typeid"
3761
+ version = "1.0.3"
3762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3763
+ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
3764
+
3765
+ [[package]]
3766
+ name = "typenum"
3767
+ version = "1.20.1"
3768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3769
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
3770
+
3771
+ [[package]]
3772
+ name = "unic-char-property"
3773
+ version = "0.9.0"
3774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3775
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
3776
+ dependencies = [
3777
+ "unic-char-range",
3778
+ ]
3779
+
3780
+ [[package]]
3781
+ name = "unic-char-range"
3782
+ version = "0.9.0"
3783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3784
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
3785
+
3786
+ [[package]]
3787
+ name = "unic-common"
3788
+ version = "0.9.0"
3789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3790
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
3791
+
3792
+ [[package]]
3793
+ name = "unic-ucd-ident"
3794
+ version = "0.9.0"
3795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3796
+ checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
3797
+ dependencies = [
3798
+ "unic-char-property",
3799
+ "unic-char-range",
3800
+ "unic-ucd-version",
3801
+ ]
3802
+
3803
+ [[package]]
3804
+ name = "unic-ucd-version"
3805
+ version = "0.9.0"
3806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3807
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
3808
+ dependencies = [
3809
+ "unic-common",
3810
+ ]
3811
+
3812
+ [[package]]
3813
+ name = "unicode-ident"
3814
+ version = "1.0.24"
3815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3816
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3817
+
3818
+ [[package]]
3819
+ name = "unicode-segmentation"
3820
+ version = "1.13.3"
3821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3822
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
3823
+
3824
+ [[package]]
3825
+ name = "unicode-xid"
3826
+ version = "0.2.6"
3827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3828
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3829
+
3830
+ [[package]]
3831
+ name = "url"
3832
+ version = "2.5.8"
3833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3834
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3835
+ dependencies = [
3836
+ "form_urlencoded",
3837
+ "idna",
3838
+ "percent-encoding",
3839
+ "serde",
3840
+ "serde_derive",
3841
+ ]
3842
+
3843
+ [[package]]
3844
+ name = "urlpattern"
3845
+ version = "0.3.0"
3846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3847
+ checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d"
3848
+ dependencies = [
3849
+ "regex",
3850
+ "serde",
3851
+ "unic-ucd-ident",
3852
+ "url",
3853
+ ]
3854
+
3855
+ [[package]]
3856
+ name = "utf-8"
3857
+ version = "0.7.6"
3858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3859
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
3860
+
3861
+ [[package]]
3862
+ name = "utf8_iter"
3863
+ version = "1.0.4"
3864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3865
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3866
+
3867
+ [[package]]
3868
+ name = "uuid"
3869
+ version = "1.23.3"
3870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3871
+ checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
3872
+ dependencies = [
3873
+ "getrandom 0.4.2",
3874
+ "js-sys",
3875
+ "serde_core",
3876
+ "wasm-bindgen",
3877
+ ]
3878
+
3879
+ [[package]]
3880
+ name = "version-compare"
3881
+ version = "0.2.1"
3882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3883
+ checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
3884
+
3885
+ [[package]]
3886
+ name = "version_check"
3887
+ version = "0.9.5"
3888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3889
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3890
+
3891
+ [[package]]
3892
+ name = "vswhom"
3893
+ version = "0.1.0"
3894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3895
+ checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
3896
+ dependencies = [
3897
+ "libc",
3898
+ "vswhom-sys",
3899
+ ]
3900
+
3901
+ [[package]]
3902
+ name = "vswhom-sys"
3903
+ version = "0.1.3"
3904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3905
+ checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150"
3906
+ dependencies = [
3907
+ "cc",
3908
+ "libc",
3909
+ ]
3910
+
3911
+ [[package]]
3912
+ name = "walkdir"
3913
+ version = "2.5.0"
3914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3915
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3916
+ dependencies = [
3917
+ "same-file",
3918
+ "winapi-util",
3919
+ ]
3920
+
3921
+ [[package]]
3922
+ name = "want"
3923
+ version = "0.3.1"
3924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3925
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3926
+ dependencies = [
3927
+ "try-lock",
3928
+ ]
3929
+
3930
+ [[package]]
3931
+ name = "wasi"
3932
+ version = "0.9.0+wasi-snapshot-preview1"
3933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3934
+ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
3935
+
3936
+ [[package]]
3937
+ name = "wasi"
3938
+ version = "0.11.1+wasi-snapshot-preview1"
3939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3940
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3941
+
3942
+ [[package]]
3943
+ name = "wasip2"
3944
+ version = "1.0.3+wasi-0.2.9"
3945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3946
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
3947
+ dependencies = [
3948
+ "wit-bindgen 0.57.1",
3949
+ ]
3950
+
3951
+ [[package]]
3952
+ name = "wasip3"
3953
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3955
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3956
+ dependencies = [
3957
+ "wit-bindgen 0.51.0",
3958
+ ]
3959
+
3960
+ [[package]]
3961
+ name = "wasm-bindgen"
3962
+ version = "0.2.123"
3963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3964
+ checksum = "a254a4b10c19a76f09a27640e7ffbf9bc30bf67e16a3bf28aaefa4920fe81563"
3965
+ dependencies = [
3966
+ "cfg-if",
3967
+ "once_cell",
3968
+ "rustversion",
3969
+ "wasm-bindgen-macro",
3970
+ "wasm-bindgen-shared",
3971
+ ]
3972
+
3973
+ [[package]]
3974
+ name = "wasm-bindgen-futures"
3975
+ version = "0.4.73"
3976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3977
+ checksum = "54568702fabf5d4849ce2b90fadfa64168a097eaf4b351ce9df8b687a0086aaf"
3978
+ dependencies = [
3979
+ "js-sys",
3980
+ "wasm-bindgen",
3981
+ ]
3982
+
3983
+ [[package]]
3984
+ name = "wasm-bindgen-macro"
3985
+ version = "0.2.123"
3986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3987
+ checksum = "24a40fc75b0ec6f3746ceb10d36f53a93dcd68a93b11b6445983945d79eba0dc"
3988
+ dependencies = [
3989
+ "quote",
3990
+ "wasm-bindgen-macro-support",
3991
+ ]
3992
+
3993
+ [[package]]
3994
+ name = "wasm-bindgen-macro-support"
3995
+ version = "0.2.123"
3996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3997
+ checksum = "908f34bd9b9ce3d4caf07b72dfab63d61504d156856c6bd3cd87fa350cf3985b"
3998
+ dependencies = [
3999
+ "bumpalo",
4000
+ "proc-macro2",
4001
+ "quote",
4002
+ "syn 2.0.117",
4003
+ "wasm-bindgen-shared",
4004
+ ]
4005
+
4006
+ [[package]]
4007
+ name = "wasm-bindgen-shared"
4008
+ version = "0.2.123"
4009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4010
+ checksum = "7acbf7616c27b194bbb550bf77ed0c2c3e5b7fd1260a93082b95fb7f47959b92"
4011
+ dependencies = [
4012
+ "unicode-ident",
4013
+ ]
4014
+
4015
+ [[package]]
4016
+ name = "wasm-encoder"
4017
+ version = "0.244.0"
4018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4019
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
4020
+ dependencies = [
4021
+ "leb128fmt",
4022
+ "wasmparser",
4023
+ ]
4024
+
4025
+ [[package]]
4026
+ name = "wasm-metadata"
4027
+ version = "0.244.0"
4028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4029
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
4030
+ dependencies = [
4031
+ "anyhow",
4032
+ "indexmap 2.14.0",
4033
+ "wasm-encoder",
4034
+ "wasmparser",
4035
+ ]
4036
+
4037
+ [[package]]
4038
+ name = "wasm-streams"
4039
+ version = "0.4.2"
4040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4041
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
4042
+ dependencies = [
4043
+ "futures-util",
4044
+ "js-sys",
4045
+ "wasm-bindgen",
4046
+ "wasm-bindgen-futures",
4047
+ "web-sys",
4048
+ ]
4049
+
4050
+ [[package]]
4051
+ name = "wasmparser"
4052
+ version = "0.244.0"
4053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4054
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
4055
+ dependencies = [
4056
+ "bitflags 2.13.0",
4057
+ "hashbrown 0.15.5",
4058
+ "indexmap 2.14.0",
4059
+ "semver",
4060
+ ]
4061
+
4062
+ [[package]]
4063
+ name = "web-sys"
4064
+ version = "0.3.100"
4065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4066
+ checksum = "6e0871acf327f283dc6da28a1696cdc64fb355ba9f935d052021fa77f35cce69"
4067
+ dependencies = [
4068
+ "js-sys",
4069
+ "wasm-bindgen",
4070
+ ]
4071
+
4072
+ [[package]]
4073
+ name = "webkit2gtk"
4074
+ version = "2.0.1"
4075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4076
+ checksum = "76b1bc1e54c581da1e9f179d0b38512ba358fb1af2d634a1affe42e37172361a"
4077
+ dependencies = [
4078
+ "bitflags 1.3.2",
4079
+ "cairo-rs",
4080
+ "gdk",
4081
+ "gdk-sys",
4082
+ "gio",
4083
+ "gio-sys",
4084
+ "glib",
4085
+ "glib-sys",
4086
+ "gobject-sys",
4087
+ "gtk",
4088
+ "gtk-sys",
4089
+ "javascriptcore-rs",
4090
+ "libc",
4091
+ "once_cell",
4092
+ "soup3",
4093
+ "webkit2gtk-sys",
4094
+ ]
4095
+
4096
+ [[package]]
4097
+ name = "webkit2gtk-sys"
4098
+ version = "2.0.1"
4099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4100
+ checksum = "62daa38afc514d1f8f12b8693d30d5993ff77ced33ce30cd04deebc267a6d57c"
4101
+ dependencies = [
4102
+ "bitflags 1.3.2",
4103
+ "cairo-sys-rs",
4104
+ "gdk-sys",
4105
+ "gio-sys",
4106
+ "glib-sys",
4107
+ "gobject-sys",
4108
+ "gtk-sys",
4109
+ "javascriptcore-rs-sys",
4110
+ "libc",
4111
+ "pkg-config",
4112
+ "soup3-sys",
4113
+ "system-deps",
4114
+ ]
4115
+
4116
+ [[package]]
4117
+ name = "webview2-com"
4118
+ version = "0.33.0"
4119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4120
+ checksum = "6f61ff3d9d0ee4efcb461b14eb3acfda2702d10dc329f339303fc3e57215ae2c"
4121
+ dependencies = [
4122
+ "webview2-com-macros",
4123
+ "webview2-com-sys",
4124
+ "windows",
4125
+ "windows-core 0.58.0",
4126
+ "windows-implement 0.58.0",
4127
+ "windows-interface 0.58.0",
4128
+ ]
4129
+
4130
+ [[package]]
4131
+ name = "webview2-com-macros"
4132
+ version = "0.8.1"
4133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4134
+ checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54"
4135
+ dependencies = [
4136
+ "proc-macro2",
4137
+ "quote",
4138
+ "syn 2.0.117",
4139
+ ]
4140
+
4141
+ [[package]]
4142
+ name = "webview2-com-sys"
4143
+ version = "0.33.0"
4144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4145
+ checksum = "a3a3e2eeb58f82361c93f9777014668eb3d07e7d174ee4c819575a9208011886"
4146
+ dependencies = [
4147
+ "thiserror 1.0.69",
4148
+ "windows",
4149
+ "windows-core 0.58.0",
4150
+ ]
4151
+
4152
+ [[package]]
4153
+ name = "winapi"
4154
+ version = "0.3.9"
4155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4156
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
4157
+ dependencies = [
4158
+ "winapi-i686-pc-windows-gnu",
4159
+ "winapi-x86_64-pc-windows-gnu",
4160
+ ]
4161
+
4162
+ [[package]]
4163
+ name = "winapi-i686-pc-windows-gnu"
4164
+ version = "0.4.0"
4165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4166
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
4167
+
4168
+ [[package]]
4169
+ name = "winapi-util"
4170
+ version = "0.1.11"
4171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4172
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4173
+ dependencies = [
4174
+ "windows-sys 0.61.2",
4175
+ ]
4176
+
4177
+ [[package]]
4178
+ name = "winapi-x86_64-pc-windows-gnu"
4179
+ version = "0.4.0"
4180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4181
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
4182
+
4183
+ [[package]]
4184
+ name = "window-vibrancy"
4185
+ version = "0.5.3"
4186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4187
+ checksum = "831ad7678290beae36be6f9fad9234139c7f00f3b536347de7745621716be82d"
4188
+ dependencies = [
4189
+ "objc2 0.5.2",
4190
+ "objc2-app-kit 0.2.2",
4191
+ "objc2-foundation 0.2.2",
4192
+ "raw-window-handle",
4193
+ "windows-sys 0.59.0",
4194
+ "windows-version",
4195
+ ]
4196
+
4197
+ [[package]]
4198
+ name = "windows"
4199
+ version = "0.58.0"
4200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4201
+ checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
4202
+ dependencies = [
4203
+ "windows-core 0.58.0",
4204
+ "windows-targets 0.52.6",
4205
+ ]
4206
+
4207
+ [[package]]
4208
+ name = "windows-core"
4209
+ version = "0.58.0"
4210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4211
+ checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
4212
+ dependencies = [
4213
+ "windows-implement 0.58.0",
4214
+ "windows-interface 0.58.0",
4215
+ "windows-result 0.2.0",
4216
+ "windows-strings 0.1.0",
4217
+ "windows-targets 0.52.6",
4218
+ ]
4219
+
4220
+ [[package]]
4221
+ name = "windows-core"
4222
+ version = "0.62.2"
4223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4224
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4225
+ dependencies = [
4226
+ "windows-implement 0.60.2",
4227
+ "windows-interface 0.59.3",
4228
+ "windows-link",
4229
+ "windows-result 0.4.1",
4230
+ "windows-strings 0.5.1",
4231
+ ]
4232
+
4233
+ [[package]]
4234
+ name = "windows-implement"
4235
+ version = "0.58.0"
4236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4237
+ checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
4238
+ dependencies = [
4239
+ "proc-macro2",
4240
+ "quote",
4241
+ "syn 2.0.117",
4242
+ ]
4243
+
4244
+ [[package]]
4245
+ name = "windows-implement"
4246
+ version = "0.60.2"
4247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4248
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4249
+ dependencies = [
4250
+ "proc-macro2",
4251
+ "quote",
4252
+ "syn 2.0.117",
4253
+ ]
4254
+
4255
+ [[package]]
4256
+ name = "windows-interface"
4257
+ version = "0.58.0"
4258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4259
+ checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
4260
+ dependencies = [
4261
+ "proc-macro2",
4262
+ "quote",
4263
+ "syn 2.0.117",
4264
+ ]
4265
+
4266
+ [[package]]
4267
+ name = "windows-interface"
4268
+ version = "0.59.3"
4269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4270
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4271
+ dependencies = [
4272
+ "proc-macro2",
4273
+ "quote",
4274
+ "syn 2.0.117",
4275
+ ]
4276
+
4277
+ [[package]]
4278
+ name = "windows-link"
4279
+ version = "0.2.1"
4280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4281
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4282
+
4283
+ [[package]]
4284
+ name = "windows-result"
4285
+ version = "0.2.0"
4286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4287
+ checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
4288
+ dependencies = [
4289
+ "windows-targets 0.52.6",
4290
+ ]
4291
+
4292
+ [[package]]
4293
+ name = "windows-result"
4294
+ version = "0.4.1"
4295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4296
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4297
+ dependencies = [
4298
+ "windows-link",
4299
+ ]
4300
+
4301
+ [[package]]
4302
+ name = "windows-strings"
4303
+ version = "0.1.0"
4304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4305
+ checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
4306
+ dependencies = [
4307
+ "windows-result 0.2.0",
4308
+ "windows-targets 0.52.6",
4309
+ ]
4310
+
4311
+ [[package]]
4312
+ name = "windows-strings"
4313
+ version = "0.5.1"
4314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4315
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4316
+ dependencies = [
4317
+ "windows-link",
4318
+ ]
4319
+
4320
+ [[package]]
4321
+ name = "windows-sys"
4322
+ version = "0.45.0"
4323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4324
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
4325
+ dependencies = [
4326
+ "windows-targets 0.42.2",
4327
+ ]
4328
+
4329
+ [[package]]
4330
+ name = "windows-sys"
4331
+ version = "0.48.0"
4332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4333
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4334
+ dependencies = [
4335
+ "windows-targets 0.48.5",
4336
+ ]
4337
+
4338
+ [[package]]
4339
+ name = "windows-sys"
4340
+ version = "0.59.0"
4341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4342
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4343
+ dependencies = [
4344
+ "windows-targets 0.52.6",
4345
+ ]
4346
+
4347
+ [[package]]
4348
+ name = "windows-sys"
4349
+ version = "0.61.2"
4350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4351
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4352
+ dependencies = [
4353
+ "windows-link",
4354
+ ]
4355
+
4356
+ [[package]]
4357
+ name = "windows-targets"
4358
+ version = "0.42.2"
4359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4360
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
4361
+ dependencies = [
4362
+ "windows_aarch64_gnullvm 0.42.2",
4363
+ "windows_aarch64_msvc 0.42.2",
4364
+ "windows_i686_gnu 0.42.2",
4365
+ "windows_i686_msvc 0.42.2",
4366
+ "windows_x86_64_gnu 0.42.2",
4367
+ "windows_x86_64_gnullvm 0.42.2",
4368
+ "windows_x86_64_msvc 0.42.2",
4369
+ ]
4370
+
4371
+ [[package]]
4372
+ name = "windows-targets"
4373
+ version = "0.48.5"
4374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4375
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4376
+ dependencies = [
4377
+ "windows_aarch64_gnullvm 0.48.5",
4378
+ "windows_aarch64_msvc 0.48.5",
4379
+ "windows_i686_gnu 0.48.5",
4380
+ "windows_i686_msvc 0.48.5",
4381
+ "windows_x86_64_gnu 0.48.5",
4382
+ "windows_x86_64_gnullvm 0.48.5",
4383
+ "windows_x86_64_msvc 0.48.5",
4384
+ ]
4385
+
4386
+ [[package]]
4387
+ name = "windows-targets"
4388
+ version = "0.52.6"
4389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4390
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4391
+ dependencies = [
4392
+ "windows_aarch64_gnullvm 0.52.6",
4393
+ "windows_aarch64_msvc 0.52.6",
4394
+ "windows_i686_gnu 0.52.6",
4395
+ "windows_i686_gnullvm",
4396
+ "windows_i686_msvc 0.52.6",
4397
+ "windows_x86_64_gnu 0.52.6",
4398
+ "windows_x86_64_gnullvm 0.52.6",
4399
+ "windows_x86_64_msvc 0.52.6",
4400
+ ]
4401
+
4402
+ [[package]]
4403
+ name = "windows-version"
4404
+ version = "0.1.7"
4405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4406
+ checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631"
4407
+ dependencies = [
4408
+ "windows-link",
4409
+ ]
4410
+
4411
+ [[package]]
4412
+ name = "windows_aarch64_gnullvm"
4413
+ version = "0.42.2"
4414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4415
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4416
+
4417
+ [[package]]
4418
+ name = "windows_aarch64_gnullvm"
4419
+ version = "0.48.5"
4420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4421
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4422
+
4423
+ [[package]]
4424
+ name = "windows_aarch64_gnullvm"
4425
+ version = "0.52.6"
4426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4427
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4428
+
4429
+ [[package]]
4430
+ name = "windows_aarch64_msvc"
4431
+ version = "0.42.2"
4432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4433
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4434
+
4435
+ [[package]]
4436
+ name = "windows_aarch64_msvc"
4437
+ version = "0.48.5"
4438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4439
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4440
+
4441
+ [[package]]
4442
+ name = "windows_aarch64_msvc"
4443
+ version = "0.52.6"
4444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4445
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4446
+
4447
+ [[package]]
4448
+ name = "windows_i686_gnu"
4449
+ version = "0.42.2"
4450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4451
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4452
+
4453
+ [[package]]
4454
+ name = "windows_i686_gnu"
4455
+ version = "0.48.5"
4456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4457
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4458
+
4459
+ [[package]]
4460
+ name = "windows_i686_gnu"
4461
+ version = "0.52.6"
4462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4463
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4464
+
4465
+ [[package]]
4466
+ name = "windows_i686_gnullvm"
4467
+ version = "0.52.6"
4468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4469
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4470
+
4471
+ [[package]]
4472
+ name = "windows_i686_msvc"
4473
+ version = "0.42.2"
4474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4475
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4476
+
4477
+ [[package]]
4478
+ name = "windows_i686_msvc"
4479
+ version = "0.48.5"
4480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4481
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4482
+
4483
+ [[package]]
4484
+ name = "windows_i686_msvc"
4485
+ version = "0.52.6"
4486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4487
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4488
+
4489
+ [[package]]
4490
+ name = "windows_x86_64_gnu"
4491
+ version = "0.42.2"
4492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4493
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4494
+
4495
+ [[package]]
4496
+ name = "windows_x86_64_gnu"
4497
+ version = "0.48.5"
4498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4499
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4500
+
4501
+ [[package]]
4502
+ name = "windows_x86_64_gnu"
4503
+ version = "0.52.6"
4504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4505
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4506
+
4507
+ [[package]]
4508
+ name = "windows_x86_64_gnullvm"
4509
+ version = "0.42.2"
4510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4511
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4512
+
4513
+ [[package]]
4514
+ name = "windows_x86_64_gnullvm"
4515
+ version = "0.48.5"
4516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4517
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4518
+
4519
+ [[package]]
4520
+ name = "windows_x86_64_gnullvm"
4521
+ version = "0.52.6"
4522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4523
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4524
+
4525
+ [[package]]
4526
+ name = "windows_x86_64_msvc"
4527
+ version = "0.42.2"
4528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4529
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4530
+
4531
+ [[package]]
4532
+ name = "windows_x86_64_msvc"
4533
+ version = "0.48.5"
4534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4535
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4536
+
4537
+ [[package]]
4538
+ name = "windows_x86_64_msvc"
4539
+ version = "0.52.6"
4540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4541
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4542
+
4543
+ [[package]]
4544
+ name = "winnow"
4545
+ version = "0.5.40"
4546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4547
+ checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
4548
+ dependencies = [
4549
+ "memchr",
4550
+ ]
4551
+
4552
+ [[package]]
4553
+ name = "winnow"
4554
+ version = "1.0.3"
4555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4556
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
4557
+ dependencies = [
4558
+ "memchr",
4559
+ ]
4560
+
4561
+ [[package]]
4562
+ name = "winreg"
4563
+ version = "0.52.0"
4564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4565
+ checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
4566
+ dependencies = [
4567
+ "cfg-if",
4568
+ "windows-sys 0.48.0",
4569
+ ]
4570
+
4571
+ [[package]]
4572
+ name = "wit-bindgen"
4573
+ version = "0.51.0"
4574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4575
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
4576
+ dependencies = [
4577
+ "wit-bindgen-rust-macro",
4578
+ ]
4579
+
4580
+ [[package]]
4581
+ name = "wit-bindgen"
4582
+ version = "0.57.1"
4583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4584
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
4585
+
4586
+ [[package]]
4587
+ name = "wit-bindgen-core"
4588
+ version = "0.51.0"
4589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4590
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
4591
+ dependencies = [
4592
+ "anyhow",
4593
+ "heck 0.5.0",
4594
+ "wit-parser",
4595
+ ]
4596
+
4597
+ [[package]]
4598
+ name = "wit-bindgen-rust"
4599
+ version = "0.51.0"
4600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4601
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
4602
+ dependencies = [
4603
+ "anyhow",
4604
+ "heck 0.5.0",
4605
+ "indexmap 2.14.0",
4606
+ "prettyplease",
4607
+ "syn 2.0.117",
4608
+ "wasm-metadata",
4609
+ "wit-bindgen-core",
4610
+ "wit-component",
4611
+ ]
4612
+
4613
+ [[package]]
4614
+ name = "wit-bindgen-rust-macro"
4615
+ version = "0.51.0"
4616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4617
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
4618
+ dependencies = [
4619
+ "anyhow",
4620
+ "prettyplease",
4621
+ "proc-macro2",
4622
+ "quote",
4623
+ "syn 2.0.117",
4624
+ "wit-bindgen-core",
4625
+ "wit-bindgen-rust",
4626
+ ]
4627
+
4628
+ [[package]]
4629
+ name = "wit-component"
4630
+ version = "0.244.0"
4631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4632
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
4633
+ dependencies = [
4634
+ "anyhow",
4635
+ "bitflags 2.13.0",
4636
+ "indexmap 2.14.0",
4637
+ "log",
4638
+ "serde",
4639
+ "serde_derive",
4640
+ "serde_json",
4641
+ "wasm-encoder",
4642
+ "wasm-metadata",
4643
+ "wasmparser",
4644
+ "wit-parser",
4645
+ ]
4646
+
4647
+ [[package]]
4648
+ name = "wit-parser"
4649
+ version = "0.244.0"
4650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4651
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
4652
+ dependencies = [
4653
+ "anyhow",
4654
+ "id-arena",
4655
+ "indexmap 2.14.0",
4656
+ "log",
4657
+ "semver",
4658
+ "serde",
4659
+ "serde_derive",
4660
+ "serde_json",
4661
+ "unicode-xid",
4662
+ "wasmparser",
4663
+ ]
4664
+
4665
+ [[package]]
4666
+ name = "writeable"
4667
+ version = "0.6.3"
4668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4669
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
4670
+
4671
+ [[package]]
4672
+ name = "wry"
4673
+ version = "0.44.1"
4674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4675
+ checksum = "440600584cfbd8b0d28eace95c1f2c253db05dae43780b79380aa1e868f04c73"
4676
+ dependencies = [
4677
+ "base64 0.22.1",
4678
+ "block",
4679
+ "cocoa",
4680
+ "core-graphics",
4681
+ "crossbeam-channel",
4682
+ "dpi",
4683
+ "dunce",
4684
+ "gdkx11",
4685
+ "gtk",
4686
+ "html5ever",
4687
+ "http",
4688
+ "javascriptcore-rs",
4689
+ "jni",
4690
+ "kuchikiki",
4691
+ "libc",
4692
+ "ndk",
4693
+ "objc",
4694
+ "objc_id",
4695
+ "once_cell",
4696
+ "percent-encoding",
4697
+ "raw-window-handle",
4698
+ "sha2",
4699
+ "soup3",
4700
+ "tao-macros",
4701
+ "thiserror 1.0.69",
4702
+ "webkit2gtk",
4703
+ "webkit2gtk-sys",
4704
+ "webview2-com",
4705
+ "windows",
4706
+ "windows-core 0.58.0",
4707
+ "windows-version",
4708
+ "x11-dl",
4709
+ ]
4710
+
4711
+ [[package]]
4712
+ name = "x11"
4713
+ version = "2.21.0"
4714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4715
+ checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
4716
+ dependencies = [
4717
+ "libc",
4718
+ "pkg-config",
4719
+ ]
4720
+
4721
+ [[package]]
4722
+ name = "x11-dl"
4723
+ version = "2.21.0"
4724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4725
+ checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
4726
+ dependencies = [
4727
+ "libc",
4728
+ "once_cell",
4729
+ "pkg-config",
4730
+ ]
4731
+
4732
+ [[package]]
4733
+ name = "yoke"
4734
+ version = "0.8.3"
4735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4736
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
4737
+ dependencies = [
4738
+ "stable_deref_trait",
4739
+ "yoke-derive",
4740
+ "zerofrom",
4741
+ ]
4742
+
4743
+ [[package]]
4744
+ name = "yoke-derive"
4745
+ version = "0.8.2"
4746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4747
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
4748
+ dependencies = [
4749
+ "proc-macro2",
4750
+ "quote",
4751
+ "syn 2.0.117",
4752
+ "synstructure",
4753
+ ]
4754
+
4755
+ [[package]]
4756
+ name = "zerocopy"
4757
+ version = "0.8.52"
4758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4759
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
4760
+ dependencies = [
4761
+ "zerocopy-derive",
4762
+ ]
4763
+
4764
+ [[package]]
4765
+ name = "zerocopy-derive"
4766
+ version = "0.8.52"
4767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4768
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
4769
+ dependencies = [
4770
+ "proc-macro2",
4771
+ "quote",
4772
+ "syn 2.0.117",
4773
+ ]
4774
+
4775
+ [[package]]
4776
+ name = "zerofrom"
4777
+ version = "0.1.8"
4778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4779
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
4780
+ dependencies = [
4781
+ "zerofrom-derive",
4782
+ ]
4783
+
4784
+ [[package]]
4785
+ name = "zerofrom-derive"
4786
+ version = "0.1.7"
4787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4788
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
4789
+ dependencies = [
4790
+ "proc-macro2",
4791
+ "quote",
4792
+ "syn 2.0.117",
4793
+ "synstructure",
4794
+ ]
4795
+
4796
+ [[package]]
4797
+ name = "zerotrie"
4798
+ version = "0.2.4"
4799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4800
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
4801
+ dependencies = [
4802
+ "displaydoc",
4803
+ "yoke",
4804
+ "zerofrom",
4805
+ ]
4806
+
4807
+ [[package]]
4808
+ name = "zerovec"
4809
+ version = "0.11.6"
4810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4811
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
4812
+ dependencies = [
4813
+ "yoke",
4814
+ "zerofrom",
4815
+ "zerovec-derive",
4816
+ ]
4817
+
4818
+ [[package]]
4819
+ name = "zerovec-derive"
4820
+ version = "0.11.3"
4821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4822
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
4823
+ dependencies = [
4824
+ "proc-macro2",
4825
+ "quote",
4826
+ "syn 2.0.117",
4827
+ ]
4828
+
4829
+ [[package]]
4830
+ name = "zmij"
4831
+ version = "1.0.21"
4832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4833
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"