velopack 0.0.1589.dev41669__tar.gz → 1.0.7.dev42544__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/Cargo.lock +2414 -361
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/Cargo.toml +11 -8
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/PKG-INFO +1 -1
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/pyproject.toml +1 -1
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-python/README.md +1 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-python/src/lib.rs +10 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-python/src/manager.rs +31 -43
- velopack-1.0.7.dev42544/src/lib-python/src/sources.rs +120 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-python/src/types.rs +11 -5
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-python/uv.lock +38 -38
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/README.md +1 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/bundle.rs +64 -36
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/file_rotate.rs +3 -3
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/lib.rs +1 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/locator.rs +10 -10
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/lockfile.rs +22 -19
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/logging.rs +15 -13
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/manager.rs +13 -17
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/misc.rs +11 -16
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/process_unix.rs +26 -6
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/process_win.rs +62 -37
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/sources/http.rs +1 -1
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/wide_strings.rs +12 -5
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-python/.gitignore +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-python/Cargo.toml +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-python/build.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-python/src/app.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-python/test/app.py +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-python/test/run_test.py +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/Cargo.toml +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/app.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/constants.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/download.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/known_path.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/macros.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/sources/file.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/sources/flow.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/sources/gitea.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/sources/github.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/sources/gitlab.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/src/sources/mod.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/tests/common/mock_server.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/tests/common/mod.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/tests/noteshtml_deserialization.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/tests/source_auto.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/tests/source_file.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/tests/source_flow.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/tests/source_gitea.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/tests/source_github.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/tests/source_gitlab.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/tests/source_http.rs +0 -0
- {velopack-0.0.1589.dev41669 → velopack-1.0.7.dev42544}/src/lib-rust/tests/source_none.rs +0 -0
|
@@ -2,12 +2,41 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 3
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ab_glyph"
|
|
7
|
+
version = "0.2.32"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "01c0457472c38ea5bd1c3b5ada5e368271cb550be7a4ca4a0b4634e9913f6cc2"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"ab_glyph_rasterizer",
|
|
12
|
+
"owned_ttf_parser",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[[package]]
|
|
16
|
+
name = "ab_glyph_rasterizer"
|
|
17
|
+
version = "0.1.10"
|
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
+
checksum = "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618"
|
|
20
|
+
|
|
5
21
|
[[package]]
|
|
6
22
|
name = "adler2"
|
|
7
23
|
version = "2.0.1"
|
|
8
24
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
25
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
26
|
|
|
27
|
+
[[package]]
|
|
28
|
+
name = "ahash"
|
|
29
|
+
version = "0.8.12"
|
|
30
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
32
|
+
dependencies = [
|
|
33
|
+
"cfg-if",
|
|
34
|
+
"getrandom 0.3.4",
|
|
35
|
+
"once_cell",
|
|
36
|
+
"version_check",
|
|
37
|
+
"zerocopy",
|
|
38
|
+
]
|
|
39
|
+
|
|
11
40
|
[[package]]
|
|
12
41
|
name = "aho-corasick"
|
|
13
42
|
version = "1.1.4"
|
|
@@ -26,6 +55,46 @@ dependencies = [
|
|
|
26
55
|
"as-slice",
|
|
27
56
|
]
|
|
28
57
|
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "aligned-vec"
|
|
60
|
+
version = "0.6.4"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
|
|
63
|
+
dependencies = [
|
|
64
|
+
"equator",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "allocator-api2"
|
|
69
|
+
version = "0.2.21"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "android-activity"
|
|
75
|
+
version = "0.6.1"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "0f2a1bb052857d5dd49572219344a7332b31b76405648eabac5bc68978251bcd"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"android-properties",
|
|
80
|
+
"bitflags 2.11.1",
|
|
81
|
+
"cc",
|
|
82
|
+
"jni",
|
|
83
|
+
"libc",
|
|
84
|
+
"log",
|
|
85
|
+
"ndk",
|
|
86
|
+
"ndk-context",
|
|
87
|
+
"ndk-sys",
|
|
88
|
+
"num_enum",
|
|
89
|
+
"thiserror 2.0.18",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "android-properties"
|
|
94
|
+
version = "0.2.2"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
|
|
97
|
+
|
|
29
98
|
[[package]]
|
|
30
99
|
name = "android_system_properties"
|
|
31
100
|
version = "0.1.5"
|
|
@@ -91,15 +160,50 @@ version = "1.0.102"
|
|
|
91
160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
161
|
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
93
162
|
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "arbitrary"
|
|
165
|
+
version = "1.4.2"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
168
|
+
|
|
94
169
|
[[package]]
|
|
95
170
|
name = "arc-swap"
|
|
96
|
-
version = "1.9.
|
|
171
|
+
version = "1.9.1"
|
|
97
172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
-
checksum = "
|
|
173
|
+
checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
|
|
99
174
|
dependencies = [
|
|
100
175
|
"rustversion",
|
|
101
176
|
]
|
|
102
177
|
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "arg_enum_proc_macro"
|
|
180
|
+
version = "0.3.4"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"proc-macro2",
|
|
185
|
+
"quote",
|
|
186
|
+
"syn 2.0.117",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "arrayref"
|
|
191
|
+
version = "0.3.9"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "arrayvec"
|
|
197
|
+
version = "0.7.6"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "as-raw-xcb-connection"
|
|
203
|
+
version = "1.0.1"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b"
|
|
206
|
+
|
|
103
207
|
[[package]]
|
|
104
208
|
name = "as-slice"
|
|
105
209
|
version = "0.2.1"
|
|
@@ -109,11 +213,60 @@ dependencies = [
|
|
|
109
213
|
"stable_deref_trait",
|
|
110
214
|
]
|
|
111
215
|
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "atomic-waker"
|
|
218
|
+
version = "1.1.2"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
221
|
+
|
|
112
222
|
[[package]]
|
|
113
223
|
name = "autocfg"
|
|
114
|
-
version = "1.5.
|
|
224
|
+
version = "1.5.1"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "av-scenechange"
|
|
230
|
+
version = "0.14.1"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
|
|
233
|
+
dependencies = [
|
|
234
|
+
"aligned",
|
|
235
|
+
"anyhow",
|
|
236
|
+
"arg_enum_proc_macro",
|
|
237
|
+
"arrayvec",
|
|
238
|
+
"log",
|
|
239
|
+
"num-rational",
|
|
240
|
+
"num-traits",
|
|
241
|
+
"pastey",
|
|
242
|
+
"rayon",
|
|
243
|
+
"thiserror 2.0.18",
|
|
244
|
+
"v_frame",
|
|
245
|
+
"y4m",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "av1-grain"
|
|
250
|
+
version = "0.2.5"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"anyhow",
|
|
255
|
+
"arrayvec",
|
|
256
|
+
"log",
|
|
257
|
+
"nom",
|
|
258
|
+
"num-rational",
|
|
259
|
+
"v_frame",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "avif-serialize"
|
|
264
|
+
version = "0.8.9"
|
|
115
265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
-
checksum = "
|
|
266
|
+
checksum = "e7178fe5f7d460b13895ebb9dcb28a3a6216d2df2574a0806cb51b555d297f38"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"arrayvec",
|
|
269
|
+
]
|
|
117
270
|
|
|
118
271
|
[[package]]
|
|
119
272
|
name = "base64"
|
|
@@ -121,11 +274,32 @@ version = "0.22.1"
|
|
|
121
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
275
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
123
276
|
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "bit_field"
|
|
279
|
+
version = "0.10.3"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "bitflags"
|
|
285
|
+
version = "1.3.2"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
288
|
+
|
|
124
289
|
[[package]]
|
|
125
290
|
name = "bitflags"
|
|
126
|
-
version = "2.11.
|
|
291
|
+
version = "2.11.1"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "bitstream-io"
|
|
297
|
+
version = "4.10.0"
|
|
127
298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
-
checksum = "
|
|
299
|
+
checksum = "7eff00be299a18769011411c9def0d827e8f2d7bf0c3dbf53633147a8867fd1f"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"no_std_io2",
|
|
302
|
+
]
|
|
129
303
|
|
|
130
304
|
[[package]]
|
|
131
305
|
name = "block-buffer"
|
|
@@ -136,26 +310,55 @@ dependencies = [
|
|
|
136
310
|
"hybrid-array",
|
|
137
311
|
]
|
|
138
312
|
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "block2"
|
|
315
|
+
version = "0.5.1"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
|
|
318
|
+
dependencies = [
|
|
319
|
+
"objc2 0.5.2",
|
|
320
|
+
]
|
|
321
|
+
|
|
139
322
|
[[package]]
|
|
140
323
|
name = "block2"
|
|
141
324
|
version = "0.6.2"
|
|
142
325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
326
|
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
144
327
|
dependencies = [
|
|
145
|
-
"objc2",
|
|
328
|
+
"objc2 0.6.4",
|
|
146
329
|
]
|
|
147
330
|
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "built"
|
|
333
|
+
version = "0.8.1"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "5c0e531d93d39c34eef561e929e8a7f86d77a5af08aac4f6d6e39976c51858e9"
|
|
336
|
+
|
|
148
337
|
[[package]]
|
|
149
338
|
name = "bumpalo"
|
|
150
|
-
version = "3.20.
|
|
339
|
+
version = "3.20.3"
|
|
151
340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
-
checksum = "
|
|
341
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
153
342
|
|
|
154
343
|
[[package]]
|
|
155
344
|
name = "bytemuck"
|
|
156
345
|
version = "1.25.0"
|
|
157
346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
347
|
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"bytemuck_derive",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "bytemuck_derive"
|
|
354
|
+
version = "1.10.2"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"proc-macro2",
|
|
359
|
+
"quote",
|
|
360
|
+
"syn 2.0.117",
|
|
361
|
+
]
|
|
159
362
|
|
|
160
363
|
[[package]]
|
|
161
364
|
name = "byteorder-lite"
|
|
@@ -169,6 +372,32 @@ version = "1.11.1"
|
|
|
169
372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
373
|
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
171
374
|
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "calloop"
|
|
377
|
+
version = "0.13.0"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"bitflags 2.11.1",
|
|
382
|
+
"log",
|
|
383
|
+
"polling",
|
|
384
|
+
"rustix 0.38.44",
|
|
385
|
+
"slab",
|
|
386
|
+
"thiserror 1.0.69",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "calloop-wayland-source"
|
|
391
|
+
version = "0.3.0"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"calloop",
|
|
396
|
+
"rustix 0.38.44",
|
|
397
|
+
"wayland-backend",
|
|
398
|
+
"wayland-client",
|
|
399
|
+
]
|
|
400
|
+
|
|
172
401
|
[[package]]
|
|
173
402
|
name = "cbindgen"
|
|
174
403
|
version = "0.29.2"
|
|
@@ -190,9 +419,9 @@ dependencies = [
|
|
|
190
419
|
|
|
191
420
|
[[package]]
|
|
192
421
|
name = "cc"
|
|
193
|
-
version = "1.2.
|
|
422
|
+
version = "1.2.62"
|
|
194
423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
-
checksum = "
|
|
424
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
196
425
|
dependencies = [
|
|
197
426
|
"find-msvc-tools",
|
|
198
427
|
"jobserver",
|
|
@@ -200,12 +429,6 @@ dependencies = [
|
|
|
200
429
|
"shlex",
|
|
201
430
|
]
|
|
202
431
|
|
|
203
|
-
[[package]]
|
|
204
|
-
name = "cfg-if"
|
|
205
|
-
version = "0.1.10"
|
|
206
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
-
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
|
208
|
-
|
|
209
432
|
[[package]]
|
|
210
433
|
name = "cfg-if"
|
|
211
434
|
version = "1.0.4"
|
|
@@ -224,9 +447,9 @@ version = "0.10.0"
|
|
|
224
447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
448
|
checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
|
|
226
449
|
dependencies = [
|
|
227
|
-
"cfg-if
|
|
450
|
+
"cfg-if",
|
|
228
451
|
"cpufeatures",
|
|
229
|
-
"rand_core",
|
|
452
|
+
"rand_core 0.10.1",
|
|
230
453
|
]
|
|
231
454
|
|
|
232
455
|
[[package]]
|
|
@@ -244,9 +467,9 @@ dependencies = [
|
|
|
244
467
|
|
|
245
468
|
[[package]]
|
|
246
469
|
name = "clap"
|
|
247
|
-
version = "4.6.
|
|
470
|
+
version = "4.6.1"
|
|
248
471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
-
checksum = "
|
|
472
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
250
473
|
dependencies = [
|
|
251
474
|
"clap_builder",
|
|
252
475
|
"clap_derive",
|
|
@@ -266,9 +489,9 @@ dependencies = [
|
|
|
266
489
|
|
|
267
490
|
[[package]]
|
|
268
491
|
name = "clap_derive"
|
|
269
|
-
version = "4.6.
|
|
492
|
+
version = "4.6.1"
|
|
270
493
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
-
checksum = "
|
|
494
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
272
495
|
dependencies = [
|
|
273
496
|
"heck",
|
|
274
497
|
"proc-macro2",
|
|
@@ -294,6 +517,25 @@ version = "1.0.5"
|
|
|
294
517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
518
|
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
296
519
|
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "combine"
|
|
522
|
+
version = "4.6.7"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
525
|
+
dependencies = [
|
|
526
|
+
"bytes",
|
|
527
|
+
"memchr",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "concurrent-queue"
|
|
532
|
+
version = "2.5.0"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"crossbeam-utils",
|
|
537
|
+
]
|
|
538
|
+
|
|
297
539
|
[[package]]
|
|
298
540
|
name = "const-oid"
|
|
299
541
|
version = "0.10.2"
|
|
@@ -302,9 +544,9 @@ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
|
302
544
|
|
|
303
545
|
[[package]]
|
|
304
546
|
name = "core-foundation"
|
|
305
|
-
version = "0.
|
|
547
|
+
version = "0.9.4"
|
|
306
548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
-
checksum = "
|
|
549
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
308
550
|
dependencies = [
|
|
309
551
|
"core-foundation-sys",
|
|
310
552
|
"libc",
|
|
@@ -316,6 +558,30 @@ version = "0.8.7"
|
|
|
316
558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
559
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
318
560
|
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "core-graphics"
|
|
563
|
+
version = "0.23.2"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
|
|
566
|
+
dependencies = [
|
|
567
|
+
"bitflags 1.3.2",
|
|
568
|
+
"core-foundation",
|
|
569
|
+
"core-graphics-types",
|
|
570
|
+
"foreign-types",
|
|
571
|
+
"libc",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "core-graphics-types"
|
|
576
|
+
version = "0.1.3"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"bitflags 1.3.2",
|
|
581
|
+
"core-foundation",
|
|
582
|
+
"libc",
|
|
583
|
+
]
|
|
584
|
+
|
|
319
585
|
[[package]]
|
|
320
586
|
name = "cpufeatures"
|
|
321
587
|
version = "0.3.0"
|
|
@@ -331,7 +597,7 @@ version = "1.5.0"
|
|
|
331
597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
598
|
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
333
599
|
dependencies = [
|
|
334
|
-
"cfg-if
|
|
600
|
+
"cfg-if",
|
|
335
601
|
]
|
|
336
602
|
|
|
337
603
|
[[package]]
|
|
@@ -359,22 +625,43 @@ version = "0.8.21"
|
|
|
359
625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
626
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
361
627
|
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "crunchy"
|
|
630
|
+
version = "0.2.4"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
633
|
+
|
|
362
634
|
[[package]]
|
|
363
635
|
name = "crypto-common"
|
|
364
|
-
version = "0.2.
|
|
636
|
+
version = "0.2.2"
|
|
365
637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
-
checksum = "
|
|
638
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
367
639
|
dependencies = [
|
|
368
640
|
"hybrid-array",
|
|
369
641
|
]
|
|
370
642
|
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "ctor"
|
|
645
|
+
version = "0.10.1"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "83cf0d42651b16c6dfe68685716d18480d18a9c39c62d76e8cf3eb6ed5d8bcbf"
|
|
648
|
+
dependencies = [
|
|
649
|
+
"dtor",
|
|
650
|
+
]
|
|
651
|
+
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "cursor-icon"
|
|
654
|
+
version = "1.2.0"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
|
|
657
|
+
|
|
371
658
|
[[package]]
|
|
372
659
|
name = "cvt"
|
|
373
660
|
version = "0.1.2"
|
|
374
661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
662
|
checksum = "d2ae9bf77fbf2d39ef573205d554d87e86c12f1994e9ea335b0651b9b278bcf1"
|
|
376
663
|
dependencies = [
|
|
377
|
-
"cfg-if
|
|
664
|
+
"cfg-if",
|
|
378
665
|
]
|
|
379
666
|
|
|
380
667
|
[[package]]
|
|
@@ -432,16 +719,6 @@ dependencies = [
|
|
|
432
719
|
"syn 1.0.109",
|
|
433
720
|
]
|
|
434
721
|
|
|
435
|
-
[[package]]
|
|
436
|
-
name = "dialog"
|
|
437
|
-
version = "0.3.0"
|
|
438
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
-
checksum = "736bab36d647d14c985725a57a4110a1182c6852104536cd42f1c97e96d29bf0"
|
|
440
|
-
dependencies = [
|
|
441
|
-
"dirs",
|
|
442
|
-
"rpassword",
|
|
443
|
-
]
|
|
444
|
-
|
|
445
722
|
[[package]]
|
|
446
723
|
name = "diff"
|
|
447
724
|
version = "0.1.13"
|
|
@@ -450,9 +727,9 @@ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
|
450
727
|
|
|
451
728
|
[[package]]
|
|
452
729
|
name = "digest"
|
|
453
|
-
version = "0.11.
|
|
730
|
+
version = "0.11.3"
|
|
454
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
-
checksum = "
|
|
732
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
456
733
|
dependencies = [
|
|
457
734
|
"block-buffer",
|
|
458
735
|
"const-oid",
|
|
@@ -460,25 +737,10 @@ dependencies = [
|
|
|
460
737
|
]
|
|
461
738
|
|
|
462
739
|
[[package]]
|
|
463
|
-
name = "
|
|
464
|
-
version = "2.0
|
|
465
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
-
checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
|
|
467
|
-
dependencies = [
|
|
468
|
-
"cfg-if 0.1.10",
|
|
469
|
-
"dirs-sys",
|
|
470
|
-
]
|
|
471
|
-
|
|
472
|
-
[[package]]
|
|
473
|
-
name = "dirs-sys"
|
|
474
|
-
version = "0.3.7"
|
|
740
|
+
name = "dispatch"
|
|
741
|
+
version = "0.2.0"
|
|
475
742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
-
checksum = "
|
|
477
|
-
dependencies = [
|
|
478
|
-
"libc",
|
|
479
|
-
"redox_users",
|
|
480
|
-
"winapi 0.3.9",
|
|
481
|
-
]
|
|
743
|
+
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
|
|
482
744
|
|
|
483
745
|
[[package]]
|
|
484
746
|
name = "dispatch2"
|
|
@@ -486,8 +748,8 @@ version = "0.3.1"
|
|
|
486
748
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
749
|
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
488
750
|
dependencies = [
|
|
489
|
-
"bitflags",
|
|
490
|
-
"objc2",
|
|
751
|
+
"bitflags 2.11.1",
|
|
752
|
+
"objc2 0.6.4",
|
|
491
753
|
]
|
|
492
754
|
|
|
493
755
|
[[package]]
|
|
@@ -502,84 +764,323 @@ dependencies = [
|
|
|
502
764
|
]
|
|
503
765
|
|
|
504
766
|
[[package]]
|
|
505
|
-
name = "
|
|
506
|
-
version = "
|
|
767
|
+
name = "dlib"
|
|
768
|
+
version = "0.5.3"
|
|
507
769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
-
checksum = "
|
|
770
|
+
checksum = "ab8ecd87370524b461f8557c119c405552c396ed91fc0a8eec68679eab26f94a"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"libloading 0.8.9",
|
|
773
|
+
]
|
|
509
774
|
|
|
510
775
|
[[package]]
|
|
511
|
-
name = "
|
|
512
|
-
version = "0.
|
|
776
|
+
name = "document-features"
|
|
777
|
+
version = "0.2.12"
|
|
513
778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
-
checksum = "
|
|
779
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
515
780
|
dependencies = [
|
|
516
|
-
"
|
|
517
|
-
"quote",
|
|
518
|
-
"syn 1.0.109",
|
|
781
|
+
"litrs",
|
|
519
782
|
]
|
|
520
783
|
|
|
521
784
|
[[package]]
|
|
522
|
-
name = "
|
|
523
|
-
version = "1.
|
|
785
|
+
name = "downcast-rs"
|
|
786
|
+
version = "1.2.1"
|
|
524
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
-
checksum = "
|
|
788
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
526
789
|
|
|
527
790
|
[[package]]
|
|
528
|
-
name = "
|
|
529
|
-
version = "0.
|
|
791
|
+
name = "dpi"
|
|
792
|
+
version = "0.1.2"
|
|
530
793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
-
checksum = "
|
|
532
|
-
dependencies = [
|
|
533
|
-
"libc",
|
|
534
|
-
"windows-sys 0.61.2",
|
|
535
|
-
]
|
|
794
|
+
checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
|
|
536
795
|
|
|
537
796
|
[[package]]
|
|
538
|
-
name = "
|
|
539
|
-
version = "
|
|
797
|
+
name = "drm"
|
|
798
|
+
version = "0.14.1"
|
|
540
799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
-
checksum = "
|
|
800
|
+
checksum = "80bc8c5c6c2941f70a55c15f8d9f00f9710ebda3ffda98075f996a0e6c92756f"
|
|
801
|
+
dependencies = [
|
|
802
|
+
"bitflags 2.11.1",
|
|
803
|
+
"bytemuck",
|
|
804
|
+
"drm-ffi",
|
|
805
|
+
"drm-fourcc",
|
|
806
|
+
"libc",
|
|
807
|
+
"rustix 0.38.44",
|
|
808
|
+
]
|
|
542
809
|
|
|
543
810
|
[[package]]
|
|
544
|
-
name = "
|
|
545
|
-
version = "0.
|
|
811
|
+
name = "drm-ffi"
|
|
812
|
+
version = "0.9.1"
|
|
546
813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
-
checksum = "
|
|
814
|
+
checksum = "51a91c9b32ac4e8105dec255e849e0d66e27d7c34d184364fb93e469db08f690"
|
|
548
815
|
dependencies = [
|
|
549
|
-
"
|
|
816
|
+
"drm-sys",
|
|
817
|
+
"rustix 1.1.4",
|
|
550
818
|
]
|
|
551
819
|
|
|
552
820
|
[[package]]
|
|
553
|
-
name = "
|
|
554
|
-
version = "
|
|
821
|
+
name = "drm-fourcc"
|
|
822
|
+
version = "2.2.0"
|
|
555
823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
-
checksum = "
|
|
824
|
+
checksum = "0aafbcdb8afc29c1a7ee5fbe53b5d62f4565b35a042a662ca9fecd0b54dae6f4"
|
|
557
825
|
|
|
558
826
|
[[package]]
|
|
559
|
-
name = "
|
|
560
|
-
version = "
|
|
827
|
+
name = "drm-sys"
|
|
828
|
+
version = "0.8.1"
|
|
561
829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
-
checksum = "
|
|
830
|
+
checksum = "ecc8e1361066d91f5ffccff060a3c3be9c3ecde15be2959c1937595f7a82a9f8"
|
|
563
831
|
dependencies = [
|
|
564
|
-
"
|
|
565
|
-
"
|
|
566
|
-
"zlib-rs",
|
|
832
|
+
"libc",
|
|
833
|
+
"linux-raw-sys 0.9.4",
|
|
567
834
|
]
|
|
568
835
|
|
|
569
836
|
[[package]]
|
|
570
|
-
name = "
|
|
571
|
-
version = "
|
|
837
|
+
name = "dtor"
|
|
838
|
+
version = "0.8.1"
|
|
572
839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
-
checksum = "
|
|
840
|
+
checksum = "edf234dd1594d6dd434a8fb8cada51ddbbc593e40e4a01556a0b31c62da2775b"
|
|
574
841
|
|
|
575
842
|
[[package]]
|
|
576
|
-
name = "
|
|
577
|
-
version = "0.
|
|
843
|
+
name = "dyn-clone"
|
|
844
|
+
version = "1.0.20"
|
|
578
845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
-
checksum = "
|
|
846
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
580
847
|
|
|
581
848
|
[[package]]
|
|
582
|
-
name = "
|
|
849
|
+
name = "either"
|
|
850
|
+
version = "1.16.0"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
853
|
+
|
|
854
|
+
[[package]]
|
|
855
|
+
name = "enum-map"
|
|
856
|
+
version = "2.7.3"
|
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
+
checksum = "6866f3bfdf8207509a033af1a75a7b08abda06bbaaeae6669323fd5a097df2e9"
|
|
859
|
+
dependencies = [
|
|
860
|
+
"enum-map-derive",
|
|
861
|
+
]
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "enum-map-derive"
|
|
865
|
+
version = "0.17.0"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "f282cfdfe92516eb26c2af8589c274c7c17681f5ecc03c18255fe741c6aa64eb"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"proc-macro2",
|
|
870
|
+
"quote",
|
|
871
|
+
"syn 2.0.117",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "equator"
|
|
876
|
+
version = "0.4.2"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"equator-macro",
|
|
881
|
+
]
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "equator-macro"
|
|
885
|
+
version = "0.4.2"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
|
|
888
|
+
dependencies = [
|
|
889
|
+
"proc-macro2",
|
|
890
|
+
"quote",
|
|
891
|
+
"syn 2.0.117",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "equivalent"
|
|
896
|
+
version = "1.0.2"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "errno"
|
|
902
|
+
version = "0.3.14"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"libc",
|
|
907
|
+
"windows-sys 0.61.2",
|
|
908
|
+
]
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "euclid"
|
|
912
|
+
version = "0.22.14"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"num-traits",
|
|
917
|
+
]
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "exr"
|
|
921
|
+
version = "1.74.0"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"bit_field",
|
|
926
|
+
"half",
|
|
927
|
+
"lebe",
|
|
928
|
+
"miniz_oxide",
|
|
929
|
+
"rayon-core",
|
|
930
|
+
"smallvec",
|
|
931
|
+
"zune-inflate",
|
|
932
|
+
]
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "fast_image_resize"
|
|
936
|
+
version = "6.0.0"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "12dd43e5011e8d8411a3215a0d57a2ec5c68282fb90eb5d7221fab0113442174"
|
|
939
|
+
dependencies = [
|
|
940
|
+
"cfg-if",
|
|
941
|
+
"document-features",
|
|
942
|
+
"num-traits",
|
|
943
|
+
"thiserror 2.0.18",
|
|
944
|
+
]
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "fastrand"
|
|
948
|
+
version = "2.4.1"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "fdeflate"
|
|
954
|
+
version = "0.3.7"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"simd-adler32",
|
|
959
|
+
]
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "find-msvc-tools"
|
|
963
|
+
version = "0.1.9"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "flate2"
|
|
969
|
+
version = "1.1.9"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
972
|
+
dependencies = [
|
|
973
|
+
"crc32fast",
|
|
974
|
+
"miniz_oxide",
|
|
975
|
+
"zlib-rs",
|
|
976
|
+
]
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "fluent"
|
|
980
|
+
version = "0.17.0"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "8137a6d5a2c50d6b0ebfcb9aaa91a28154e0a70605f112d30cb0cd4a78670477"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"fluent-bundle",
|
|
985
|
+
"unic-langid",
|
|
986
|
+
]
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "fluent-bundle"
|
|
990
|
+
version = "0.16.0"
|
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
+
checksum = "01203cb8918f5711e73891b347816d932046f95f54207710bda99beaeb423bf4"
|
|
993
|
+
dependencies = [
|
|
994
|
+
"fluent-langneg 0.13.1",
|
|
995
|
+
"fluent-syntax",
|
|
996
|
+
"intl-memoizer",
|
|
997
|
+
"intl_pluralrules",
|
|
998
|
+
"rustc-hash",
|
|
999
|
+
"self_cell",
|
|
1000
|
+
"smallvec",
|
|
1001
|
+
"unic-langid",
|
|
1002
|
+
]
|
|
1003
|
+
|
|
1004
|
+
[[package]]
|
|
1005
|
+
name = "fluent-langneg"
|
|
1006
|
+
version = "0.13.1"
|
|
1007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1008
|
+
checksum = "7eebbe59450baee8282d71676f3bfed5689aeab00b27545e83e5f14b1195e8b0"
|
|
1009
|
+
dependencies = [
|
|
1010
|
+
"unic-langid",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "fluent-langneg"
|
|
1015
|
+
version = "0.14.2"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "1d5439a5e4ef14dc761bfe1d6ecbc4ba6fd698814ee65e7e623fa85aa9348dcc"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"icu_locid",
|
|
1020
|
+
"icu_locid_transform",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "fluent-syntax"
|
|
1025
|
+
version = "0.12.0"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "54f0d287c53ffd184d04d8677f590f4ac5379785529e5e08b1c8083acdd5c198"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"memchr",
|
|
1030
|
+
"thiserror 2.0.18",
|
|
1031
|
+
]
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "fnv"
|
|
1035
|
+
version = "1.0.7"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "foldhash"
|
|
1041
|
+
version = "0.1.5"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "fontdue"
|
|
1047
|
+
version = "0.9.3"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "2e57e16b3fe8ff4364c0661fdaac543fb38b29ea9bc9c2f45612d90adf931d2b"
|
|
1050
|
+
dependencies = [
|
|
1051
|
+
"hashbrown 0.15.5",
|
|
1052
|
+
"ttf-parser 0.21.1",
|
|
1053
|
+
]
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "foreign-types"
|
|
1057
|
+
version = "0.5.0"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"foreign-types-macros",
|
|
1062
|
+
"foreign-types-shared",
|
|
1063
|
+
]
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "foreign-types-macros"
|
|
1067
|
+
version = "0.2.3"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
|
1070
|
+
dependencies = [
|
|
1071
|
+
"proc-macro2",
|
|
1072
|
+
"quote",
|
|
1073
|
+
"syn 2.0.117",
|
|
1074
|
+
]
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "foreign-types-shared"
|
|
1078
|
+
version = "0.3.1"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
1081
|
+
|
|
1082
|
+
[[package]]
|
|
1083
|
+
name = "form_urlencoded"
|
|
583
1084
|
version = "1.2.2"
|
|
584
1085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
1086
|
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
@@ -594,7 +1095,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
594
1095
|
checksum = "14af6c9694ea25db25baa2a1788703b9e7c6648dcaeeebeb98f7561b5384c036"
|
|
595
1096
|
dependencies = [
|
|
596
1097
|
"aligned",
|
|
597
|
-
"cfg-if
|
|
1098
|
+
"cfg-if",
|
|
598
1099
|
"cvt",
|
|
599
1100
|
"libc",
|
|
600
1101
|
"nix 0.29.0",
|
|
@@ -614,7 +1115,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
614
1115
|
checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
|
|
615
1116
|
dependencies = [
|
|
616
1117
|
"libc",
|
|
617
|
-
"winapi
|
|
1118
|
+
"winapi",
|
|
618
1119
|
]
|
|
619
1120
|
|
|
620
1121
|
[[package]]
|
|
@@ -652,13 +1153,23 @@ dependencies = [
|
|
|
652
1153
|
"slab",
|
|
653
1154
|
]
|
|
654
1155
|
|
|
1156
|
+
[[package]]
|
|
1157
|
+
name = "gethostname"
|
|
1158
|
+
version = "1.1.0"
|
|
1159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
+
checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
|
|
1161
|
+
dependencies = [
|
|
1162
|
+
"rustix 1.1.4",
|
|
1163
|
+
"windows-link",
|
|
1164
|
+
]
|
|
1165
|
+
|
|
655
1166
|
[[package]]
|
|
656
1167
|
name = "getrandom"
|
|
657
1168
|
version = "0.2.17"
|
|
658
1169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
1170
|
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
660
1171
|
dependencies = [
|
|
661
|
-
"cfg-if
|
|
1172
|
+
"cfg-if",
|
|
662
1173
|
"libc",
|
|
663
1174
|
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
664
1175
|
]
|
|
@@ -669,7 +1180,7 @@ version = "0.3.4"
|
|
|
669
1180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
1181
|
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
671
1182
|
dependencies = [
|
|
672
|
-
"cfg-if
|
|
1183
|
+
"cfg-if",
|
|
673
1184
|
"libc",
|
|
674
1185
|
"r-efi 5.3.0",
|
|
675
1186
|
"wasip2",
|
|
@@ -681,19 +1192,19 @@ version = "0.4.2"
|
|
|
681
1192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
1193
|
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
683
1194
|
dependencies = [
|
|
684
|
-
"cfg-if
|
|
1195
|
+
"cfg-if",
|
|
685
1196
|
"libc",
|
|
686
1197
|
"r-efi 6.0.0",
|
|
687
|
-
"rand_core",
|
|
1198
|
+
"rand_core 0.10.1",
|
|
688
1199
|
"wasip2",
|
|
689
1200
|
"wasip3",
|
|
690
1201
|
]
|
|
691
1202
|
|
|
692
1203
|
[[package]]
|
|
693
1204
|
name = "gif"
|
|
694
|
-
version = "0.14.
|
|
1205
|
+
version = "0.14.2"
|
|
695
1206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
-
checksum = "
|
|
1207
|
+
checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
|
|
697
1208
|
dependencies = [
|
|
698
1209
|
"color_quant",
|
|
699
1210
|
"weezl",
|
|
@@ -705,20 +1216,33 @@ version = "0.3.3"
|
|
|
705
1216
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
1217
|
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
707
1218
|
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "half"
|
|
1221
|
+
version = "2.7.1"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1224
|
+
dependencies = [
|
|
1225
|
+
"cfg-if",
|
|
1226
|
+
"crunchy",
|
|
1227
|
+
"zerocopy",
|
|
1228
|
+
]
|
|
1229
|
+
|
|
708
1230
|
[[package]]
|
|
709
1231
|
name = "hashbrown"
|
|
710
1232
|
version = "0.15.5"
|
|
711
1233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
1234
|
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
713
1235
|
dependencies = [
|
|
1236
|
+
"allocator-api2",
|
|
1237
|
+
"equivalent",
|
|
714
1238
|
"foldhash",
|
|
715
1239
|
]
|
|
716
1240
|
|
|
717
1241
|
[[package]]
|
|
718
1242
|
name = "hashbrown"
|
|
719
|
-
version = "0.
|
|
1243
|
+
version = "0.17.1"
|
|
720
1244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
-
checksum = "
|
|
1245
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
722
1246
|
|
|
723
1247
|
[[package]]
|
|
724
1248
|
name = "heck"
|
|
@@ -726,6 +1250,12 @@ version = "0.5.0"
|
|
|
726
1250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
1251
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
728
1252
|
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "hermit-abi"
|
|
1255
|
+
version = "0.5.2"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1258
|
+
|
|
729
1259
|
[[package]]
|
|
730
1260
|
name = "http"
|
|
731
1261
|
version = "1.4.0"
|
|
@@ -744,9 +1274,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
|
744
1274
|
|
|
745
1275
|
[[package]]
|
|
746
1276
|
name = "hybrid-array"
|
|
747
|
-
version = "0.4.
|
|
1277
|
+
version = "0.4.12"
|
|
748
1278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
-
checksum = "
|
|
1279
|
+
checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
|
|
750
1280
|
dependencies = [
|
|
751
1281
|
"typenum",
|
|
752
1282
|
]
|
|
@@ -777,83 +1307,145 @@ dependencies = [
|
|
|
777
1307
|
|
|
778
1308
|
[[package]]
|
|
779
1309
|
name = "icu_collections"
|
|
780
|
-
version = "2.
|
|
1310
|
+
version = "2.2.0"
|
|
781
1311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
-
checksum = "
|
|
1312
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
783
1313
|
dependencies = [
|
|
784
1314
|
"displaydoc",
|
|
785
1315
|
"potential_utf",
|
|
786
|
-
"
|
|
1316
|
+
"utf8_iter",
|
|
1317
|
+
"yoke 0.8.2",
|
|
787
1318
|
"zerofrom",
|
|
788
|
-
"zerovec",
|
|
1319
|
+
"zerovec 0.11.6",
|
|
789
1320
|
]
|
|
790
1321
|
|
|
791
1322
|
[[package]]
|
|
792
1323
|
name = "icu_locale_core"
|
|
793
|
-
version = "2.
|
|
1324
|
+
version = "2.2.0"
|
|
794
1325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
-
checksum = "
|
|
1326
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
796
1327
|
dependencies = [
|
|
797
1328
|
"displaydoc",
|
|
798
|
-
"litemap",
|
|
799
|
-
"tinystr",
|
|
800
|
-
"writeable",
|
|
801
|
-
"zerovec",
|
|
1329
|
+
"litemap 0.8.2",
|
|
1330
|
+
"tinystr 0.8.3",
|
|
1331
|
+
"writeable 0.6.3",
|
|
1332
|
+
"zerovec 0.11.6",
|
|
802
1333
|
]
|
|
803
1334
|
|
|
1335
|
+
[[package]]
|
|
1336
|
+
name = "icu_locid"
|
|
1337
|
+
version = "1.5.0"
|
|
1338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1339
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
|
1340
|
+
dependencies = [
|
|
1341
|
+
"displaydoc",
|
|
1342
|
+
"litemap 0.7.5",
|
|
1343
|
+
"tinystr 0.7.6",
|
|
1344
|
+
"writeable 0.5.5",
|
|
1345
|
+
"zerovec 0.10.4",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "icu_locid_transform"
|
|
1350
|
+
version = "1.5.0"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"displaydoc",
|
|
1355
|
+
"icu_locid",
|
|
1356
|
+
"icu_locid_transform_data",
|
|
1357
|
+
"icu_provider 1.5.0",
|
|
1358
|
+
"tinystr 0.7.6",
|
|
1359
|
+
"zerovec 0.10.4",
|
|
1360
|
+
]
|
|
1361
|
+
|
|
1362
|
+
[[package]]
|
|
1363
|
+
name = "icu_locid_transform_data"
|
|
1364
|
+
version = "1.5.1"
|
|
1365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
+
checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d"
|
|
1367
|
+
|
|
804
1368
|
[[package]]
|
|
805
1369
|
name = "icu_normalizer"
|
|
806
|
-
version = "2.
|
|
1370
|
+
version = "2.2.0"
|
|
807
1371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
-
checksum = "
|
|
1372
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
809
1373
|
dependencies = [
|
|
810
1374
|
"icu_collections",
|
|
811
1375
|
"icu_normalizer_data",
|
|
812
1376
|
"icu_properties",
|
|
813
|
-
"icu_provider",
|
|
1377
|
+
"icu_provider 2.2.0",
|
|
814
1378
|
"smallvec",
|
|
815
|
-
"zerovec",
|
|
1379
|
+
"zerovec 0.11.6",
|
|
816
1380
|
]
|
|
817
1381
|
|
|
818
1382
|
[[package]]
|
|
819
1383
|
name = "icu_normalizer_data"
|
|
820
|
-
version = "2.
|
|
1384
|
+
version = "2.2.0"
|
|
821
1385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
-
checksum = "
|
|
1386
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
823
1387
|
|
|
824
1388
|
[[package]]
|
|
825
1389
|
name = "icu_properties"
|
|
826
|
-
version = "2.
|
|
1390
|
+
version = "2.2.0"
|
|
827
1391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
-
checksum = "
|
|
1392
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
829
1393
|
dependencies = [
|
|
830
1394
|
"icu_collections",
|
|
831
1395
|
"icu_locale_core",
|
|
832
1396
|
"icu_properties_data",
|
|
833
|
-
"icu_provider",
|
|
1397
|
+
"icu_provider 2.2.0",
|
|
834
1398
|
"zerotrie",
|
|
835
|
-
"zerovec",
|
|
1399
|
+
"zerovec 0.11.6",
|
|
836
1400
|
]
|
|
837
1401
|
|
|
838
1402
|
[[package]]
|
|
839
1403
|
name = "icu_properties_data"
|
|
840
|
-
version = "2.
|
|
1404
|
+
version = "2.2.0"
|
|
841
1405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
-
checksum = "
|
|
1406
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
843
1407
|
|
|
844
1408
|
[[package]]
|
|
845
1409
|
name = "icu_provider"
|
|
846
|
-
version = "
|
|
1410
|
+
version = "1.5.0"
|
|
1411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
|
1413
|
+
dependencies = [
|
|
1414
|
+
"displaydoc",
|
|
1415
|
+
"icu_locid",
|
|
1416
|
+
"icu_provider_macros",
|
|
1417
|
+
"stable_deref_trait",
|
|
1418
|
+
"tinystr 0.7.6",
|
|
1419
|
+
"writeable 0.5.5",
|
|
1420
|
+
"yoke 0.7.5",
|
|
1421
|
+
"zerofrom",
|
|
1422
|
+
"zerovec 0.10.4",
|
|
1423
|
+
]
|
|
1424
|
+
|
|
1425
|
+
[[package]]
|
|
1426
|
+
name = "icu_provider"
|
|
1427
|
+
version = "2.2.0"
|
|
847
1428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
-
checksum = "
|
|
1429
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
849
1430
|
dependencies = [
|
|
850
1431
|
"displaydoc",
|
|
851
1432
|
"icu_locale_core",
|
|
852
|
-
"writeable",
|
|
853
|
-
"yoke",
|
|
1433
|
+
"writeable 0.6.3",
|
|
1434
|
+
"yoke 0.8.2",
|
|
854
1435
|
"zerofrom",
|
|
855
1436
|
"zerotrie",
|
|
856
|
-
"zerovec",
|
|
1437
|
+
"zerovec 0.11.6",
|
|
1438
|
+
]
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "icu_provider_macros"
|
|
1442
|
+
version = "1.5.0"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"proc-macro2",
|
|
1447
|
+
"quote",
|
|
1448
|
+
"syn 2.0.117",
|
|
857
1449
|
]
|
|
858
1450
|
|
|
859
1451
|
[[package]]
|
|
@@ -881,9 +1473,9 @@ dependencies = [
|
|
|
881
1473
|
|
|
882
1474
|
[[package]]
|
|
883
1475
|
name = "idna_adapter"
|
|
884
|
-
version = "1.2.
|
|
1476
|
+
version = "1.2.2"
|
|
885
1477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
-
checksum = "
|
|
1478
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
887
1479
|
dependencies = [
|
|
888
1480
|
"icu_normalizer",
|
|
889
1481
|
"icu_properties",
|
|
@@ -898,38 +1490,144 @@ dependencies = [
|
|
|
898
1490
|
"bytemuck",
|
|
899
1491
|
"byteorder-lite",
|
|
900
1492
|
"color_quant",
|
|
1493
|
+
"exr",
|
|
901
1494
|
"gif",
|
|
902
1495
|
"moxcms",
|
|
903
1496
|
"num-traits",
|
|
904
1497
|
"png",
|
|
1498
|
+
"ravif",
|
|
1499
|
+
"rayon",
|
|
905
1500
|
"zune-core",
|
|
906
1501
|
"zune-jpeg",
|
|
907
1502
|
]
|
|
908
1503
|
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "imgref"
|
|
1506
|
+
version = "1.12.1"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "40fac9d56ed6437b198fddba683305e8e2d651aa42647f00f5ae542e7f5c94a2"
|
|
1509
|
+
|
|
909
1510
|
[[package]]
|
|
910
1511
|
name = "indexmap"
|
|
911
|
-
version = "2.
|
|
1512
|
+
version = "2.14.0"
|
|
912
1513
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
-
checksum = "
|
|
1514
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
914
1515
|
dependencies = [
|
|
915
1516
|
"equivalent",
|
|
916
|
-
"hashbrown 0.
|
|
1517
|
+
"hashbrown 0.17.1",
|
|
917
1518
|
"serde",
|
|
918
1519
|
"serde_core",
|
|
919
1520
|
]
|
|
920
1521
|
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "interpolate_name"
|
|
1524
|
+
version = "0.2.4"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
|
|
1527
|
+
dependencies = [
|
|
1528
|
+
"proc-macro2",
|
|
1529
|
+
"quote",
|
|
1530
|
+
"syn 2.0.117",
|
|
1531
|
+
]
|
|
1532
|
+
|
|
1533
|
+
[[package]]
|
|
1534
|
+
name = "intl-memoizer"
|
|
1535
|
+
version = "0.5.3"
|
|
1536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1537
|
+
checksum = "310da2e345f5eb861e7a07ee182262e94975051db9e4223e909ba90f392f163f"
|
|
1538
|
+
dependencies = [
|
|
1539
|
+
"type-map",
|
|
1540
|
+
"unic-langid",
|
|
1541
|
+
]
|
|
1542
|
+
|
|
1543
|
+
[[package]]
|
|
1544
|
+
name = "intl_pluralrules"
|
|
1545
|
+
version = "7.0.2"
|
|
1546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
+
checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972"
|
|
1548
|
+
dependencies = [
|
|
1549
|
+
"unic-langid",
|
|
1550
|
+
]
|
|
1551
|
+
|
|
921
1552
|
[[package]]
|
|
922
1553
|
name = "is_terminal_polyfill"
|
|
923
1554
|
version = "1.70.2"
|
|
924
1555
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
1556
|
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
926
1557
|
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "itertools"
|
|
1560
|
+
version = "0.14.0"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"either",
|
|
1565
|
+
]
|
|
1566
|
+
|
|
927
1567
|
[[package]]
|
|
928
1568
|
name = "itoa"
|
|
929
1569
|
version = "1.0.18"
|
|
930
1570
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
1571
|
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
932
1572
|
|
|
1573
|
+
[[package]]
|
|
1574
|
+
name = "jni"
|
|
1575
|
+
version = "0.22.4"
|
|
1576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1577
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
1578
|
+
dependencies = [
|
|
1579
|
+
"cfg-if",
|
|
1580
|
+
"combine",
|
|
1581
|
+
"jni-macros",
|
|
1582
|
+
"jni-sys 0.4.1",
|
|
1583
|
+
"log",
|
|
1584
|
+
"simd_cesu8",
|
|
1585
|
+
"thiserror 2.0.18",
|
|
1586
|
+
"walkdir",
|
|
1587
|
+
"windows-link",
|
|
1588
|
+
]
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "jni-macros"
|
|
1592
|
+
version = "0.22.4"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
1595
|
+
dependencies = [
|
|
1596
|
+
"proc-macro2",
|
|
1597
|
+
"quote",
|
|
1598
|
+
"rustc_version",
|
|
1599
|
+
"simd_cesu8",
|
|
1600
|
+
"syn 2.0.117",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
1603
|
+
[[package]]
|
|
1604
|
+
name = "jni-sys"
|
|
1605
|
+
version = "0.3.1"
|
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
+
checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
|
|
1608
|
+
dependencies = [
|
|
1609
|
+
"jni-sys 0.4.1",
|
|
1610
|
+
]
|
|
1611
|
+
|
|
1612
|
+
[[package]]
|
|
1613
|
+
name = "jni-sys"
|
|
1614
|
+
version = "0.4.1"
|
|
1615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
1617
|
+
dependencies = [
|
|
1618
|
+
"jni-sys-macros",
|
|
1619
|
+
]
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "jni-sys-macros"
|
|
1623
|
+
version = "0.4.1"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
1626
|
+
dependencies = [
|
|
1627
|
+
"quote",
|
|
1628
|
+
"syn 2.0.117",
|
|
1629
|
+
]
|
|
1630
|
+
|
|
933
1631
|
[[package]]
|
|
934
1632
|
name = "jobserver"
|
|
935
1633
|
version = "0.1.34"
|
|
@@ -942,24 +1640,16 @@ dependencies = [
|
|
|
942
1640
|
|
|
943
1641
|
[[package]]
|
|
944
1642
|
name = "js-sys"
|
|
945
|
-
version = "0.3.
|
|
1643
|
+
version = "0.3.99"
|
|
946
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
-
checksum = "
|
|
1645
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
948
1646
|
dependencies = [
|
|
1647
|
+
"cfg-if",
|
|
1648
|
+
"futures-util",
|
|
949
1649
|
"once_cell",
|
|
950
1650
|
"wasm-bindgen",
|
|
951
1651
|
]
|
|
952
1652
|
|
|
953
|
-
[[package]]
|
|
954
|
-
name = "kernel32-sys"
|
|
955
|
-
version = "0.2.2"
|
|
956
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
957
|
-
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
|
|
958
|
-
dependencies = [
|
|
959
|
-
"winapi 0.2.8",
|
|
960
|
-
"winapi-build",
|
|
961
|
-
]
|
|
962
|
-
|
|
963
1653
|
[[package]]
|
|
964
1654
|
name = "lazy_static"
|
|
965
1655
|
version = "1.5.0"
|
|
@@ -972,11 +1662,27 @@ version = "0.1.0"
|
|
|
972
1662
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
1663
|
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
974
1664
|
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "lebe"
|
|
1667
|
+
version = "0.5.3"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
|
|
1670
|
+
|
|
975
1671
|
[[package]]
|
|
976
1672
|
name = "libc"
|
|
977
|
-
version = "0.2.
|
|
1673
|
+
version = "0.2.186"
|
|
1674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1676
|
+
|
|
1677
|
+
[[package]]
|
|
1678
|
+
name = "libfuzzer-sys"
|
|
1679
|
+
version = "0.4.12"
|
|
978
1680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
-
checksum = "
|
|
1681
|
+
checksum = "f12a681b7dd8ce12bff52488013ba614b869148d54dd79836ab85aafdd53f08d"
|
|
1682
|
+
dependencies = [
|
|
1683
|
+
"arbitrary",
|
|
1684
|
+
"cc",
|
|
1685
|
+
]
|
|
980
1686
|
|
|
981
1687
|
[[package]]
|
|
982
1688
|
name = "libloading"
|
|
@@ -984,7 +1690,7 @@ version = "0.8.9"
|
|
|
984
1690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
1691
|
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
986
1692
|
dependencies = [
|
|
987
|
-
"cfg-if
|
|
1693
|
+
"cfg-if",
|
|
988
1694
|
"windows-link",
|
|
989
1695
|
]
|
|
990
1696
|
|
|
@@ -994,39 +1700,60 @@ version = "0.9.0"
|
|
|
994
1700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
1701
|
checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
|
|
996
1702
|
dependencies = [
|
|
997
|
-
"cfg-if
|
|
1703
|
+
"cfg-if",
|
|
998
1704
|
"windows-link",
|
|
999
1705
|
]
|
|
1000
1706
|
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "libm"
|
|
1709
|
+
version = "0.2.16"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1712
|
+
|
|
1001
1713
|
[[package]]
|
|
1002
1714
|
name = "libredox"
|
|
1003
|
-
version = "0.1.
|
|
1715
|
+
version = "0.1.16"
|
|
1004
1716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
-
checksum = "
|
|
1717
|
+
checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
|
|
1006
1718
|
dependencies = [
|
|
1719
|
+
"bitflags 2.11.1",
|
|
1007
1720
|
"libc",
|
|
1721
|
+
"plain",
|
|
1722
|
+
"redox_syscall 0.7.5",
|
|
1008
1723
|
]
|
|
1009
1724
|
|
|
1010
1725
|
[[package]]
|
|
1011
1726
|
name = "linkme"
|
|
1012
|
-
version = "0.3.
|
|
1727
|
+
version = "0.3.36"
|
|
1013
1728
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1014
|
-
checksum = "
|
|
1729
|
+
checksum = "e83272d46373fb8decca684579ac3e7c8f3d71d4cc3aa693df8759e260ae41cf"
|
|
1015
1730
|
dependencies = [
|
|
1016
1731
|
"linkme-impl",
|
|
1017
1732
|
]
|
|
1018
1733
|
|
|
1019
1734
|
[[package]]
|
|
1020
1735
|
name = "linkme-impl"
|
|
1021
|
-
version = "0.3.
|
|
1736
|
+
version = "0.3.36"
|
|
1022
1737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
-
checksum = "
|
|
1738
|
+
checksum = "32d59e20403c7d08fe62b4376edfe5c7fb2ef1e6b1465379686d0f21c8df444b"
|
|
1024
1739
|
dependencies = [
|
|
1025
1740
|
"proc-macro2",
|
|
1026
1741
|
"quote",
|
|
1027
1742
|
"syn 2.0.117",
|
|
1028
1743
|
]
|
|
1029
1744
|
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "linux-raw-sys"
|
|
1747
|
+
version = "0.4.15"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1750
|
+
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "linux-raw-sys"
|
|
1753
|
+
version = "0.9.4"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1756
|
+
|
|
1030
1757
|
[[package]]
|
|
1031
1758
|
name = "linux-raw-sys"
|
|
1032
1759
|
version = "0.12.1"
|
|
@@ -1035,9 +1762,21 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
|
1035
1762
|
|
|
1036
1763
|
[[package]]
|
|
1037
1764
|
name = "litemap"
|
|
1038
|
-
version = "0.
|
|
1765
|
+
version = "0.7.5"
|
|
1766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
+
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
|
1768
|
+
|
|
1769
|
+
[[package]]
|
|
1770
|
+
name = "litemap"
|
|
1771
|
+
version = "0.8.2"
|
|
1772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1773
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1774
|
+
|
|
1775
|
+
[[package]]
|
|
1776
|
+
name = "litrs"
|
|
1777
|
+
version = "1.0.0"
|
|
1039
1778
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
-
checksum = "
|
|
1779
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
1041
1780
|
|
|
1042
1781
|
[[package]]
|
|
1043
1782
|
name = "lock_api"
|
|
@@ -1075,6 +1814,36 @@ dependencies = [
|
|
|
1075
1814
|
"log",
|
|
1076
1815
|
]
|
|
1077
1816
|
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "loop9"
|
|
1819
|
+
version = "0.1.5"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
|
|
1822
|
+
dependencies = [
|
|
1823
|
+
"imgref",
|
|
1824
|
+
]
|
|
1825
|
+
|
|
1826
|
+
[[package]]
|
|
1827
|
+
name = "lyon_geom"
|
|
1828
|
+
version = "1.0.19"
|
|
1829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
+
checksum = "4336502e29e32af93cf2dad2214ed6003c17ceb5bd499df77b1de663b9042b92"
|
|
1831
|
+
dependencies = [
|
|
1832
|
+
"arrayvec",
|
|
1833
|
+
"euclid",
|
|
1834
|
+
"num-traits",
|
|
1835
|
+
]
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "maybe-rayon"
|
|
1839
|
+
version = "0.1.1"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
|
|
1842
|
+
dependencies = [
|
|
1843
|
+
"cfg-if",
|
|
1844
|
+
"rayon",
|
|
1845
|
+
]
|
|
1846
|
+
|
|
1078
1847
|
[[package]]
|
|
1079
1848
|
name = "memchr"
|
|
1080
1849
|
version = "2.8.0"
|
|
@@ -1082,12 +1851,47 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1082
1851
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
1083
1852
|
|
|
1084
1853
|
[[package]]
|
|
1085
|
-
name = "memmap2"
|
|
1086
|
-
version = "0.9.10"
|
|
1854
|
+
name = "memmap2"
|
|
1855
|
+
version = "0.9.10"
|
|
1856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
+
checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
|
|
1858
|
+
dependencies = [
|
|
1859
|
+
"libc",
|
|
1860
|
+
]
|
|
1861
|
+
|
|
1862
|
+
[[package]]
|
|
1863
|
+
name = "mina"
|
|
1864
|
+
version = "0.1.1"
|
|
1865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
|
+
checksum = "3f1e1e5450f827906af2d92648d676c4f98e3b55386a19de27f559e00b73453d"
|
|
1867
|
+
dependencies = [
|
|
1868
|
+
"mina_core",
|
|
1869
|
+
"mina_macros",
|
|
1870
|
+
]
|
|
1871
|
+
|
|
1872
|
+
[[package]]
|
|
1873
|
+
name = "mina_core"
|
|
1874
|
+
version = "0.1.0"
|
|
1875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
+
checksum = "458d9494e13bcf370de31080d12fd4c2122aa6499fe48a062858b594a97dcb58"
|
|
1877
|
+
dependencies = [
|
|
1878
|
+
"dyn-clone",
|
|
1879
|
+
"enum-map",
|
|
1880
|
+
"lazy_static",
|
|
1881
|
+
"lyon_geom",
|
|
1882
|
+
"num-traits",
|
|
1883
|
+
]
|
|
1884
|
+
|
|
1885
|
+
[[package]]
|
|
1886
|
+
name = "mina_macros"
|
|
1887
|
+
version = "0.1.0"
|
|
1087
1888
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
-
checksum = "
|
|
1889
|
+
checksum = "d1f0a4392f22b5239d1238103b3f626132adc36e399bcf4eb65d84f9967a36c7"
|
|
1089
1890
|
dependencies = [
|
|
1090
|
-
"
|
|
1891
|
+
"mina_core",
|
|
1892
|
+
"proc-macro2",
|
|
1893
|
+
"quote",
|
|
1894
|
+
"syn 2.0.117",
|
|
1091
1895
|
]
|
|
1092
1896
|
|
|
1093
1897
|
[[package]]
|
|
@@ -1110,6 +1914,36 @@ dependencies = [
|
|
|
1110
1914
|
"pxfm",
|
|
1111
1915
|
]
|
|
1112
1916
|
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "ndk"
|
|
1919
|
+
version = "0.9.0"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
|
|
1922
|
+
dependencies = [
|
|
1923
|
+
"bitflags 2.11.1",
|
|
1924
|
+
"jni-sys 0.3.1",
|
|
1925
|
+
"log",
|
|
1926
|
+
"ndk-sys",
|
|
1927
|
+
"num_enum",
|
|
1928
|
+
"raw-window-handle",
|
|
1929
|
+
"thiserror 1.0.69",
|
|
1930
|
+
]
|
|
1931
|
+
|
|
1932
|
+
[[package]]
|
|
1933
|
+
name = "ndk-context"
|
|
1934
|
+
version = "0.1.1"
|
|
1935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1936
|
+
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
1937
|
+
|
|
1938
|
+
[[package]]
|
|
1939
|
+
name = "ndk-sys"
|
|
1940
|
+
version = "0.6.0+11769913"
|
|
1941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
+
checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
|
|
1943
|
+
dependencies = [
|
|
1944
|
+
"jni-sys 0.3.1",
|
|
1945
|
+
]
|
|
1946
|
+
|
|
1113
1947
|
[[package]]
|
|
1114
1948
|
name = "neon"
|
|
1115
1949
|
version = "1.1.1"
|
|
@@ -1138,35 +1972,65 @@ dependencies = [
|
|
|
1138
1972
|
"syn 2.0.117",
|
|
1139
1973
|
]
|
|
1140
1974
|
|
|
1975
|
+
[[package]]
|
|
1976
|
+
name = "new_debug_unreachable"
|
|
1977
|
+
version = "1.0.6"
|
|
1978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1979
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
1980
|
+
|
|
1141
1981
|
[[package]]
|
|
1142
1982
|
name = "nix"
|
|
1143
1983
|
version = "0.29.0"
|
|
1144
1984
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
1985
|
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
|
|
1146
1986
|
dependencies = [
|
|
1147
|
-
"bitflags",
|
|
1148
|
-
"cfg-if
|
|
1987
|
+
"bitflags 2.11.1",
|
|
1988
|
+
"cfg-if",
|
|
1149
1989
|
"cfg_aliases",
|
|
1150
1990
|
"libc",
|
|
1151
1991
|
]
|
|
1152
1992
|
|
|
1153
1993
|
[[package]]
|
|
1154
1994
|
name = "nix"
|
|
1155
|
-
version = "0.
|
|
1995
|
+
version = "0.31.3"
|
|
1156
1996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
-
checksum = "
|
|
1997
|
+
checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
|
|
1158
1998
|
dependencies = [
|
|
1159
|
-
"bitflags",
|
|
1160
|
-
"cfg-if
|
|
1999
|
+
"bitflags 2.11.1",
|
|
2000
|
+
"cfg-if",
|
|
1161
2001
|
"cfg_aliases",
|
|
1162
2002
|
"libc",
|
|
1163
2003
|
]
|
|
1164
2004
|
|
|
2005
|
+
[[package]]
|
|
2006
|
+
name = "no_std_io2"
|
|
2007
|
+
version = "0.9.4"
|
|
2008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
+
checksum = "418abd1b6d34fbf6cae440dc874771b0525a604428704c76e48b29a5e67b8003"
|
|
2010
|
+
dependencies = [
|
|
2011
|
+
"memchr",
|
|
2012
|
+
]
|
|
2013
|
+
|
|
2014
|
+
[[package]]
|
|
2015
|
+
name = "nom"
|
|
2016
|
+
version = "8.0.0"
|
|
2017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2018
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
2019
|
+
dependencies = [
|
|
2020
|
+
"memchr",
|
|
2021
|
+
]
|
|
2022
|
+
|
|
2023
|
+
[[package]]
|
|
2024
|
+
name = "noop_proc_macro"
|
|
2025
|
+
version = "0.3.0"
|
|
2026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2027
|
+
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
|
|
2028
|
+
|
|
1165
2029
|
[[package]]
|
|
1166
2030
|
name = "normpath"
|
|
1167
|
-
version = "1.5.
|
|
2031
|
+
version = "1.5.1"
|
|
1168
2032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
-
checksum = "
|
|
2033
|
+
checksum = "b9985ef7269fa99f3b12437bb698381da2428743ab90f20393f399fa14cab21a"
|
|
1170
2034
|
dependencies = [
|
|
1171
2035
|
"windows-sys 0.61.2",
|
|
1172
2036
|
]
|
|
@@ -1204,11 +2068,52 @@ dependencies = [
|
|
|
1204
2068
|
"syn 1.0.109",
|
|
1205
2069
|
]
|
|
1206
2070
|
|
|
2071
|
+
[[package]]
|
|
2072
|
+
name = "num-bigint"
|
|
2073
|
+
version = "0.4.6"
|
|
2074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2075
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
2076
|
+
dependencies = [
|
|
2077
|
+
"num-integer",
|
|
2078
|
+
"num-traits",
|
|
2079
|
+
]
|
|
2080
|
+
|
|
1207
2081
|
[[package]]
|
|
1208
2082
|
name = "num-conv"
|
|
1209
|
-
version = "0.2.
|
|
2083
|
+
version = "0.2.2"
|
|
2084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2085
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
2086
|
+
|
|
2087
|
+
[[package]]
|
|
2088
|
+
name = "num-derive"
|
|
2089
|
+
version = "0.4.2"
|
|
2090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2091
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
2092
|
+
dependencies = [
|
|
2093
|
+
"proc-macro2",
|
|
2094
|
+
"quote",
|
|
2095
|
+
"syn 2.0.117",
|
|
2096
|
+
]
|
|
2097
|
+
|
|
2098
|
+
[[package]]
|
|
2099
|
+
name = "num-integer"
|
|
2100
|
+
version = "0.1.46"
|
|
2101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2102
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2103
|
+
dependencies = [
|
|
2104
|
+
"num-traits",
|
|
2105
|
+
]
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "num-rational"
|
|
2109
|
+
version = "0.4.2"
|
|
1210
2110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
-
checksum = "
|
|
2111
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
2112
|
+
dependencies = [
|
|
2113
|
+
"num-bigint",
|
|
2114
|
+
"num-integer",
|
|
2115
|
+
"num-traits",
|
|
2116
|
+
]
|
|
1212
2117
|
|
|
1213
2118
|
[[package]]
|
|
1214
2119
|
name = "num-traits"
|
|
@@ -1217,6 +2122,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1217
2122
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1218
2123
|
dependencies = [
|
|
1219
2124
|
"autocfg",
|
|
2125
|
+
"libm",
|
|
2126
|
+
]
|
|
2127
|
+
|
|
2128
|
+
[[package]]
|
|
2129
|
+
name = "num_enum"
|
|
2130
|
+
version = "0.7.6"
|
|
2131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2132
|
+
checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
|
|
2133
|
+
dependencies = [
|
|
2134
|
+
"num_enum_derive",
|
|
2135
|
+
"rustversion",
|
|
2136
|
+
]
|
|
2137
|
+
|
|
2138
|
+
[[package]]
|
|
2139
|
+
name = "num_enum_derive"
|
|
2140
|
+
version = "0.7.6"
|
|
2141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
+
checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
|
|
2143
|
+
dependencies = [
|
|
2144
|
+
"proc-macro-crate",
|
|
2145
|
+
"proc-macro2",
|
|
2146
|
+
"quote",
|
|
2147
|
+
"syn 2.0.117",
|
|
1220
2148
|
]
|
|
1221
2149
|
|
|
1222
2150
|
[[package]]
|
|
@@ -1228,6 +2156,22 @@ dependencies = [
|
|
|
1228
2156
|
"libc",
|
|
1229
2157
|
]
|
|
1230
2158
|
|
|
2159
|
+
[[package]]
|
|
2160
|
+
name = "objc-sys"
|
|
2161
|
+
version = "0.3.5"
|
|
2162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2163
|
+
checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
|
|
2164
|
+
|
|
2165
|
+
[[package]]
|
|
2166
|
+
name = "objc2"
|
|
2167
|
+
version = "0.5.2"
|
|
2168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2169
|
+
checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
|
|
2170
|
+
dependencies = [
|
|
2171
|
+
"objc-sys",
|
|
2172
|
+
"objc2-encode",
|
|
2173
|
+
]
|
|
2174
|
+
|
|
1231
2175
|
[[package]]
|
|
1232
2176
|
name = "objc2"
|
|
1233
2177
|
version = "0.6.4"
|
|
@@ -1237,15 +2181,88 @@ dependencies = [
|
|
|
1237
2181
|
"objc2-encode",
|
|
1238
2182
|
]
|
|
1239
2183
|
|
|
2184
|
+
[[package]]
|
|
2185
|
+
name = "objc2-app-kit"
|
|
2186
|
+
version = "0.2.2"
|
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2188
|
+
checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
|
|
2189
|
+
dependencies = [
|
|
2190
|
+
"bitflags 2.11.1",
|
|
2191
|
+
"block2 0.5.1",
|
|
2192
|
+
"libc",
|
|
2193
|
+
"objc2 0.5.2",
|
|
2194
|
+
"objc2-core-data 0.2.2",
|
|
2195
|
+
"objc2-core-image 0.2.2",
|
|
2196
|
+
"objc2-foundation 0.2.2",
|
|
2197
|
+
"objc2-quartz-core 0.2.2",
|
|
2198
|
+
]
|
|
2199
|
+
|
|
2200
|
+
[[package]]
|
|
2201
|
+
name = "objc2-app-kit"
|
|
2202
|
+
version = "0.3.2"
|
|
2203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2204
|
+
checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
|
|
2205
|
+
dependencies = [
|
|
2206
|
+
"bitflags 2.11.1",
|
|
2207
|
+
"block2 0.6.2",
|
|
2208
|
+
"libc",
|
|
2209
|
+
"objc2 0.6.4",
|
|
2210
|
+
"objc2-cloud-kit 0.3.2",
|
|
2211
|
+
"objc2-core-data 0.3.2",
|
|
2212
|
+
"objc2-core-foundation",
|
|
2213
|
+
"objc2-core-graphics",
|
|
2214
|
+
"objc2-core-image 0.3.2",
|
|
2215
|
+
"objc2-core-text",
|
|
2216
|
+
"objc2-core-video",
|
|
2217
|
+
"objc2-foundation 0.3.2",
|
|
2218
|
+
"objc2-quartz-core 0.3.2",
|
|
2219
|
+
]
|
|
2220
|
+
|
|
2221
|
+
[[package]]
|
|
2222
|
+
name = "objc2-cloud-kit"
|
|
2223
|
+
version = "0.2.2"
|
|
2224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2225
|
+
checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009"
|
|
2226
|
+
dependencies = [
|
|
2227
|
+
"bitflags 2.11.1",
|
|
2228
|
+
"block2 0.5.1",
|
|
2229
|
+
"objc2 0.5.2",
|
|
2230
|
+
"objc2-core-location 0.2.2",
|
|
2231
|
+
"objc2-foundation 0.2.2",
|
|
2232
|
+
]
|
|
2233
|
+
|
|
1240
2234
|
[[package]]
|
|
1241
2235
|
name = "objc2-cloud-kit"
|
|
1242
2236
|
version = "0.3.2"
|
|
1243
2237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
2238
|
checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
|
|
1245
2239
|
dependencies = [
|
|
1246
|
-
"bitflags",
|
|
1247
|
-
"objc2",
|
|
1248
|
-
"objc2-foundation",
|
|
2240
|
+
"bitflags 2.11.1",
|
|
2241
|
+
"objc2 0.6.4",
|
|
2242
|
+
"objc2-foundation 0.3.2",
|
|
2243
|
+
]
|
|
2244
|
+
|
|
2245
|
+
[[package]]
|
|
2246
|
+
name = "objc2-contacts"
|
|
2247
|
+
version = "0.2.2"
|
|
2248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2249
|
+
checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889"
|
|
2250
|
+
dependencies = [
|
|
2251
|
+
"block2 0.5.1",
|
|
2252
|
+
"objc2 0.5.2",
|
|
2253
|
+
"objc2-foundation 0.2.2",
|
|
2254
|
+
]
|
|
2255
|
+
|
|
2256
|
+
[[package]]
|
|
2257
|
+
name = "objc2-core-data"
|
|
2258
|
+
version = "0.2.2"
|
|
2259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2260
|
+
checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
|
|
2261
|
+
dependencies = [
|
|
2262
|
+
"bitflags 2.11.1",
|
|
2263
|
+
"block2 0.5.1",
|
|
2264
|
+
"objc2 0.5.2",
|
|
2265
|
+
"objc2-foundation 0.2.2",
|
|
1249
2266
|
]
|
|
1250
2267
|
|
|
1251
2268
|
[[package]]
|
|
@@ -1254,8 +2271,9 @@ version = "0.3.2"
|
|
|
1254
2271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
2272
|
checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
|
|
1256
2273
|
dependencies = [
|
|
1257
|
-
"
|
|
1258
|
-
"objc2
|
|
2274
|
+
"bitflags 2.11.1",
|
|
2275
|
+
"objc2 0.6.4",
|
|
2276
|
+
"objc2-foundation 0.3.2",
|
|
1259
2277
|
]
|
|
1260
2278
|
|
|
1261
2279
|
[[package]]
|
|
@@ -1264,9 +2282,9 @@ version = "0.3.2"
|
|
|
1264
2282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
2283
|
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
1266
2284
|
dependencies = [
|
|
1267
|
-
"bitflags",
|
|
2285
|
+
"bitflags 2.11.1",
|
|
1268
2286
|
"dispatch2",
|
|
1269
|
-
"objc2",
|
|
2287
|
+
"objc2 0.6.4",
|
|
1270
2288
|
]
|
|
1271
2289
|
|
|
1272
2290
|
[[package]]
|
|
@@ -1275,21 +2293,45 @@ version = "0.3.2"
|
|
|
1275
2293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
2294
|
checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
|
|
1277
2295
|
dependencies = [
|
|
1278
|
-
"bitflags",
|
|
2296
|
+
"bitflags 2.11.1",
|
|
1279
2297
|
"dispatch2",
|
|
1280
|
-
"objc2",
|
|
2298
|
+
"objc2 0.6.4",
|
|
1281
2299
|
"objc2-core-foundation",
|
|
1282
2300
|
"objc2-io-surface",
|
|
1283
2301
|
]
|
|
1284
2302
|
|
|
2303
|
+
[[package]]
|
|
2304
|
+
name = "objc2-core-image"
|
|
2305
|
+
version = "0.2.2"
|
|
2306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2307
|
+
checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
|
|
2308
|
+
dependencies = [
|
|
2309
|
+
"block2 0.5.1",
|
|
2310
|
+
"objc2 0.5.2",
|
|
2311
|
+
"objc2-foundation 0.2.2",
|
|
2312
|
+
"objc2-metal",
|
|
2313
|
+
]
|
|
2314
|
+
|
|
1285
2315
|
[[package]]
|
|
1286
2316
|
name = "objc2-core-image"
|
|
1287
2317
|
version = "0.3.2"
|
|
1288
2318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
2319
|
checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
|
|
1290
2320
|
dependencies = [
|
|
1291
|
-
"objc2",
|
|
1292
|
-
"objc2-foundation",
|
|
2321
|
+
"objc2 0.6.4",
|
|
2322
|
+
"objc2-foundation 0.3.2",
|
|
2323
|
+
]
|
|
2324
|
+
|
|
2325
|
+
[[package]]
|
|
2326
|
+
name = "objc2-core-location"
|
|
2327
|
+
version = "0.2.2"
|
|
2328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2329
|
+
checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781"
|
|
2330
|
+
dependencies = [
|
|
2331
|
+
"block2 0.5.1",
|
|
2332
|
+
"objc2 0.5.2",
|
|
2333
|
+
"objc2-contacts",
|
|
2334
|
+
"objc2-foundation 0.2.2",
|
|
1293
2335
|
]
|
|
1294
2336
|
|
|
1295
2337
|
[[package]]
|
|
@@ -1298,8 +2340,8 @@ version = "0.3.2"
|
|
|
1298
2340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
2341
|
checksum = "ca347214e24bc973fc025fd0d36ebb179ff30536ed1f80252706db19ee452009"
|
|
1300
2342
|
dependencies = [
|
|
1301
|
-
"objc2",
|
|
1302
|
-
"objc2-foundation",
|
|
2343
|
+
"objc2 0.6.4",
|
|
2344
|
+
"objc2-foundation 0.3.2",
|
|
1303
2345
|
]
|
|
1304
2346
|
|
|
1305
2347
|
[[package]]
|
|
@@ -1308,10 +2350,23 @@ version = "0.3.2"
|
|
|
1308
2350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
2351
|
checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
|
|
1310
2352
|
dependencies = [
|
|
1311
|
-
"bitflags",
|
|
1312
|
-
"objc2",
|
|
2353
|
+
"bitflags 2.11.1",
|
|
2354
|
+
"objc2 0.6.4",
|
|
2355
|
+
"objc2-core-foundation",
|
|
2356
|
+
"objc2-core-graphics",
|
|
2357
|
+
]
|
|
2358
|
+
|
|
2359
|
+
[[package]]
|
|
2360
|
+
name = "objc2-core-video"
|
|
2361
|
+
version = "0.3.2"
|
|
2362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
+
checksum = "d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6"
|
|
2364
|
+
dependencies = [
|
|
2365
|
+
"bitflags 2.11.1",
|
|
2366
|
+
"objc2 0.6.4",
|
|
1313
2367
|
"objc2-core-foundation",
|
|
1314
2368
|
"objc2-core-graphics",
|
|
2369
|
+
"objc2-io-surface",
|
|
1315
2370
|
]
|
|
1316
2371
|
|
|
1317
2372
|
[[package]]
|
|
@@ -1320,16 +2375,29 @@ version = "4.1.0"
|
|
|
1320
2375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1321
2376
|
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
1322
2377
|
|
|
2378
|
+
[[package]]
|
|
2379
|
+
name = "objc2-foundation"
|
|
2380
|
+
version = "0.2.2"
|
|
2381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2382
|
+
checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
|
|
2383
|
+
dependencies = [
|
|
2384
|
+
"bitflags 2.11.1",
|
|
2385
|
+
"block2 0.5.1",
|
|
2386
|
+
"dispatch",
|
|
2387
|
+
"libc",
|
|
2388
|
+
"objc2 0.5.2",
|
|
2389
|
+
]
|
|
2390
|
+
|
|
1323
2391
|
[[package]]
|
|
1324
2392
|
name = "objc2-foundation"
|
|
1325
2393
|
version = "0.3.2"
|
|
1326
2394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
2395
|
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
1328
2396
|
dependencies = [
|
|
1329
|
-
"bitflags",
|
|
1330
|
-
"block2",
|
|
2397
|
+
"bitflags 2.11.1",
|
|
2398
|
+
"block2 0.6.2",
|
|
1331
2399
|
"libc",
|
|
1332
|
-
"objc2",
|
|
2400
|
+
"objc2 0.6.4",
|
|
1333
2401
|
"objc2-core-foundation",
|
|
1334
2402
|
]
|
|
1335
2403
|
|
|
@@ -1339,21 +2407,89 @@ version = "0.3.2"
|
|
|
1339
2407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
2408
|
checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
|
|
1341
2409
|
dependencies = [
|
|
1342
|
-
"bitflags",
|
|
1343
|
-
"objc2",
|
|
2410
|
+
"bitflags 2.11.1",
|
|
2411
|
+
"objc2 0.6.4",
|
|
1344
2412
|
"objc2-core-foundation",
|
|
1345
2413
|
]
|
|
1346
2414
|
|
|
2415
|
+
[[package]]
|
|
2416
|
+
name = "objc2-link-presentation"
|
|
2417
|
+
version = "0.2.2"
|
|
2418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2419
|
+
checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398"
|
|
2420
|
+
dependencies = [
|
|
2421
|
+
"block2 0.5.1",
|
|
2422
|
+
"objc2 0.5.2",
|
|
2423
|
+
"objc2-app-kit 0.2.2",
|
|
2424
|
+
"objc2-foundation 0.2.2",
|
|
2425
|
+
]
|
|
2426
|
+
|
|
2427
|
+
[[package]]
|
|
2428
|
+
name = "objc2-metal"
|
|
2429
|
+
version = "0.2.2"
|
|
2430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2431
|
+
checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
|
|
2432
|
+
dependencies = [
|
|
2433
|
+
"bitflags 2.11.1",
|
|
2434
|
+
"block2 0.5.1",
|
|
2435
|
+
"objc2 0.5.2",
|
|
2436
|
+
"objc2-foundation 0.2.2",
|
|
2437
|
+
]
|
|
2438
|
+
|
|
2439
|
+
[[package]]
|
|
2440
|
+
name = "objc2-quartz-core"
|
|
2441
|
+
version = "0.2.2"
|
|
2442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2443
|
+
checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
|
|
2444
|
+
dependencies = [
|
|
2445
|
+
"bitflags 2.11.1",
|
|
2446
|
+
"block2 0.5.1",
|
|
2447
|
+
"objc2 0.5.2",
|
|
2448
|
+
"objc2-foundation 0.2.2",
|
|
2449
|
+
"objc2-metal",
|
|
2450
|
+
]
|
|
2451
|
+
|
|
1347
2452
|
[[package]]
|
|
1348
2453
|
name = "objc2-quartz-core"
|
|
1349
2454
|
version = "0.3.2"
|
|
1350
2455
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
2456
|
checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
|
|
1352
2457
|
dependencies = [
|
|
1353
|
-
"bitflags",
|
|
1354
|
-
"objc2",
|
|
2458
|
+
"bitflags 2.11.1",
|
|
2459
|
+
"objc2 0.6.4",
|
|
1355
2460
|
"objc2-core-foundation",
|
|
1356
|
-
"objc2-foundation",
|
|
2461
|
+
"objc2-foundation 0.3.2",
|
|
2462
|
+
]
|
|
2463
|
+
|
|
2464
|
+
[[package]]
|
|
2465
|
+
name = "objc2-symbols"
|
|
2466
|
+
version = "0.2.2"
|
|
2467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2468
|
+
checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc"
|
|
2469
|
+
dependencies = [
|
|
2470
|
+
"objc2 0.5.2",
|
|
2471
|
+
"objc2-foundation 0.2.2",
|
|
2472
|
+
]
|
|
2473
|
+
|
|
2474
|
+
[[package]]
|
|
2475
|
+
name = "objc2-ui-kit"
|
|
2476
|
+
version = "0.2.2"
|
|
2477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
+
checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f"
|
|
2479
|
+
dependencies = [
|
|
2480
|
+
"bitflags 2.11.1",
|
|
2481
|
+
"block2 0.5.1",
|
|
2482
|
+
"objc2 0.5.2",
|
|
2483
|
+
"objc2-cloud-kit 0.2.2",
|
|
2484
|
+
"objc2-core-data 0.2.2",
|
|
2485
|
+
"objc2-core-image 0.2.2",
|
|
2486
|
+
"objc2-core-location 0.2.2",
|
|
2487
|
+
"objc2-foundation 0.2.2",
|
|
2488
|
+
"objc2-link-presentation",
|
|
2489
|
+
"objc2-quartz-core 0.2.2",
|
|
2490
|
+
"objc2-symbols",
|
|
2491
|
+
"objc2-uniform-type-identifiers",
|
|
2492
|
+
"objc2-user-notifications 0.2.2",
|
|
1357
2493
|
]
|
|
1358
2494
|
|
|
1359
2495
|
[[package]]
|
|
@@ -1362,19 +2498,43 @@ version = "0.3.2"
|
|
|
1362
2498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
2499
|
checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
|
|
1364
2500
|
dependencies = [
|
|
1365
|
-
"bitflags",
|
|
1366
|
-
"block2",
|
|
1367
|
-
"objc2",
|
|
1368
|
-
"objc2-cloud-kit",
|
|
1369
|
-
"objc2-core-data",
|
|
2501
|
+
"bitflags 2.11.1",
|
|
2502
|
+
"block2 0.6.2",
|
|
2503
|
+
"objc2 0.6.4",
|
|
2504
|
+
"objc2-cloud-kit 0.3.2",
|
|
2505
|
+
"objc2-core-data 0.3.2",
|
|
1370
2506
|
"objc2-core-foundation",
|
|
1371
2507
|
"objc2-core-graphics",
|
|
1372
|
-
"objc2-core-image",
|
|
1373
|
-
"objc2-core-location",
|
|
2508
|
+
"objc2-core-image 0.3.2",
|
|
2509
|
+
"objc2-core-location 0.3.2",
|
|
1374
2510
|
"objc2-core-text",
|
|
1375
|
-
"objc2-foundation",
|
|
1376
|
-
"objc2-quartz-core",
|
|
1377
|
-
"objc2-user-notifications",
|
|
2511
|
+
"objc2-foundation 0.3.2",
|
|
2512
|
+
"objc2-quartz-core 0.3.2",
|
|
2513
|
+
"objc2-user-notifications 0.3.2",
|
|
2514
|
+
]
|
|
2515
|
+
|
|
2516
|
+
[[package]]
|
|
2517
|
+
name = "objc2-uniform-type-identifiers"
|
|
2518
|
+
version = "0.2.2"
|
|
2519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
|
+
checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe"
|
|
2521
|
+
dependencies = [
|
|
2522
|
+
"block2 0.5.1",
|
|
2523
|
+
"objc2 0.5.2",
|
|
2524
|
+
"objc2-foundation 0.2.2",
|
|
2525
|
+
]
|
|
2526
|
+
|
|
2527
|
+
[[package]]
|
|
2528
|
+
name = "objc2-user-notifications"
|
|
2529
|
+
version = "0.2.2"
|
|
2530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
+
checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3"
|
|
2532
|
+
dependencies = [
|
|
2533
|
+
"bitflags 2.11.1",
|
|
2534
|
+
"block2 0.5.1",
|
|
2535
|
+
"objc2 0.5.2",
|
|
2536
|
+
"objc2-core-location 0.2.2",
|
|
2537
|
+
"objc2-foundation 0.2.2",
|
|
1378
2538
|
]
|
|
1379
2539
|
|
|
1380
2540
|
[[package]]
|
|
@@ -1383,8 +2543,8 @@ version = "0.3.2"
|
|
|
1383
2543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
2544
|
checksum = "9df9128cbbfef73cda168416ccf7f837b62737d748333bfe9ab71c245d76613e"
|
|
1385
2545
|
dependencies = [
|
|
1386
|
-
"objc2",
|
|
1387
|
-
"objc2-foundation",
|
|
2546
|
+
"objc2 0.6.4",
|
|
2547
|
+
"objc2-foundation 0.3.2",
|
|
1388
2548
|
]
|
|
1389
2549
|
|
|
1390
2550
|
[[package]]
|
|
@@ -1399,22 +2559,47 @@ version = "1.70.2"
|
|
|
1399
2559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
2560
|
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1401
2561
|
|
|
2562
|
+
[[package]]
|
|
2563
|
+
name = "oneshot"
|
|
2564
|
+
version = "0.2.1"
|
|
2565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2566
|
+
checksum = "cfe21416a02c693fb9f980befcb230ecc70b0b3d1cc4abf88b9675c4c1457f0c"
|
|
2567
|
+
|
|
2568
|
+
[[package]]
|
|
2569
|
+
name = "orbclient"
|
|
2570
|
+
version = "0.3.55"
|
|
2571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
|
+
checksum = "5df339f526ea9a60e371768d50efc2f2508c7203290731565d1f7a6f71d21747"
|
|
2573
|
+
dependencies = [
|
|
2574
|
+
"libc",
|
|
2575
|
+
"libredox",
|
|
2576
|
+
]
|
|
2577
|
+
|
|
1402
2578
|
[[package]]
|
|
1403
2579
|
name = "os_info"
|
|
1404
|
-
version = "3.
|
|
2580
|
+
version = "3.15.0"
|
|
1405
2581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1406
|
-
checksum = "
|
|
2582
|
+
checksum = "9cf20a545b305cf1da722b236b5155c9bb35f1d5ceb28c048bd96ca842f41b5b"
|
|
1407
2583
|
dependencies = [
|
|
1408
2584
|
"android_system_properties",
|
|
1409
2585
|
"log",
|
|
1410
|
-
"nix 0.
|
|
1411
|
-
"objc2",
|
|
1412
|
-
"objc2-foundation",
|
|
1413
|
-
"objc2-ui-kit",
|
|
2586
|
+
"nix 0.31.3",
|
|
2587
|
+
"objc2 0.6.4",
|
|
2588
|
+
"objc2-foundation 0.3.2",
|
|
2589
|
+
"objc2-ui-kit 0.3.2",
|
|
1414
2590
|
"serde",
|
|
1415
2591
|
"windows-sys 0.61.2",
|
|
1416
2592
|
]
|
|
1417
2593
|
|
|
2594
|
+
[[package]]
|
|
2595
|
+
name = "owned_ttf_parser"
|
|
2596
|
+
version = "0.25.1"
|
|
2597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
+
checksum = "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b"
|
|
2599
|
+
dependencies = [
|
|
2600
|
+
"ttf-parser 0.25.1",
|
|
2601
|
+
]
|
|
2602
|
+
|
|
1418
2603
|
[[package]]
|
|
1419
2604
|
name = "parking_lot"
|
|
1420
2605
|
version = "0.12.5"
|
|
@@ -1431,19 +2616,51 @@ version = "0.9.12"
|
|
|
1431
2616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
2617
|
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1433
2618
|
dependencies = [
|
|
1434
|
-
"cfg-if
|
|
2619
|
+
"cfg-if",
|
|
1435
2620
|
"libc",
|
|
1436
|
-
"redox_syscall",
|
|
2621
|
+
"redox_syscall 0.5.18",
|
|
1437
2622
|
"smallvec",
|
|
1438
2623
|
"windows-link",
|
|
1439
2624
|
]
|
|
1440
2625
|
|
|
2626
|
+
[[package]]
|
|
2627
|
+
name = "paste"
|
|
2628
|
+
version = "1.0.15"
|
|
2629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2630
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2631
|
+
|
|
2632
|
+
[[package]]
|
|
2633
|
+
name = "pastey"
|
|
2634
|
+
version = "0.1.1"
|
|
2635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2636
|
+
checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
|
|
2637
|
+
|
|
1441
2638
|
[[package]]
|
|
1442
2639
|
name = "percent-encoding"
|
|
1443
2640
|
version = "2.3.2"
|
|
1444
2641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
2642
|
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1446
2643
|
|
|
2644
|
+
[[package]]
|
|
2645
|
+
name = "pin-project"
|
|
2646
|
+
version = "1.1.13"
|
|
2647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2648
|
+
checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
|
|
2649
|
+
dependencies = [
|
|
2650
|
+
"pin-project-internal",
|
|
2651
|
+
]
|
|
2652
|
+
|
|
2653
|
+
[[package]]
|
|
2654
|
+
name = "pin-project-internal"
|
|
2655
|
+
version = "1.1.13"
|
|
2656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2657
|
+
checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
|
|
2658
|
+
dependencies = [
|
|
2659
|
+
"proc-macro2",
|
|
2660
|
+
"quote",
|
|
2661
|
+
"syn 2.0.117",
|
|
2662
|
+
]
|
|
2663
|
+
|
|
1447
2664
|
[[package]]
|
|
1448
2665
|
name = "pin-project-lite"
|
|
1449
2666
|
version = "0.2.17"
|
|
@@ -1452,9 +2669,15 @@ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
|
1452
2669
|
|
|
1453
2670
|
[[package]]
|
|
1454
2671
|
name = "pkg-config"
|
|
1455
|
-
version = "0.3.
|
|
2672
|
+
version = "0.3.33"
|
|
2673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
2675
|
+
|
|
2676
|
+
[[package]]
|
|
2677
|
+
name = "plain"
|
|
2678
|
+
version = "0.2.3"
|
|
1456
2679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1457
|
-
checksum = "
|
|
2680
|
+
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
1458
2681
|
|
|
1459
2682
|
[[package]]
|
|
1460
2683
|
name = "png"
|
|
@@ -1462,13 +2685,27 @@ version = "0.18.1"
|
|
|
1462
2685
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
2686
|
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
|
1464
2687
|
dependencies = [
|
|
1465
|
-
"bitflags",
|
|
2688
|
+
"bitflags 2.11.1",
|
|
1466
2689
|
"crc32fast",
|
|
1467
2690
|
"fdeflate",
|
|
1468
2691
|
"flate2",
|
|
1469
2692
|
"miniz_oxide",
|
|
1470
2693
|
]
|
|
1471
2694
|
|
|
2695
|
+
[[package]]
|
|
2696
|
+
name = "polling"
|
|
2697
|
+
version = "3.11.0"
|
|
2698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2699
|
+
checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
|
|
2700
|
+
dependencies = [
|
|
2701
|
+
"cfg-if",
|
|
2702
|
+
"concurrent-queue",
|
|
2703
|
+
"hermit-abi",
|
|
2704
|
+
"pin-project-lite",
|
|
2705
|
+
"rustix 1.1.4",
|
|
2706
|
+
"windows-sys 0.61.2",
|
|
2707
|
+
]
|
|
2708
|
+
|
|
1472
2709
|
[[package]]
|
|
1473
2710
|
name = "portable-atomic"
|
|
1474
2711
|
version = "1.13.1"
|
|
@@ -1477,11 +2714,11 @@ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
|
1477
2714
|
|
|
1478
2715
|
[[package]]
|
|
1479
2716
|
name = "potential_utf"
|
|
1480
|
-
version = "0.1.
|
|
2717
|
+
version = "0.1.5"
|
|
1481
2718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
-
checksum = "
|
|
2719
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1483
2720
|
dependencies = [
|
|
1484
|
-
"zerovec",
|
|
2721
|
+
"zerovec 0.11.6",
|
|
1485
2722
|
]
|
|
1486
2723
|
|
|
1487
2724
|
[[package]]
|
|
@@ -1490,6 +2727,15 @@ version = "0.2.0"
|
|
|
1490
2727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
2728
|
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1492
2729
|
|
|
2730
|
+
[[package]]
|
|
2731
|
+
name = "ppv-lite86"
|
|
2732
|
+
version = "0.2.21"
|
|
2733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2734
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2735
|
+
dependencies = [
|
|
2736
|
+
"zerocopy",
|
|
2737
|
+
]
|
|
2738
|
+
|
|
1493
2739
|
[[package]]
|
|
1494
2740
|
name = "pretty-bytes-rust"
|
|
1495
2741
|
version = "0.3.0"
|
|
@@ -1537,6 +2783,25 @@ dependencies = [
|
|
|
1537
2783
|
"unicode-ident",
|
|
1538
2784
|
]
|
|
1539
2785
|
|
|
2786
|
+
[[package]]
|
|
2787
|
+
name = "profiling"
|
|
2788
|
+
version = "1.0.18"
|
|
2789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2790
|
+
checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
|
|
2791
|
+
dependencies = [
|
|
2792
|
+
"profiling-procmacros",
|
|
2793
|
+
]
|
|
2794
|
+
|
|
2795
|
+
[[package]]
|
|
2796
|
+
name = "profiling-procmacros"
|
|
2797
|
+
version = "1.0.18"
|
|
2798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2799
|
+
checksum = "4488a4a36b9a4ba6b9334a32a39971f77c1436ec82c38707bce707699cc3bbcb"
|
|
2800
|
+
dependencies = [
|
|
2801
|
+
"quote",
|
|
2802
|
+
"syn 2.0.117",
|
|
2803
|
+
]
|
|
2804
|
+
|
|
1540
2805
|
[[package]]
|
|
1541
2806
|
name = "progress-streams"
|
|
1542
2807
|
version = "1.1.0"
|
|
@@ -1545,9 +2810,9 @@ checksum = "e965d96c8162c607b0cd8d66047ad3c9fd35273c134d994327882c6e47f986a7"
|
|
|
1545
2810
|
|
|
1546
2811
|
[[package]]
|
|
1547
2812
|
name = "pxfm"
|
|
1548
|
-
version = "0.1.
|
|
2813
|
+
version = "0.1.29"
|
|
1549
2814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1550
|
-
checksum = "
|
|
2815
|
+
checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
|
|
1551
2816
|
|
|
1552
2817
|
[[package]]
|
|
1553
2818
|
name = "pyo3"
|
|
@@ -1619,6 +2884,21 @@ dependencies = [
|
|
|
1619
2884
|
"syn 2.0.117",
|
|
1620
2885
|
]
|
|
1621
2886
|
|
|
2887
|
+
[[package]]
|
|
2888
|
+
name = "quick-error"
|
|
2889
|
+
version = "2.0.1"
|
|
2890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2891
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
2892
|
+
|
|
2893
|
+
[[package]]
|
|
2894
|
+
name = "quick-xml"
|
|
2895
|
+
version = "0.39.4"
|
|
2896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
+
checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
|
|
2898
|
+
dependencies = [
|
|
2899
|
+
"memchr",
|
|
2900
|
+
]
|
|
2901
|
+
|
|
1622
2902
|
[[package]]
|
|
1623
2903
|
name = "quote"
|
|
1624
2904
|
version = "1.0.45"
|
|
@@ -1642,26 +2922,111 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
|
1642
2922
|
|
|
1643
2923
|
[[package]]
|
|
1644
2924
|
name = "rand"
|
|
1645
|
-
version = "0.
|
|
2925
|
+
version = "0.9.4"
|
|
1646
2926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
-
checksum = "
|
|
2927
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2928
|
+
dependencies = [
|
|
2929
|
+
"rand_chacha",
|
|
2930
|
+
"rand_core 0.9.5",
|
|
2931
|
+
]
|
|
2932
|
+
|
|
2933
|
+
[[package]]
|
|
2934
|
+
name = "rand"
|
|
2935
|
+
version = "0.10.1"
|
|
2936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2937
|
+
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
|
|
1648
2938
|
dependencies = [
|
|
1649
2939
|
"chacha20",
|
|
1650
2940
|
"getrandom 0.4.2",
|
|
1651
|
-
"rand_core",
|
|
2941
|
+
"rand_core 0.10.1",
|
|
2942
|
+
]
|
|
2943
|
+
|
|
2944
|
+
[[package]]
|
|
2945
|
+
name = "rand_chacha"
|
|
2946
|
+
version = "0.9.0"
|
|
2947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2948
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2949
|
+
dependencies = [
|
|
2950
|
+
"ppv-lite86",
|
|
2951
|
+
"rand_core 0.9.5",
|
|
1652
2952
|
]
|
|
1653
2953
|
|
|
1654
2954
|
[[package]]
|
|
1655
2955
|
name = "rand_core"
|
|
1656
|
-
version = "0.
|
|
2956
|
+
version = "0.9.5"
|
|
2957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2958
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2959
|
+
dependencies = [
|
|
2960
|
+
"getrandom 0.3.4",
|
|
2961
|
+
]
|
|
2962
|
+
|
|
2963
|
+
[[package]]
|
|
2964
|
+
name = "rand_core"
|
|
2965
|
+
version = "0.10.1"
|
|
2966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2967
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
2968
|
+
|
|
2969
|
+
[[package]]
|
|
2970
|
+
name = "rav1e"
|
|
2971
|
+
version = "0.8.1"
|
|
2972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2973
|
+
checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
|
|
2974
|
+
dependencies = [
|
|
2975
|
+
"aligned-vec",
|
|
2976
|
+
"arbitrary",
|
|
2977
|
+
"arg_enum_proc_macro",
|
|
2978
|
+
"arrayvec",
|
|
2979
|
+
"av-scenechange",
|
|
2980
|
+
"av1-grain",
|
|
2981
|
+
"bitstream-io",
|
|
2982
|
+
"built",
|
|
2983
|
+
"cfg-if",
|
|
2984
|
+
"interpolate_name",
|
|
2985
|
+
"itertools",
|
|
2986
|
+
"libc",
|
|
2987
|
+
"libfuzzer-sys",
|
|
2988
|
+
"log",
|
|
2989
|
+
"maybe-rayon",
|
|
2990
|
+
"new_debug_unreachable",
|
|
2991
|
+
"noop_proc_macro",
|
|
2992
|
+
"num-derive",
|
|
2993
|
+
"num-traits",
|
|
2994
|
+
"paste",
|
|
2995
|
+
"profiling",
|
|
2996
|
+
"rand 0.9.4",
|
|
2997
|
+
"rand_chacha",
|
|
2998
|
+
"simd_helpers",
|
|
2999
|
+
"thiserror 2.0.18",
|
|
3000
|
+
"v_frame",
|
|
3001
|
+
"wasm-bindgen",
|
|
3002
|
+
]
|
|
3003
|
+
|
|
3004
|
+
[[package]]
|
|
3005
|
+
name = "ravif"
|
|
3006
|
+
version = "0.13.0"
|
|
3007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3008
|
+
checksum = "e52310197d971b0f5be7fe6b57530dcd27beb35c1b013f29d66c1ad73fbbcc45"
|
|
3009
|
+
dependencies = [
|
|
3010
|
+
"avif-serialize",
|
|
3011
|
+
"imgref",
|
|
3012
|
+
"loop9",
|
|
3013
|
+
"quick-error",
|
|
3014
|
+
"rav1e",
|
|
3015
|
+
"rayon",
|
|
3016
|
+
"rgb",
|
|
3017
|
+
]
|
|
3018
|
+
|
|
3019
|
+
[[package]]
|
|
3020
|
+
name = "raw-window-handle"
|
|
3021
|
+
version = "0.6.2"
|
|
1657
3022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
-
checksum = "
|
|
3023
|
+
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
1659
3024
|
|
|
1660
3025
|
[[package]]
|
|
1661
3026
|
name = "rayon"
|
|
1662
|
-
version = "1.
|
|
3027
|
+
version = "1.12.0"
|
|
1663
3028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
-
checksum = "
|
|
3029
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1665
3030
|
dependencies = [
|
|
1666
3031
|
"either",
|
|
1667
3032
|
"rayon-core",
|
|
@@ -1677,24 +3042,31 @@ dependencies = [
|
|
|
1677
3042
|
"crossbeam-utils",
|
|
1678
3043
|
]
|
|
1679
3044
|
|
|
3045
|
+
[[package]]
|
|
3046
|
+
name = "redox_syscall"
|
|
3047
|
+
version = "0.4.1"
|
|
3048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3049
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
3050
|
+
dependencies = [
|
|
3051
|
+
"bitflags 1.3.2",
|
|
3052
|
+
]
|
|
3053
|
+
|
|
1680
3054
|
[[package]]
|
|
1681
3055
|
name = "redox_syscall"
|
|
1682
3056
|
version = "0.5.18"
|
|
1683
3057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1684
3058
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1685
3059
|
dependencies = [
|
|
1686
|
-
"bitflags",
|
|
3060
|
+
"bitflags 2.11.1",
|
|
1687
3061
|
]
|
|
1688
3062
|
|
|
1689
3063
|
[[package]]
|
|
1690
|
-
name = "
|
|
1691
|
-
version = "0.
|
|
3064
|
+
name = "redox_syscall"
|
|
3065
|
+
version = "0.7.5"
|
|
1692
3066
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
-
checksum = "
|
|
3067
|
+
checksum = "4666a1a60d8412eab19d94f6d13dcc9cea0a5ef4fdf6a5db306537413c661b1b"
|
|
1694
3068
|
dependencies = [
|
|
1695
|
-
"
|
|
1696
|
-
"libredox",
|
|
1697
|
-
"thiserror 1.0.69",
|
|
3069
|
+
"bitflags 2.11.1",
|
|
1698
3070
|
]
|
|
1699
3071
|
|
|
1700
3072
|
[[package]]
|
|
@@ -1732,7 +3104,7 @@ version = "1.0.0"
|
|
|
1732
3104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1733
3105
|
checksum = "808cc0b475acf76adf36f08ca49429b12aad9f678cb56143d5b3cb49b9a1dd08"
|
|
1734
3106
|
dependencies = [
|
|
1735
|
-
"cfg-if
|
|
3107
|
+
"cfg-if",
|
|
1736
3108
|
"cvt",
|
|
1737
3109
|
"fs_at",
|
|
1738
3110
|
"libc",
|
|
@@ -1740,6 +3112,12 @@ dependencies = [
|
|
|
1740
3112
|
"windows-sys 0.59.0",
|
|
1741
3113
|
]
|
|
1742
3114
|
|
|
3115
|
+
[[package]]
|
|
3116
|
+
name = "rgb"
|
|
3117
|
+
version = "0.8.53"
|
|
3118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3119
|
+
checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
|
|
3120
|
+
|
|
1743
3121
|
[[package]]
|
|
1744
3122
|
name = "ring"
|
|
1745
3123
|
version = "0.17.14"
|
|
@@ -1747,7 +3125,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1747
3125
|
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1748
3126
|
dependencies = [
|
|
1749
3127
|
"cc",
|
|
1750
|
-
"cfg-if
|
|
3128
|
+
"cfg-if",
|
|
1751
3129
|
"getrandom 0.2.17",
|
|
1752
3130
|
"libc",
|
|
1753
3131
|
"untrusted",
|
|
@@ -1755,14 +3133,31 @@ dependencies = [
|
|
|
1755
3133
|
]
|
|
1756
3134
|
|
|
1757
3135
|
[[package]]
|
|
1758
|
-
name = "
|
|
1759
|
-
version = "2.1.
|
|
3136
|
+
name = "rustc-hash"
|
|
3137
|
+
version = "2.1.2"
|
|
3138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3139
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
3140
|
+
|
|
3141
|
+
[[package]]
|
|
3142
|
+
name = "rustc_version"
|
|
3143
|
+
version = "0.4.1"
|
|
1760
3144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
-
checksum = "
|
|
3145
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1762
3146
|
dependencies = [
|
|
1763
|
-
"
|
|
3147
|
+
"semver",
|
|
3148
|
+
]
|
|
3149
|
+
|
|
3150
|
+
[[package]]
|
|
3151
|
+
name = "rustix"
|
|
3152
|
+
version = "0.38.44"
|
|
3153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
3155
|
+
dependencies = [
|
|
3156
|
+
"bitflags 2.11.1",
|
|
3157
|
+
"errno",
|
|
1764
3158
|
"libc",
|
|
1765
|
-
"
|
|
3159
|
+
"linux-raw-sys 0.4.15",
|
|
3160
|
+
"windows-sys 0.59.0",
|
|
1766
3161
|
]
|
|
1767
3162
|
|
|
1768
3163
|
[[package]]
|
|
@@ -1771,18 +3166,18 @@ version = "1.1.4"
|
|
|
1771
3166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
3167
|
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1773
3168
|
dependencies = [
|
|
1774
|
-
"bitflags",
|
|
3169
|
+
"bitflags 2.11.1",
|
|
1775
3170
|
"errno",
|
|
1776
3171
|
"libc",
|
|
1777
|
-
"linux-raw-sys",
|
|
3172
|
+
"linux-raw-sys 0.12.1",
|
|
1778
3173
|
"windows-sys 0.61.2",
|
|
1779
3174
|
]
|
|
1780
3175
|
|
|
1781
3176
|
[[package]]
|
|
1782
3177
|
name = "rustls"
|
|
1783
|
-
version = "0.23.
|
|
3178
|
+
version = "0.23.40"
|
|
1784
3179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
-
checksum = "
|
|
3180
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
1786
3181
|
dependencies = [
|
|
1787
3182
|
"log",
|
|
1788
3183
|
"once_cell",
|
|
@@ -1795,18 +3190,18 @@ dependencies = [
|
|
|
1795
3190
|
|
|
1796
3191
|
[[package]]
|
|
1797
3192
|
name = "rustls-pki-types"
|
|
1798
|
-
version = "1.14.
|
|
3193
|
+
version = "1.14.1"
|
|
1799
3194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
-
checksum = "
|
|
3195
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
1801
3196
|
dependencies = [
|
|
1802
3197
|
"zeroize",
|
|
1803
3198
|
]
|
|
1804
3199
|
|
|
1805
3200
|
[[package]]
|
|
1806
3201
|
name = "rustls-webpki"
|
|
1807
|
-
version = "0.103.
|
|
3202
|
+
version = "0.103.13"
|
|
1808
3203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1809
|
-
checksum = "
|
|
3204
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1810
3205
|
dependencies = [
|
|
1811
3206
|
"ring",
|
|
1812
3207
|
"rustls-pki-types",
|
|
@@ -1837,23 +3232,48 @@ dependencies = [
|
|
|
1837
3232
|
"sdd",
|
|
1838
3233
|
]
|
|
1839
3234
|
|
|
3235
|
+
[[package]]
|
|
3236
|
+
name = "scoped-tls"
|
|
3237
|
+
version = "1.0.1"
|
|
3238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3239
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
3240
|
+
|
|
1840
3241
|
[[package]]
|
|
1841
3242
|
name = "scopeguard"
|
|
1842
3243
|
version = "1.2.0"
|
|
1843
3244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
3245
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1845
3246
|
|
|
3247
|
+
[[package]]
|
|
3248
|
+
name = "sctk-adwaita"
|
|
3249
|
+
version = "0.10.1"
|
|
3250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3251
|
+
checksum = "b6277f0217056f77f1d8f49f2950ac6c278c0d607c45f5ee99328d792ede24ec"
|
|
3252
|
+
dependencies = [
|
|
3253
|
+
"ab_glyph",
|
|
3254
|
+
"log",
|
|
3255
|
+
"memmap2",
|
|
3256
|
+
"smithay-client-toolkit",
|
|
3257
|
+
"tiny-skia 0.11.4",
|
|
3258
|
+
]
|
|
3259
|
+
|
|
1846
3260
|
[[package]]
|
|
1847
3261
|
name = "sdd"
|
|
1848
3262
|
version = "3.0.10"
|
|
1849
3263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
3264
|
checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
|
|
1851
3265
|
|
|
3266
|
+
[[package]]
|
|
3267
|
+
name = "self_cell"
|
|
3268
|
+
version = "1.2.2"
|
|
3269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3270
|
+
checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
|
|
3271
|
+
|
|
1852
3272
|
[[package]]
|
|
1853
3273
|
name = "semver"
|
|
1854
|
-
version = "1.0.
|
|
3274
|
+
version = "1.0.28"
|
|
1855
3275
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
-
checksum = "
|
|
3276
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1857
3277
|
|
|
1858
3278
|
[[package]]
|
|
1859
3279
|
name = "send_wrapper"
|
|
@@ -1893,9 +3313,9 @@ dependencies = [
|
|
|
1893
3313
|
|
|
1894
3314
|
[[package]]
|
|
1895
3315
|
name = "serde_json"
|
|
1896
|
-
version = "1.0.
|
|
3316
|
+
version = "1.0.150"
|
|
1897
3317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1898
|
-
checksum = "
|
|
3318
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1899
3319
|
dependencies = [
|
|
1900
3320
|
"itoa",
|
|
1901
3321
|
"memchr",
|
|
@@ -1906,9 +3326,9 @@ dependencies = [
|
|
|
1906
3326
|
|
|
1907
3327
|
[[package]]
|
|
1908
3328
|
name = "serde_spanned"
|
|
1909
|
-
version = "1.1.
|
|
3329
|
+
version = "1.1.1"
|
|
1910
3330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1911
|
-
checksum = "
|
|
3331
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
1912
3332
|
dependencies = [
|
|
1913
3333
|
"serde_core",
|
|
1914
3334
|
]
|
|
@@ -1946,7 +3366,7 @@ version = "0.11.0"
|
|
|
1946
3366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
3367
|
checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
|
|
1948
3368
|
dependencies = [
|
|
1949
|
-
"cfg-if
|
|
3369
|
+
"cfg-if",
|
|
1950
3370
|
"cpufeatures",
|
|
1951
3371
|
"digest",
|
|
1952
3372
|
]
|
|
@@ -1963,7 +3383,7 @@ version = "0.11.0"
|
|
|
1963
3383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
3384
|
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
1965
3385
|
dependencies = [
|
|
1966
|
-
"cfg-if
|
|
3386
|
+
"cfg-if",
|
|
1967
3387
|
"cpufeatures",
|
|
1968
3388
|
"digest",
|
|
1969
3389
|
]
|
|
@@ -1980,6 +3400,31 @@ version = "0.3.9"
|
|
|
1980
3400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
3401
|
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1982
3402
|
|
|
3403
|
+
[[package]]
|
|
3404
|
+
name = "simd_cesu8"
|
|
3405
|
+
version = "1.1.1"
|
|
3406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3407
|
+
checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
|
|
3408
|
+
dependencies = [
|
|
3409
|
+
"rustc_version",
|
|
3410
|
+
"simdutf8",
|
|
3411
|
+
]
|
|
3412
|
+
|
|
3413
|
+
[[package]]
|
|
3414
|
+
name = "simd_helpers"
|
|
3415
|
+
version = "0.1.0"
|
|
3416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3417
|
+
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
|
|
3418
|
+
dependencies = [
|
|
3419
|
+
"quote",
|
|
3420
|
+
]
|
|
3421
|
+
|
|
3422
|
+
[[package]]
|
|
3423
|
+
name = "simdutf8"
|
|
3424
|
+
version = "0.1.5"
|
|
3425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3426
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
3427
|
+
|
|
1983
3428
|
[[package]]
|
|
1984
3429
|
name = "simple-stopwatch"
|
|
1985
3430
|
version = "0.1.4"
|
|
@@ -2012,12 +3457,84 @@ version = "1.15.1"
|
|
|
2012
3457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2013
3458
|
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2014
3459
|
|
|
3460
|
+
[[package]]
|
|
3461
|
+
name = "smithay-client-toolkit"
|
|
3462
|
+
version = "0.19.2"
|
|
3463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3464
|
+
checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016"
|
|
3465
|
+
dependencies = [
|
|
3466
|
+
"bitflags 2.11.1",
|
|
3467
|
+
"calloop",
|
|
3468
|
+
"calloop-wayland-source",
|
|
3469
|
+
"cursor-icon",
|
|
3470
|
+
"libc",
|
|
3471
|
+
"log",
|
|
3472
|
+
"memmap2",
|
|
3473
|
+
"rustix 0.38.44",
|
|
3474
|
+
"thiserror 1.0.69",
|
|
3475
|
+
"wayland-backend",
|
|
3476
|
+
"wayland-client",
|
|
3477
|
+
"wayland-csd-frame",
|
|
3478
|
+
"wayland-cursor",
|
|
3479
|
+
"wayland-protocols",
|
|
3480
|
+
"wayland-protocols-wlr",
|
|
3481
|
+
"wayland-scanner",
|
|
3482
|
+
"xkeysym",
|
|
3483
|
+
]
|
|
3484
|
+
|
|
3485
|
+
[[package]]
|
|
3486
|
+
name = "smol_str"
|
|
3487
|
+
version = "0.2.2"
|
|
3488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3489
|
+
checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
|
|
3490
|
+
dependencies = [
|
|
3491
|
+
"serde",
|
|
3492
|
+
]
|
|
3493
|
+
|
|
3494
|
+
[[package]]
|
|
3495
|
+
name = "softbuffer"
|
|
3496
|
+
version = "0.4.8"
|
|
3497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3498
|
+
checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3"
|
|
3499
|
+
dependencies = [
|
|
3500
|
+
"as-raw-xcb-connection",
|
|
3501
|
+
"bytemuck",
|
|
3502
|
+
"drm",
|
|
3503
|
+
"fastrand",
|
|
3504
|
+
"js-sys",
|
|
3505
|
+
"memmap2",
|
|
3506
|
+
"ndk",
|
|
3507
|
+
"objc2 0.6.4",
|
|
3508
|
+
"objc2-core-foundation",
|
|
3509
|
+
"objc2-core-graphics",
|
|
3510
|
+
"objc2-foundation 0.3.2",
|
|
3511
|
+
"objc2-quartz-core 0.3.2",
|
|
3512
|
+
"raw-window-handle",
|
|
3513
|
+
"redox_syscall 0.5.18",
|
|
3514
|
+
"rustix 1.1.4",
|
|
3515
|
+
"tiny-xlib",
|
|
3516
|
+
"tracing",
|
|
3517
|
+
"wasm-bindgen",
|
|
3518
|
+
"wayland-backend",
|
|
3519
|
+
"wayland-client",
|
|
3520
|
+
"wayland-sys",
|
|
3521
|
+
"web-sys",
|
|
3522
|
+
"windows-sys 0.61.2",
|
|
3523
|
+
"x11rb",
|
|
3524
|
+
]
|
|
3525
|
+
|
|
2015
3526
|
[[package]]
|
|
2016
3527
|
name = "stable_deref_trait"
|
|
2017
3528
|
version = "1.2.1"
|
|
2018
3529
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2019
3530
|
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2020
3531
|
|
|
3532
|
+
[[package]]
|
|
3533
|
+
name = "strict-num"
|
|
3534
|
+
version = "0.1.1"
|
|
3535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3536
|
+
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
3537
|
+
|
|
2021
3538
|
[[package]]
|
|
2022
3539
|
name = "strsim"
|
|
2023
3540
|
version = "0.9.3"
|
|
@@ -2090,6 +3607,15 @@ dependencies = [
|
|
|
2090
3607
|
"syn 2.0.117",
|
|
2091
3608
|
]
|
|
2092
3609
|
|
|
3610
|
+
[[package]]
|
|
3611
|
+
name = "sys-locale"
|
|
3612
|
+
version = "0.3.2"
|
|
3613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3614
|
+
checksum = "8eab9a99a024a169fe8a903cf9d4a3b3601109bcc13bd9e3c6fff259138626c4"
|
|
3615
|
+
dependencies = [
|
|
3616
|
+
"libc",
|
|
3617
|
+
]
|
|
3618
|
+
|
|
2093
3619
|
[[package]]
|
|
2094
3620
|
name = "target-lexicon"
|
|
2095
3621
|
version = "0.13.5"
|
|
@@ -2105,7 +3631,7 @@ dependencies = [
|
|
|
2105
3631
|
"fastrand",
|
|
2106
3632
|
"getrandom 0.4.2",
|
|
2107
3633
|
"once_cell",
|
|
2108
|
-
"rustix",
|
|
3634
|
+
"rustix 1.1.4",
|
|
2109
3635
|
"windows-sys 0.61.2",
|
|
2110
3636
|
]
|
|
2111
3637
|
|
|
@@ -2166,7 +3692,7 @@ checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
|
|
|
2166
3692
|
dependencies = [
|
|
2167
3693
|
"libc",
|
|
2168
3694
|
"wasi 0.10.0+wasi-snapshot-preview1",
|
|
2169
|
-
"winapi
|
|
3695
|
+
"winapi",
|
|
2170
3696
|
]
|
|
2171
3697
|
|
|
2172
3698
|
[[package]]
|
|
@@ -2202,14 +3728,89 @@ dependencies = [
|
|
|
2202
3728
|
"time-core",
|
|
2203
3729
|
]
|
|
2204
3730
|
|
|
3731
|
+
[[package]]
|
|
3732
|
+
name = "tiny-skia"
|
|
3733
|
+
version = "0.11.4"
|
|
3734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3735
|
+
checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
|
|
3736
|
+
dependencies = [
|
|
3737
|
+
"arrayref",
|
|
3738
|
+
"arrayvec",
|
|
3739
|
+
"bytemuck",
|
|
3740
|
+
"cfg-if",
|
|
3741
|
+
"log",
|
|
3742
|
+
"tiny-skia-path 0.11.4",
|
|
3743
|
+
]
|
|
3744
|
+
|
|
3745
|
+
[[package]]
|
|
3746
|
+
name = "tiny-skia"
|
|
3747
|
+
version = "0.12.0"
|
|
3748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3749
|
+
checksum = "47ffee5eaaf5527f630fb0e356b90ebdec84d5d18d937c5e440350f88c5a91ea"
|
|
3750
|
+
dependencies = [
|
|
3751
|
+
"arrayref",
|
|
3752
|
+
"arrayvec",
|
|
3753
|
+
"bytemuck",
|
|
3754
|
+
"cfg-if",
|
|
3755
|
+
"log",
|
|
3756
|
+
"png",
|
|
3757
|
+
"tiny-skia-path 0.12.0",
|
|
3758
|
+
]
|
|
3759
|
+
|
|
3760
|
+
[[package]]
|
|
3761
|
+
name = "tiny-skia-path"
|
|
3762
|
+
version = "0.11.4"
|
|
3763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3764
|
+
checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
|
|
3765
|
+
dependencies = [
|
|
3766
|
+
"arrayref",
|
|
3767
|
+
"bytemuck",
|
|
3768
|
+
"strict-num",
|
|
3769
|
+
]
|
|
3770
|
+
|
|
3771
|
+
[[package]]
|
|
3772
|
+
name = "tiny-skia-path"
|
|
3773
|
+
version = "0.12.0"
|
|
3774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3775
|
+
checksum = "edca365c3faccca67d06593c5980fa6c57687de727a03131735bb85f01fdeeb9"
|
|
3776
|
+
dependencies = [
|
|
3777
|
+
"arrayref",
|
|
3778
|
+
"bytemuck",
|
|
3779
|
+
"strict-num",
|
|
3780
|
+
]
|
|
3781
|
+
|
|
3782
|
+
[[package]]
|
|
3783
|
+
name = "tiny-xlib"
|
|
3784
|
+
version = "0.2.5"
|
|
3785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3786
|
+
checksum = "a90a0ca3ee6a69f2ad28fd11621a4c3f03b371f366be500b64df260c4ffbafb4"
|
|
3787
|
+
dependencies = [
|
|
3788
|
+
"as-raw-xcb-connection",
|
|
3789
|
+
"ctor",
|
|
3790
|
+
"libloading 0.8.9",
|
|
3791
|
+
"pkg-config",
|
|
3792
|
+
"tracing",
|
|
3793
|
+
]
|
|
3794
|
+
|
|
2205
3795
|
[[package]]
|
|
2206
3796
|
name = "tinystr"
|
|
2207
|
-
version = "0.
|
|
3797
|
+
version = "0.7.6"
|
|
3798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3799
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
|
3800
|
+
dependencies = [
|
|
3801
|
+
"displaydoc",
|
|
3802
|
+
"zerovec 0.10.4",
|
|
3803
|
+
]
|
|
3804
|
+
|
|
3805
|
+
[[package]]
|
|
3806
|
+
name = "tinystr"
|
|
3807
|
+
version = "0.8.3"
|
|
2208
3808
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2209
|
-
checksum = "
|
|
3809
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2210
3810
|
dependencies = [
|
|
2211
3811
|
"displaydoc",
|
|
2212
|
-
"
|
|
3812
|
+
"serde_core",
|
|
3813
|
+
"zerovec 0.11.6",
|
|
2213
3814
|
]
|
|
2214
3815
|
|
|
2215
3816
|
[[package]]
|
|
@@ -2247,39 +3848,76 @@ dependencies = [
|
|
|
2247
3848
|
|
|
2248
3849
|
[[package]]
|
|
2249
3850
|
name = "toml_datetime"
|
|
2250
|
-
version = "1.1.
|
|
3851
|
+
version = "1.1.1+spec-1.1.0"
|
|
2251
3852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2252
|
-
checksum = "
|
|
3853
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
2253
3854
|
dependencies = [
|
|
2254
3855
|
"serde_core",
|
|
2255
3856
|
]
|
|
2256
3857
|
|
|
2257
3858
|
[[package]]
|
|
2258
3859
|
name = "toml_edit"
|
|
2259
|
-
version = "0.25.
|
|
3860
|
+
version = "0.25.11+spec-1.1.0"
|
|
2260
3861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
|
-
checksum = "
|
|
3862
|
+
checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b"
|
|
2262
3863
|
dependencies = [
|
|
2263
3864
|
"indexmap",
|
|
2264
|
-
"toml_datetime 1.1.
|
|
3865
|
+
"toml_datetime 1.1.1+spec-1.1.0",
|
|
2265
3866
|
"toml_parser",
|
|
2266
|
-
"winnow 1.0.
|
|
3867
|
+
"winnow 1.0.3",
|
|
2267
3868
|
]
|
|
2268
3869
|
|
|
2269
3870
|
[[package]]
|
|
2270
3871
|
name = "toml_parser"
|
|
2271
|
-
version = "1.1.
|
|
3872
|
+
version = "1.1.2+spec-1.1.0"
|
|
2272
3873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2273
|
-
checksum = "
|
|
3874
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
2274
3875
|
dependencies = [
|
|
2275
|
-
"winnow 1.0.
|
|
3876
|
+
"winnow 1.0.3",
|
|
2276
3877
|
]
|
|
2277
3878
|
|
|
2278
3879
|
[[package]]
|
|
2279
3880
|
name = "toml_writer"
|
|
2280
|
-
version = "1.1.
|
|
3881
|
+
version = "1.1.1+spec-1.1.0"
|
|
3882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3883
|
+
checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
|
|
3884
|
+
|
|
3885
|
+
[[package]]
|
|
3886
|
+
name = "tracing"
|
|
3887
|
+
version = "0.1.44"
|
|
3888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3889
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3890
|
+
dependencies = [
|
|
3891
|
+
"pin-project-lite",
|
|
3892
|
+
"tracing-core",
|
|
3893
|
+
]
|
|
3894
|
+
|
|
3895
|
+
[[package]]
|
|
3896
|
+
name = "tracing-core"
|
|
3897
|
+
version = "0.1.36"
|
|
3898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3899
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3900
|
+
|
|
3901
|
+
[[package]]
|
|
3902
|
+
name = "ttf-parser"
|
|
3903
|
+
version = "0.21.1"
|
|
2281
3904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2282
|
-
checksum = "
|
|
3905
|
+
checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
|
|
3906
|
+
|
|
3907
|
+
[[package]]
|
|
3908
|
+
name = "ttf-parser"
|
|
3909
|
+
version = "0.25.1"
|
|
3910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3911
|
+
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
|
3912
|
+
|
|
3913
|
+
[[package]]
|
|
3914
|
+
name = "type-map"
|
|
3915
|
+
version = "0.5.1"
|
|
3916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3917
|
+
checksum = "cb30dbbd9036155e74adad6812e9898d03ec374946234fbcebd5dfc7b9187b90"
|
|
3918
|
+
dependencies = [
|
|
3919
|
+
"rustc-hash",
|
|
3920
|
+
]
|
|
2283
3921
|
|
|
2284
3922
|
[[package]]
|
|
2285
3923
|
name = "typed-path"
|
|
@@ -2289,9 +3927,27 @@ checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
|
|
|
2289
3927
|
|
|
2290
3928
|
[[package]]
|
|
2291
3929
|
name = "typenum"
|
|
2292
|
-
version = "1.
|
|
3930
|
+
version = "1.20.0"
|
|
3931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3932
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
3933
|
+
|
|
3934
|
+
[[package]]
|
|
3935
|
+
name = "unic-langid"
|
|
3936
|
+
version = "0.9.6"
|
|
3937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3938
|
+
checksum = "a28ba52c9b05311f4f6e62d5d9d46f094bd6e84cb8df7b3ef952748d752a7d05"
|
|
3939
|
+
dependencies = [
|
|
3940
|
+
"unic-langid-impl",
|
|
3941
|
+
]
|
|
3942
|
+
|
|
3943
|
+
[[package]]
|
|
3944
|
+
name = "unic-langid-impl"
|
|
3945
|
+
version = "0.9.6"
|
|
2293
3946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2294
|
-
checksum = "
|
|
3947
|
+
checksum = "dce1bf08044d4b7a94028c93786f8566047edc11110595914de93362559bc658"
|
|
3948
|
+
dependencies = [
|
|
3949
|
+
"tinystr 0.8.3",
|
|
3950
|
+
]
|
|
2295
3951
|
|
|
2296
3952
|
[[package]]
|
|
2297
3953
|
name = "unicode-ident"
|
|
@@ -2299,6 +3955,12 @@ version = "1.0.24"
|
|
|
2299
3955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2300
3956
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2301
3957
|
|
|
3958
|
+
[[package]]
|
|
3959
|
+
name = "unicode-segmentation"
|
|
3960
|
+
version = "1.13.2"
|
|
3961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3962
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
3963
|
+
|
|
2302
3964
|
[[package]]
|
|
2303
3965
|
name = "unicode-xid"
|
|
2304
3966
|
version = "0.2.6"
|
|
@@ -2372,22 +4034,33 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
2372
4034
|
|
|
2373
4035
|
[[package]]
|
|
2374
4036
|
name = "uuid"
|
|
2375
|
-
version = "1.23.
|
|
4037
|
+
version = "1.23.1"
|
|
2376
4038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2377
|
-
checksum = "
|
|
4039
|
+
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
2378
4040
|
dependencies = [
|
|
2379
4041
|
"getrandom 0.4.2",
|
|
2380
4042
|
"js-sys",
|
|
2381
|
-
"rand",
|
|
4043
|
+
"rand 0.10.1",
|
|
4044
|
+
"wasm-bindgen",
|
|
4045
|
+
]
|
|
4046
|
+
|
|
4047
|
+
[[package]]
|
|
4048
|
+
name = "v_frame"
|
|
4049
|
+
version = "0.3.9"
|
|
4050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4051
|
+
checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
|
|
4052
|
+
dependencies = [
|
|
4053
|
+
"aligned-vec",
|
|
4054
|
+
"num-traits",
|
|
2382
4055
|
"wasm-bindgen",
|
|
2383
4056
|
]
|
|
2384
4057
|
|
|
2385
4058
|
[[package]]
|
|
2386
4059
|
name = "velopack"
|
|
2387
|
-
version = "
|
|
4060
|
+
version = "1.0.7-ga630726"
|
|
2388
4061
|
dependencies = [
|
|
2389
4062
|
"anyhow",
|
|
2390
|
-
"bitflags",
|
|
4063
|
+
"bitflags 2.11.1",
|
|
2391
4064
|
"derivative",
|
|
2392
4065
|
"glob",
|
|
2393
4066
|
"lazy_static",
|
|
@@ -2395,7 +4068,7 @@ dependencies = [
|
|
|
2395
4068
|
"log",
|
|
2396
4069
|
"log-panics",
|
|
2397
4070
|
"normpath",
|
|
2398
|
-
"rand",
|
|
4071
|
+
"rand 0.10.1",
|
|
2399
4072
|
"regex",
|
|
2400
4073
|
"semver",
|
|
2401
4074
|
"serde",
|
|
@@ -2418,17 +4091,14 @@ dependencies = [
|
|
|
2418
4091
|
|
|
2419
4092
|
[[package]]
|
|
2420
4093
|
name = "velopack_bins"
|
|
2421
|
-
version = "
|
|
4094
|
+
version = "1.0.7-ga630726"
|
|
2422
4095
|
dependencies = [
|
|
2423
4096
|
"anyhow",
|
|
2424
|
-
"bitflags",
|
|
4097
|
+
"bitflags 2.11.1",
|
|
2425
4098
|
"chrono",
|
|
2426
4099
|
"clap",
|
|
2427
|
-
"core-foundation",
|
|
2428
|
-
"core-foundation-sys",
|
|
2429
4100
|
"derivative",
|
|
2430
|
-
"
|
|
2431
|
-
"enum-flags",
|
|
4101
|
+
"fast_image_resize",
|
|
2432
4102
|
"fs_extra",
|
|
2433
4103
|
"glob",
|
|
2434
4104
|
"image",
|
|
@@ -2444,7 +4114,7 @@ dependencies = [
|
|
|
2444
4114
|
"pretty-bytes-rust",
|
|
2445
4115
|
"pretty_assertions",
|
|
2446
4116
|
"progress-streams",
|
|
2447
|
-
"rand",
|
|
4117
|
+
"rand 0.10.1",
|
|
2448
4118
|
"rayon",
|
|
2449
4119
|
"regex",
|
|
2450
4120
|
"remove_dir_all",
|
|
@@ -2459,6 +4129,7 @@ dependencies = [
|
|
|
2459
4129
|
"tempfile",
|
|
2460
4130
|
"time 0.3.47",
|
|
2461
4131
|
"velopack",
|
|
4132
|
+
"velopack_l18n",
|
|
2462
4133
|
"wait-timeout",
|
|
2463
4134
|
"waitpid-any",
|
|
2464
4135
|
"walkdir",
|
|
@@ -2470,9 +4141,25 @@ dependencies = [
|
|
|
2470
4141
|
"zstd",
|
|
2471
4142
|
]
|
|
2472
4143
|
|
|
4144
|
+
[[package]]
|
|
4145
|
+
name = "velopack_l18n"
|
|
4146
|
+
version = "1.0.7-ga630726"
|
|
4147
|
+
dependencies = [
|
|
4148
|
+
"anyhow",
|
|
4149
|
+
"fluent",
|
|
4150
|
+
"fluent-bundle",
|
|
4151
|
+
"fluent-langneg 0.14.2",
|
|
4152
|
+
"log",
|
|
4153
|
+
"ntest",
|
|
4154
|
+
"semver",
|
|
4155
|
+
"sys-locale",
|
|
4156
|
+
"unic-langid",
|
|
4157
|
+
"xdialog",
|
|
4158
|
+
]
|
|
4159
|
+
|
|
2473
4160
|
[[package]]
|
|
2474
4161
|
name = "velopack_libc"
|
|
2475
|
-
version = "
|
|
4162
|
+
version = "1.0.7-ga630726"
|
|
2476
4163
|
dependencies = [
|
|
2477
4164
|
"anyhow",
|
|
2478
4165
|
"cbindgen",
|
|
@@ -2489,7 +4176,7 @@ dependencies = [
|
|
|
2489
4176
|
|
|
2490
4177
|
[[package]]
|
|
2491
4178
|
name = "velopack_nodeffi"
|
|
2492
|
-
version = "
|
|
4179
|
+
version = "1.0.7-ga630726"
|
|
2493
4180
|
dependencies = [
|
|
2494
4181
|
"lazy_static",
|
|
2495
4182
|
"log",
|
|
@@ -2513,15 +4200,22 @@ dependencies = [
|
|
|
2513
4200
|
|
|
2514
4201
|
[[package]]
|
|
2515
4202
|
name = "velopack_wix"
|
|
2516
|
-
version = "
|
|
4203
|
+
version = "1.0.7-ga630726"
|
|
2517
4204
|
dependencies = [
|
|
2518
4205
|
"anyhow",
|
|
2519
4206
|
"remove_dir_all",
|
|
2520
4207
|
"velopack",
|
|
2521
4208
|
"velopack_bins",
|
|
4209
|
+
"velopack_l18n",
|
|
2522
4210
|
"windows",
|
|
2523
4211
|
]
|
|
2524
4212
|
|
|
4213
|
+
[[package]]
|
|
4214
|
+
name = "version_check"
|
|
4215
|
+
version = "0.9.5"
|
|
4216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4217
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
4218
|
+
|
|
2525
4219
|
[[package]]
|
|
2526
4220
|
name = "wait-timeout"
|
|
2527
4221
|
version = "0.2.1"
|
|
@@ -2537,7 +4231,7 @@ version = "0.3.0"
|
|
|
2537
4231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2538
4232
|
checksum = "18aa3ce681e189f125c4c1e1388c03285e2fd434ef52c7203084012ac29c5e4a"
|
|
2539
4233
|
dependencies = [
|
|
2540
|
-
"rustix",
|
|
4234
|
+
"rustix 1.1.4",
|
|
2541
4235
|
"windows-sys 0.59.0",
|
|
2542
4236
|
]
|
|
2543
4237
|
|
|
@@ -2565,11 +4259,11 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
2565
4259
|
|
|
2566
4260
|
[[package]]
|
|
2567
4261
|
name = "wasip2"
|
|
2568
|
-
version = "1.0.
|
|
4262
|
+
version = "1.0.3+wasi-0.2.9"
|
|
2569
4263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
|
-
checksum = "
|
|
4264
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
2571
4265
|
dependencies = [
|
|
2572
|
-
"wit-bindgen",
|
|
4266
|
+
"wit-bindgen 0.57.1",
|
|
2573
4267
|
]
|
|
2574
4268
|
|
|
2575
4269
|
[[package]]
|
|
@@ -2578,27 +4272,37 @@ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
|
2578
4272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
4273
|
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
2580
4274
|
dependencies = [
|
|
2581
|
-
"wit-bindgen",
|
|
4275
|
+
"wit-bindgen 0.51.0",
|
|
2582
4276
|
]
|
|
2583
4277
|
|
|
2584
4278
|
[[package]]
|
|
2585
4279
|
name = "wasm-bindgen"
|
|
2586
|
-
version = "0.2.
|
|
4280
|
+
version = "0.2.122"
|
|
2587
4281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2588
|
-
checksum = "
|
|
4282
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
2589
4283
|
dependencies = [
|
|
2590
|
-
"cfg-if
|
|
4284
|
+
"cfg-if",
|
|
2591
4285
|
"once_cell",
|
|
2592
4286
|
"rustversion",
|
|
2593
4287
|
"wasm-bindgen-macro",
|
|
2594
4288
|
"wasm-bindgen-shared",
|
|
2595
4289
|
]
|
|
2596
4290
|
|
|
4291
|
+
[[package]]
|
|
4292
|
+
name = "wasm-bindgen-futures"
|
|
4293
|
+
version = "0.4.72"
|
|
4294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4295
|
+
checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
|
|
4296
|
+
dependencies = [
|
|
4297
|
+
"js-sys",
|
|
4298
|
+
"wasm-bindgen",
|
|
4299
|
+
]
|
|
4300
|
+
|
|
2597
4301
|
[[package]]
|
|
2598
4302
|
name = "wasm-bindgen-macro"
|
|
2599
|
-
version = "0.2.
|
|
4303
|
+
version = "0.2.122"
|
|
2600
4304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2601
|
-
checksum = "
|
|
4305
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
2602
4306
|
dependencies = [
|
|
2603
4307
|
"quote",
|
|
2604
4308
|
"wasm-bindgen-macro-support",
|
|
@@ -2606,9 +4310,9 @@ dependencies = [
|
|
|
2606
4310
|
|
|
2607
4311
|
[[package]]
|
|
2608
4312
|
name = "wasm-bindgen-macro-support"
|
|
2609
|
-
version = "0.2.
|
|
4313
|
+
version = "0.2.122"
|
|
2610
4314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
-
checksum = "
|
|
4315
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
2612
4316
|
dependencies = [
|
|
2613
4317
|
"bumpalo",
|
|
2614
4318
|
"proc-macro2",
|
|
@@ -2619,9 +4323,9 @@ dependencies = [
|
|
|
2619
4323
|
|
|
2620
4324
|
[[package]]
|
|
2621
4325
|
name = "wasm-bindgen-shared"
|
|
2622
|
-
version = "0.2.
|
|
4326
|
+
version = "0.2.122"
|
|
2623
4327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2624
|
-
checksum = "
|
|
4328
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
2625
4329
|
dependencies = [
|
|
2626
4330
|
"unicode-ident",
|
|
2627
4331
|
]
|
|
@@ -2654,17 +4358,146 @@ version = "0.244.0"
|
|
|
2654
4358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2655
4359
|
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
2656
4360
|
dependencies = [
|
|
2657
|
-
"bitflags",
|
|
4361
|
+
"bitflags 2.11.1",
|
|
2658
4362
|
"hashbrown 0.15.5",
|
|
2659
4363
|
"indexmap",
|
|
2660
4364
|
"semver",
|
|
2661
4365
|
]
|
|
2662
4366
|
|
|
4367
|
+
[[package]]
|
|
4368
|
+
name = "wayland-backend"
|
|
4369
|
+
version = "0.3.15"
|
|
4370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4371
|
+
checksum = "2857dd20b54e916ec7253b3d6b4d5c4d7d4ca2c33c2e11c6c76a99bd8744755d"
|
|
4372
|
+
dependencies = [
|
|
4373
|
+
"cc",
|
|
4374
|
+
"downcast-rs",
|
|
4375
|
+
"rustix 1.1.4",
|
|
4376
|
+
"scoped-tls",
|
|
4377
|
+
"smallvec",
|
|
4378
|
+
"wayland-sys",
|
|
4379
|
+
]
|
|
4380
|
+
|
|
4381
|
+
[[package]]
|
|
4382
|
+
name = "wayland-client"
|
|
4383
|
+
version = "0.31.14"
|
|
4384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4385
|
+
checksum = "645c7c96bb74690c3189b5c9cb4ca1627062bb23693a4fad9d8c3de958260144"
|
|
4386
|
+
dependencies = [
|
|
4387
|
+
"bitflags 2.11.1",
|
|
4388
|
+
"rustix 1.1.4",
|
|
4389
|
+
"wayland-backend",
|
|
4390
|
+
"wayland-scanner",
|
|
4391
|
+
]
|
|
4392
|
+
|
|
4393
|
+
[[package]]
|
|
4394
|
+
name = "wayland-csd-frame"
|
|
4395
|
+
version = "0.3.0"
|
|
4396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4397
|
+
checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e"
|
|
4398
|
+
dependencies = [
|
|
4399
|
+
"bitflags 2.11.1",
|
|
4400
|
+
"cursor-icon",
|
|
4401
|
+
"wayland-backend",
|
|
4402
|
+
]
|
|
4403
|
+
|
|
4404
|
+
[[package]]
|
|
4405
|
+
name = "wayland-cursor"
|
|
4406
|
+
version = "0.31.14"
|
|
4407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4408
|
+
checksum = "4a52d18780be9b1314328a3de5f930b73d2200112e3849ca6cb11822793fb34d"
|
|
4409
|
+
dependencies = [
|
|
4410
|
+
"rustix 1.1.4",
|
|
4411
|
+
"wayland-client",
|
|
4412
|
+
"xcursor",
|
|
4413
|
+
]
|
|
4414
|
+
|
|
4415
|
+
[[package]]
|
|
4416
|
+
name = "wayland-protocols"
|
|
4417
|
+
version = "0.32.12"
|
|
4418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4419
|
+
checksum = "563a85523cade2429938e790815fd7319062103b9f4a2dc806e9b53b95982d8f"
|
|
4420
|
+
dependencies = [
|
|
4421
|
+
"bitflags 2.11.1",
|
|
4422
|
+
"wayland-backend",
|
|
4423
|
+
"wayland-client",
|
|
4424
|
+
"wayland-scanner",
|
|
4425
|
+
]
|
|
4426
|
+
|
|
4427
|
+
[[package]]
|
|
4428
|
+
name = "wayland-protocols-plasma"
|
|
4429
|
+
version = "0.3.12"
|
|
4430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4431
|
+
checksum = "2b6d8cf1eb2c1c31ed1f5643c88a6e53538129d4af80030c8cabd1f9fa884d91"
|
|
4432
|
+
dependencies = [
|
|
4433
|
+
"bitflags 2.11.1",
|
|
4434
|
+
"wayland-backend",
|
|
4435
|
+
"wayland-client",
|
|
4436
|
+
"wayland-protocols",
|
|
4437
|
+
"wayland-scanner",
|
|
4438
|
+
]
|
|
4439
|
+
|
|
4440
|
+
[[package]]
|
|
4441
|
+
name = "wayland-protocols-wlr"
|
|
4442
|
+
version = "0.3.12"
|
|
4443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4444
|
+
checksum = "eb04e52f7836d7c7976c78ca0250d61e33873c34156a2a1fc9474828ec268234"
|
|
4445
|
+
dependencies = [
|
|
4446
|
+
"bitflags 2.11.1",
|
|
4447
|
+
"wayland-backend",
|
|
4448
|
+
"wayland-client",
|
|
4449
|
+
"wayland-protocols",
|
|
4450
|
+
"wayland-scanner",
|
|
4451
|
+
]
|
|
4452
|
+
|
|
4453
|
+
[[package]]
|
|
4454
|
+
name = "wayland-scanner"
|
|
4455
|
+
version = "0.31.10"
|
|
4456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4457
|
+
checksum = "9c324a910fd86ebdc364a3e61ec1f11737d3b1d6c273c0239ee8ff4bc0d24b4a"
|
|
4458
|
+
dependencies = [
|
|
4459
|
+
"proc-macro2",
|
|
4460
|
+
"quick-xml",
|
|
4461
|
+
"quote",
|
|
4462
|
+
]
|
|
4463
|
+
|
|
4464
|
+
[[package]]
|
|
4465
|
+
name = "wayland-sys"
|
|
4466
|
+
version = "0.31.11"
|
|
4467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4468
|
+
checksum = "d8eab23fefc9e41f8e841df4a9c707e8a8c4ed26e944ef69297184de2785e3be"
|
|
4469
|
+
dependencies = [
|
|
4470
|
+
"dlib",
|
|
4471
|
+
"log",
|
|
4472
|
+
"once_cell",
|
|
4473
|
+
"pkg-config",
|
|
4474
|
+
]
|
|
4475
|
+
|
|
4476
|
+
[[package]]
|
|
4477
|
+
name = "web-sys"
|
|
4478
|
+
version = "0.3.99"
|
|
4479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4480
|
+
checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
|
|
4481
|
+
dependencies = [
|
|
4482
|
+
"js-sys",
|
|
4483
|
+
"wasm-bindgen",
|
|
4484
|
+
]
|
|
4485
|
+
|
|
4486
|
+
[[package]]
|
|
4487
|
+
name = "web-time"
|
|
4488
|
+
version = "1.1.0"
|
|
4489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4490
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
4491
|
+
dependencies = [
|
|
4492
|
+
"js-sys",
|
|
4493
|
+
"wasm-bindgen",
|
|
4494
|
+
]
|
|
4495
|
+
|
|
2663
4496
|
[[package]]
|
|
2664
4497
|
name = "webpki-roots"
|
|
2665
|
-
version = "1.0.
|
|
4498
|
+
version = "1.0.7"
|
|
2666
4499
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2667
|
-
checksum = "
|
|
4500
|
+
checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
|
|
2668
4501
|
dependencies = [
|
|
2669
4502
|
"rustls-pki-types",
|
|
2670
4503
|
]
|
|
@@ -2687,10 +4520,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2687
4520
|
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
2688
4521
|
|
|
2689
4522
|
[[package]]
|
|
2690
|
-
name = "
|
|
2691
|
-
version = "
|
|
4523
|
+
name = "widestring"
|
|
4524
|
+
version = "1.2.1"
|
|
2692
4525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2693
|
-
checksum = "
|
|
4526
|
+
checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
|
|
2694
4527
|
|
|
2695
4528
|
[[package]]
|
|
2696
4529
|
name = "winapi"
|
|
@@ -2702,12 +4535,6 @@ dependencies = [
|
|
|
2702
4535
|
"winapi-x86_64-pc-windows-gnu",
|
|
2703
4536
|
]
|
|
2704
4537
|
|
|
2705
|
-
[[package]]
|
|
2706
|
-
name = "winapi-build"
|
|
2707
|
-
version = "0.1.1"
|
|
2708
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2709
|
-
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
|
|
2710
|
-
|
|
2711
4538
|
[[package]]
|
|
2712
4539
|
name = "winapi-i686-pc-windows-gnu"
|
|
2713
4540
|
version = "0.4.0"
|
|
@@ -2930,6 +4757,58 @@ version = "0.52.6"
|
|
|
2930
4757
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2931
4758
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2932
4759
|
|
|
4760
|
+
[[package]]
|
|
4761
|
+
name = "winit"
|
|
4762
|
+
version = "0.30.13"
|
|
4763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4764
|
+
checksum = "a6755fa58a9f8350bd1e472d4c3fcc25f824ec358933bba33306d0b63df5978d"
|
|
4765
|
+
dependencies = [
|
|
4766
|
+
"ahash",
|
|
4767
|
+
"android-activity",
|
|
4768
|
+
"atomic-waker",
|
|
4769
|
+
"bitflags 2.11.1",
|
|
4770
|
+
"block2 0.5.1",
|
|
4771
|
+
"bytemuck",
|
|
4772
|
+
"calloop",
|
|
4773
|
+
"cfg_aliases",
|
|
4774
|
+
"concurrent-queue",
|
|
4775
|
+
"core-foundation",
|
|
4776
|
+
"core-graphics",
|
|
4777
|
+
"cursor-icon",
|
|
4778
|
+
"dpi",
|
|
4779
|
+
"js-sys",
|
|
4780
|
+
"libc",
|
|
4781
|
+
"memmap2",
|
|
4782
|
+
"ndk",
|
|
4783
|
+
"objc2 0.5.2",
|
|
4784
|
+
"objc2-app-kit 0.2.2",
|
|
4785
|
+
"objc2-foundation 0.2.2",
|
|
4786
|
+
"objc2-ui-kit 0.2.2",
|
|
4787
|
+
"orbclient",
|
|
4788
|
+
"percent-encoding",
|
|
4789
|
+
"pin-project",
|
|
4790
|
+
"raw-window-handle",
|
|
4791
|
+
"redox_syscall 0.4.1",
|
|
4792
|
+
"rustix 0.38.44",
|
|
4793
|
+
"sctk-adwaita",
|
|
4794
|
+
"smithay-client-toolkit",
|
|
4795
|
+
"smol_str",
|
|
4796
|
+
"tracing",
|
|
4797
|
+
"unicode-segmentation",
|
|
4798
|
+
"wasm-bindgen",
|
|
4799
|
+
"wasm-bindgen-futures",
|
|
4800
|
+
"wayland-backend",
|
|
4801
|
+
"wayland-client",
|
|
4802
|
+
"wayland-protocols",
|
|
4803
|
+
"wayland-protocols-plasma",
|
|
4804
|
+
"web-sys",
|
|
4805
|
+
"web-time",
|
|
4806
|
+
"windows-sys 0.52.0",
|
|
4807
|
+
"x11-dl",
|
|
4808
|
+
"x11rb",
|
|
4809
|
+
"xkbcommon-dl",
|
|
4810
|
+
]
|
|
4811
|
+
|
|
2933
4812
|
[[package]]
|
|
2934
4813
|
name = "winnow"
|
|
2935
4814
|
version = "0.7.15"
|
|
@@ -2938,9 +4817,9 @@ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
|
2938
4817
|
|
|
2939
4818
|
[[package]]
|
|
2940
4819
|
name = "winnow"
|
|
2941
|
-
version = "1.0.
|
|
4820
|
+
version = "1.0.3"
|
|
2942
4821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2943
|
-
checksum = "
|
|
4822
|
+
checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
|
|
2944
4823
|
dependencies = [
|
|
2945
4824
|
"memchr",
|
|
2946
4825
|
]
|
|
@@ -2951,7 +4830,7 @@ version = "0.56.0"
|
|
|
2951
4830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2952
4831
|
checksum = "7d6f32a0ff4a9f6f01231eb2059cc85479330739333e0e58cadf03b6af2cca10"
|
|
2953
4832
|
dependencies = [
|
|
2954
|
-
"cfg-if
|
|
4833
|
+
"cfg-if",
|
|
2955
4834
|
"windows-sys 0.61.2",
|
|
2956
4835
|
]
|
|
2957
4836
|
|
|
@@ -2973,6 +4852,12 @@ dependencies = [
|
|
|
2973
4852
|
"wit-bindgen-rust-macro",
|
|
2974
4853
|
]
|
|
2975
4854
|
|
|
4855
|
+
[[package]]
|
|
4856
|
+
name = "wit-bindgen"
|
|
4857
|
+
version = "0.57.1"
|
|
4858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4859
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
4860
|
+
|
|
2976
4861
|
[[package]]
|
|
2977
4862
|
name = "wit-bindgen-core"
|
|
2978
4863
|
version = "0.51.0"
|
|
@@ -3022,7 +4907,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3022
4907
|
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
3023
4908
|
dependencies = [
|
|
3024
4909
|
"anyhow",
|
|
3025
|
-
"bitflags",
|
|
4910
|
+
"bitflags 2.11.1",
|
|
3026
4911
|
"indexmap",
|
|
3027
4912
|
"log",
|
|
3028
4913
|
"serde",
|
|
@@ -3054,15 +4939,107 @@ dependencies = [
|
|
|
3054
4939
|
|
|
3055
4940
|
[[package]]
|
|
3056
4941
|
name = "writeable"
|
|
3057
|
-
version = "0.
|
|
4942
|
+
version = "0.5.5"
|
|
4943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4944
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
|
4945
|
+
|
|
4946
|
+
[[package]]
|
|
4947
|
+
name = "writeable"
|
|
4948
|
+
version = "0.6.3"
|
|
4949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4950
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
4951
|
+
|
|
4952
|
+
[[package]]
|
|
4953
|
+
name = "x11-dl"
|
|
4954
|
+
version = "2.21.0"
|
|
4955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4956
|
+
checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
|
|
4957
|
+
dependencies = [
|
|
4958
|
+
"libc",
|
|
4959
|
+
"once_cell",
|
|
4960
|
+
"pkg-config",
|
|
4961
|
+
]
|
|
4962
|
+
|
|
4963
|
+
[[package]]
|
|
4964
|
+
name = "x11rb"
|
|
4965
|
+
version = "0.13.2"
|
|
4966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4967
|
+
checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
|
|
4968
|
+
dependencies = [
|
|
4969
|
+
"as-raw-xcb-connection",
|
|
4970
|
+
"gethostname",
|
|
4971
|
+
"libc",
|
|
4972
|
+
"libloading 0.8.9",
|
|
4973
|
+
"once_cell",
|
|
4974
|
+
"rustix 1.1.4",
|
|
4975
|
+
"x11rb-protocol",
|
|
4976
|
+
]
|
|
4977
|
+
|
|
4978
|
+
[[package]]
|
|
4979
|
+
name = "x11rb-protocol"
|
|
4980
|
+
version = "0.13.2"
|
|
4981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4982
|
+
checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
|
|
4983
|
+
|
|
4984
|
+
[[package]]
|
|
4985
|
+
name = "xcursor"
|
|
4986
|
+
version = "0.3.10"
|
|
4987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4988
|
+
checksum = "bec9e4a500ca8864c5b47b8b482a73d62e4237670e5b5f1d6b9e3cae50f28f2b"
|
|
4989
|
+
|
|
4990
|
+
[[package]]
|
|
4991
|
+
name = "xdialog"
|
|
4992
|
+
version = "2.1.1"
|
|
4993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4994
|
+
checksum = "2941029663fdd04046475aa22e0ab611c58453429e12927a8432f2a87b303b3b"
|
|
4995
|
+
dependencies = [
|
|
4996
|
+
"block2 0.6.2",
|
|
4997
|
+
"enum-map",
|
|
4998
|
+
"fontdue",
|
|
4999
|
+
"log",
|
|
5000
|
+
"mina",
|
|
5001
|
+
"objc2 0.6.4",
|
|
5002
|
+
"objc2-app-kit 0.3.2",
|
|
5003
|
+
"objc2-foundation 0.3.2",
|
|
5004
|
+
"oneshot",
|
|
5005
|
+
"softbuffer",
|
|
5006
|
+
"thiserror 2.0.18",
|
|
5007
|
+
"tiny-skia 0.12.0",
|
|
5008
|
+
"widestring",
|
|
5009
|
+
"windows",
|
|
5010
|
+
"winit",
|
|
5011
|
+
]
|
|
5012
|
+
|
|
5013
|
+
[[package]]
|
|
5014
|
+
name = "xkbcommon-dl"
|
|
5015
|
+
version = "0.4.2"
|
|
5016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5017
|
+
checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
|
|
5018
|
+
dependencies = [
|
|
5019
|
+
"bitflags 2.11.1",
|
|
5020
|
+
"dlib",
|
|
5021
|
+
"log",
|
|
5022
|
+
"once_cell",
|
|
5023
|
+
"xkeysym",
|
|
5024
|
+
]
|
|
5025
|
+
|
|
5026
|
+
[[package]]
|
|
5027
|
+
name = "xkeysym"
|
|
5028
|
+
version = "0.2.1"
|
|
3058
5029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3059
|
-
checksum = "
|
|
5030
|
+
checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
|
|
3060
5031
|
|
|
3061
5032
|
[[package]]
|
|
3062
5033
|
name = "xml"
|
|
3063
|
-
version = "1.
|
|
5034
|
+
version = "1.3.0"
|
|
5035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5036
|
+
checksum = "636f85e5ca6488e96401b61eb7de54f4e44755c988af0f52cf90230c312a1a89"
|
|
5037
|
+
|
|
5038
|
+
[[package]]
|
|
5039
|
+
name = "y4m"
|
|
5040
|
+
version = "0.8.0"
|
|
3064
5041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3065
|
-
checksum = "
|
|
5042
|
+
checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
|
|
3066
5043
|
|
|
3067
5044
|
[[package]]
|
|
3068
5045
|
name = "yansi"
|
|
@@ -3072,20 +5049,44 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
3072
5049
|
|
|
3073
5050
|
[[package]]
|
|
3074
5051
|
name = "yoke"
|
|
3075
|
-
version = "0.
|
|
5052
|
+
version = "0.7.5"
|
|
5053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5054
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
5055
|
+
dependencies = [
|
|
5056
|
+
"serde",
|
|
5057
|
+
"stable_deref_trait",
|
|
5058
|
+
"yoke-derive 0.7.5",
|
|
5059
|
+
"zerofrom",
|
|
5060
|
+
]
|
|
5061
|
+
|
|
5062
|
+
[[package]]
|
|
5063
|
+
name = "yoke"
|
|
5064
|
+
version = "0.8.2"
|
|
3076
5065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
-
checksum = "
|
|
5066
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
3078
5067
|
dependencies = [
|
|
3079
5068
|
"stable_deref_trait",
|
|
3080
|
-
"yoke-derive",
|
|
5069
|
+
"yoke-derive 0.8.2",
|
|
3081
5070
|
"zerofrom",
|
|
3082
5071
|
]
|
|
3083
5072
|
|
|
3084
5073
|
[[package]]
|
|
3085
5074
|
name = "yoke-derive"
|
|
3086
|
-
version = "0.
|
|
5075
|
+
version = "0.7.5"
|
|
5076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5077
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
|
5078
|
+
dependencies = [
|
|
5079
|
+
"proc-macro2",
|
|
5080
|
+
"quote",
|
|
5081
|
+
"syn 2.0.117",
|
|
5082
|
+
"synstructure",
|
|
5083
|
+
]
|
|
5084
|
+
|
|
5085
|
+
[[package]]
|
|
5086
|
+
name = "yoke-derive"
|
|
5087
|
+
version = "0.8.2"
|
|
3087
5088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3088
|
-
checksum = "
|
|
5089
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
3089
5090
|
dependencies = [
|
|
3090
5091
|
"proc-macro2",
|
|
3091
5092
|
"quote",
|
|
@@ -3093,20 +5094,40 @@ dependencies = [
|
|
|
3093
5094
|
"synstructure",
|
|
3094
5095
|
]
|
|
3095
5096
|
|
|
5097
|
+
[[package]]
|
|
5098
|
+
name = "zerocopy"
|
|
5099
|
+
version = "0.8.48"
|
|
5100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5101
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
5102
|
+
dependencies = [
|
|
5103
|
+
"zerocopy-derive",
|
|
5104
|
+
]
|
|
5105
|
+
|
|
5106
|
+
[[package]]
|
|
5107
|
+
name = "zerocopy-derive"
|
|
5108
|
+
version = "0.8.48"
|
|
5109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5110
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
5111
|
+
dependencies = [
|
|
5112
|
+
"proc-macro2",
|
|
5113
|
+
"quote",
|
|
5114
|
+
"syn 2.0.117",
|
|
5115
|
+
]
|
|
5116
|
+
|
|
3096
5117
|
[[package]]
|
|
3097
5118
|
name = "zerofrom"
|
|
3098
|
-
version = "0.1.
|
|
5119
|
+
version = "0.1.8"
|
|
3099
5120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3100
|
-
checksum = "
|
|
5121
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
3101
5122
|
dependencies = [
|
|
3102
5123
|
"zerofrom-derive",
|
|
3103
5124
|
]
|
|
3104
5125
|
|
|
3105
5126
|
[[package]]
|
|
3106
5127
|
name = "zerofrom-derive"
|
|
3107
|
-
version = "0.1.
|
|
5128
|
+
version = "0.1.7"
|
|
3108
5129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3109
|
-
checksum = "
|
|
5130
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3110
5131
|
dependencies = [
|
|
3111
5132
|
"proc-macro2",
|
|
3112
5133
|
"quote",
|
|
@@ -3122,31 +5143,54 @@ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
|
3122
5143
|
|
|
3123
5144
|
[[package]]
|
|
3124
5145
|
name = "zerotrie"
|
|
3125
|
-
version = "0.2.
|
|
5146
|
+
version = "0.2.4"
|
|
3126
5147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3127
|
-
checksum = "
|
|
5148
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
3128
5149
|
dependencies = [
|
|
3129
5150
|
"displaydoc",
|
|
3130
|
-
"yoke",
|
|
5151
|
+
"yoke 0.8.2",
|
|
5152
|
+
"zerofrom",
|
|
5153
|
+
]
|
|
5154
|
+
|
|
5155
|
+
[[package]]
|
|
5156
|
+
name = "zerovec"
|
|
5157
|
+
version = "0.10.4"
|
|
5158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5159
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
5160
|
+
dependencies = [
|
|
5161
|
+
"yoke 0.7.5",
|
|
3131
5162
|
"zerofrom",
|
|
5163
|
+
"zerovec-derive 0.10.3",
|
|
3132
5164
|
]
|
|
3133
5165
|
|
|
3134
5166
|
[[package]]
|
|
3135
5167
|
name = "zerovec"
|
|
3136
|
-
version = "0.11.
|
|
5168
|
+
version = "0.11.6"
|
|
3137
5169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3138
|
-
checksum = "
|
|
5170
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
3139
5171
|
dependencies = [
|
|
3140
|
-
"
|
|
5172
|
+
"serde",
|
|
5173
|
+
"yoke 0.8.2",
|
|
3141
5174
|
"zerofrom",
|
|
3142
|
-
"zerovec-derive",
|
|
5175
|
+
"zerovec-derive 0.11.3",
|
|
5176
|
+
]
|
|
5177
|
+
|
|
5178
|
+
[[package]]
|
|
5179
|
+
name = "zerovec-derive"
|
|
5180
|
+
version = "0.10.3"
|
|
5181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5182
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
5183
|
+
dependencies = [
|
|
5184
|
+
"proc-macro2",
|
|
5185
|
+
"quote",
|
|
5186
|
+
"syn 2.0.117",
|
|
3143
5187
|
]
|
|
3144
5188
|
|
|
3145
5189
|
[[package]]
|
|
3146
5190
|
name = "zerovec-derive"
|
|
3147
|
-
version = "0.11.
|
|
5191
|
+
version = "0.11.3"
|
|
3148
5192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3149
|
-
checksum = "
|
|
5193
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
3150
5194
|
dependencies = [
|
|
3151
5195
|
"proc-macro2",
|
|
3152
5196
|
"quote",
|
|
@@ -3155,9 +5199,9 @@ dependencies = [
|
|
|
3155
5199
|
|
|
3156
5200
|
[[package]]
|
|
3157
5201
|
name = "zip"
|
|
3158
|
-
version = "8.
|
|
5202
|
+
version = "8.6.0"
|
|
3159
5203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3160
|
-
checksum = "
|
|
5204
|
+
checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
|
|
3161
5205
|
dependencies = [
|
|
3162
5206
|
"crc32fast",
|
|
3163
5207
|
"flate2",
|
|
@@ -3225,6 +5269,15 @@ version = "0.5.1"
|
|
|
3225
5269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3226
5270
|
checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
|
|
3227
5271
|
|
|
5272
|
+
[[package]]
|
|
5273
|
+
name = "zune-inflate"
|
|
5274
|
+
version = "0.2.54"
|
|
5275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5276
|
+
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
|
|
5277
|
+
dependencies = [
|
|
5278
|
+
"simd-adler32",
|
|
5279
|
+
]
|
|
5280
|
+
|
|
3228
5281
|
[[package]]
|
|
3229
5282
|
name = "zune-jpeg"
|
|
3230
5283
|
version = "0.5.15"
|