himg 0.0.4 → 0.0.6
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +23 -0
- data/Cargo.lock +548 -1047
- data/LICENSE-APACHE.txt +203 -0
- data/README.md +93 -39
- data/ext/himg/Cargo.toml +10 -7
- data/ext/himg/examples/assets/github_profile_offline.html +86 -0
- data/ext/himg/examples/file.rs +9 -8
- data/ext/himg/src/html_to_image.rs +34 -36
- data/ext/himg/src/image_size.rs +1 -1
- data/ext/himg/src/lib.rs +19 -15
- data/ext/himg/src/net_fetcher.rs +139 -0
- data/ext/himg/src/options.rs +22 -3
- data/ext/himg/src/renderer.rs +7 -5
- data/gemfiles/plain_ruby.gemfile.lock +1 -1
- data/gemfiles/rails_6.gemfile.lock +1 -1
- data/gemfiles/rails_7_0.gemfile.lock +1 -1
- data/gemfiles/rails_7_1.gemfile.lock +1 -1
- data/gemfiles/rails_7_2.gemfile.lock +1 -1
- data/gemfiles/rails_8.gemfile.lock +1 -1
- data/lib/himg/base_url.rb +21 -0
- data/lib/himg/cli.rb +64 -0
- data/lib/himg/railtie/controller_config.rb +31 -0
- data/lib/himg/railtie/template_handler.rb +2 -2
- data/lib/himg/railtie.rb +13 -2
- data/lib/himg/version.rb +1 -1
- data/lib/himg.rb +4 -2
- data/readme_hero.svg +54 -0
- data/sig/himg.rbs +11 -3
- metadata +9 -2
- /data/{LICENSE.txt → LICENSE-MIT.txt} +0 -0
data/Cargo.lock
CHANGED
@@ -19,9 +19,9 @@ dependencies = [
|
|
19
19
|
|
20
20
|
[[package]]
|
21
21
|
name = "adler2"
|
22
|
-
version = "2.0.
|
22
|
+
version = "2.0.1"
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
-
checksum = "
|
24
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
25
25
|
|
26
26
|
[[package]]
|
27
27
|
name = "aho-corasick"
|
@@ -39,38 +39,50 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
39
|
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
40
40
|
|
41
41
|
[[package]]
|
42
|
-
name = "
|
43
|
-
version = "0.
|
42
|
+
name = "anyrender"
|
43
|
+
version = "0.5.0"
|
44
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
-
checksum = "
|
45
|
+
checksum = "e6d136c78cf4c024f4433e2f775048c72c4912df168f9534652c5389217ee3bd"
|
46
46
|
dependencies = [
|
47
|
-
"
|
47
|
+
"kurbo",
|
48
|
+
"peniko",
|
49
|
+
"raw-window-handle",
|
48
50
|
]
|
49
51
|
|
50
52
|
[[package]]
|
51
|
-
name = "
|
52
|
-
version = "0.
|
53
|
+
name = "anyrender_svg"
|
54
|
+
version = "0.5.0"
|
53
55
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
54
|
-
checksum = "
|
56
|
+
checksum = "6811ea5c49d3ebad565d14d82564d21e24462cb81a2480818b9b57ce599eca1a"
|
55
57
|
dependencies = [
|
56
|
-
"
|
57
|
-
"
|
58
|
+
"anyrender",
|
59
|
+
"image",
|
60
|
+
"kurbo",
|
61
|
+
"peniko",
|
62
|
+
"thiserror 2.0.12",
|
63
|
+
"usvg",
|
58
64
|
]
|
59
65
|
|
60
66
|
[[package]]
|
61
|
-
name = "
|
62
|
-
version = "
|
67
|
+
name = "anyrender_vello_cpu"
|
68
|
+
version = "0.5.0"
|
63
69
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
64
|
-
checksum = "
|
70
|
+
checksum = "76e722679b9a2eea9db17748c3c05c09899bbefeb1f46ee2b3c192ad1f9631be"
|
65
71
|
dependencies = [
|
66
|
-
"
|
67
|
-
"
|
68
|
-
"
|
69
|
-
"
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
"
|
72
|
+
"anyrender",
|
73
|
+
"kurbo",
|
74
|
+
"peniko",
|
75
|
+
"vello_cpu",
|
76
|
+
]
|
77
|
+
|
78
|
+
[[package]]
|
79
|
+
name = "app_units"
|
80
|
+
version = "0.7.8"
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
82
|
+
checksum = "467b60e4ee6761cd6fd4e03ea58acefc8eec0d1b1def995c1b3b783fa7be8a60"
|
83
|
+
dependencies = [
|
84
|
+
"num-traits",
|
85
|
+
"serde",
|
74
86
|
]
|
75
87
|
|
76
88
|
[[package]]
|
@@ -85,15 +97,6 @@ version = "0.7.6"
|
|
85
97
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
86
98
|
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
87
99
|
|
88
|
-
[[package]]
|
89
|
-
name = "ash"
|
90
|
-
version = "0.38.0+1.3.281"
|
91
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
92
|
-
checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f"
|
93
|
-
dependencies = [
|
94
|
-
"libloading",
|
95
|
-
]
|
96
|
-
|
97
100
|
[[package]]
|
98
101
|
name = "atomic-waker"
|
99
102
|
version = "1.1.2"
|
@@ -105,21 +108,18 @@ name = "atomic_refcell"
|
|
105
108
|
version = "0.1.13"
|
106
109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
107
110
|
checksum = "41e67cd8309bbd06cd603a9e693a784ac2e5d1e955f11286e355089fcab3047c"
|
108
|
-
dependencies = [
|
109
|
-
"serde",
|
110
|
-
]
|
111
111
|
|
112
112
|
[[package]]
|
113
113
|
name = "autocfg"
|
114
|
-
version = "1.
|
114
|
+
version = "1.5.0"
|
115
115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
116
|
-
checksum = "
|
116
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
117
117
|
|
118
118
|
[[package]]
|
119
119
|
name = "backtrace"
|
120
|
-
version = "0.3.
|
120
|
+
version = "0.3.75"
|
121
121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
122
|
-
checksum = "
|
122
|
+
checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
|
123
123
|
dependencies = [
|
124
124
|
"addr2line",
|
125
125
|
"cfg-if",
|
@@ -142,7 +142,7 @@ version = "0.69.5"
|
|
142
142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
143
143
|
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
144
144
|
dependencies = [
|
145
|
-
"bitflags 2.9.
|
145
|
+
"bitflags 2.9.1",
|
146
146
|
"cexpr",
|
147
147
|
"clang-sys",
|
148
148
|
"itertools 0.12.1",
|
@@ -156,21 +156,6 @@ dependencies = [
|
|
156
156
|
"syn",
|
157
157
|
]
|
158
158
|
|
159
|
-
[[package]]
|
160
|
-
name = "bit-set"
|
161
|
-
version = "0.8.0"
|
162
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
163
|
-
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
164
|
-
dependencies = [
|
165
|
-
"bit-vec",
|
166
|
-
]
|
167
|
-
|
168
|
-
[[package]]
|
169
|
-
name = "bit-vec"
|
170
|
-
version = "0.8.0"
|
171
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
172
|
-
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
173
|
-
|
174
159
|
[[package]]
|
175
160
|
name = "bitflags"
|
176
161
|
version = "1.3.2"
|
@@ -179,23 +164,23 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
179
164
|
|
180
165
|
[[package]]
|
181
166
|
name = "bitflags"
|
182
|
-
version = "2.9.
|
167
|
+
version = "2.9.1"
|
183
168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
184
|
-
checksum = "
|
169
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
185
170
|
dependencies = [
|
186
171
|
"serde",
|
187
172
|
]
|
188
173
|
|
189
174
|
[[package]]
|
190
175
|
name = "blitz-dom"
|
191
|
-
version = "0.1.0-
|
176
|
+
version = "0.1.0-rc.1"
|
192
177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
193
|
-
checksum = "
|
178
|
+
checksum = "5b715adfa6d85cad5da636aac5785d40e26dcf3f4195403fe8c46be501b77d72"
|
194
179
|
dependencies = [
|
195
180
|
"accesskit",
|
196
181
|
"app_units",
|
197
|
-
"arboard",
|
198
182
|
"atomic_refcell",
|
183
|
+
"bitflags 2.9.1",
|
199
184
|
"blitz-traits",
|
200
185
|
"color",
|
201
186
|
"cursor-icon",
|
@@ -204,12 +189,13 @@ dependencies = [
|
|
204
189
|
"image",
|
205
190
|
"keyboard-types",
|
206
191
|
"markup5ever",
|
192
|
+
"objc2",
|
207
193
|
"parley",
|
208
194
|
"peniko",
|
195
|
+
"percent-encoding",
|
209
196
|
"selectors",
|
210
197
|
"slab",
|
211
198
|
"smallvec",
|
212
|
-
"string_cache",
|
213
199
|
"stylo",
|
214
200
|
"stylo_config",
|
215
201
|
"stylo_dom",
|
@@ -224,9 +210,9 @@ dependencies = [
|
|
224
210
|
|
225
211
|
[[package]]
|
226
212
|
name = "blitz-html"
|
227
|
-
version = "0.1.0-
|
213
|
+
version = "0.1.0-rc.1"
|
228
214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
229
|
-
checksum = "
|
215
|
+
checksum = "82a31ccea6ee542133f13ef11344c0a8fdcdc99285f30046e97b5b4478720705"
|
230
216
|
dependencies = [
|
231
217
|
"blitz-dom",
|
232
218
|
"blitz-traits",
|
@@ -236,81 +222,72 @@ dependencies = [
|
|
236
222
|
|
237
223
|
[[package]]
|
238
224
|
name = "blitz-net"
|
239
|
-
version = "0.1.0-
|
225
|
+
version = "0.1.0-rc.1"
|
240
226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
241
|
-
checksum = "
|
227
|
+
checksum = "a4b0b681ed5c32d0c3dafc2288cf10b9aa46e08de1a58350e5842d4d761c33ae"
|
242
228
|
dependencies = [
|
243
229
|
"blitz-traits",
|
244
230
|
"data-url",
|
245
231
|
"reqwest",
|
246
|
-
"thiserror 1.0.69",
|
247
232
|
"tokio",
|
248
233
|
]
|
249
234
|
|
250
235
|
[[package]]
|
251
|
-
name = "blitz-
|
252
|
-
version = "0.1.0-
|
236
|
+
name = "blitz-paint"
|
237
|
+
version = "0.1.0-rc.1"
|
253
238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
254
|
-
checksum = "
|
239
|
+
checksum = "b6b26d3c0645d2b502ec7b3984354b3c42a2af7e4bde92ed5d189ac160e4e1f5"
|
255
240
|
dependencies = [
|
241
|
+
"anyrender",
|
242
|
+
"anyrender_svg",
|
256
243
|
"blitz-dom",
|
257
244
|
"blitz-traits",
|
258
245
|
"color",
|
259
246
|
"euclid",
|
260
|
-
"
|
261
|
-
"image",
|
247
|
+
"kurbo",
|
262
248
|
"parley",
|
263
|
-
"
|
264
|
-
"raw-window-handle",
|
249
|
+
"peniko",
|
265
250
|
"stylo",
|
266
251
|
"taffy",
|
267
252
|
"tracing",
|
268
|
-
"
|
269
|
-
"vello_svg",
|
270
|
-
"wgpu",
|
253
|
+
"usvg",
|
271
254
|
]
|
272
255
|
|
273
256
|
[[package]]
|
274
257
|
name = "blitz-traits"
|
275
|
-
version = "0.1.0-
|
258
|
+
version = "0.1.0-rc.1"
|
276
259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
277
|
-
checksum = "
|
260
|
+
checksum = "f559ae4a8b1c7dafc09df5e1249f8a27c6b9a20658a15041128d202334e8e2c2"
|
278
261
|
dependencies = [
|
279
|
-
"bitflags 2.9.
|
262
|
+
"bitflags 2.9.1",
|
280
263
|
"bytes",
|
264
|
+
"cursor-icon",
|
281
265
|
"http",
|
282
266
|
"keyboard-types",
|
283
|
-
"raw-window-handle",
|
284
267
|
"smol_str",
|
285
268
|
"url",
|
286
269
|
]
|
287
270
|
|
288
|
-
[[package]]
|
289
|
-
name = "block"
|
290
|
-
version = "0.1.6"
|
291
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
292
|
-
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
293
|
-
|
294
271
|
[[package]]
|
295
272
|
name = "bumpalo"
|
296
|
-
version = "3.
|
273
|
+
version = "3.19.0"
|
297
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
298
|
-
checksum = "
|
275
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
299
276
|
|
300
277
|
[[package]]
|
301
278
|
name = "bytemuck"
|
302
|
-
version = "1.
|
279
|
+
version = "1.23.1"
|
303
280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
304
|
-
checksum = "
|
281
|
+
checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422"
|
305
282
|
dependencies = [
|
306
283
|
"bytemuck_derive",
|
307
284
|
]
|
308
285
|
|
309
286
|
[[package]]
|
310
287
|
name = "bytemuck_derive"
|
311
|
-
version = "1.
|
288
|
+
version = "1.10.0"
|
312
289
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
313
|
-
checksum = "
|
290
|
+
checksum = "441473f2b4b0459a68628c744bc61d23e730fb00128b841d30fa4bb3972257e4"
|
314
291
|
dependencies = [
|
315
292
|
"proc-macro2",
|
316
293
|
"quote",
|
@@ -337,9 +314,9 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
337
314
|
|
338
315
|
[[package]]
|
339
316
|
name = "cc"
|
340
|
-
version = "1.2.
|
317
|
+
version = "1.2.30"
|
341
318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
342
|
-
checksum = "
|
319
|
+
checksum = "deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7"
|
343
320
|
dependencies = [
|
344
321
|
"shlex",
|
345
322
|
]
|
@@ -355,15 +332,9 @@ dependencies = [
|
|
355
332
|
|
356
333
|
[[package]]
|
357
334
|
name = "cfg-if"
|
358
|
-
version = "1.0.
|
359
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
360
|
-
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
361
|
-
|
362
|
-
[[package]]
|
363
|
-
name = "cfg_aliases"
|
364
|
-
version = "0.1.1"
|
335
|
+
version = "1.0.1"
|
365
336
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
366
|
-
checksum = "
|
337
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
367
338
|
|
368
339
|
[[package]]
|
369
340
|
name = "clang-sys"
|
@@ -377,30 +348,14 @@ dependencies = [
|
|
377
348
|
]
|
378
349
|
|
379
350
|
[[package]]
|
380
|
-
name = "
|
381
|
-
version = "
|
382
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
383
|
-
checksum = "15efe7a882b08f34e38556b14f2fb3daa98769d06c7f0c1b076dfd0d983bc892"
|
384
|
-
dependencies = [
|
385
|
-
"error-code",
|
386
|
-
]
|
387
|
-
|
388
|
-
[[package]]
|
389
|
-
name = "codespan-reporting"
|
390
|
-
version = "0.11.1"
|
351
|
+
name = "color"
|
352
|
+
version = "0.3.1"
|
391
353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
392
|
-
checksum = "
|
354
|
+
checksum = "7ae467d04a8a8aea5d9a49018a6ade2e4221d92968e8ce55a48c0b1164e5f698"
|
393
355
|
dependencies = [
|
394
|
-
"
|
395
|
-
"unicode-width",
|
356
|
+
"bytemuck",
|
396
357
|
]
|
397
358
|
|
398
|
-
[[package]]
|
399
|
-
name = "color"
|
400
|
-
version = "0.2.3"
|
401
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
402
|
-
checksum = "61c387f6cef110ee8eaf12fca5586d3d303c07c594f4a5f02c768b6470b70dbd"
|
403
|
-
|
404
359
|
[[package]]
|
405
360
|
name = "color_quant"
|
406
361
|
version = "1.1.0"
|
@@ -423,17 +378,6 @@ version = "0.8.7"
|
|
423
378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
424
379
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
425
380
|
|
426
|
-
[[package]]
|
427
|
-
name = "core-graphics-types"
|
428
|
-
version = "0.1.3"
|
429
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
430
|
-
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
431
|
-
dependencies = [
|
432
|
-
"bitflags 1.3.2",
|
433
|
-
"core-foundation",
|
434
|
-
"libc",
|
435
|
-
]
|
436
|
-
|
437
381
|
[[package]]
|
438
382
|
name = "core_maths"
|
439
383
|
version = "0.1.1"
|
@@ -445,9 +389,9 @@ dependencies = [
|
|
445
389
|
|
446
390
|
[[package]]
|
447
391
|
name = "crc32fast"
|
448
|
-
version = "1.
|
392
|
+
version = "1.5.0"
|
449
393
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
450
|
-
checksum = "
|
394
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
451
395
|
dependencies = [
|
452
396
|
"cfg-if",
|
453
397
|
]
|
@@ -503,9 +447,9 @@ dependencies = [
|
|
503
447
|
|
504
448
|
[[package]]
|
505
449
|
name = "cursor-icon"
|
506
|
-
version = "1.
|
450
|
+
version = "1.2.0"
|
507
451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
508
|
-
checksum = "
|
452
|
+
checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
|
509
453
|
|
510
454
|
[[package]]
|
511
455
|
name = "darling"
|
@@ -549,9 +493,18 @@ checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a"
|
|
549
493
|
|
550
494
|
[[package]]
|
551
495
|
name = "derive_more"
|
552
|
-
version = "0.
|
496
|
+
version = "2.0.1"
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
498
|
+
checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
|
499
|
+
dependencies = [
|
500
|
+
"derive_more-impl",
|
501
|
+
]
|
502
|
+
|
503
|
+
[[package]]
|
504
|
+
name = "derive_more-impl"
|
505
|
+
version = "2.0.1"
|
553
506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
554
|
-
checksum = "
|
507
|
+
checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
|
555
508
|
dependencies = [
|
556
509
|
"proc-macro2",
|
557
510
|
"quote",
|
@@ -569,15 +522,6 @@ dependencies = [
|
|
569
522
|
"syn",
|
570
523
|
]
|
571
524
|
|
572
|
-
[[package]]
|
573
|
-
name = "document-features"
|
574
|
-
version = "0.2.11"
|
575
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
576
|
-
checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d"
|
577
|
-
dependencies = [
|
578
|
-
"litrs",
|
579
|
-
]
|
580
|
-
|
581
525
|
[[package]]
|
582
526
|
name = "dtoa"
|
583
527
|
version = "1.0.10"
|
@@ -616,20 +560,14 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
616
560
|
|
617
561
|
[[package]]
|
618
562
|
name = "errno"
|
619
|
-
version = "0.3.
|
563
|
+
version = "0.3.13"
|
620
564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
621
|
-
checksum = "
|
565
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
622
566
|
dependencies = [
|
623
567
|
"libc",
|
624
568
|
"windows-sys 0.59.0",
|
625
569
|
]
|
626
570
|
|
627
|
-
[[package]]
|
628
|
-
name = "error-code"
|
629
|
-
version = "3.3.1"
|
630
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
631
|
-
checksum = "a5d9305ccc6942a704f4335694ecd3de2ea531b114ac2d51f5f843750787a92f"
|
632
|
-
|
633
571
|
[[package]]
|
634
572
|
name = "euclid"
|
635
573
|
version = "0.22.11"
|
@@ -657,9 +595,9 @@ dependencies = [
|
|
657
595
|
|
658
596
|
[[package]]
|
659
597
|
name = "flate2"
|
660
|
-
version = "1.1.
|
598
|
+
version = "1.1.2"
|
661
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
662
|
-
checksum = "
|
600
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
663
601
|
dependencies = [
|
664
602
|
"crc32fast",
|
665
603
|
"miniz_oxide",
|
@@ -685,9 +623,9 @@ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
685
623
|
|
686
624
|
[[package]]
|
687
625
|
name = "font-types"
|
688
|
-
version = "0.
|
626
|
+
version = "0.9.0"
|
689
627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
690
|
-
checksum = "
|
628
|
+
checksum = "02a596f5713680923a2080d86de50fe472fb290693cf0f701187a1c8b36996b7"
|
691
629
|
dependencies = [
|
692
630
|
"bytemuck",
|
693
631
|
]
|
@@ -704,18 +642,18 @@ dependencies = [
|
|
704
642
|
|
705
643
|
[[package]]
|
706
644
|
name = "fontconfig-parser"
|
707
|
-
version = "0.5.
|
645
|
+
version = "0.5.8"
|
708
646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
709
|
-
checksum = "
|
647
|
+
checksum = "bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646"
|
710
648
|
dependencies = [
|
711
649
|
"roxmltree",
|
712
650
|
]
|
713
651
|
|
714
652
|
[[package]]
|
715
653
|
name = "fontdb"
|
716
|
-
version = "0.
|
654
|
+
version = "0.23.0"
|
717
655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
718
|
-
checksum = "
|
656
|
+
checksum = "457e789b3d1202543297a350643cf459f836cade38934e7a4cf6a39e7cde2905"
|
719
657
|
dependencies = [
|
720
658
|
"fontconfig-parser",
|
721
659
|
"log",
|
@@ -727,15 +665,16 @@ dependencies = [
|
|
727
665
|
|
728
666
|
[[package]]
|
729
667
|
name = "fontique"
|
730
|
-
version = "0.
|
668
|
+
version = "0.5.0"
|
731
669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
732
|
-
checksum = "
|
670
|
+
checksum = "39f97079e1293b8c1e9fb03a2875d328bd2ee8f3b95ce62959c0acc04049c708"
|
733
671
|
dependencies = [
|
734
672
|
"bytemuck",
|
735
673
|
"fontconfig-cache-parser",
|
736
674
|
"hashbrown",
|
737
675
|
"icu_locid",
|
738
676
|
"memmap2",
|
677
|
+
"objc2",
|
739
678
|
"objc2-core-foundation",
|
740
679
|
"objc2-core-text",
|
741
680
|
"objc2-foundation",
|
@@ -753,28 +692,7 @@ version = "0.3.2"
|
|
753
692
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
754
693
|
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
755
694
|
dependencies = [
|
756
|
-
"foreign-types-shared
|
757
|
-
]
|
758
|
-
|
759
|
-
[[package]]
|
760
|
-
name = "foreign-types"
|
761
|
-
version = "0.5.0"
|
762
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
763
|
-
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
764
|
-
dependencies = [
|
765
|
-
"foreign-types-macros",
|
766
|
-
"foreign-types-shared 0.3.1",
|
767
|
-
]
|
768
|
-
|
769
|
-
[[package]]
|
770
|
-
name = "foreign-types-macros"
|
771
|
-
version = "0.2.3"
|
772
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
773
|
-
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
774
|
-
dependencies = [
|
775
|
-
"proc-macro2",
|
776
|
-
"quote",
|
777
|
-
"syn",
|
695
|
+
"foreign-types-shared",
|
778
696
|
]
|
779
697
|
|
780
698
|
[[package]]
|
@@ -783,12 +701,6 @@ version = "0.1.1"
|
|
783
701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
784
702
|
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
785
703
|
|
786
|
-
[[package]]
|
787
|
-
name = "foreign-types-shared"
|
788
|
-
version = "0.3.1"
|
789
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
790
|
-
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
791
|
-
|
792
704
|
[[package]]
|
793
705
|
name = "form_urlencoded"
|
794
706
|
version = "1.2.1"
|
@@ -823,17 +735,6 @@ version = "0.3.31"
|
|
823
735
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
824
736
|
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
825
737
|
|
826
|
-
[[package]]
|
827
|
-
name = "futures-intrusive"
|
828
|
-
version = "0.5.0"
|
829
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
830
|
-
checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
|
831
|
-
dependencies = [
|
832
|
-
"futures-core",
|
833
|
-
"lock_api",
|
834
|
-
"parking_lot",
|
835
|
-
]
|
836
|
-
|
837
738
|
[[package]]
|
838
739
|
name = "futures-sink"
|
839
740
|
version = "0.3.31"
|
@@ -867,32 +768,22 @@ dependencies = [
|
|
867
768
|
"byteorder",
|
868
769
|
]
|
869
770
|
|
870
|
-
[[package]]
|
871
|
-
name = "gethostname"
|
872
|
-
version = "0.4.3"
|
873
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
874
|
-
checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
|
875
|
-
dependencies = [
|
876
|
-
"libc",
|
877
|
-
"windows-targets 0.48.5",
|
878
|
-
]
|
879
|
-
|
880
771
|
[[package]]
|
881
772
|
name = "getrandom"
|
882
|
-
version = "0.2.
|
773
|
+
version = "0.2.16"
|
883
774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
884
|
-
checksum = "
|
775
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
885
776
|
dependencies = [
|
886
777
|
"cfg-if",
|
887
778
|
"libc",
|
888
|
-
"wasi 0.11.
|
779
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
889
780
|
]
|
890
781
|
|
891
782
|
[[package]]
|
892
783
|
name = "getrandom"
|
893
|
-
version = "0.3.
|
784
|
+
version = "0.3.3"
|
894
785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
895
|
-
checksum = "
|
786
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
896
787
|
dependencies = [
|
897
788
|
"cfg-if",
|
898
789
|
"libc",
|
@@ -902,9 +793,9 @@ dependencies = [
|
|
902
793
|
|
903
794
|
[[package]]
|
904
795
|
name = "gif"
|
905
|
-
version = "0.13.
|
796
|
+
version = "0.13.3"
|
906
797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
907
|
-
checksum = "
|
798
|
+
checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
|
908
799
|
dependencies = [
|
909
800
|
"color_quant",
|
910
801
|
"weezl",
|
@@ -916,116 +807,23 @@ version = "0.31.1"
|
|
916
807
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
917
808
|
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
918
809
|
|
919
|
-
[[package]]
|
920
|
-
name = "gl_generator"
|
921
|
-
version = "0.14.0"
|
922
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
923
|
-
checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
|
924
|
-
dependencies = [
|
925
|
-
"khronos_api",
|
926
|
-
"log",
|
927
|
-
"xml-rs",
|
928
|
-
]
|
929
|
-
|
930
810
|
[[package]]
|
931
811
|
name = "glob"
|
932
812
|
version = "0.3.2"
|
933
813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
934
814
|
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
935
815
|
|
936
|
-
[[package]]
|
937
|
-
name = "glow"
|
938
|
-
version = "0.14.2"
|
939
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
940
|
-
checksum = "d51fa363f025f5c111e03f13eda21162faeacb6911fe8caa0c0349f9cf0c4483"
|
941
|
-
dependencies = [
|
942
|
-
"js-sys",
|
943
|
-
"slotmap",
|
944
|
-
"wasm-bindgen",
|
945
|
-
"web-sys",
|
946
|
-
]
|
947
|
-
|
948
|
-
[[package]]
|
949
|
-
name = "glutin_wgl_sys"
|
950
|
-
version = "0.6.1"
|
951
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
|
-
checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
|
953
|
-
dependencies = [
|
954
|
-
"gl_generator",
|
955
|
-
]
|
956
|
-
|
957
|
-
[[package]]
|
958
|
-
name = "gpu-alloc"
|
959
|
-
version = "0.6.0"
|
960
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
961
|
-
checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171"
|
962
|
-
dependencies = [
|
963
|
-
"bitflags 2.9.0",
|
964
|
-
"gpu-alloc-types",
|
965
|
-
]
|
966
|
-
|
967
|
-
[[package]]
|
968
|
-
name = "gpu-alloc-types"
|
969
|
-
version = "0.3.0"
|
970
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
971
|
-
checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4"
|
972
|
-
dependencies = [
|
973
|
-
"bitflags 2.9.0",
|
974
|
-
]
|
975
|
-
|
976
|
-
[[package]]
|
977
|
-
name = "gpu-allocator"
|
978
|
-
version = "0.27.0"
|
979
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
980
|
-
checksum = "c151a2a5ef800297b4e79efa4f4bec035c5f51d5ae587287c9b952bdf734cacd"
|
981
|
-
dependencies = [
|
982
|
-
"log",
|
983
|
-
"presser",
|
984
|
-
"thiserror 1.0.69",
|
985
|
-
"windows",
|
986
|
-
]
|
987
|
-
|
988
|
-
[[package]]
|
989
|
-
name = "gpu-descriptor"
|
990
|
-
version = "0.3.1"
|
991
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
992
|
-
checksum = "dcf29e94d6d243368b7a56caa16bc213e4f9f8ed38c4d9557069527b5d5281ca"
|
993
|
-
dependencies = [
|
994
|
-
"bitflags 2.9.0",
|
995
|
-
"gpu-descriptor-types",
|
996
|
-
"hashbrown",
|
997
|
-
]
|
998
|
-
|
999
|
-
[[package]]
|
1000
|
-
name = "gpu-descriptor-types"
|
1001
|
-
version = "0.2.0"
|
1002
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1003
|
-
checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91"
|
1004
|
-
dependencies = [
|
1005
|
-
"bitflags 2.9.0",
|
1006
|
-
]
|
1007
|
-
|
1008
816
|
[[package]]
|
1009
817
|
name = "grid"
|
1010
|
-
version = "0.
|
818
|
+
version = "0.17.0"
|
1011
819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1012
|
-
checksum = "
|
1013
|
-
|
1014
|
-
[[package]]
|
1015
|
-
name = "guillotiere"
|
1016
|
-
version = "0.6.2"
|
1017
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1018
|
-
checksum = "b62d5865c036cb1393e23c50693df631d3f5d7bcca4c04fe4cc0fd592e74a782"
|
1019
|
-
dependencies = [
|
1020
|
-
"euclid",
|
1021
|
-
"svg_fmt",
|
1022
|
-
]
|
820
|
+
checksum = "71b01d27060ad58be4663b9e4ac9e2d4806918e8876af8912afbddd1a91d5eaa"
|
1023
821
|
|
1024
822
|
[[package]]
|
1025
823
|
name = "h2"
|
1026
|
-
version = "0.4.
|
824
|
+
version = "0.4.11"
|
1027
825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1028
|
-
checksum = "
|
826
|
+
checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785"
|
1029
827
|
dependencies = [
|
1030
828
|
"atomic-waker",
|
1031
829
|
"bytes",
|
@@ -1042,9 +840,9 @@ dependencies = [
|
|
1042
840
|
|
1043
841
|
[[package]]
|
1044
842
|
name = "hashbrown"
|
1045
|
-
version = "0.15.
|
843
|
+
version = "0.15.4"
|
1046
844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1047
|
-
checksum = "
|
845
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
1048
846
|
dependencies = [
|
1049
847
|
"allocator-api2",
|
1050
848
|
"equivalent",
|
@@ -1053,26 +851,23 @@ dependencies = [
|
|
1053
851
|
|
1054
852
|
[[package]]
|
1055
853
|
name = "hermit-abi"
|
1056
|
-
version = "0.
|
1057
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1058
|
-
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
1059
|
-
|
1060
|
-
[[package]]
|
1061
|
-
name = "hexf-parse"
|
1062
|
-
version = "0.2.1"
|
854
|
+
version = "0.5.2"
|
1063
855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1064
|
-
checksum = "
|
856
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
1065
857
|
|
1066
858
|
[[package]]
|
1067
859
|
name = "himg"
|
1068
|
-
version = "0.0.
|
860
|
+
version = "0.0.6"
|
1069
861
|
dependencies = [
|
862
|
+
"anyrender",
|
863
|
+
"anyrender_vello_cpu",
|
1070
864
|
"blitz-dom",
|
1071
865
|
"blitz-html",
|
1072
866
|
"blitz-net",
|
1073
|
-
"blitz-
|
867
|
+
"blitz-paint",
|
1074
868
|
"blitz-traits",
|
1075
869
|
"magnus",
|
870
|
+
"openssl",
|
1076
871
|
"png",
|
1077
872
|
"rb-sys",
|
1078
873
|
"rb-sys-env 0.2.2",
|
@@ -1091,12 +886,11 @@ dependencies = [
|
|
1091
886
|
|
1092
887
|
[[package]]
|
1093
888
|
name = "html5ever"
|
1094
|
-
version = "0.
|
889
|
+
version = "0.35.0"
|
1095
890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1096
|
-
checksum = "
|
891
|
+
checksum = "55d958c2f74b664487a2035fe1dadb032c48718a03b63f3ab0b8537db8549ed4"
|
1097
892
|
dependencies = [
|
1098
893
|
"log",
|
1099
|
-
"mac",
|
1100
894
|
"markup5ever",
|
1101
895
|
"match_token",
|
1102
896
|
]
|
@@ -1163,11 +957,10 @@ dependencies = [
|
|
1163
957
|
|
1164
958
|
[[package]]
|
1165
959
|
name = "hyper-rustls"
|
1166
|
-
version = "0.27.
|
960
|
+
version = "0.27.7"
|
1167
961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1168
|
-
checksum = "
|
962
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
1169
963
|
dependencies = [
|
1170
|
-
"futures-util",
|
1171
964
|
"http",
|
1172
965
|
"hyper",
|
1173
966
|
"hyper-util",
|
@@ -1196,22 +989,28 @@ dependencies = [
|
|
1196
989
|
|
1197
990
|
[[package]]
|
1198
991
|
name = "hyper-util"
|
1199
|
-
version = "0.1.
|
992
|
+
version = "0.1.15"
|
1200
993
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1201
|
-
checksum = "
|
994
|
+
checksum = "7f66d5bd4c6f02bf0542fad85d626775bab9258cf795a4256dcaf3161114d1df"
|
1202
995
|
dependencies = [
|
996
|
+
"base64",
|
1203
997
|
"bytes",
|
1204
998
|
"futures-channel",
|
999
|
+
"futures-core",
|
1205
1000
|
"futures-util",
|
1206
1001
|
"http",
|
1207
1002
|
"http-body",
|
1208
1003
|
"hyper",
|
1004
|
+
"ipnet",
|
1209
1005
|
"libc",
|
1006
|
+
"percent-encoding",
|
1210
1007
|
"pin-project-lite",
|
1211
1008
|
"socket2",
|
1009
|
+
"system-configuration",
|
1212
1010
|
"tokio",
|
1213
1011
|
"tower-service",
|
1214
1012
|
"tracing",
|
1013
|
+
"windows-registry",
|
1215
1014
|
]
|
1216
1015
|
|
1217
1016
|
[[package]]
|
@@ -1221,88 +1020,91 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
1020
|
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
1222
1021
|
dependencies = [
|
1223
1022
|
"displaydoc",
|
1224
|
-
"yoke",
|
1023
|
+
"yoke 0.7.5",
|
1225
1024
|
"zerofrom",
|
1226
|
-
"zerovec",
|
1025
|
+
"zerovec 0.10.4",
|
1227
1026
|
]
|
1228
1027
|
|
1229
1028
|
[[package]]
|
1230
|
-
name = "
|
1231
|
-
version = "
|
1029
|
+
name = "icu_collections"
|
1030
|
+
version = "2.0.0"
|
1232
1031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1233
|
-
checksum = "
|
1032
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
1234
1033
|
dependencies = [
|
1235
1034
|
"displaydoc",
|
1236
|
-
"
|
1237
|
-
"
|
1238
|
-
"
|
1239
|
-
"zerovec",
|
1035
|
+
"potential_utf",
|
1036
|
+
"yoke 0.8.0",
|
1037
|
+
"zerofrom",
|
1038
|
+
"zerovec 0.11.2",
|
1240
1039
|
]
|
1241
1040
|
|
1242
1041
|
[[package]]
|
1243
|
-
name = "
|
1244
|
-
version = "
|
1042
|
+
name = "icu_locale_core"
|
1043
|
+
version = "2.0.0"
|
1245
1044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1246
|
-
checksum = "
|
1045
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
1247
1046
|
dependencies = [
|
1248
1047
|
"displaydoc",
|
1249
|
-
"
|
1250
|
-
"
|
1251
|
-
"
|
1252
|
-
"
|
1253
|
-
"zerovec",
|
1048
|
+
"litemap 0.8.0",
|
1049
|
+
"tinystr 0.8.1",
|
1050
|
+
"writeable 0.6.1",
|
1051
|
+
"zerovec 0.11.2",
|
1254
1052
|
]
|
1255
1053
|
|
1256
1054
|
[[package]]
|
1257
|
-
name = "
|
1258
|
-
version = "1.5.
|
1055
|
+
name = "icu_locid"
|
1056
|
+
version = "1.5.0"
|
1259
1057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1260
|
-
checksum = "
|
1058
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
1059
|
+
dependencies = [
|
1060
|
+
"displaydoc",
|
1061
|
+
"litemap 0.7.5",
|
1062
|
+
"tinystr 0.7.6",
|
1063
|
+
"writeable 0.5.5",
|
1064
|
+
]
|
1261
1065
|
|
1262
1066
|
[[package]]
|
1263
1067
|
name = "icu_normalizer"
|
1264
|
-
version = "
|
1068
|
+
version = "2.0.0"
|
1265
1069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1266
|
-
checksum = "
|
1070
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
1267
1071
|
dependencies = [
|
1268
1072
|
"displaydoc",
|
1269
|
-
"icu_collections",
|
1073
|
+
"icu_collections 2.0.0",
|
1270
1074
|
"icu_normalizer_data",
|
1271
1075
|
"icu_properties",
|
1272
|
-
"icu_provider",
|
1076
|
+
"icu_provider 2.0.0",
|
1273
1077
|
"smallvec",
|
1274
|
-
"
|
1275
|
-
"utf8_iter",
|
1276
|
-
"write16",
|
1277
|
-
"zerovec",
|
1078
|
+
"zerovec 0.11.2",
|
1278
1079
|
]
|
1279
1080
|
|
1280
1081
|
[[package]]
|
1281
1082
|
name = "icu_normalizer_data"
|
1282
|
-
version = "
|
1083
|
+
version = "2.0.0"
|
1283
1084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1284
|
-
checksum = "
|
1085
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
1285
1086
|
|
1286
1087
|
[[package]]
|
1287
1088
|
name = "icu_properties"
|
1288
|
-
version = "
|
1089
|
+
version = "2.0.1"
|
1289
1090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1290
|
-
checksum = "
|
1091
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
1291
1092
|
dependencies = [
|
1292
1093
|
"displaydoc",
|
1293
|
-
"icu_collections",
|
1294
|
-
"
|
1094
|
+
"icu_collections 2.0.0",
|
1095
|
+
"icu_locale_core",
|
1295
1096
|
"icu_properties_data",
|
1296
|
-
"icu_provider",
|
1297
|
-
"
|
1298
|
-
"
|
1097
|
+
"icu_provider 2.0.0",
|
1098
|
+
"potential_utf",
|
1099
|
+
"zerotrie",
|
1100
|
+
"zerovec 0.11.2",
|
1299
1101
|
]
|
1300
1102
|
|
1301
1103
|
[[package]]
|
1302
1104
|
name = "icu_properties_data"
|
1303
|
-
version = "
|
1105
|
+
version = "2.0.1"
|
1304
1106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1305
|
-
checksum = "
|
1107
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
1306
1108
|
|
1307
1109
|
[[package]]
|
1308
1110
|
name = "icu_provider"
|
@@ -1314,11 +1116,28 @@ dependencies = [
|
|
1314
1116
|
"icu_locid",
|
1315
1117
|
"icu_provider_macros",
|
1316
1118
|
"stable_deref_trait",
|
1317
|
-
"tinystr",
|
1318
|
-
"writeable",
|
1319
|
-
"yoke",
|
1119
|
+
"tinystr 0.7.6",
|
1120
|
+
"writeable 0.5.5",
|
1121
|
+
"yoke 0.7.5",
|
1320
1122
|
"zerofrom",
|
1321
|
-
"zerovec",
|
1123
|
+
"zerovec 0.10.4",
|
1124
|
+
]
|
1125
|
+
|
1126
|
+
[[package]]
|
1127
|
+
name = "icu_provider"
|
1128
|
+
version = "2.0.0"
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1130
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
1131
|
+
dependencies = [
|
1132
|
+
"displaydoc",
|
1133
|
+
"icu_locale_core",
|
1134
|
+
"stable_deref_trait",
|
1135
|
+
"tinystr 0.8.1",
|
1136
|
+
"writeable 0.6.1",
|
1137
|
+
"yoke 0.8.0",
|
1138
|
+
"zerofrom",
|
1139
|
+
"zerotrie",
|
1140
|
+
"zerovec 0.11.2",
|
1322
1141
|
]
|
1323
1142
|
|
1324
1143
|
[[package]]
|
@@ -1340,12 +1159,12 @@ checksum = "a717725612346ffc2d7b42c94b820db6908048f39434504cb130e8b46256b0de"
|
|
1340
1159
|
dependencies = [
|
1341
1160
|
"core_maths",
|
1342
1161
|
"displaydoc",
|
1343
|
-
"icu_collections",
|
1162
|
+
"icu_collections 1.5.0",
|
1344
1163
|
"icu_locid",
|
1345
|
-
"icu_provider",
|
1164
|
+
"icu_provider 1.5.0",
|
1346
1165
|
"icu_segmenter_data",
|
1347
1166
|
"utf8_iter",
|
1348
|
-
"zerovec",
|
1167
|
+
"zerovec 0.10.4",
|
1349
1168
|
]
|
1350
1169
|
|
1351
1170
|
[[package]]
|
@@ -1373,9 +1192,9 @@ dependencies = [
|
|
1373
1192
|
|
1374
1193
|
[[package]]
|
1375
1194
|
name = "idna_adapter"
|
1376
|
-
version = "1.2.
|
1195
|
+
version = "1.2.1"
|
1377
1196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1378
|
-
checksum = "
|
1197
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
1379
1198
|
dependencies = [
|
1380
1199
|
"icu_normalizer",
|
1381
1200
|
"icu_properties",
|
@@ -1400,9 +1219,9 @@ dependencies = [
|
|
1400
1219
|
|
1401
1220
|
[[package]]
|
1402
1221
|
name = "image-webp"
|
1403
|
-
version = "0.2.
|
1222
|
+
version = "0.2.3"
|
1404
1223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1405
|
-
checksum = "
|
1224
|
+
checksum = "f6970fe7a5300b4b42e62c52efa0187540a5bef546c60edaf554ef595d2e6f0b"
|
1406
1225
|
dependencies = [
|
1407
1226
|
"byteorder-lite",
|
1408
1227
|
"quick-error",
|
@@ -1416,14 +1235,25 @@ checksum = "edcd27d72f2f071c64249075f42e205ff93c9a4c5f6c6da53e79ed9f9832c285"
|
|
1416
1235
|
|
1417
1236
|
[[package]]
|
1418
1237
|
name = "indexmap"
|
1419
|
-
version = "2.
|
1238
|
+
version = "2.10.0"
|
1420
1239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1421
|
-
checksum = "
|
1240
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
1422
1241
|
dependencies = [
|
1423
1242
|
"equivalent",
|
1424
1243
|
"hashbrown",
|
1425
1244
|
]
|
1426
1245
|
|
1246
|
+
[[package]]
|
1247
|
+
name = "io-uring"
|
1248
|
+
version = "0.7.9"
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1250
|
+
checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
|
1251
|
+
dependencies = [
|
1252
|
+
"bitflags 2.9.1",
|
1253
|
+
"cfg-if",
|
1254
|
+
"libc",
|
1255
|
+
]
|
1256
|
+
|
1427
1257
|
[[package]]
|
1428
1258
|
name = "ipnet"
|
1429
1259
|
version = "2.11.0"
|
@@ -1431,12 +1261,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
1261
|
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
1432
1262
|
|
1433
1263
|
[[package]]
|
1434
|
-
name = "
|
1435
|
-
version = "0.
|
1264
|
+
name = "iri-string"
|
1265
|
+
version = "0.7.8"
|
1436
1266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1437
|
-
checksum = "
|
1267
|
+
checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
|
1438
1268
|
dependencies = [
|
1439
|
-
"
|
1269
|
+
"memchr",
|
1270
|
+
"serde",
|
1440
1271
|
]
|
1441
1272
|
|
1442
1273
|
[[package]]
|
@@ -1449,16 +1280,19 @@ dependencies = [
|
|
1449
1280
|
]
|
1450
1281
|
|
1451
1282
|
[[package]]
|
1452
|
-
name = "
|
1453
|
-
version = "
|
1283
|
+
name = "itertools"
|
1284
|
+
version = "0.14.0"
|
1454
1285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1455
|
-
checksum = "
|
1286
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
1287
|
+
dependencies = [
|
1288
|
+
"either",
|
1289
|
+
]
|
1456
1290
|
|
1457
1291
|
[[package]]
|
1458
|
-
name = "
|
1459
|
-
version = "0.
|
1292
|
+
name = "itoa"
|
1293
|
+
version = "1.0.15"
|
1460
1294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1461
|
-
checksum = "
|
1295
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
1462
1296
|
|
1463
1297
|
[[package]]
|
1464
1298
|
name = "js-sys"
|
@@ -1476,35 +1310,19 @@ version = "0.7.0"
|
|
1476
1310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1477
1311
|
checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
|
1478
1312
|
dependencies = [
|
1479
|
-
"bitflags 2.9.
|
1313
|
+
"bitflags 2.9.1",
|
1480
1314
|
"serde",
|
1481
1315
|
"unicode-segmentation",
|
1482
1316
|
]
|
1483
1317
|
|
1484
|
-
[[package]]
|
1485
|
-
name = "khronos-egl"
|
1486
|
-
version = "6.0.0"
|
1487
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1488
|
-
checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
|
1489
|
-
dependencies = [
|
1490
|
-
"libc",
|
1491
|
-
"libloading",
|
1492
|
-
"pkg-config",
|
1493
|
-
]
|
1494
|
-
|
1495
|
-
[[package]]
|
1496
|
-
name = "khronos_api"
|
1497
|
-
version = "3.1.0"
|
1498
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1499
|
-
checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
|
1500
|
-
|
1501
1318
|
[[package]]
|
1502
1319
|
name = "kurbo"
|
1503
|
-
version = "0.11.
|
1320
|
+
version = "0.11.3"
|
1504
1321
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1505
|
-
checksum = "
|
1322
|
+
checksum = "c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62"
|
1506
1323
|
dependencies = [
|
1507
1324
|
"arrayvec",
|
1325
|
+
"euclid",
|
1508
1326
|
"smallvec",
|
1509
1327
|
]
|
1510
1328
|
|
@@ -1522,31 +1340,25 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
1522
1340
|
|
1523
1341
|
[[package]]
|
1524
1342
|
name = "libc"
|
1525
|
-
version = "0.2.
|
1343
|
+
version = "0.2.174"
|
1526
1344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1527
|
-
checksum = "
|
1345
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
1528
1346
|
|
1529
1347
|
[[package]]
|
1530
1348
|
name = "libloading"
|
1531
|
-
version = "0.8.
|
1349
|
+
version = "0.8.8"
|
1532
1350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1533
|
-
checksum = "
|
1351
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
1534
1352
|
dependencies = [
|
1535
1353
|
"cfg-if",
|
1536
|
-
"windows-targets 0.
|
1354
|
+
"windows-targets 0.53.2",
|
1537
1355
|
]
|
1538
1356
|
|
1539
1357
|
[[package]]
|
1540
1358
|
name = "libm"
|
1541
|
-
version = "0.2.
|
1542
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1543
|
-
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
1544
|
-
|
1545
|
-
[[package]]
|
1546
|
-
name = "linux-raw-sys"
|
1547
|
-
version = "0.4.15"
|
1359
|
+
version = "0.2.15"
|
1548
1360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1549
|
-
checksum = "
|
1361
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
1550
1362
|
|
1551
1363
|
[[package]]
|
1552
1364
|
name = "linux-raw-sys"
|
@@ -1561,16 +1373,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
1373
|
checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856"
|
1562
1374
|
|
1563
1375
|
[[package]]
|
1564
|
-
name = "
|
1565
|
-
version = "0.
|
1376
|
+
name = "litemap"
|
1377
|
+
version = "0.8.0"
|
1566
1378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1567
|
-
checksum = "
|
1379
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
1568
1380
|
|
1569
1381
|
[[package]]
|
1570
1382
|
name = "lock_api"
|
1571
|
-
version = "0.4.
|
1383
|
+
version = "0.4.13"
|
1572
1384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1573
|
-
checksum = "
|
1385
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
1574
1386
|
dependencies = [
|
1575
1387
|
"autocfg",
|
1576
1388
|
"scopeguard",
|
@@ -1611,15 +1423,6 @@ dependencies = [
|
|
1611
1423
|
"syn",
|
1612
1424
|
]
|
1613
1425
|
|
1614
|
-
[[package]]
|
1615
|
-
name = "malloc_buf"
|
1616
|
-
version = "0.0.6"
|
1617
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1618
|
-
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
1619
|
-
dependencies = [
|
1620
|
-
"libc",
|
1621
|
-
]
|
1622
|
-
|
1623
1426
|
[[package]]
|
1624
1427
|
name = "malloc_size_of_derive"
|
1625
1428
|
version = "0.1.3"
|
@@ -1633,23 +1436,20 @@ dependencies = [
|
|
1633
1436
|
|
1634
1437
|
[[package]]
|
1635
1438
|
name = "markup5ever"
|
1636
|
-
version = "0.
|
1439
|
+
version = "0.35.0"
|
1637
1440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1638
|
-
checksum = "
|
1441
|
+
checksum = "311fe69c934650f8f19652b3946075f0fc41ad8757dbb68f1ca14e7900ecc1c3"
|
1639
1442
|
dependencies = [
|
1640
1443
|
"log",
|
1641
|
-
"phf",
|
1642
|
-
"phf_codegen",
|
1643
|
-
"string_cache",
|
1644
|
-
"string_cache_codegen",
|
1645
1444
|
"tendril",
|
1445
|
+
"web_atoms",
|
1646
1446
|
]
|
1647
1447
|
|
1648
1448
|
[[package]]
|
1649
1449
|
name = "match_token"
|
1650
|
-
version = "0.
|
1450
|
+
version = "0.35.0"
|
1651
1451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1652
|
-
checksum = "
|
1452
|
+
checksum = "ac84fd3f360fcc43dc5f5d186f02a94192761a080e8bc58621ad4d12296a58cf"
|
1653
1453
|
dependencies = [
|
1654
1454
|
"proc-macro2",
|
1655
1455
|
"quote",
|
@@ -1664,34 +1464,19 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
|
1664
1464
|
|
1665
1465
|
[[package]]
|
1666
1466
|
name = "memchr"
|
1667
|
-
version = "2.7.
|
1467
|
+
version = "2.7.5"
|
1668
1468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1669
|
-
checksum = "
|
1469
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
1670
1470
|
|
1671
1471
|
[[package]]
|
1672
1472
|
name = "memmap2"
|
1673
|
-
version = "0.9.
|
1473
|
+
version = "0.9.7"
|
1674
1474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1675
|
-
checksum = "
|
1475
|
+
checksum = "483758ad303d734cec05e5c12b41d7e93e6a6390c5e9dae6bdeb7c1259012d28"
|
1676
1476
|
dependencies = [
|
1677
1477
|
"libc",
|
1678
1478
|
]
|
1679
1479
|
|
1680
|
-
[[package]]
|
1681
|
-
name = "metal"
|
1682
|
-
version = "0.29.0"
|
1683
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1684
|
-
checksum = "7ecfd3296f8c56b7c1f6fbac3c71cefa9d78ce009850c45000015f206dc7fa21"
|
1685
|
-
dependencies = [
|
1686
|
-
"bitflags 2.9.0",
|
1687
|
-
"block",
|
1688
|
-
"core-graphics-types",
|
1689
|
-
"foreign-types 0.5.0",
|
1690
|
-
"log",
|
1691
|
-
"objc",
|
1692
|
-
"paste",
|
1693
|
-
]
|
1694
|
-
|
1695
1480
|
[[package]]
|
1696
1481
|
name = "mime"
|
1697
1482
|
version = "0.3.17"
|
@@ -1706,9 +1491,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1706
1491
|
|
1707
1492
|
[[package]]
|
1708
1493
|
name = "miniz_oxide"
|
1709
|
-
version = "0.8.
|
1494
|
+
version = "0.8.9"
|
1710
1495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1711
|
-
checksum = "
|
1496
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
1712
1497
|
dependencies = [
|
1713
1498
|
"adler2",
|
1714
1499
|
"simd-adler32",
|
@@ -1716,34 +1501,13 @@ dependencies = [
|
|
1716
1501
|
|
1717
1502
|
[[package]]
|
1718
1503
|
name = "mio"
|
1719
|
-
version = "1.0.
|
1504
|
+
version = "1.0.4"
|
1720
1505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1721
|
-
checksum = "
|
1506
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
1722
1507
|
dependencies = [
|
1723
1508
|
"libc",
|
1724
|
-
"wasi 0.11.
|
1725
|
-
"windows-sys 0.
|
1726
|
-
]
|
1727
|
-
|
1728
|
-
[[package]]
|
1729
|
-
name = "naga"
|
1730
|
-
version = "23.1.0"
|
1731
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1732
|
-
checksum = "364f94bc34f61332abebe8cad6f6cd82a5b65cff22c828d05d0968911462ca4f"
|
1733
|
-
dependencies = [
|
1734
|
-
"arrayvec",
|
1735
|
-
"bit-set",
|
1736
|
-
"bitflags 2.9.0",
|
1737
|
-
"cfg_aliases",
|
1738
|
-
"codespan-reporting",
|
1739
|
-
"hexf-parse",
|
1740
|
-
"indexmap",
|
1741
|
-
"log",
|
1742
|
-
"rustc-hash",
|
1743
|
-
"spirv",
|
1744
|
-
"termcolor",
|
1745
|
-
"thiserror 1.0.69",
|
1746
|
-
"unicode-xid",
|
1509
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
1510
|
+
"windows-sys 0.59.0",
|
1747
1511
|
]
|
1748
1512
|
|
1749
1513
|
[[package]]
|
@@ -1763,15 +1527,6 @@ dependencies = [
|
|
1763
1527
|
"tempfile",
|
1764
1528
|
]
|
1765
1529
|
|
1766
|
-
[[package]]
|
1767
|
-
name = "ndk-sys"
|
1768
|
-
version = "0.5.0+25.2.9519653"
|
1769
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1770
|
-
checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
|
1771
|
-
dependencies = [
|
1772
|
-
"jni-sys",
|
1773
|
-
]
|
1774
|
-
|
1775
1530
|
[[package]]
|
1776
1531
|
name = "new_debug_unreachable"
|
1777
1532
|
version = "1.0.6"
|
@@ -1819,73 +1574,39 @@ dependencies = [
|
|
1819
1574
|
|
1820
1575
|
[[package]]
|
1821
1576
|
name = "num_cpus"
|
1822
|
-
version = "1.
|
1577
|
+
version = "1.17.0"
|
1823
1578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1824
|
-
checksum = "
|
1579
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
1825
1580
|
dependencies = [
|
1826
1581
|
"hermit-abi",
|
1827
1582
|
"libc",
|
1828
1583
|
]
|
1829
1584
|
|
1830
|
-
[[package]]
|
1831
|
-
name = "objc"
|
1832
|
-
version = "0.2.7"
|
1833
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1834
|
-
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
1835
|
-
dependencies = [
|
1836
|
-
"malloc_buf",
|
1837
|
-
]
|
1838
|
-
|
1839
1585
|
[[package]]
|
1840
1586
|
name = "objc2"
|
1841
|
-
version = "0.6.
|
1587
|
+
version = "0.6.1"
|
1842
1588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1843
|
-
checksum = "
|
1589
|
+
checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551"
|
1844
1590
|
dependencies = [
|
1845
1591
|
"objc2-encode",
|
1846
1592
|
]
|
1847
1593
|
|
1848
|
-
[[package]]
|
1849
|
-
name = "objc2-app-kit"
|
1850
|
-
version = "0.3.0"
|
1851
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1852
|
-
checksum = "5906f93257178e2f7ae069efb89fbd6ee94f0592740b5f8a1512ca498814d0fb"
|
1853
|
-
dependencies = [
|
1854
|
-
"bitflags 2.9.0",
|
1855
|
-
"objc2",
|
1856
|
-
"objc2-core-graphics",
|
1857
|
-
"objc2-foundation",
|
1858
|
-
]
|
1859
|
-
|
1860
1594
|
[[package]]
|
1861
1595
|
name = "objc2-core-foundation"
|
1862
|
-
version = "0.3.
|
1863
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1864
|
-
checksum = "daeaf60f25471d26948a1c2f840e3f7d86f4109e3af4e8e4b5cd70c39690d925"
|
1865
|
-
dependencies = [
|
1866
|
-
"bitflags 2.9.0",
|
1867
|
-
"objc2",
|
1868
|
-
]
|
1869
|
-
|
1870
|
-
[[package]]
|
1871
|
-
name = "objc2-core-graphics"
|
1872
|
-
version = "0.3.0"
|
1596
|
+
version = "0.3.1"
|
1873
1597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1874
|
-
checksum = "
|
1598
|
+
checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166"
|
1875
1599
|
dependencies = [
|
1876
|
-
"bitflags 2.9.
|
1877
|
-
"objc2",
|
1878
|
-
"objc2-core-foundation",
|
1879
|
-
"objc2-io-surface",
|
1600
|
+
"bitflags 2.9.1",
|
1880
1601
|
]
|
1881
1602
|
|
1882
1603
|
[[package]]
|
1883
1604
|
name = "objc2-core-text"
|
1884
|
-
version = "0.3.
|
1605
|
+
version = "0.3.1"
|
1885
1606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1886
|
-
checksum = "
|
1607
|
+
checksum = "3ba833d4a1cb1aac330f8c973fd92b6ff1858e4aef5cdd00a255eefb28022fb5"
|
1887
1608
|
dependencies = [
|
1888
|
-
"bitflags 2.9.
|
1609
|
+
"bitflags 2.9.1",
|
1889
1610
|
"objc2-core-foundation",
|
1890
1611
|
]
|
1891
1612
|
|
@@ -1897,24 +1618,12 @@ checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
1897
1618
|
|
1898
1619
|
[[package]]
|
1899
1620
|
name = "objc2-foundation"
|
1900
|
-
version = "0.3.
|
1901
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1902
|
-
checksum = "3a21c6c9014b82c39515db5b396f91645182611c97d24637cf56ac01e5f8d998"
|
1903
|
-
dependencies = [
|
1904
|
-
"bitflags 2.9.0",
|
1905
|
-
"objc2",
|
1906
|
-
"objc2-core-foundation",
|
1907
|
-
]
|
1908
|
-
|
1909
|
-
[[package]]
|
1910
|
-
name = "objc2-io-surface"
|
1911
|
-
version = "0.3.0"
|
1621
|
+
version = "0.3.1"
|
1912
1622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1913
|
-
checksum = "
|
1623
|
+
checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c"
|
1914
1624
|
dependencies = [
|
1915
|
-
"bitflags 2.9.
|
1625
|
+
"bitflags 2.9.1",
|
1916
1626
|
"objc2",
|
1917
|
-
"objc2-core-foundation",
|
1918
1627
|
]
|
1919
1628
|
|
1920
1629
|
[[package]]
|
@@ -1934,13 +1643,13 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1934
1643
|
|
1935
1644
|
[[package]]
|
1936
1645
|
name = "openssl"
|
1937
|
-
version = "0.10.
|
1646
|
+
version = "0.10.73"
|
1938
1647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1939
|
-
checksum = "
|
1648
|
+
checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
|
1940
1649
|
dependencies = [
|
1941
|
-
"bitflags 2.9.
|
1650
|
+
"bitflags 2.9.1",
|
1942
1651
|
"cfg-if",
|
1943
|
-
"foreign-types
|
1652
|
+
"foreign-types",
|
1944
1653
|
"libc",
|
1945
1654
|
"once_cell",
|
1946
1655
|
"openssl-macros",
|
@@ -1964,23 +1673,33 @@ version = "0.1.6"
|
|
1964
1673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1965
1674
|
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
1966
1675
|
|
1676
|
+
[[package]]
|
1677
|
+
name = "openssl-src"
|
1678
|
+
version = "300.5.1+3.5.1"
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1680
|
+
checksum = "735230c832b28c000e3bc117119e6466a663ec73506bc0a9907ea4187508e42a"
|
1681
|
+
dependencies = [
|
1682
|
+
"cc",
|
1683
|
+
]
|
1684
|
+
|
1967
1685
|
[[package]]
|
1968
1686
|
name = "openssl-sys"
|
1969
|
-
version = "0.9.
|
1687
|
+
version = "0.9.109"
|
1970
1688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1971
|
-
checksum = "
|
1689
|
+
checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
|
1972
1690
|
dependencies = [
|
1973
1691
|
"cc",
|
1974
1692
|
"libc",
|
1693
|
+
"openssl-src",
|
1975
1694
|
"pkg-config",
|
1976
1695
|
"vcpkg",
|
1977
1696
|
]
|
1978
1697
|
|
1979
1698
|
[[package]]
|
1980
1699
|
name = "parking_lot"
|
1981
|
-
version = "0.12.
|
1700
|
+
version = "0.12.4"
|
1982
1701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1983
|
-
checksum = "
|
1702
|
+
checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
|
1984
1703
|
dependencies = [
|
1985
1704
|
"lock_api",
|
1986
1705
|
"parking_lot_core",
|
@@ -1988,9 +1707,9 @@ dependencies = [
|
|
1988
1707
|
|
1989
1708
|
[[package]]
|
1990
1709
|
name = "parking_lot_core"
|
1991
|
-
version = "0.9.
|
1710
|
+
version = "0.9.11"
|
1992
1711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1993
|
-
checksum = "
|
1712
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
1994
1713
|
dependencies = [
|
1995
1714
|
"cfg-if",
|
1996
1715
|
"libc",
|
@@ -2001,9 +1720,9 @@ dependencies = [
|
|
2001
1720
|
|
2002
1721
|
[[package]]
|
2003
1722
|
name = "parley"
|
2004
|
-
version = "0.
|
1723
|
+
version = "0.5.0"
|
2005
1724
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2006
|
-
checksum = "
|
1725
|
+
checksum = "13e57638545cf2ba4c3e72cc5715e53b1880b829cc3dbefda3d1700c58efe723"
|
2007
1726
|
dependencies = [
|
2008
1727
|
"fontique",
|
2009
1728
|
"hashbrown",
|
@@ -2012,18 +1731,13 @@ dependencies = [
|
|
2012
1731
|
"swash",
|
2013
1732
|
]
|
2014
1733
|
|
2015
|
-
[[package]]
|
2016
|
-
name = "paste"
|
2017
|
-
version = "1.0.15"
|
2018
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019
|
-
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
2020
|
-
|
2021
1734
|
[[package]]
|
2022
1735
|
name = "peniko"
|
2023
|
-
version = "0.
|
1736
|
+
version = "0.4.0"
|
2024
1737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025
|
-
checksum = "
|
1738
|
+
checksum = "1f9529efd019889b2a205193c14ffb6e2839b54ed9d2720674f10f4b04d87ac9"
|
2026
1739
|
dependencies = [
|
1740
|
+
"bytemuck",
|
2027
1741
|
"color",
|
2028
1742
|
"kurbo",
|
2029
1743
|
"smallvec",
|
@@ -2125,10 +1839,13 @@ dependencies = [
|
|
2125
1839
|
]
|
2126
1840
|
|
2127
1841
|
[[package]]
|
2128
|
-
name = "
|
2129
|
-
version = "0.
|
1842
|
+
name = "potential_utf"
|
1843
|
+
version = "0.1.2"
|
2130
1844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2131
|
-
checksum = "
|
1845
|
+
checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
|
1846
|
+
dependencies = [
|
1847
|
+
"zerovec 0.11.2",
|
1848
|
+
]
|
2132
1849
|
|
2133
1850
|
[[package]]
|
2134
1851
|
name = "precomputed-hash"
|
@@ -2136,12 +1853,6 @@ version = "0.1.1"
|
|
2136
1853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2137
1854
|
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
2138
1855
|
|
2139
|
-
[[package]]
|
2140
|
-
name = "presser"
|
2141
|
-
version = "0.3.1"
|
2142
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2143
|
-
checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
|
2144
|
-
|
2145
1856
|
[[package]]
|
2146
1857
|
name = "proc-macro2"
|
2147
1858
|
version = "1.0.95"
|
@@ -2151,12 +1862,6 @@ dependencies = [
|
|
2151
1862
|
"unicode-ident",
|
2152
1863
|
]
|
2153
1864
|
|
2154
|
-
[[package]]
|
2155
|
-
name = "profiling"
|
2156
|
-
version = "1.0.16"
|
2157
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2158
|
-
checksum = "afbdc74edc00b6f6a218ca6a5364d6226a259d4b8ea1af4a0ea063f27e179f4d"
|
2159
|
-
|
2160
1865
|
[[package]]
|
2161
1866
|
name = "quick-error"
|
2162
1867
|
version = "2.0.1"
|
@@ -2174,9 +1879,9 @@ dependencies = [
|
|
2174
1879
|
|
2175
1880
|
[[package]]
|
2176
1881
|
name = "r-efi"
|
2177
|
-
version = "5.
|
1882
|
+
version = "5.3.0"
|
2178
1883
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2179
|
-
checksum = "
|
1884
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
2180
1885
|
|
2181
1886
|
[[package]]
|
2182
1887
|
name = "rand"
|
@@ -2193,12 +1898,6 @@ version = "0.6.4"
|
|
2193
1898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2194
1899
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
2195
1900
|
|
2196
|
-
[[package]]
|
2197
|
-
name = "range-alloc"
|
2198
|
-
version = "0.1.4"
|
2199
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2200
|
-
checksum = "c3d6831663a5098ea164f89cff59c6284e95f4e3c76ce9848d4529f5ccca9bde"
|
2201
|
-
|
2202
1901
|
[[package]]
|
2203
1902
|
name = "raw-window-handle"
|
2204
1903
|
version = "0.6.2"
|
@@ -2227,18 +1926,18 @@ dependencies = [
|
|
2227
1926
|
|
2228
1927
|
[[package]]
|
2229
1928
|
name = "rb-sys"
|
2230
|
-
version = "0.9.
|
1929
|
+
version = "0.9.116"
|
2231
1930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2232
|
-
checksum = "
|
1931
|
+
checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad"
|
2233
1932
|
dependencies = [
|
2234
1933
|
"rb-sys-build",
|
2235
1934
|
]
|
2236
1935
|
|
2237
1936
|
[[package]]
|
2238
1937
|
name = "rb-sys-build"
|
2239
|
-
version = "0.9.
|
1938
|
+
version = "0.9.116"
|
2240
1939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2241
|
-
checksum = "
|
1940
|
+
checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0"
|
2242
1941
|
dependencies = [
|
2243
1942
|
"bindgen",
|
2244
1943
|
"lazy_static",
|
@@ -2284,9 +1983,9 @@ dependencies = [
|
|
2284
1983
|
|
2285
1984
|
[[package]]
|
2286
1985
|
name = "read-fonts"
|
2287
|
-
version = "0.
|
1986
|
+
version = "0.29.3"
|
2288
1987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2289
|
-
checksum = "
|
1988
|
+
checksum = "04ca636dac446b5664bd16c069c00a9621806895b8bb02c2dc68542b23b8f25d"
|
2290
1989
|
dependencies = [
|
2291
1990
|
"bytemuck",
|
2292
1991
|
"font-types",
|
@@ -2294,11 +1993,11 @@ dependencies = [
|
|
2294
1993
|
|
2295
1994
|
[[package]]
|
2296
1995
|
name = "redox_syscall"
|
2297
|
-
version = "0.5.
|
1996
|
+
version = "0.5.15"
|
2298
1997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2299
|
-
checksum = "
|
1998
|
+
checksum = "7e8af0dde094006011e6a740d4879319439489813bd0bcdc7d821beaeeff48ec"
|
2300
1999
|
dependencies = [
|
2301
|
-
"bitflags 2.9.
|
2000
|
+
"bitflags 2.9.1",
|
2302
2001
|
]
|
2303
2002
|
|
2304
2003
|
[[package]]
|
@@ -2330,23 +2029,16 @@ version = "0.8.5"
|
|
2330
2029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2331
2030
|
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
2332
2031
|
|
2333
|
-
[[package]]
|
2334
|
-
name = "renderdoc-sys"
|
2335
|
-
version = "1.1.0"
|
2336
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2337
|
-
checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
|
2338
|
-
|
2339
2032
|
[[package]]
|
2340
2033
|
name = "reqwest"
|
2341
|
-
version = "0.12.
|
2034
|
+
version = "0.12.22"
|
2342
2035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2343
|
-
checksum = "
|
2036
|
+
checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531"
|
2344
2037
|
dependencies = [
|
2345
2038
|
"base64",
|
2346
2039
|
"bytes",
|
2347
2040
|
"encoding_rs",
|
2348
2041
|
"futures-core",
|
2349
|
-
"futures-util",
|
2350
2042
|
"h2",
|
2351
2043
|
"http",
|
2352
2044
|
"http-body",
|
@@ -2355,29 +2047,26 @@ dependencies = [
|
|
2355
2047
|
"hyper-rustls",
|
2356
2048
|
"hyper-tls",
|
2357
2049
|
"hyper-util",
|
2358
|
-
"ipnet",
|
2359
2050
|
"js-sys",
|
2360
2051
|
"log",
|
2361
2052
|
"mime",
|
2362
2053
|
"native-tls",
|
2363
|
-
"once_cell",
|
2364
2054
|
"percent-encoding",
|
2365
2055
|
"pin-project-lite",
|
2366
|
-
"rustls-
|
2056
|
+
"rustls-pki-types",
|
2367
2057
|
"serde",
|
2368
2058
|
"serde_json",
|
2369
2059
|
"serde_urlencoded",
|
2370
2060
|
"sync_wrapper",
|
2371
|
-
"system-configuration",
|
2372
2061
|
"tokio",
|
2373
2062
|
"tokio-native-tls",
|
2374
2063
|
"tower",
|
2064
|
+
"tower-http",
|
2375
2065
|
"tower-service",
|
2376
2066
|
"url",
|
2377
2067
|
"wasm-bindgen",
|
2378
2068
|
"wasm-bindgen-futures",
|
2379
2069
|
"web-sys",
|
2380
|
-
"windows-registry",
|
2381
2070
|
]
|
2382
2071
|
|
2383
2072
|
[[package]]
|
@@ -2388,7 +2077,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2388
2077
|
dependencies = [
|
2389
2078
|
"cc",
|
2390
2079
|
"cfg-if",
|
2391
|
-
"getrandom 0.2.
|
2080
|
+
"getrandom 0.2.16",
|
2392
2081
|
"libc",
|
2393
2082
|
"untrusted",
|
2394
2083
|
"windows-sys 0.52.0",
|
@@ -2402,9 +2091,9 @@ checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
2402
2091
|
|
2403
2092
|
[[package]]
|
2404
2093
|
name = "rustc-demangle"
|
2405
|
-
version = "0.1.
|
2094
|
+
version = "0.1.25"
|
2406
2095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2407
|
-
checksum = "
|
2096
|
+
checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
|
2408
2097
|
|
2409
2098
|
[[package]]
|
2410
2099
|
name = "rustc-hash"
|
@@ -2414,35 +2103,22 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2414
2103
|
|
2415
2104
|
[[package]]
|
2416
2105
|
name = "rustix"
|
2417
|
-
version = "0.
|
2418
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2419
|
-
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
2420
|
-
dependencies = [
|
2421
|
-
"bitflags 2.9.0",
|
2422
|
-
"errno",
|
2423
|
-
"libc",
|
2424
|
-
"linux-raw-sys 0.4.15",
|
2425
|
-
"windows-sys 0.59.0",
|
2426
|
-
]
|
2427
|
-
|
2428
|
-
[[package]]
|
2429
|
-
name = "rustix"
|
2430
|
-
version = "1.0.5"
|
2106
|
+
version = "1.0.8"
|
2431
2107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2432
|
-
checksum = "
|
2108
|
+
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
|
2433
2109
|
dependencies = [
|
2434
|
-
"bitflags 2.9.
|
2110
|
+
"bitflags 2.9.1",
|
2435
2111
|
"errno",
|
2436
2112
|
"libc",
|
2437
|
-
"linux-raw-sys
|
2113
|
+
"linux-raw-sys",
|
2438
2114
|
"windows-sys 0.59.0",
|
2439
2115
|
]
|
2440
2116
|
|
2441
2117
|
[[package]]
|
2442
2118
|
name = "rustls"
|
2443
|
-
version = "0.23.
|
2119
|
+
version = "0.23.29"
|
2444
2120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2445
|
-
checksum = "
|
2121
|
+
checksum = "2491382039b29b9b11ff08b76ff6c97cf287671dbb74f0be44bda389fffe9bd1"
|
2446
2122
|
dependencies = [
|
2447
2123
|
"once_cell",
|
2448
2124
|
"rustls-pki-types",
|
@@ -2452,25 +2128,19 @@ dependencies = [
|
|
2452
2128
|
]
|
2453
2129
|
|
2454
2130
|
[[package]]
|
2455
|
-
name = "rustls-
|
2456
|
-
version = "
|
2131
|
+
name = "rustls-pki-types"
|
2132
|
+
version = "1.12.0"
|
2457
2133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2458
|
-
checksum = "
|
2134
|
+
checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
|
2459
2135
|
dependencies = [
|
2460
|
-
"
|
2136
|
+
"zeroize",
|
2461
2137
|
]
|
2462
2138
|
|
2463
|
-
[[package]]
|
2464
|
-
name = "rustls-pki-types"
|
2465
|
-
version = "1.11.0"
|
2466
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2467
|
-
checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c"
|
2468
|
-
|
2469
2139
|
[[package]]
|
2470
2140
|
name = "rustls-webpki"
|
2471
|
-
version = "0.103.
|
2141
|
+
version = "0.103.4"
|
2472
2142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2473
|
-
checksum = "
|
2143
|
+
checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
|
2474
2144
|
dependencies = [
|
2475
2145
|
"ring",
|
2476
2146
|
"rustls-pki-types",
|
@@ -2479,17 +2149,17 @@ dependencies = [
|
|
2479
2149
|
|
2480
2150
|
[[package]]
|
2481
2151
|
name = "rustversion"
|
2482
|
-
version = "1.0.
|
2152
|
+
version = "1.0.21"
|
2483
2153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2484
|
-
checksum = "
|
2154
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
2485
2155
|
|
2486
2156
|
[[package]]
|
2487
2157
|
name = "rustybuzz"
|
2488
|
-
version = "0.
|
2158
|
+
version = "0.20.1"
|
2489
2159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2490
|
-
checksum = "
|
2160
|
+
checksum = "fd3c7c96f8a08ee34eff8857b11b49b07d71d1c3f4e88f8a88d4c9e9f90b1702"
|
2491
2161
|
dependencies = [
|
2492
|
-
"bitflags 2.9.
|
2162
|
+
"bitflags 2.9.1",
|
2493
2163
|
"bytemuck",
|
2494
2164
|
"core_maths",
|
2495
2165
|
"log",
|
@@ -2537,7 +2207,7 @@ version = "2.11.1"
|
|
2537
2207
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2538
2208
|
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
2539
2209
|
dependencies = [
|
2540
|
-
"bitflags 2.9.
|
2210
|
+
"bitflags 2.9.1",
|
2541
2211
|
"core-foundation",
|
2542
2212
|
"core-foundation-sys",
|
2543
2213
|
"libc",
|
@@ -2556,11 +2226,11 @@ dependencies = [
|
|
2556
2226
|
|
2557
2227
|
[[package]]
|
2558
2228
|
name = "selectors"
|
2559
|
-
version = "0.
|
2229
|
+
version = "0.29.0"
|
2560
2230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2561
|
-
checksum = "
|
2231
|
+
checksum = "d61a96a0a2d04f964888e003ec83e3172159a16e81b35de9f6ab85d8767cf2b1"
|
2562
2232
|
dependencies = [
|
2563
|
-
"bitflags 2.9.
|
2233
|
+
"bitflags 2.9.1",
|
2564
2234
|
"cssparser",
|
2565
2235
|
"derive_more",
|
2566
2236
|
"fxhash",
|
@@ -2603,9 +2273,9 @@ dependencies = [
|
|
2603
2273
|
|
2604
2274
|
[[package]]
|
2605
2275
|
name = "serde_json"
|
2606
|
-
version = "1.0.
|
2276
|
+
version = "1.0.141"
|
2607
2277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2608
|
-
checksum = "
|
2278
|
+
checksum = "30b9eff21ebe718216c6ec64e1d9ac57087aad11efc64e32002bce4a0d4c03d3"
|
2609
2279
|
dependencies = [
|
2610
2280
|
"itoa",
|
2611
2281
|
"memchr",
|
@@ -2627,9 +2297,9 @@ dependencies = [
|
|
2627
2297
|
|
2628
2298
|
[[package]]
|
2629
2299
|
name = "servo_arc"
|
2630
|
-
version = "0.4.
|
2300
|
+
version = "0.4.1"
|
2631
2301
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2632
|
-
checksum = "
|
2302
|
+
checksum = "204ea332803bd95a0b60388590d59cf6468ec9becf626e2451f1d26a1d972de4"
|
2633
2303
|
dependencies = [
|
2634
2304
|
"serde",
|
2635
2305
|
"stable_deref_trait",
|
@@ -2670,9 +2340,9 @@ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
2670
2340
|
|
2671
2341
|
[[package]]
|
2672
2342
|
name = "skrifa"
|
2673
|
-
version = "0.
|
2343
|
+
version = "0.31.3"
|
2674
2344
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2675
|
-
checksum = "
|
2345
|
+
checksum = "dbeb4ca4399663735553a09dd17ce7e49a0a0203f03b706b39628c4d913a8607"
|
2676
2346
|
dependencies = [
|
2677
2347
|
"bytemuck",
|
2678
2348
|
"read-fonts",
|
@@ -2680,12 +2350,9 @@ dependencies = [
|
|
2680
2350
|
|
2681
2351
|
[[package]]
|
2682
2352
|
name = "slab"
|
2683
|
-
version = "0.4.
|
2353
|
+
version = "0.4.10"
|
2684
2354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2685
|
-
checksum = "
|
2686
|
-
dependencies = [
|
2687
|
-
"autocfg",
|
2688
|
-
]
|
2355
|
+
checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d"
|
2689
2356
|
|
2690
2357
|
[[package]]
|
2691
2358
|
name = "slotmap"
|
@@ -2704,9 +2371,9 @@ checksum = "d31d263dd118560e1a492922182ab6ca6dc1d03a3bf54e7699993f31a4150e3f"
|
|
2704
2371
|
|
2705
2372
|
[[package]]
|
2706
2373
|
name = "smallvec"
|
2707
|
-
version = "1.15.
|
2374
|
+
version = "1.15.1"
|
2708
2375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2709
|
-
checksum = "
|
2376
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
2710
2377
|
|
2711
2378
|
[[package]]
|
2712
2379
|
name = "smol_str"
|
@@ -2714,26 +2381,17 @@ version = "0.2.2"
|
|
2714
2381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2715
2382
|
checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
|
2716
2383
|
dependencies = [
|
2717
|
-
"serde",
|
2718
|
-
]
|
2719
|
-
|
2720
|
-
[[package]]
|
2721
|
-
name = "socket2"
|
2722
|
-
version = "0.5.9"
|
2723
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2724
|
-
checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
|
2725
|
-
dependencies = [
|
2726
|
-
"libc",
|
2727
|
-
"windows-sys 0.52.0",
|
2384
|
+
"serde",
|
2728
2385
|
]
|
2729
2386
|
|
2730
2387
|
[[package]]
|
2731
|
-
name = "
|
2732
|
-
version = "0.
|
2388
|
+
name = "socket2"
|
2389
|
+
version = "0.5.10"
|
2733
2390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2734
|
-
checksum = "
|
2391
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
2735
2392
|
dependencies = [
|
2736
|
-
"
|
2393
|
+
"libc",
|
2394
|
+
"windows-sys 0.52.0",
|
2737
2395
|
]
|
2738
2396
|
|
2739
2397
|
[[package]]
|
@@ -2784,14 +2442,14 @@ dependencies = [
|
|
2784
2442
|
|
2785
2443
|
[[package]]
|
2786
2444
|
name = "stylo"
|
2787
|
-
version = "0.
|
2445
|
+
version = "0.4.0"
|
2788
2446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2789
|
-
checksum = "
|
2447
|
+
checksum = "d1cdb2ebcdd49e8e2524d3045202eb472c4261bb9956294fd52ccc1200b8e0af"
|
2790
2448
|
dependencies = [
|
2791
2449
|
"app_units",
|
2792
2450
|
"arrayvec",
|
2793
2451
|
"atomic_refcell",
|
2794
|
-
"bitflags 2.9.
|
2452
|
+
"bitflags 2.9.1",
|
2795
2453
|
"byteorder",
|
2796
2454
|
"cssparser",
|
2797
2455
|
"derive_more",
|
@@ -2800,12 +2458,11 @@ dependencies = [
|
|
2800
2458
|
"fxhash",
|
2801
2459
|
"icu_segmenter",
|
2802
2460
|
"indexmap",
|
2803
|
-
"itertools 0.
|
2461
|
+
"itertools 0.14.0",
|
2804
2462
|
"itoa",
|
2805
2463
|
"lazy_static",
|
2806
2464
|
"log",
|
2807
2465
|
"malloc_size_of_derive",
|
2808
|
-
"markup5ever",
|
2809
2466
|
"matches",
|
2810
2467
|
"mime",
|
2811
2468
|
"new_debug_unreachable",
|
@@ -2835,17 +2492,17 @@ dependencies = [
|
|
2835
2492
|
"to_shmem",
|
2836
2493
|
"to_shmem_derive",
|
2837
2494
|
"uluru",
|
2838
|
-
"unicode-bidi",
|
2839
2495
|
"url",
|
2840
2496
|
"void",
|
2841
2497
|
"walkdir",
|
2498
|
+
"web_atoms",
|
2842
2499
|
]
|
2843
2500
|
|
2844
2501
|
[[package]]
|
2845
2502
|
name = "stylo_atoms"
|
2846
|
-
version = "0.
|
2503
|
+
version = "0.4.0"
|
2847
2504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2848
|
-
checksum = "
|
2505
|
+
checksum = "4a2e2d0a6532ae003a87e9a44d35e74175af06cbba191ba80947ba8e9ea369b3"
|
2849
2506
|
dependencies = [
|
2850
2507
|
"string_cache",
|
2851
2508
|
"string_cache_codegen",
|
@@ -2853,15 +2510,15 @@ dependencies = [
|
|
2853
2510
|
|
2854
2511
|
[[package]]
|
2855
2512
|
name = "stylo_config"
|
2856
|
-
version = "0.
|
2513
|
+
version = "0.4.0"
|
2857
2514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2858
|
-
checksum = "
|
2515
|
+
checksum = "1a308fdc37610b1b9c6dbce4244a91f7bdf88bf8a13ccfbc50c212e09b29bc7d"
|
2859
2516
|
|
2860
2517
|
[[package]]
|
2861
2518
|
name = "stylo_derive"
|
2862
|
-
version = "0.
|
2519
|
+
version = "0.4.0"
|
2863
2520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2864
|
-
checksum = "
|
2521
|
+
checksum = "8384a2ebb61abbde4466dfc9d5dcda134dfa939b77bfb2df878d1c7dffe081f1"
|
2865
2522
|
dependencies = [
|
2866
2523
|
"darling",
|
2867
2524
|
"proc-macro2",
|
@@ -2872,19 +2529,19 @@ dependencies = [
|
|
2872
2529
|
|
2873
2530
|
[[package]]
|
2874
2531
|
name = "stylo_dom"
|
2875
|
-
version = "0.
|
2532
|
+
version = "0.4.0"
|
2876
2533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2877
|
-
checksum = "
|
2534
|
+
checksum = "d6bce5a8c7b6d5657952caeeec50213d356d1ca2f2b042cf4594a897701282e9"
|
2878
2535
|
dependencies = [
|
2879
|
-
"bitflags 2.9.
|
2536
|
+
"bitflags 2.9.1",
|
2880
2537
|
"stylo_malloc_size_of",
|
2881
2538
|
]
|
2882
2539
|
|
2883
2540
|
[[package]]
|
2884
2541
|
name = "stylo_malloc_size_of"
|
2885
|
-
version = "0.
|
2542
|
+
version = "0.4.0"
|
2886
2543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2887
|
-
checksum = "
|
2544
|
+
checksum = "fc88bd0d890c656478a8bfaab59e0e25d405149ef1117917d792540ab75b47cc"
|
2888
2545
|
dependencies = [
|
2889
2546
|
"app_units",
|
2890
2547
|
"cssparser",
|
@@ -2900,15 +2557,15 @@ dependencies = [
|
|
2900
2557
|
|
2901
2558
|
[[package]]
|
2902
2559
|
name = "stylo_static_prefs"
|
2903
|
-
version = "0.
|
2560
|
+
version = "0.4.0"
|
2904
2561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2905
|
-
checksum = "
|
2562
|
+
checksum = "500f379645e8a87fd03fe88607a5edcb0d8e4e423baa74ba52db198a06a0c261"
|
2906
2563
|
|
2907
2564
|
[[package]]
|
2908
2565
|
name = "stylo_taffy"
|
2909
|
-
version = "0.1.0-
|
2566
|
+
version = "0.1.0-rc.1"
|
2910
2567
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2911
|
-
checksum = "
|
2568
|
+
checksum = "94014fa36fdc4698a0b36179385d70810b6f0825b90c1df52de2aa5ee670328a"
|
2912
2569
|
dependencies = [
|
2913
2570
|
"stylo",
|
2914
2571
|
"taffy",
|
@@ -2916,12 +2573,12 @@ dependencies = [
|
|
2916
2573
|
|
2917
2574
|
[[package]]
|
2918
2575
|
name = "stylo_traits"
|
2919
|
-
version = "0.
|
2576
|
+
version = "0.4.0"
|
2920
2577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2921
|
-
checksum = "
|
2578
|
+
checksum = "244bfd473f321ff0258f5b2986e218d5f72507fa405fd131b8dbb5ebac166663"
|
2922
2579
|
dependencies = [
|
2923
2580
|
"app_units",
|
2924
|
-
"bitflags 2.9.
|
2581
|
+
"bitflags 2.9.1",
|
2925
2582
|
"cssparser",
|
2926
2583
|
"euclid",
|
2927
2584
|
"malloc_size_of_derive",
|
@@ -2942,12 +2599,6 @@ version = "2.6.1"
|
|
2942
2599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2943
2600
|
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
2944
2601
|
|
2945
|
-
[[package]]
|
2946
|
-
name = "svg_fmt"
|
2947
|
-
version = "0.4.5"
|
2948
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2949
|
-
checksum = "0193cc4331cfd2f3d2011ef287590868599a2f33c3e69bc22c1a3d3acf9e02fb"
|
2950
|
-
|
2951
2602
|
[[package]]
|
2952
2603
|
name = "svgtypes"
|
2953
2604
|
version = "0.15.3"
|
@@ -2960,9 +2611,9 @@ dependencies = [
|
|
2960
2611
|
|
2961
2612
|
[[package]]
|
2962
2613
|
name = "swash"
|
2963
|
-
version = "0.2.
|
2614
|
+
version = "0.2.5"
|
2964
2615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2965
|
-
checksum = "
|
2616
|
+
checksum = "f745de914febc7c9ab4388dfaf94bbc87e69f57bb41133a9b0c84d4be49856f3"
|
2966
2617
|
dependencies = [
|
2967
2618
|
"skrifa",
|
2968
2619
|
"yazi",
|
@@ -2971,9 +2622,9 @@ dependencies = [
|
|
2971
2622
|
|
2972
2623
|
[[package]]
|
2973
2624
|
name = "syn"
|
2974
|
-
version = "2.0.
|
2625
|
+
version = "2.0.104"
|
2975
2626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2976
|
-
checksum = "
|
2627
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
2977
2628
|
dependencies = [
|
2978
2629
|
"proc-macro2",
|
2979
2630
|
"quote",
|
@@ -2991,9 +2642,9 @@ dependencies = [
|
|
2991
2642
|
|
2992
2643
|
[[package]]
|
2993
2644
|
name = "synstructure"
|
2994
|
-
version = "0.13.
|
2645
|
+
version = "0.13.2"
|
2995
2646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2996
|
-
checksum = "
|
2647
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
2997
2648
|
dependencies = [
|
2998
2649
|
"proc-macro2",
|
2999
2650
|
"quote",
|
@@ -3006,7 +2657,7 @@ version = "0.6.1"
|
|
3006
2657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3007
2658
|
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
|
3008
2659
|
dependencies = [
|
3009
|
-
"bitflags 2.9.
|
2660
|
+
"bitflags 2.9.1",
|
3010
2661
|
"core-foundation",
|
3011
2662
|
"system-configuration-sys",
|
3012
2663
|
]
|
@@ -3023,9 +2674,9 @@ dependencies = [
|
|
3023
2674
|
|
3024
2675
|
[[package]]
|
3025
2676
|
name = "taffy"
|
3026
|
-
version = "0.8.
|
2677
|
+
version = "0.8.3"
|
3027
2678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3028
|
-
checksum = "
|
2679
|
+
checksum = "7aaef0ac998e6527d6d0d5582f7e43953bb17221ac75bb8eb2fcc2db3396db1c"
|
3029
2680
|
dependencies = [
|
3030
2681
|
"arrayvec",
|
3031
2682
|
"grid",
|
@@ -3035,14 +2686,14 @@ dependencies = [
|
|
3035
2686
|
|
3036
2687
|
[[package]]
|
3037
2688
|
name = "tempfile"
|
3038
|
-
version = "3.
|
2689
|
+
version = "3.20.0"
|
3039
2690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3040
|
-
checksum = "
|
2691
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
3041
2692
|
dependencies = [
|
3042
2693
|
"fastrand",
|
3043
|
-
"getrandom 0.3.
|
2694
|
+
"getrandom 0.3.3",
|
3044
2695
|
"once_cell",
|
3045
|
-
"rustix
|
2696
|
+
"rustix",
|
3046
2697
|
"windows-sys 0.59.0",
|
3047
2698
|
]
|
3048
2699
|
|
@@ -3057,15 +2708,6 @@ dependencies = [
|
|
3057
2708
|
"utf-8",
|
3058
2709
|
]
|
3059
2710
|
|
3060
|
-
[[package]]
|
3061
|
-
name = "termcolor"
|
3062
|
-
version = "1.4.1"
|
3063
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3064
|
-
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
3065
|
-
dependencies = [
|
3066
|
-
"winapi-util",
|
3067
|
-
]
|
3068
|
-
|
3069
2711
|
[[package]]
|
3070
2712
|
name = "thin-vec"
|
3071
2713
|
version = "0.2.14"
|
@@ -3130,7 +2772,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3130
2772
|
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
3131
2773
|
dependencies = [
|
3132
2774
|
"displaydoc",
|
3133
|
-
|
2775
|
+
]
|
2776
|
+
|
2777
|
+
[[package]]
|
2778
|
+
name = "tinystr"
|
2779
|
+
version = "0.8.1"
|
2780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2781
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
2782
|
+
dependencies = [
|
2783
|
+
"displaydoc",
|
2784
|
+
"zerovec 0.11.2",
|
3134
2785
|
]
|
3135
2786
|
|
3136
2787
|
[[package]]
|
@@ -3177,15 +2828,17 @@ dependencies = [
|
|
3177
2828
|
|
3178
2829
|
[[package]]
|
3179
2830
|
name = "tokio"
|
3180
|
-
version = "1.
|
2831
|
+
version = "1.46.1"
|
3181
2832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3182
|
-
checksum = "
|
2833
|
+
checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
|
3183
2834
|
dependencies = [
|
3184
2835
|
"backtrace",
|
3185
2836
|
"bytes",
|
2837
|
+
"io-uring",
|
3186
2838
|
"libc",
|
3187
2839
|
"mio",
|
3188
2840
|
"pin-project-lite",
|
2841
|
+
"slab",
|
3189
2842
|
"socket2",
|
3190
2843
|
"tokio-macros",
|
3191
2844
|
"windows-sys 0.52.0",
|
@@ -3224,9 +2877,9 @@ dependencies = [
|
|
3224
2877
|
|
3225
2878
|
[[package]]
|
3226
2879
|
name = "tokio-util"
|
3227
|
-
version = "0.7.
|
2880
|
+
version = "0.7.15"
|
3228
2881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3229
|
-
checksum = "
|
2882
|
+
checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
|
3230
2883
|
dependencies = [
|
3231
2884
|
"bytes",
|
3232
2885
|
"futures-core",
|
@@ -3250,6 +2903,24 @@ dependencies = [
|
|
3250
2903
|
"tower-service",
|
3251
2904
|
]
|
3252
2905
|
|
2906
|
+
[[package]]
|
2907
|
+
name = "tower-http"
|
2908
|
+
version = "0.6.6"
|
2909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2910
|
+
checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
|
2911
|
+
dependencies = [
|
2912
|
+
"bitflags 2.9.1",
|
2913
|
+
"bytes",
|
2914
|
+
"futures-util",
|
2915
|
+
"http",
|
2916
|
+
"http-body",
|
2917
|
+
"iri-string",
|
2918
|
+
"pin-project-lite",
|
2919
|
+
"tower",
|
2920
|
+
"tower-layer",
|
2921
|
+
"tower-service",
|
2922
|
+
]
|
2923
|
+
|
3253
2924
|
[[package]]
|
3254
2925
|
name = "tower-layer"
|
3255
2926
|
version = "0.3.3"
|
@@ -3275,9 +2946,9 @@ dependencies = [
|
|
3275
2946
|
|
3276
2947
|
[[package]]
|
3277
2948
|
name = "tracing-attributes"
|
3278
|
-
version = "0.1.
|
2949
|
+
version = "0.1.30"
|
3279
2950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3280
|
-
checksum = "
|
2951
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
3281
2952
|
dependencies = [
|
3282
2953
|
"proc-macro2",
|
3283
2954
|
"quote",
|
@@ -3286,9 +2957,9 @@ dependencies = [
|
|
3286
2957
|
|
3287
2958
|
[[package]]
|
3288
2959
|
name = "tracing-core"
|
3289
|
-
version = "0.1.
|
2960
|
+
version = "0.1.34"
|
3290
2961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3291
|
-
checksum = "
|
2962
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
3292
2963
|
dependencies = [
|
3293
2964
|
"once_cell",
|
3294
2965
|
]
|
@@ -3301,9 +2972,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3301
2972
|
|
3302
2973
|
[[package]]
|
3303
2974
|
name = "ttf-parser"
|
3304
|
-
version = "0.
|
2975
|
+
version = "0.25.1"
|
3305
2976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3306
|
-
checksum = "
|
2977
|
+
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
3307
2978
|
dependencies = [
|
3308
2979
|
"core_maths",
|
3309
2980
|
]
|
@@ -3325,15 +2996,15 @@ checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
3325
2996
|
|
3326
2997
|
[[package]]
|
3327
2998
|
name = "unicode-bidi-mirroring"
|
3328
|
-
version = "0.
|
2999
|
+
version = "0.4.0"
|
3329
3000
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3330
|
-
checksum = "
|
3001
|
+
checksum = "5dfa6e8c60bb66d49db113e0125ee8711b7647b5579dc7f5f19c42357ed039fe"
|
3331
3002
|
|
3332
3003
|
[[package]]
|
3333
3004
|
name = "unicode-ccc"
|
3334
|
-
version = "0.
|
3005
|
+
version = "0.4.0"
|
3335
3006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3336
|
-
checksum = "
|
3007
|
+
checksum = "ce61d488bcdc9bc8b5d1772c404828b17fc481c0a582b5581e95fb233aef503e"
|
3337
3008
|
|
3338
3009
|
[[package]]
|
3339
3010
|
name = "unicode-ident"
|
@@ -3365,18 +3036,6 @@ version = "0.1.0"
|
|
3365
3036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3366
3037
|
checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
|
3367
3038
|
|
3368
|
-
[[package]]
|
3369
|
-
name = "unicode-width"
|
3370
|
-
version = "0.1.14"
|
3371
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3372
|
-
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
3373
|
-
|
3374
|
-
[[package]]
|
3375
|
-
name = "unicode-xid"
|
3376
|
-
version = "0.2.6"
|
3377
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3378
|
-
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
3379
|
-
|
3380
3039
|
[[package]]
|
3381
3040
|
name = "untrusted"
|
3382
3041
|
version = "0.9.0"
|
@@ -3397,9 +3056,9 @@ dependencies = [
|
|
3397
3056
|
|
3398
3057
|
[[package]]
|
3399
3058
|
name = "usvg"
|
3400
|
-
version = "0.
|
3059
|
+
version = "0.45.1"
|
3401
3060
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3402
|
-
checksum = "
|
3061
|
+
checksum = "80be9b06fbae3b8b303400ab20778c80bbaf338f563afe567cf3c9eea17b47ef"
|
3403
3062
|
dependencies = [
|
3404
3063
|
"base64",
|
3405
3064
|
"data-url",
|
@@ -3428,12 +3087,6 @@ version = "0.7.6"
|
|
3428
3087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3429
3088
|
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
3430
3089
|
|
3431
|
-
[[package]]
|
3432
|
-
name = "utf16_iter"
|
3433
|
-
version = "1.0.5"
|
3434
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3435
|
-
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
3436
|
-
|
3437
3090
|
[[package]]
|
3438
3091
|
name = "utf8-width"
|
3439
3092
|
version = "0.1.7"
|
@@ -3453,59 +3106,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3453
3106
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
3454
3107
|
|
3455
3108
|
[[package]]
|
3456
|
-
name = "
|
3457
|
-
version = "0.
|
3109
|
+
name = "vello_common"
|
3110
|
+
version = "0.0.1"
|
3458
3111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3459
|
-
checksum = "
|
3112
|
+
checksum = "6b5e49f2836e87b6bd3d8f70324696f22b5f7dfdc836caeab463fff05957c1b1"
|
3460
3113
|
dependencies = [
|
3461
3114
|
"bytemuck",
|
3462
|
-
"futures-intrusive",
|
3463
|
-
"log",
|
3464
3115
|
"peniko",
|
3465
3116
|
"png",
|
3466
3117
|
"skrifa",
|
3467
|
-
"static_assertions",
|
3468
|
-
"thiserror 2.0.12",
|
3469
|
-
"vello_encoding",
|
3470
|
-
"vello_shaders",
|
3471
|
-
"wgpu",
|
3472
|
-
]
|
3473
|
-
|
3474
|
-
[[package]]
|
3475
|
-
name = "vello_encoding"
|
3476
|
-
version = "0.4.1"
|
3477
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3478
|
-
checksum = "cbbdec68dea2b39ece9f82ab15ec4cf2c4f8600ce6926df0638290702d95b3f7"
|
3479
|
-
dependencies = [
|
3480
|
-
"bytemuck",
|
3481
|
-
"guillotiere",
|
3482
|
-
"peniko",
|
3483
|
-
"skrifa",
|
3484
3118
|
"smallvec",
|
3485
3119
|
]
|
3486
3120
|
|
3487
3121
|
[[package]]
|
3488
|
-
name = "
|
3489
|
-
version = "0.
|
3490
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3491
|
-
checksum = "6e0179d74cf9131dfd7882323751d2544f3aefdfda9d16c39bbe2729799410d2"
|
3492
|
-
dependencies = [
|
3493
|
-
"bytemuck",
|
3494
|
-
"naga",
|
3495
|
-
"thiserror 2.0.12",
|
3496
|
-
"vello_encoding",
|
3497
|
-
]
|
3498
|
-
|
3499
|
-
[[package]]
|
3500
|
-
name = "vello_svg"
|
3501
|
-
version = "0.6.0"
|
3122
|
+
name = "vello_cpu"
|
3123
|
+
version = "0.0.1"
|
3502
3124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3503
|
-
checksum = "
|
3125
|
+
checksum = "a45e0a6b777abb4354e15146ecf95bac03aada7a85024fd47762f56095b32896"
|
3504
3126
|
dependencies = [
|
3505
|
-
"
|
3506
|
-
"thiserror 2.0.12",
|
3507
|
-
"usvg",
|
3508
|
-
"vello",
|
3127
|
+
"vello_common",
|
3509
3128
|
]
|
3510
3129
|
|
3511
3130
|
[[package]]
|
@@ -3541,9 +3160,9 @@ dependencies = [
|
|
3541
3160
|
|
3542
3161
|
[[package]]
|
3543
3162
|
name = "wasi"
|
3544
|
-
version = "0.11.
|
3163
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
3545
3164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3546
|
-
checksum = "
|
3165
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
3547
3166
|
|
3548
3167
|
[[package]]
|
3549
3168
|
name = "wasi"
|
@@ -3636,116 +3255,22 @@ dependencies = [
|
|
3636
3255
|
]
|
3637
3256
|
|
3638
3257
|
[[package]]
|
3639
|
-
name = "
|
3640
|
-
version = "0.1.
|
3641
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3642
|
-
checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
|
3643
|
-
|
3644
|
-
[[package]]
|
3645
|
-
name = "wgpu"
|
3646
|
-
version = "23.0.1"
|
3647
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3648
|
-
checksum = "80f70000db37c469ea9d67defdc13024ddf9a5f1b89cb2941b812ad7cde1735a"
|
3649
|
-
dependencies = [
|
3650
|
-
"arrayvec",
|
3651
|
-
"cfg_aliases",
|
3652
|
-
"document-features",
|
3653
|
-
"js-sys",
|
3654
|
-
"log",
|
3655
|
-
"naga",
|
3656
|
-
"parking_lot",
|
3657
|
-
"profiling",
|
3658
|
-
"raw-window-handle",
|
3659
|
-
"smallvec",
|
3660
|
-
"static_assertions",
|
3661
|
-
"wasm-bindgen",
|
3662
|
-
"wasm-bindgen-futures",
|
3663
|
-
"web-sys",
|
3664
|
-
"wgpu-core",
|
3665
|
-
"wgpu-hal",
|
3666
|
-
"wgpu-types",
|
3667
|
-
]
|
3668
|
-
|
3669
|
-
[[package]]
|
3670
|
-
name = "wgpu-core"
|
3671
|
-
version = "23.0.1"
|
3672
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3673
|
-
checksum = "d63c3c478de8e7e01786479919c8769f62a22eec16788d8c2ac77ce2c132778a"
|
3674
|
-
dependencies = [
|
3675
|
-
"arrayvec",
|
3676
|
-
"bit-vec",
|
3677
|
-
"bitflags 2.9.0",
|
3678
|
-
"cfg_aliases",
|
3679
|
-
"document-features",
|
3680
|
-
"indexmap",
|
3681
|
-
"log",
|
3682
|
-
"naga",
|
3683
|
-
"once_cell",
|
3684
|
-
"parking_lot",
|
3685
|
-
"profiling",
|
3686
|
-
"raw-window-handle",
|
3687
|
-
"rustc-hash",
|
3688
|
-
"smallvec",
|
3689
|
-
"thiserror 1.0.69",
|
3690
|
-
"wgpu-hal",
|
3691
|
-
"wgpu-types",
|
3692
|
-
]
|
3693
|
-
|
3694
|
-
[[package]]
|
3695
|
-
name = "wgpu-hal"
|
3696
|
-
version = "23.0.1"
|
3258
|
+
name = "web_atoms"
|
3259
|
+
version = "0.1.3"
|
3697
3260
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3698
|
-
checksum = "
|
3261
|
+
checksum = "57ffde1dc01240bdf9992e3205668b235e59421fd085e8a317ed98da0178d414"
|
3699
3262
|
dependencies = [
|
3700
|
-
"
|
3701
|
-
"
|
3702
|
-
"
|
3703
|
-
"
|
3704
|
-
"bitflags 2.9.0",
|
3705
|
-
"block",
|
3706
|
-
"bytemuck",
|
3707
|
-
"cfg_aliases",
|
3708
|
-
"core-graphics-types",
|
3709
|
-
"glow",
|
3710
|
-
"glutin_wgl_sys",
|
3711
|
-
"gpu-alloc",
|
3712
|
-
"gpu-allocator",
|
3713
|
-
"gpu-descriptor",
|
3714
|
-
"js-sys",
|
3715
|
-
"khronos-egl",
|
3716
|
-
"libc",
|
3717
|
-
"libloading",
|
3718
|
-
"log",
|
3719
|
-
"metal",
|
3720
|
-
"naga",
|
3721
|
-
"ndk-sys",
|
3722
|
-
"objc",
|
3723
|
-
"once_cell",
|
3724
|
-
"parking_lot",
|
3725
|
-
"profiling",
|
3726
|
-
"range-alloc",
|
3727
|
-
"raw-window-handle",
|
3728
|
-
"renderdoc-sys",
|
3729
|
-
"rustc-hash",
|
3730
|
-
"smallvec",
|
3731
|
-
"thiserror 1.0.69",
|
3732
|
-
"wasm-bindgen",
|
3733
|
-
"web-sys",
|
3734
|
-
"wgpu-types",
|
3735
|
-
"windows",
|
3736
|
-
"windows-core",
|
3263
|
+
"phf",
|
3264
|
+
"phf_codegen",
|
3265
|
+
"string_cache",
|
3266
|
+
"string_cache_codegen",
|
3737
3267
|
]
|
3738
3268
|
|
3739
3269
|
[[package]]
|
3740
|
-
name = "
|
3741
|
-
version = "
|
3270
|
+
name = "weezl"
|
3271
|
+
version = "0.1.10"
|
3742
3272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3743
|
-
checksum = "
|
3744
|
-
dependencies = [
|
3745
|
-
"bitflags 2.9.0",
|
3746
|
-
"js-sys",
|
3747
|
-
"web-sys",
|
3748
|
-
]
|
3273
|
+
checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3"
|
3749
3274
|
|
3750
3275
|
[[package]]
|
3751
3276
|
name = "winapi-util"
|
@@ -3803,19 +3328,19 @@ dependencies = [
|
|
3803
3328
|
|
3804
3329
|
[[package]]
|
3805
3330
|
name = "windows-link"
|
3806
|
-
version = "0.1.
|
3331
|
+
version = "0.1.3"
|
3807
3332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3808
|
-
checksum = "
|
3333
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
3809
3334
|
|
3810
3335
|
[[package]]
|
3811
3336
|
name = "windows-registry"
|
3812
|
-
version = "0.
|
3337
|
+
version = "0.5.3"
|
3813
3338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3814
|
-
checksum = "
|
3339
|
+
checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
|
3815
3340
|
dependencies = [
|
3816
|
-
"windows-
|
3817
|
-
"windows-
|
3818
|
-
"windows-
|
3341
|
+
"windows-link",
|
3342
|
+
"windows-result 0.3.4",
|
3343
|
+
"windows-strings 0.4.2",
|
3819
3344
|
]
|
3820
3345
|
|
3821
3346
|
[[package]]
|
@@ -3829,9 +3354,9 @@ dependencies = [
|
|
3829
3354
|
|
3830
3355
|
[[package]]
|
3831
3356
|
name = "windows-result"
|
3832
|
-
version = "0.3.
|
3357
|
+
version = "0.3.4"
|
3833
3358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3834
|
-
checksum = "
|
3359
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
3835
3360
|
dependencies = [
|
3836
3361
|
"windows-link",
|
3837
3362
|
]
|
@@ -3848,9 +3373,9 @@ dependencies = [
|
|
3848
3373
|
|
3849
3374
|
[[package]]
|
3850
3375
|
name = "windows-strings"
|
3851
|
-
version = "0.
|
3376
|
+
version = "0.4.2"
|
3852
3377
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3853
|
-
checksum = "
|
3378
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
3854
3379
|
dependencies = [
|
3855
3380
|
"windows-link",
|
3856
3381
|
]
|
@@ -3873,21 +3398,6 @@ dependencies = [
|
|
3873
3398
|
"windows-targets 0.52.6",
|
3874
3399
|
]
|
3875
3400
|
|
3876
|
-
[[package]]
|
3877
|
-
name = "windows-targets"
|
3878
|
-
version = "0.48.5"
|
3879
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3880
|
-
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
3881
|
-
dependencies = [
|
3882
|
-
"windows_aarch64_gnullvm 0.48.5",
|
3883
|
-
"windows_aarch64_msvc 0.48.5",
|
3884
|
-
"windows_i686_gnu 0.48.5",
|
3885
|
-
"windows_i686_msvc 0.48.5",
|
3886
|
-
"windows_x86_64_gnu 0.48.5",
|
3887
|
-
"windows_x86_64_gnullvm 0.48.5",
|
3888
|
-
"windows_x86_64_msvc 0.48.5",
|
3889
|
-
]
|
3890
|
-
|
3891
3401
|
[[package]]
|
3892
3402
|
name = "windows-targets"
|
3893
3403
|
version = "0.52.6"
|
@@ -3906,9 +3416,9 @@ dependencies = [
|
|
3906
3416
|
|
3907
3417
|
[[package]]
|
3908
3418
|
name = "windows-targets"
|
3909
|
-
version = "0.53.
|
3419
|
+
version = "0.53.2"
|
3910
3420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3911
|
-
checksum = "
|
3421
|
+
checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
|
3912
3422
|
dependencies = [
|
3913
3423
|
"windows_aarch64_gnullvm 0.53.0",
|
3914
3424
|
"windows_aarch64_msvc 0.53.0",
|
@@ -3920,12 +3430,6 @@ dependencies = [
|
|
3920
3430
|
"windows_x86_64_msvc 0.53.0",
|
3921
3431
|
]
|
3922
3432
|
|
3923
|
-
[[package]]
|
3924
|
-
name = "windows_aarch64_gnullvm"
|
3925
|
-
version = "0.48.5"
|
3926
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3927
|
-
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
3928
|
-
|
3929
3433
|
[[package]]
|
3930
3434
|
name = "windows_aarch64_gnullvm"
|
3931
3435
|
version = "0.52.6"
|
@@ -3938,12 +3442,6 @@ version = "0.53.0"
|
|
3938
3442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3939
3443
|
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
3940
3444
|
|
3941
|
-
[[package]]
|
3942
|
-
name = "windows_aarch64_msvc"
|
3943
|
-
version = "0.48.5"
|
3944
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3945
|
-
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
3946
|
-
|
3947
3445
|
[[package]]
|
3948
3446
|
name = "windows_aarch64_msvc"
|
3949
3447
|
version = "0.52.6"
|
@@ -3956,12 +3454,6 @@ version = "0.53.0"
|
|
3956
3454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3957
3455
|
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
3958
3456
|
|
3959
|
-
[[package]]
|
3960
|
-
name = "windows_i686_gnu"
|
3961
|
-
version = "0.48.5"
|
3962
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3963
|
-
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
3964
|
-
|
3965
3457
|
[[package]]
|
3966
3458
|
name = "windows_i686_gnu"
|
3967
3459
|
version = "0.52.6"
|
@@ -3986,12 +3478,6 @@ version = "0.53.0"
|
|
3986
3478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3987
3479
|
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
3988
3480
|
|
3989
|
-
[[package]]
|
3990
|
-
name = "windows_i686_msvc"
|
3991
|
-
version = "0.48.5"
|
3992
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3993
|
-
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
3994
|
-
|
3995
3481
|
[[package]]
|
3996
3482
|
name = "windows_i686_msvc"
|
3997
3483
|
version = "0.52.6"
|
@@ -4004,12 +3490,6 @@ version = "0.53.0"
|
|
4004
3490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4005
3491
|
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
4006
3492
|
|
4007
|
-
[[package]]
|
4008
|
-
name = "windows_x86_64_gnu"
|
4009
|
-
version = "0.48.5"
|
4010
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4011
|
-
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
4012
|
-
|
4013
3493
|
[[package]]
|
4014
3494
|
name = "windows_x86_64_gnu"
|
4015
3495
|
version = "0.52.6"
|
@@ -4022,12 +3502,6 @@ version = "0.53.0"
|
|
4022
3502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4023
3503
|
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
4024
3504
|
|
4025
|
-
[[package]]
|
4026
|
-
name = "windows_x86_64_gnullvm"
|
4027
|
-
version = "0.48.5"
|
4028
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4029
|
-
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
4030
|
-
|
4031
3505
|
[[package]]
|
4032
3506
|
name = "windows_x86_64_gnullvm"
|
4033
3507
|
version = "0.52.6"
|
@@ -4040,12 +3514,6 @@ version = "0.53.0"
|
|
4040
3514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4041
3515
|
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
4042
3516
|
|
4043
|
-
[[package]]
|
4044
|
-
name = "windows_x86_64_msvc"
|
4045
|
-
version = "0.48.5"
|
4046
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4047
|
-
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
4048
|
-
|
4049
3517
|
[[package]]
|
4050
3518
|
name = "windows_x86_64_msvc"
|
4051
3519
|
version = "0.52.6"
|
@@ -4064,7 +3532,7 @@ version = "0.39.0"
|
|
4064
3532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4065
3533
|
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
4066
3534
|
dependencies = [
|
4067
|
-
"bitflags 2.9.
|
3535
|
+
"bitflags 2.9.1",
|
4068
3536
|
]
|
4069
3537
|
|
4070
3538
|
[[package]]
|
@@ -4077,12 +3545,6 @@ dependencies = [
|
|
4077
3545
|
"libc",
|
4078
3546
|
]
|
4079
3547
|
|
4080
|
-
[[package]]
|
4081
|
-
name = "write16"
|
4082
|
-
version = "1.0.0"
|
4083
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4084
|
-
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
4085
|
-
|
4086
3548
|
[[package]]
|
4087
3549
|
name = "writeable"
|
4088
3550
|
version = "0.5.5"
|
@@ -4090,36 +3552,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4090
3552
|
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
4091
3553
|
|
4092
3554
|
[[package]]
|
4093
|
-
name = "
|
4094
|
-
version = "0.
|
4095
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4096
|
-
checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12"
|
4097
|
-
dependencies = [
|
4098
|
-
"gethostname",
|
4099
|
-
"rustix 0.38.44",
|
4100
|
-
"x11rb-protocol",
|
4101
|
-
]
|
4102
|
-
|
4103
|
-
[[package]]
|
4104
|
-
name = "x11rb-protocol"
|
4105
|
-
version = "0.13.1"
|
4106
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4107
|
-
checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d"
|
4108
|
-
|
4109
|
-
[[package]]
|
4110
|
-
name = "xml-rs"
|
4111
|
-
version = "0.8.26"
|
3555
|
+
name = "writeable"
|
3556
|
+
version = "0.6.1"
|
4112
3557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4113
|
-
checksum = "
|
3558
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
4114
3559
|
|
4115
3560
|
[[package]]
|
4116
3561
|
name = "xml5ever"
|
4117
|
-
version = "0.
|
3562
|
+
version = "0.35.0"
|
4118
3563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4119
|
-
checksum = "
|
3564
|
+
checksum = "ee3f1e41afb31a75aef076563b0ad3ecc24f5bd9d12a72b132222664eb76b494"
|
4120
3565
|
dependencies = [
|
4121
3566
|
"log",
|
4122
|
-
"mac",
|
4123
3567
|
"markup5ever",
|
4124
3568
|
]
|
4125
3569
|
|
@@ -4143,7 +3587,19 @@ checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
|
4143
3587
|
dependencies = [
|
4144
3588
|
"serde",
|
4145
3589
|
"stable_deref_trait",
|
4146
|
-
"yoke-derive",
|
3590
|
+
"yoke-derive 0.7.5",
|
3591
|
+
"zerofrom",
|
3592
|
+
]
|
3593
|
+
|
3594
|
+
[[package]]
|
3595
|
+
name = "yoke"
|
3596
|
+
version = "0.8.0"
|
3597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3598
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
3599
|
+
dependencies = [
|
3600
|
+
"serde",
|
3601
|
+
"stable_deref_trait",
|
3602
|
+
"yoke-derive 0.8.0",
|
4147
3603
|
"zerofrom",
|
4148
3604
|
]
|
4149
3605
|
|
@@ -4159,11 +3615,23 @@ dependencies = [
|
|
4159
3615
|
"synstructure",
|
4160
3616
|
]
|
4161
3617
|
|
3618
|
+
[[package]]
|
3619
|
+
name = "yoke-derive"
|
3620
|
+
version = "0.8.0"
|
3621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3622
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
3623
|
+
dependencies = [
|
3624
|
+
"proc-macro2",
|
3625
|
+
"quote",
|
3626
|
+
"syn",
|
3627
|
+
"synstructure",
|
3628
|
+
]
|
3629
|
+
|
4162
3630
|
[[package]]
|
4163
3631
|
name = "zeno"
|
4164
|
-
version = "0.3.
|
3632
|
+
version = "0.3.3"
|
4165
3633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4166
|
-
checksum = "
|
3634
|
+
checksum = "6df3dc4292935e51816d896edcd52aa30bc297907c26167fec31e2b0c6a32524"
|
4167
3635
|
|
4168
3636
|
[[package]]
|
4169
3637
|
name = "zerofrom"
|
@@ -4192,15 +3660,37 @@ version = "1.8.1"
|
|
4192
3660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4193
3661
|
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
4194
3662
|
|
3663
|
+
[[package]]
|
3664
|
+
name = "zerotrie"
|
3665
|
+
version = "0.2.2"
|
3666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3667
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
3668
|
+
dependencies = [
|
3669
|
+
"displaydoc",
|
3670
|
+
"yoke 0.8.0",
|
3671
|
+
"zerofrom",
|
3672
|
+
]
|
3673
|
+
|
4195
3674
|
[[package]]
|
4196
3675
|
name = "zerovec"
|
4197
3676
|
version = "0.10.4"
|
4198
3677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4199
3678
|
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
4200
3679
|
dependencies = [
|
4201
|
-
"yoke",
|
3680
|
+
"yoke 0.7.5",
|
3681
|
+
"zerofrom",
|
3682
|
+
"zerovec-derive 0.10.3",
|
3683
|
+
]
|
3684
|
+
|
3685
|
+
[[package]]
|
3686
|
+
name = "zerovec"
|
3687
|
+
version = "0.11.2"
|
3688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3689
|
+
checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
|
3690
|
+
dependencies = [
|
3691
|
+
"yoke 0.8.0",
|
4202
3692
|
"zerofrom",
|
4203
|
-
"zerovec-derive",
|
3693
|
+
"zerovec-derive 0.11.1",
|
4204
3694
|
]
|
4205
3695
|
|
4206
3696
|
[[package]]
|
@@ -4214,6 +3704,17 @@ dependencies = [
|
|
4214
3704
|
"syn",
|
4215
3705
|
]
|
4216
3706
|
|
3707
|
+
[[package]]
|
3708
|
+
name = "zerovec-derive"
|
3709
|
+
version = "0.11.1"
|
3710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3711
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
3712
|
+
dependencies = [
|
3713
|
+
"proc-macro2",
|
3714
|
+
"quote",
|
3715
|
+
"syn",
|
3716
|
+
]
|
3717
|
+
|
4217
3718
|
[[package]]
|
4218
3719
|
name = "zune-core"
|
4219
3720
|
version = "0.4.12"
|
@@ -4222,9 +3723,9 @@ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
|
|
4222
3723
|
|
4223
3724
|
[[package]]
|
4224
3725
|
name = "zune-jpeg"
|
4225
|
-
version = "0.4.
|
3726
|
+
version = "0.4.19"
|
4226
3727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4227
|
-
checksum = "
|
3728
|
+
checksum = "2c9e525af0a6a658e031e95f14b7f889976b74a11ba0eca5a5fc9ac8a1c43a6a"
|
4228
3729
|
dependencies = [
|
4229
3730
|
"zune-core",
|
4230
3731
|
]
|