@bloomengine/engine 0.3.1 → 0.3.2
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.
- package/README.md +33 -11
- package/native/linux/Cargo.lock +1571 -12
- package/native/linux/Cargo.toml +3 -0
- package/native/linux/src/lib.rs +745 -40
- package/native/macos/src/lib.rs +30 -118
- package/native/shared/build.rs +32 -4
- package/native/shared/src/postfx.rs +16 -10
- package/native/shared/src/renderer/formats.rs +1 -7
- package/native/shared/src/renderer/impulse_field.rs +2 -1
- package/native/shared/src/renderer/material_system.rs +15 -3
- package/native/shared/src/renderer/shaders.rs +7 -1
- package/native/shared/src/renderer/transient.rs +12 -12
- package/native/shared/src/string_header.rs +32 -0
- package/native/third_party/bloom_jolt/CMakeLists.txt +14 -5
- package/native/windows/Cargo.lock +1 -0
- package/native/windows/Cargo.toml +10 -1
- package/native/windows/src/lib.rs +226 -18
- package/package.json +8 -7
- package/src/core/colors.ts +34 -27
- package/src/core/index.ts +1 -2
package/native/linux/Cargo.lock
CHANGED
|
@@ -45,6 +45,32 @@ dependencies = [
|
|
|
45
45
|
"libc",
|
|
46
46
|
]
|
|
47
47
|
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "anyhow"
|
|
50
|
+
version = "1.0.102"
|
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "arboard"
|
|
56
|
+
version = "3.6.1"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf"
|
|
59
|
+
dependencies = [
|
|
60
|
+
"clipboard-win",
|
|
61
|
+
"image",
|
|
62
|
+
"log",
|
|
63
|
+
"objc2",
|
|
64
|
+
"objc2-app-kit",
|
|
65
|
+
"objc2-core-foundation",
|
|
66
|
+
"objc2-core-graphics",
|
|
67
|
+
"objc2-foundation",
|
|
68
|
+
"parking_lot",
|
|
69
|
+
"percent-encoding",
|
|
70
|
+
"windows-sys 0.60.2",
|
|
71
|
+
"x11rb",
|
|
72
|
+
]
|
|
73
|
+
|
|
48
74
|
[[package]]
|
|
49
75
|
name = "arrayvec"
|
|
50
76
|
version = "0.7.6"
|
|
@@ -60,6 +86,187 @@ dependencies = [
|
|
|
60
86
|
"libloading",
|
|
61
87
|
]
|
|
62
88
|
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "ashpd"
|
|
91
|
+
version = "0.11.1"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "d2f3f79755c74fd155000314eb349864caa787c6592eace6c6882dad873d9c39"
|
|
94
|
+
dependencies = [
|
|
95
|
+
"async-fs",
|
|
96
|
+
"async-net",
|
|
97
|
+
"enumflags2",
|
|
98
|
+
"futures-channel",
|
|
99
|
+
"futures-util",
|
|
100
|
+
"rand",
|
|
101
|
+
"raw-window-handle",
|
|
102
|
+
"serde",
|
|
103
|
+
"serde_repr",
|
|
104
|
+
"url",
|
|
105
|
+
"wayland-backend",
|
|
106
|
+
"wayland-client",
|
|
107
|
+
"wayland-protocols",
|
|
108
|
+
"zbus",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "async-broadcast"
|
|
113
|
+
version = "0.7.2"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"event-listener",
|
|
118
|
+
"event-listener-strategy",
|
|
119
|
+
"futures-core",
|
|
120
|
+
"pin-project-lite",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "async-channel"
|
|
125
|
+
version = "2.5.0"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
|
|
128
|
+
dependencies = [
|
|
129
|
+
"concurrent-queue",
|
|
130
|
+
"event-listener-strategy",
|
|
131
|
+
"futures-core",
|
|
132
|
+
"pin-project-lite",
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "async-executor"
|
|
137
|
+
version = "1.14.0"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"async-task",
|
|
142
|
+
"concurrent-queue",
|
|
143
|
+
"fastrand",
|
|
144
|
+
"futures-lite",
|
|
145
|
+
"pin-project-lite",
|
|
146
|
+
"slab",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "async-fs"
|
|
151
|
+
version = "2.2.0"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"async-lock",
|
|
156
|
+
"blocking",
|
|
157
|
+
"futures-lite",
|
|
158
|
+
]
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "async-io"
|
|
162
|
+
version = "2.6.0"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
|
|
165
|
+
dependencies = [
|
|
166
|
+
"autocfg",
|
|
167
|
+
"cfg-if",
|
|
168
|
+
"concurrent-queue",
|
|
169
|
+
"futures-io",
|
|
170
|
+
"futures-lite",
|
|
171
|
+
"parking",
|
|
172
|
+
"polling",
|
|
173
|
+
"rustix",
|
|
174
|
+
"slab",
|
|
175
|
+
"windows-sys 0.61.2",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "async-lock"
|
|
180
|
+
version = "3.4.2"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"event-listener",
|
|
185
|
+
"event-listener-strategy",
|
|
186
|
+
"pin-project-lite",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "async-net"
|
|
191
|
+
version = "2.0.0"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"async-io",
|
|
196
|
+
"blocking",
|
|
197
|
+
"futures-lite",
|
|
198
|
+
]
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "async-process"
|
|
202
|
+
version = "2.5.0"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
|
|
205
|
+
dependencies = [
|
|
206
|
+
"async-channel",
|
|
207
|
+
"async-io",
|
|
208
|
+
"async-lock",
|
|
209
|
+
"async-signal",
|
|
210
|
+
"async-task",
|
|
211
|
+
"blocking",
|
|
212
|
+
"cfg-if",
|
|
213
|
+
"event-listener",
|
|
214
|
+
"futures-lite",
|
|
215
|
+
"rustix",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "async-recursion"
|
|
220
|
+
version = "1.1.1"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"proc-macro2",
|
|
225
|
+
"quote",
|
|
226
|
+
"syn 2.0.117",
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "async-signal"
|
|
231
|
+
version = "0.2.14"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"async-io",
|
|
236
|
+
"async-lock",
|
|
237
|
+
"atomic-waker",
|
|
238
|
+
"cfg-if",
|
|
239
|
+
"futures-core",
|
|
240
|
+
"futures-io",
|
|
241
|
+
"rustix",
|
|
242
|
+
"signal-hook-registry",
|
|
243
|
+
"slab",
|
|
244
|
+
"windows-sys 0.61.2",
|
|
245
|
+
]
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "async-task"
|
|
249
|
+
version = "4.7.1"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "async-trait"
|
|
255
|
+
version = "0.1.89"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"proc-macro2",
|
|
260
|
+
"quote",
|
|
261
|
+
"syn 2.0.117",
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "atomic-waker"
|
|
266
|
+
version = "1.1.2"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
269
|
+
|
|
63
270
|
[[package]]
|
|
64
271
|
name = "autocfg"
|
|
65
272
|
version = "1.5.0"
|
|
@@ -108,14 +315,30 @@ dependencies = [
|
|
|
108
315
|
"objc2",
|
|
109
316
|
]
|
|
110
317
|
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "blocking"
|
|
320
|
+
version = "1.6.2"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
|
|
323
|
+
dependencies = [
|
|
324
|
+
"async-channel",
|
|
325
|
+
"async-task",
|
|
326
|
+
"futures-io",
|
|
327
|
+
"futures-lite",
|
|
328
|
+
"piper",
|
|
329
|
+
]
|
|
330
|
+
|
|
111
331
|
[[package]]
|
|
112
332
|
name = "bloom-linux"
|
|
113
333
|
version = "0.1.0"
|
|
114
334
|
dependencies = [
|
|
115
335
|
"alsa",
|
|
336
|
+
"arboard",
|
|
116
337
|
"bloom-shared",
|
|
338
|
+
"image",
|
|
117
339
|
"libc",
|
|
118
340
|
"raw-window-handle",
|
|
341
|
+
"rfd",
|
|
119
342
|
"wgpu",
|
|
120
343
|
"x11",
|
|
121
344
|
]
|
|
@@ -199,6 +422,15 @@ version = "0.2.1"
|
|
|
199
422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
423
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
201
424
|
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "clipboard-win"
|
|
427
|
+
version = "5.4.1"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"error-code",
|
|
432
|
+
]
|
|
433
|
+
|
|
202
434
|
[[package]]
|
|
203
435
|
name = "cmake"
|
|
204
436
|
version = "0.1.58"
|
|
@@ -219,6 +451,15 @@ dependencies = [
|
|
|
219
451
|
"unicode-width",
|
|
220
452
|
]
|
|
221
453
|
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "concurrent-queue"
|
|
456
|
+
version = "2.5.0"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
459
|
+
dependencies = [
|
|
460
|
+
"crossbeam-utils",
|
|
461
|
+
]
|
|
462
|
+
|
|
222
463
|
[[package]]
|
|
223
464
|
name = "crc32fast"
|
|
224
465
|
version = "1.5.0"
|
|
@@ -228,6 +469,12 @@ dependencies = [
|
|
|
228
469
|
"cfg-if",
|
|
229
470
|
]
|
|
230
471
|
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "crossbeam-utils"
|
|
474
|
+
version = "0.8.21"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
477
|
+
|
|
231
478
|
[[package]]
|
|
232
479
|
name = "crunchy"
|
|
233
480
|
version = "0.2.4"
|
|
@@ -253,9 +500,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
253
500
|
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
254
501
|
dependencies = [
|
|
255
502
|
"bitflags",
|
|
503
|
+
"block2",
|
|
504
|
+
"libc",
|
|
256
505
|
"objc2",
|
|
257
506
|
]
|
|
258
507
|
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "displaydoc"
|
|
510
|
+
version = "0.2.5"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"proc-macro2",
|
|
515
|
+
"quote",
|
|
516
|
+
"syn 2.0.117",
|
|
517
|
+
]
|
|
518
|
+
|
|
259
519
|
[[package]]
|
|
260
520
|
name = "dlib"
|
|
261
521
|
version = "0.5.3"
|
|
@@ -274,6 +534,12 @@ dependencies = [
|
|
|
274
534
|
"litrs",
|
|
275
535
|
]
|
|
276
536
|
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "downcast-rs"
|
|
539
|
+
version = "1.2.1"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
542
|
+
|
|
277
543
|
[[package]]
|
|
278
544
|
name = "earcutr"
|
|
279
545
|
version = "0.4.3"
|
|
@@ -290,6 +556,12 @@ version = "1.15.0"
|
|
|
290
556
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
557
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
292
558
|
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "endi"
|
|
561
|
+
version = "1.1.1"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
|
|
564
|
+
|
|
293
565
|
[[package]]
|
|
294
566
|
name = "enum-primitive-derive"
|
|
295
567
|
version = "0.2.2"
|
|
@@ -301,12 +573,82 @@ dependencies = [
|
|
|
301
573
|
"syn 1.0.109",
|
|
302
574
|
]
|
|
303
575
|
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "enumflags2"
|
|
578
|
+
version = "0.7.12"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"enumflags2_derive",
|
|
583
|
+
"serde",
|
|
584
|
+
]
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "enumflags2_derive"
|
|
588
|
+
version = "0.7.12"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"proc-macro2",
|
|
593
|
+
"quote",
|
|
594
|
+
"syn 2.0.117",
|
|
595
|
+
]
|
|
596
|
+
|
|
304
597
|
[[package]]
|
|
305
598
|
name = "equivalent"
|
|
306
599
|
version = "1.0.2"
|
|
307
600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
601
|
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
309
602
|
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "errno"
|
|
605
|
+
version = "0.3.14"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"libc",
|
|
610
|
+
"windows-sys 0.61.2",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "error-code"
|
|
615
|
+
version = "3.3.2"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "event-listener"
|
|
621
|
+
version = "5.4.1"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"concurrent-queue",
|
|
626
|
+
"parking",
|
|
627
|
+
"pin-project-lite",
|
|
628
|
+
]
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "event-listener-strategy"
|
|
632
|
+
version = "0.5.4"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
635
|
+
dependencies = [
|
|
636
|
+
"event-listener",
|
|
637
|
+
"pin-project-lite",
|
|
638
|
+
]
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "fastrand"
|
|
642
|
+
version = "2.4.1"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "fax"
|
|
648
|
+
version = "0.2.7"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "caf1079563223d5d59d83c85886a56e586cfd5c1a26292e971a0fa266531ac5a"
|
|
651
|
+
|
|
310
652
|
[[package]]
|
|
311
653
|
name = "fdeflate"
|
|
312
654
|
version = "0.3.7"
|
|
@@ -354,12 +696,60 @@ dependencies = [
|
|
|
354
696
|
"ttf-parser",
|
|
355
697
|
]
|
|
356
698
|
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "form_urlencoded"
|
|
701
|
+
version = "1.2.2"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"percent-encoding",
|
|
706
|
+
]
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "futures-channel"
|
|
710
|
+
version = "0.3.32"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
713
|
+
dependencies = [
|
|
714
|
+
"futures-core",
|
|
715
|
+
]
|
|
716
|
+
|
|
357
717
|
[[package]]
|
|
358
718
|
name = "futures-core"
|
|
359
719
|
version = "0.3.32"
|
|
360
720
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
721
|
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
362
722
|
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "futures-io"
|
|
725
|
+
version = "0.3.32"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
728
|
+
|
|
729
|
+
[[package]]
|
|
730
|
+
name = "futures-lite"
|
|
731
|
+
version = "2.6.1"
|
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
+
checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
|
|
734
|
+
dependencies = [
|
|
735
|
+
"fastrand",
|
|
736
|
+
"futures-core",
|
|
737
|
+
"futures-io",
|
|
738
|
+
"parking",
|
|
739
|
+
"pin-project-lite",
|
|
740
|
+
]
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "futures-macro"
|
|
744
|
+
version = "0.3.32"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"proc-macro2",
|
|
749
|
+
"quote",
|
|
750
|
+
"syn 2.0.117",
|
|
751
|
+
]
|
|
752
|
+
|
|
363
753
|
[[package]]
|
|
364
754
|
name = "futures-task"
|
|
365
755
|
version = "0.3.32"
|
|
@@ -373,11 +763,49 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
373
763
|
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
374
764
|
dependencies = [
|
|
375
765
|
"futures-core",
|
|
766
|
+
"futures-io",
|
|
767
|
+
"futures-macro",
|
|
376
768
|
"futures-task",
|
|
769
|
+
"memchr",
|
|
377
770
|
"pin-project-lite",
|
|
378
771
|
"slab",
|
|
379
772
|
]
|
|
380
773
|
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "gethostname"
|
|
776
|
+
version = "1.1.0"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
|
|
779
|
+
dependencies = [
|
|
780
|
+
"rustix",
|
|
781
|
+
"windows-link",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "getrandom"
|
|
786
|
+
version = "0.3.4"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"cfg-if",
|
|
791
|
+
"libc",
|
|
792
|
+
"r-efi 5.3.0",
|
|
793
|
+
"wasip2",
|
|
794
|
+
]
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "getrandom"
|
|
798
|
+
version = "0.4.2"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
801
|
+
dependencies = [
|
|
802
|
+
"cfg-if",
|
|
803
|
+
"libc",
|
|
804
|
+
"r-efi 6.0.0",
|
|
805
|
+
"wasip2",
|
|
806
|
+
"wasip3",
|
|
807
|
+
]
|
|
808
|
+
|
|
381
809
|
[[package]]
|
|
382
810
|
name = "gl_generator"
|
|
383
811
|
version = "0.14.0"
|
|
@@ -524,6 +952,24 @@ version = "0.17.0"
|
|
|
524
952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
953
|
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
526
954
|
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "heck"
|
|
957
|
+
version = "0.5.0"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "hermit-abi"
|
|
963
|
+
version = "0.5.2"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "hex"
|
|
969
|
+
version = "0.4.3"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
972
|
+
|
|
527
973
|
[[package]]
|
|
528
974
|
name = "hexf-parse"
|
|
529
975
|
version = "0.2.1"
|
|
@@ -531,16 +977,126 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
531
977
|
checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
|
|
532
978
|
|
|
533
979
|
[[package]]
|
|
534
|
-
name = "
|
|
535
|
-
version = "
|
|
980
|
+
name = "icu_collections"
|
|
981
|
+
version = "2.2.0"
|
|
536
982
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
-
checksum = "
|
|
983
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
538
984
|
dependencies = [
|
|
539
|
-
"
|
|
540
|
-
"
|
|
541
|
-
"
|
|
542
|
-
"
|
|
985
|
+
"displaydoc",
|
|
986
|
+
"potential_utf",
|
|
987
|
+
"utf8_iter",
|
|
988
|
+
"yoke",
|
|
989
|
+
"zerofrom",
|
|
990
|
+
"zerovec",
|
|
991
|
+
]
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "icu_locale_core"
|
|
995
|
+
version = "2.2.0"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
998
|
+
dependencies = [
|
|
999
|
+
"displaydoc",
|
|
1000
|
+
"litemap",
|
|
1001
|
+
"tinystr",
|
|
1002
|
+
"writeable",
|
|
1003
|
+
"zerovec",
|
|
1004
|
+
]
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "icu_normalizer"
|
|
1008
|
+
version = "2.2.0"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1011
|
+
dependencies = [
|
|
1012
|
+
"icu_collections",
|
|
1013
|
+
"icu_normalizer_data",
|
|
1014
|
+
"icu_properties",
|
|
1015
|
+
"icu_provider",
|
|
1016
|
+
"smallvec",
|
|
1017
|
+
"zerovec",
|
|
1018
|
+
]
|
|
1019
|
+
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "icu_normalizer_data"
|
|
1022
|
+
version = "2.2.0"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "icu_properties"
|
|
1028
|
+
version = "2.2.0"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"icu_collections",
|
|
1033
|
+
"icu_locale_core",
|
|
1034
|
+
"icu_properties_data",
|
|
1035
|
+
"icu_provider",
|
|
1036
|
+
"zerotrie",
|
|
1037
|
+
"zerovec",
|
|
1038
|
+
]
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "icu_properties_data"
|
|
1042
|
+
version = "2.2.0"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "icu_provider"
|
|
1048
|
+
version = "2.2.0"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"displaydoc",
|
|
1053
|
+
"icu_locale_core",
|
|
1054
|
+
"writeable",
|
|
1055
|
+
"yoke",
|
|
1056
|
+
"zerofrom",
|
|
1057
|
+
"zerotrie",
|
|
1058
|
+
"zerovec",
|
|
1059
|
+
]
|
|
1060
|
+
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "id-arena"
|
|
1063
|
+
version = "2.3.0"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "idna"
|
|
1069
|
+
version = "1.1.0"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1072
|
+
dependencies = [
|
|
1073
|
+
"idna_adapter",
|
|
1074
|
+
"smallvec",
|
|
1075
|
+
"utf8_iter",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "idna_adapter"
|
|
1080
|
+
version = "1.2.2"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"icu_normalizer",
|
|
1085
|
+
"icu_properties",
|
|
1086
|
+
]
|
|
1087
|
+
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "image"
|
|
1090
|
+
version = "0.25.10"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
|
|
1093
|
+
dependencies = [
|
|
1094
|
+
"bytemuck",
|
|
1095
|
+
"byteorder-lite",
|
|
1096
|
+
"moxcms",
|
|
1097
|
+
"num-traits",
|
|
543
1098
|
"png",
|
|
1099
|
+
"tiff",
|
|
544
1100
|
"zune-core",
|
|
545
1101
|
"zune-jpeg",
|
|
546
1102
|
]
|
|
@@ -567,6 +1123,8 @@ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
|
567
1123
|
dependencies = [
|
|
568
1124
|
"equivalent",
|
|
569
1125
|
"hashbrown 0.17.0",
|
|
1126
|
+
"serde",
|
|
1127
|
+
"serde_core",
|
|
570
1128
|
]
|
|
571
1129
|
|
|
572
1130
|
[[package]]
|
|
@@ -653,6 +1211,12 @@ version = "1.5.0"
|
|
|
653
1211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
1212
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
655
1213
|
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "leb128fmt"
|
|
1216
|
+
version = "0.1.0"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
1219
|
+
|
|
656
1220
|
[[package]]
|
|
657
1221
|
name = "lewton"
|
|
658
1222
|
version = "0.10.2"
|
|
@@ -686,6 +1250,18 @@ version = "0.2.16"
|
|
|
686
1250
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
1251
|
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
688
1252
|
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "linux-raw-sys"
|
|
1255
|
+
version = "0.12.1"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "litemap"
|
|
1261
|
+
version = "0.8.2"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1264
|
+
|
|
689
1265
|
[[package]]
|
|
690
1266
|
name = "litrs"
|
|
691
1267
|
version = "1.0.0"
|
|
@@ -722,6 +1298,15 @@ version = "2.8.0"
|
|
|
722
1298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
1299
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
724
1300
|
|
|
1301
|
+
[[package]]
|
|
1302
|
+
name = "memoffset"
|
|
1303
|
+
version = "0.9.1"
|
|
1304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1305
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1306
|
+
dependencies = [
|
|
1307
|
+
"autocfg",
|
|
1308
|
+
]
|
|
1309
|
+
|
|
725
1310
|
[[package]]
|
|
726
1311
|
name = "minimp3"
|
|
727
1312
|
version = "0.5.2"
|
|
@@ -816,6 +1401,19 @@ dependencies = [
|
|
|
816
1401
|
"objc2-encode",
|
|
817
1402
|
]
|
|
818
1403
|
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "objc2-app-kit"
|
|
1406
|
+
version = "0.3.2"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
|
|
1409
|
+
dependencies = [
|
|
1410
|
+
"bitflags",
|
|
1411
|
+
"block2",
|
|
1412
|
+
"objc2",
|
|
1413
|
+
"objc2-core-graphics",
|
|
1414
|
+
"objc2-foundation",
|
|
1415
|
+
]
|
|
1416
|
+
|
|
819
1417
|
[[package]]
|
|
820
1418
|
name = "objc2-core-foundation"
|
|
821
1419
|
version = "0.3.2"
|
|
@@ -827,6 +1425,19 @@ dependencies = [
|
|
|
827
1425
|
"objc2",
|
|
828
1426
|
]
|
|
829
1427
|
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "objc2-core-graphics"
|
|
1430
|
+
version = "0.3.2"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
|
|
1433
|
+
dependencies = [
|
|
1434
|
+
"bitflags",
|
|
1435
|
+
"dispatch2",
|
|
1436
|
+
"objc2",
|
|
1437
|
+
"objc2-core-foundation",
|
|
1438
|
+
"objc2-io-surface",
|
|
1439
|
+
]
|
|
1440
|
+
|
|
830
1441
|
[[package]]
|
|
831
1442
|
name = "objc2-encode"
|
|
832
1443
|
version = "4.1.0"
|
|
@@ -844,6 +1455,17 @@ dependencies = [
|
|
|
844
1455
|
"objc2-core-foundation",
|
|
845
1456
|
]
|
|
846
1457
|
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "objc2-io-surface"
|
|
1460
|
+
version = "0.3.2"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
|
|
1463
|
+
dependencies = [
|
|
1464
|
+
"bitflags",
|
|
1465
|
+
"objc2",
|
|
1466
|
+
"objc2-core-foundation",
|
|
1467
|
+
]
|
|
1468
|
+
|
|
847
1469
|
[[package]]
|
|
848
1470
|
name = "objc2-metal"
|
|
849
1471
|
version = "0.3.2"
|
|
@@ -893,6 +1515,22 @@ dependencies = [
|
|
|
893
1515
|
"num-traits",
|
|
894
1516
|
]
|
|
895
1517
|
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "ordered-stream"
|
|
1520
|
+
version = "0.2.0"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
|
|
1523
|
+
dependencies = [
|
|
1524
|
+
"futures-core",
|
|
1525
|
+
"pin-project-lite",
|
|
1526
|
+
]
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "parking"
|
|
1530
|
+
version = "2.2.1"
|
|
1531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
1533
|
+
|
|
896
1534
|
[[package]]
|
|
897
1535
|
name = "parking_lot"
|
|
898
1536
|
version = "0.12.5"
|
|
@@ -916,12 +1554,29 @@ dependencies = [
|
|
|
916
1554
|
"windows-link",
|
|
917
1555
|
]
|
|
918
1556
|
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "percent-encoding"
|
|
1559
|
+
version = "2.3.2"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1562
|
+
|
|
919
1563
|
[[package]]
|
|
920
1564
|
name = "pin-project-lite"
|
|
921
1565
|
version = "0.2.17"
|
|
922
1566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
1567
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
924
1568
|
|
|
1569
|
+
[[package]]
|
|
1570
|
+
name = "piper"
|
|
1571
|
+
version = "0.2.5"
|
|
1572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
+
checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1"
|
|
1574
|
+
dependencies = [
|
|
1575
|
+
"atomic-waker",
|
|
1576
|
+
"fastrand",
|
|
1577
|
+
"futures-io",
|
|
1578
|
+
]
|
|
1579
|
+
|
|
925
1580
|
[[package]]
|
|
926
1581
|
name = "pkg-config"
|
|
927
1582
|
version = "0.3.33"
|
|
@@ -941,6 +1596,26 @@ dependencies = [
|
|
|
941
1596
|
"miniz_oxide",
|
|
942
1597
|
]
|
|
943
1598
|
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "polling"
|
|
1601
|
+
version = "3.11.0"
|
|
1602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
+
checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
|
|
1604
|
+
dependencies = [
|
|
1605
|
+
"cfg-if",
|
|
1606
|
+
"concurrent-queue",
|
|
1607
|
+
"hermit-abi",
|
|
1608
|
+
"pin-project-lite",
|
|
1609
|
+
"rustix",
|
|
1610
|
+
"windows-sys 0.61.2",
|
|
1611
|
+
]
|
|
1612
|
+
|
|
1613
|
+
[[package]]
|
|
1614
|
+
name = "pollster"
|
|
1615
|
+
version = "0.4.0"
|
|
1616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1617
|
+
checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
|
|
1618
|
+
|
|
944
1619
|
[[package]]
|
|
945
1620
|
name = "portable-atomic"
|
|
946
1621
|
version = "1.13.1"
|
|
@@ -956,12 +1631,49 @@ dependencies = [
|
|
|
956
1631
|
"portable-atomic",
|
|
957
1632
|
]
|
|
958
1633
|
|
|
1634
|
+
[[package]]
|
|
1635
|
+
name = "potential_utf"
|
|
1636
|
+
version = "0.1.5"
|
|
1637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1638
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1639
|
+
dependencies = [
|
|
1640
|
+
"zerovec",
|
|
1641
|
+
]
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "ppv-lite86"
|
|
1645
|
+
version = "0.2.21"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1648
|
+
dependencies = [
|
|
1649
|
+
"zerocopy",
|
|
1650
|
+
]
|
|
1651
|
+
|
|
959
1652
|
[[package]]
|
|
960
1653
|
name = "presser"
|
|
961
1654
|
version = "0.3.1"
|
|
962
1655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
1656
|
checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
|
|
964
1657
|
|
|
1658
|
+
[[package]]
|
|
1659
|
+
name = "prettyplease"
|
|
1660
|
+
version = "0.2.37"
|
|
1661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1662
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1663
|
+
dependencies = [
|
|
1664
|
+
"proc-macro2",
|
|
1665
|
+
"syn 2.0.117",
|
|
1666
|
+
]
|
|
1667
|
+
|
|
1668
|
+
[[package]]
|
|
1669
|
+
name = "proc-macro-crate"
|
|
1670
|
+
version = "3.5.0"
|
|
1671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1672
|
+
checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
|
|
1673
|
+
dependencies = [
|
|
1674
|
+
"toml_edit",
|
|
1675
|
+
]
|
|
1676
|
+
|
|
965
1677
|
[[package]]
|
|
966
1678
|
name = "proc-macro2"
|
|
967
1679
|
version = "1.0.106"
|
|
@@ -983,6 +1695,21 @@ version = "0.1.29"
|
|
|
983
1695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
1696
|
checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
|
|
985
1697
|
|
|
1698
|
+
[[package]]
|
|
1699
|
+
name = "quick-error"
|
|
1700
|
+
version = "2.0.1"
|
|
1701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
1703
|
+
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "quick-xml"
|
|
1706
|
+
version = "0.39.4"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "cdcc8dd4e2f670d309a5f0e83fe36dfdc05af317008fea29144da1a2ac858e5e"
|
|
1709
|
+
dependencies = [
|
|
1710
|
+
"memchr",
|
|
1711
|
+
]
|
|
1712
|
+
|
|
986
1713
|
[[package]]
|
|
987
1714
|
name = "quote"
|
|
988
1715
|
version = "1.0.45"
|
|
@@ -992,6 +1719,47 @@ dependencies = [
|
|
|
992
1719
|
"proc-macro2",
|
|
993
1720
|
]
|
|
994
1721
|
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "r-efi"
|
|
1724
|
+
version = "5.3.0"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1727
|
+
|
|
1728
|
+
[[package]]
|
|
1729
|
+
name = "r-efi"
|
|
1730
|
+
version = "6.0.0"
|
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1733
|
+
|
|
1734
|
+
[[package]]
|
|
1735
|
+
name = "rand"
|
|
1736
|
+
version = "0.9.4"
|
|
1737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1738
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
1739
|
+
dependencies = [
|
|
1740
|
+
"rand_chacha",
|
|
1741
|
+
"rand_core",
|
|
1742
|
+
]
|
|
1743
|
+
|
|
1744
|
+
[[package]]
|
|
1745
|
+
name = "rand_chacha"
|
|
1746
|
+
version = "0.9.0"
|
|
1747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1748
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1749
|
+
dependencies = [
|
|
1750
|
+
"ppv-lite86",
|
|
1751
|
+
"rand_core",
|
|
1752
|
+
]
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "rand_core"
|
|
1756
|
+
version = "0.9.5"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"getrandom 0.3.4",
|
|
1761
|
+
]
|
|
1762
|
+
|
|
995
1763
|
[[package]]
|
|
996
1764
|
name = "range-alloc"
|
|
997
1765
|
version = "0.1.5"
|
|
@@ -1031,24 +1799,73 @@ version = "1.1.0"
|
|
|
1031
1799
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
1800
|
checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
|
|
1033
1801
|
|
|
1802
|
+
[[package]]
|
|
1803
|
+
name = "rfd"
|
|
1804
|
+
version = "0.15.4"
|
|
1805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1806
|
+
checksum = "ef2bee61e6cffa4635c72d7d81a84294e28f0930db0ddcb0f66d10244674ebed"
|
|
1807
|
+
dependencies = [
|
|
1808
|
+
"ashpd",
|
|
1809
|
+
"block2",
|
|
1810
|
+
"dispatch2",
|
|
1811
|
+
"js-sys",
|
|
1812
|
+
"log",
|
|
1813
|
+
"objc2",
|
|
1814
|
+
"objc2-app-kit",
|
|
1815
|
+
"objc2-core-foundation",
|
|
1816
|
+
"objc2-foundation",
|
|
1817
|
+
"pollster",
|
|
1818
|
+
"raw-window-handle",
|
|
1819
|
+
"urlencoding",
|
|
1820
|
+
"wasm-bindgen",
|
|
1821
|
+
"wasm-bindgen-futures",
|
|
1822
|
+
"web-sys",
|
|
1823
|
+
"windows-sys 0.59.0",
|
|
1824
|
+
]
|
|
1825
|
+
|
|
1034
1826
|
[[package]]
|
|
1035
1827
|
name = "rustc-hash"
|
|
1036
1828
|
version = "1.1.0"
|
|
1037
1829
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
1830
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1039
1831
|
|
|
1832
|
+
[[package]]
|
|
1833
|
+
name = "rustix"
|
|
1834
|
+
version = "1.1.4"
|
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
1837
|
+
dependencies = [
|
|
1838
|
+
"bitflags",
|
|
1839
|
+
"errno",
|
|
1840
|
+
"libc",
|
|
1841
|
+
"linux-raw-sys",
|
|
1842
|
+
"windows-sys 0.61.2",
|
|
1843
|
+
]
|
|
1844
|
+
|
|
1040
1845
|
[[package]]
|
|
1041
1846
|
name = "rustversion"
|
|
1042
1847
|
version = "1.0.22"
|
|
1043
1848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
1849
|
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1045
1850
|
|
|
1851
|
+
[[package]]
|
|
1852
|
+
name = "scoped-tls"
|
|
1853
|
+
version = "1.0.1"
|
|
1854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1855
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
1856
|
+
|
|
1046
1857
|
[[package]]
|
|
1047
1858
|
name = "scopeguard"
|
|
1048
1859
|
version = "1.2.0"
|
|
1049
1860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
1861
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1051
1862
|
|
|
1863
|
+
[[package]]
|
|
1864
|
+
name = "semver"
|
|
1865
|
+
version = "1.0.28"
|
|
1866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1868
|
+
|
|
1052
1869
|
[[package]]
|
|
1053
1870
|
name = "serde"
|
|
1054
1871
|
version = "1.0.228"
|
|
@@ -1092,12 +1909,33 @@ dependencies = [
|
|
|
1092
1909
|
"zmij",
|
|
1093
1910
|
]
|
|
1094
1911
|
|
|
1912
|
+
[[package]]
|
|
1913
|
+
name = "serde_repr"
|
|
1914
|
+
version = "0.1.20"
|
|
1915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1916
|
+
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
1917
|
+
dependencies = [
|
|
1918
|
+
"proc-macro2",
|
|
1919
|
+
"quote",
|
|
1920
|
+
"syn 2.0.117",
|
|
1921
|
+
]
|
|
1922
|
+
|
|
1095
1923
|
[[package]]
|
|
1096
1924
|
name = "shlex"
|
|
1097
1925
|
version = "1.3.0"
|
|
1098
1926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
1927
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1100
1928
|
|
|
1929
|
+
[[package]]
|
|
1930
|
+
name = "signal-hook-registry"
|
|
1931
|
+
version = "1.4.8"
|
|
1932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1933
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1934
|
+
dependencies = [
|
|
1935
|
+
"errno",
|
|
1936
|
+
"libc",
|
|
1937
|
+
]
|
|
1938
|
+
|
|
1101
1939
|
[[package]]
|
|
1102
1940
|
name = "simd-adler32"
|
|
1103
1941
|
version = "0.3.9"
|
|
@@ -1145,6 +1983,12 @@ dependencies = [
|
|
|
1145
1983
|
"bitflags",
|
|
1146
1984
|
]
|
|
1147
1985
|
|
|
1986
|
+
[[package]]
|
|
1987
|
+
name = "stable_deref_trait"
|
|
1988
|
+
version = "1.2.1"
|
|
1989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1991
|
+
|
|
1148
1992
|
[[package]]
|
|
1149
1993
|
name = "static_assertions"
|
|
1150
1994
|
version = "1.1.0"
|
|
@@ -1173,6 +2017,30 @@ dependencies = [
|
|
|
1173
2017
|
"unicode-ident",
|
|
1174
2018
|
]
|
|
1175
2019
|
|
|
2020
|
+
[[package]]
|
|
2021
|
+
name = "synstructure"
|
|
2022
|
+
version = "0.13.2"
|
|
2023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2024
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2025
|
+
dependencies = [
|
|
2026
|
+
"proc-macro2",
|
|
2027
|
+
"quote",
|
|
2028
|
+
"syn 2.0.117",
|
|
2029
|
+
]
|
|
2030
|
+
|
|
2031
|
+
[[package]]
|
|
2032
|
+
name = "tempfile"
|
|
2033
|
+
version = "3.27.0"
|
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
2036
|
+
dependencies = [
|
|
2037
|
+
"fastrand",
|
|
2038
|
+
"getrandom 0.4.2",
|
|
2039
|
+
"once_cell",
|
|
2040
|
+
"rustix",
|
|
2041
|
+
"windows-sys 0.61.2",
|
|
2042
|
+
]
|
|
2043
|
+
|
|
1176
2044
|
[[package]]
|
|
1177
2045
|
name = "termcolor"
|
|
1178
2046
|
version = "1.4.1"
|
|
@@ -1223,12 +2091,36 @@ dependencies = [
|
|
|
1223
2091
|
]
|
|
1224
2092
|
|
|
1225
2093
|
[[package]]
|
|
1226
|
-
name = "
|
|
1227
|
-
version = "
|
|
2094
|
+
name = "tiff"
|
|
2095
|
+
version = "0.11.3"
|
|
1228
2096
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1229
|
-
checksum = "
|
|
2097
|
+
checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
|
|
1230
2098
|
dependencies = [
|
|
1231
|
-
"
|
|
2099
|
+
"fax",
|
|
2100
|
+
"flate2",
|
|
2101
|
+
"half",
|
|
2102
|
+
"quick-error",
|
|
2103
|
+
"weezl",
|
|
2104
|
+
"zune-jpeg",
|
|
2105
|
+
]
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "tinystr"
|
|
2109
|
+
version = "0.8.3"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2112
|
+
dependencies = [
|
|
2113
|
+
"displaydoc",
|
|
2114
|
+
"zerovec",
|
|
2115
|
+
]
|
|
2116
|
+
|
|
2117
|
+
[[package]]
|
|
2118
|
+
name = "tinyvec"
|
|
2119
|
+
version = "1.11.0"
|
|
2120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2121
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
2122
|
+
dependencies = [
|
|
2123
|
+
"tinyvec_macros",
|
|
1232
2124
|
]
|
|
1233
2125
|
|
|
1234
2126
|
[[package]]
|
|
@@ -1237,12 +2129,84 @@ version = "0.1.1"
|
|
|
1237
2129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
2130
|
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1239
2131
|
|
|
2132
|
+
[[package]]
|
|
2133
|
+
name = "toml_datetime"
|
|
2134
|
+
version = "1.1.1+spec-1.1.0"
|
|
2135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
2137
|
+
dependencies = [
|
|
2138
|
+
"serde_core",
|
|
2139
|
+
]
|
|
2140
|
+
|
|
2141
|
+
[[package]]
|
|
2142
|
+
name = "toml_edit"
|
|
2143
|
+
version = "0.25.11+spec-1.1.0"
|
|
2144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2145
|
+
checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b"
|
|
2146
|
+
dependencies = [
|
|
2147
|
+
"indexmap",
|
|
2148
|
+
"toml_datetime",
|
|
2149
|
+
"toml_parser",
|
|
2150
|
+
"winnow",
|
|
2151
|
+
]
|
|
2152
|
+
|
|
2153
|
+
[[package]]
|
|
2154
|
+
name = "toml_parser"
|
|
2155
|
+
version = "1.1.2+spec-1.1.0"
|
|
2156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2157
|
+
checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
|
|
2158
|
+
dependencies = [
|
|
2159
|
+
"winnow",
|
|
2160
|
+
]
|
|
2161
|
+
|
|
2162
|
+
[[package]]
|
|
2163
|
+
name = "tracing"
|
|
2164
|
+
version = "0.1.44"
|
|
2165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2166
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2167
|
+
dependencies = [
|
|
2168
|
+
"pin-project-lite",
|
|
2169
|
+
"tracing-attributes",
|
|
2170
|
+
"tracing-core",
|
|
2171
|
+
]
|
|
2172
|
+
|
|
2173
|
+
[[package]]
|
|
2174
|
+
name = "tracing-attributes"
|
|
2175
|
+
version = "0.1.31"
|
|
2176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2177
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2178
|
+
dependencies = [
|
|
2179
|
+
"proc-macro2",
|
|
2180
|
+
"quote",
|
|
2181
|
+
"syn 2.0.117",
|
|
2182
|
+
]
|
|
2183
|
+
|
|
2184
|
+
[[package]]
|
|
2185
|
+
name = "tracing-core"
|
|
2186
|
+
version = "0.1.36"
|
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2188
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2189
|
+
dependencies = [
|
|
2190
|
+
"once_cell",
|
|
2191
|
+
]
|
|
2192
|
+
|
|
1240
2193
|
[[package]]
|
|
1241
2194
|
name = "ttf-parser"
|
|
1242
2195
|
version = "0.21.1"
|
|
1243
2196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
2197
|
checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
|
|
1245
2198
|
|
|
2199
|
+
[[package]]
|
|
2200
|
+
name = "uds_windows"
|
|
2201
|
+
version = "1.2.1"
|
|
2202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2203
|
+
checksum = "f2f6fb2847f6742cd76af783a2a2c49e9375d0a111c7bef6f71cd9e738c72d6e"
|
|
2204
|
+
dependencies = [
|
|
2205
|
+
"memoffset",
|
|
2206
|
+
"tempfile",
|
|
2207
|
+
"windows-sys 0.61.2",
|
|
2208
|
+
]
|
|
2209
|
+
|
|
1246
2210
|
[[package]]
|
|
1247
2211
|
name = "unicode-ident"
|
|
1248
2212
|
version = "1.0.24"
|
|
@@ -1255,18 +2219,72 @@ version = "0.2.2"
|
|
|
1255
2219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
2220
|
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1257
2221
|
|
|
2222
|
+
[[package]]
|
|
2223
|
+
name = "unicode-xid"
|
|
2224
|
+
version = "0.2.6"
|
|
2225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2226
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
2227
|
+
|
|
2228
|
+
[[package]]
|
|
2229
|
+
name = "url"
|
|
2230
|
+
version = "2.5.8"
|
|
2231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2232
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2233
|
+
dependencies = [
|
|
2234
|
+
"form_urlencoded",
|
|
2235
|
+
"idna",
|
|
2236
|
+
"percent-encoding",
|
|
2237
|
+
"serde",
|
|
2238
|
+
"serde_derive",
|
|
2239
|
+
]
|
|
2240
|
+
|
|
1258
2241
|
[[package]]
|
|
1259
2242
|
name = "urlencoding"
|
|
1260
2243
|
version = "2.1.3"
|
|
1261
2244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
2245
|
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
1263
2246
|
|
|
2247
|
+
[[package]]
|
|
2248
|
+
name = "utf8_iter"
|
|
2249
|
+
version = "1.0.4"
|
|
2250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2251
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2252
|
+
|
|
2253
|
+
[[package]]
|
|
2254
|
+
name = "uuid"
|
|
2255
|
+
version = "1.23.1"
|
|
2256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2257
|
+
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
2258
|
+
dependencies = [
|
|
2259
|
+
"js-sys",
|
|
2260
|
+
"serde_core",
|
|
2261
|
+
"wasm-bindgen",
|
|
2262
|
+
]
|
|
2263
|
+
|
|
1264
2264
|
[[package]]
|
|
1265
2265
|
name = "version_check"
|
|
1266
2266
|
version = "0.9.5"
|
|
1267
2267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
2268
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1269
2269
|
|
|
2270
|
+
[[package]]
|
|
2271
|
+
name = "wasip2"
|
|
2272
|
+
version = "1.0.3+wasi-0.2.9"
|
|
2273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2274
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
2275
|
+
dependencies = [
|
|
2276
|
+
"wit-bindgen 0.57.1",
|
|
2277
|
+
]
|
|
2278
|
+
|
|
2279
|
+
[[package]]
|
|
2280
|
+
name = "wasip3"
|
|
2281
|
+
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
2282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
+
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
2284
|
+
dependencies = [
|
|
2285
|
+
"wit-bindgen 0.51.0",
|
|
2286
|
+
]
|
|
2287
|
+
|
|
1270
2288
|
[[package]]
|
|
1271
2289
|
name = "wasm-bindgen"
|
|
1272
2290
|
version = "0.2.118"
|
|
@@ -1322,6 +2340,89 @@ dependencies = [
|
|
|
1322
2340
|
"unicode-ident",
|
|
1323
2341
|
]
|
|
1324
2342
|
|
|
2343
|
+
[[package]]
|
|
2344
|
+
name = "wasm-encoder"
|
|
2345
|
+
version = "0.244.0"
|
|
2346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2347
|
+
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
2348
|
+
dependencies = [
|
|
2349
|
+
"leb128fmt",
|
|
2350
|
+
"wasmparser",
|
|
2351
|
+
]
|
|
2352
|
+
|
|
2353
|
+
[[package]]
|
|
2354
|
+
name = "wasm-metadata"
|
|
2355
|
+
version = "0.244.0"
|
|
2356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
+
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
2358
|
+
dependencies = [
|
|
2359
|
+
"anyhow",
|
|
2360
|
+
"indexmap",
|
|
2361
|
+
"wasm-encoder",
|
|
2362
|
+
"wasmparser",
|
|
2363
|
+
]
|
|
2364
|
+
|
|
2365
|
+
[[package]]
|
|
2366
|
+
name = "wasmparser"
|
|
2367
|
+
version = "0.244.0"
|
|
2368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2369
|
+
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
2370
|
+
dependencies = [
|
|
2371
|
+
"bitflags",
|
|
2372
|
+
"hashbrown 0.15.5",
|
|
2373
|
+
"indexmap",
|
|
2374
|
+
"semver",
|
|
2375
|
+
]
|
|
2376
|
+
|
|
2377
|
+
[[package]]
|
|
2378
|
+
name = "wayland-backend"
|
|
2379
|
+
version = "0.3.15"
|
|
2380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2381
|
+
checksum = "2857dd20b54e916ec7253b3d6b4d5c4d7d4ca2c33c2e11c6c76a99bd8744755d"
|
|
2382
|
+
dependencies = [
|
|
2383
|
+
"cc",
|
|
2384
|
+
"downcast-rs",
|
|
2385
|
+
"rustix",
|
|
2386
|
+
"scoped-tls",
|
|
2387
|
+
"smallvec",
|
|
2388
|
+
"wayland-sys",
|
|
2389
|
+
]
|
|
2390
|
+
|
|
2391
|
+
[[package]]
|
|
2392
|
+
name = "wayland-client"
|
|
2393
|
+
version = "0.31.14"
|
|
2394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
+
checksum = "645c7c96bb74690c3189b5c9cb4ca1627062bb23693a4fad9d8c3de958260144"
|
|
2396
|
+
dependencies = [
|
|
2397
|
+
"bitflags",
|
|
2398
|
+
"rustix",
|
|
2399
|
+
"wayland-backend",
|
|
2400
|
+
"wayland-scanner",
|
|
2401
|
+
]
|
|
2402
|
+
|
|
2403
|
+
[[package]]
|
|
2404
|
+
name = "wayland-protocols"
|
|
2405
|
+
version = "0.32.12"
|
|
2406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
|
+
checksum = "563a85523cade2429938e790815fd7319062103b9f4a2dc806e9b53b95982d8f"
|
|
2408
|
+
dependencies = [
|
|
2409
|
+
"bitflags",
|
|
2410
|
+
"wayland-backend",
|
|
2411
|
+
"wayland-client",
|
|
2412
|
+
"wayland-scanner",
|
|
2413
|
+
]
|
|
2414
|
+
|
|
2415
|
+
[[package]]
|
|
2416
|
+
name = "wayland-scanner"
|
|
2417
|
+
version = "0.31.10"
|
|
2418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2419
|
+
checksum = "9c324a910fd86ebdc364a3e61ec1f11737d3b1d6c273c0239ee8ff4bc0d24b4a"
|
|
2420
|
+
dependencies = [
|
|
2421
|
+
"proc-macro2",
|
|
2422
|
+
"quick-xml",
|
|
2423
|
+
"quote",
|
|
2424
|
+
]
|
|
2425
|
+
|
|
1325
2426
|
[[package]]
|
|
1326
2427
|
name = "wayland-sys"
|
|
1327
2428
|
version = "0.31.11"
|
|
@@ -1344,6 +2445,12 @@ dependencies = [
|
|
|
1344
2445
|
"wasm-bindgen",
|
|
1345
2446
|
]
|
|
1346
2447
|
|
|
2448
|
+
[[package]]
|
|
2449
|
+
name = "weezl"
|
|
2450
|
+
version = "0.1.12"
|
|
2451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2452
|
+
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
2453
|
+
|
|
1347
2454
|
[[package]]
|
|
1348
2455
|
name = "wgpu"
|
|
1349
2456
|
version = "29.0.1"
|
|
@@ -1533,7 +2640,7 @@ version = "0.1.11"
|
|
|
1533
2640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
2641
|
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1535
2642
|
dependencies = [
|
|
1536
|
-
"windows-sys",
|
|
2643
|
+
"windows-sys 0.61.2",
|
|
1537
2644
|
]
|
|
1538
2645
|
|
|
1539
2646
|
[[package]]
|
|
@@ -1643,6 +2750,24 @@ dependencies = [
|
|
|
1643
2750
|
"windows-link",
|
|
1644
2751
|
]
|
|
1645
2752
|
|
|
2753
|
+
[[package]]
|
|
2754
|
+
name = "windows-sys"
|
|
2755
|
+
version = "0.59.0"
|
|
2756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2757
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
2758
|
+
dependencies = [
|
|
2759
|
+
"windows-targets 0.52.6",
|
|
2760
|
+
]
|
|
2761
|
+
|
|
2762
|
+
[[package]]
|
|
2763
|
+
name = "windows-sys"
|
|
2764
|
+
version = "0.60.2"
|
|
2765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2766
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2767
|
+
dependencies = [
|
|
2768
|
+
"windows-targets 0.53.5",
|
|
2769
|
+
]
|
|
2770
|
+
|
|
1646
2771
|
[[package]]
|
|
1647
2772
|
name = "windows-sys"
|
|
1648
2773
|
version = "0.61.2"
|
|
@@ -1652,6 +2777,39 @@ dependencies = [
|
|
|
1652
2777
|
"windows-link",
|
|
1653
2778
|
]
|
|
1654
2779
|
|
|
2780
|
+
[[package]]
|
|
2781
|
+
name = "windows-targets"
|
|
2782
|
+
version = "0.52.6"
|
|
2783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2784
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2785
|
+
dependencies = [
|
|
2786
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2787
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2788
|
+
"windows_i686_gnu 0.52.6",
|
|
2789
|
+
"windows_i686_gnullvm 0.52.6",
|
|
2790
|
+
"windows_i686_msvc 0.52.6",
|
|
2791
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2792
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2793
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2794
|
+
]
|
|
2795
|
+
|
|
2796
|
+
[[package]]
|
|
2797
|
+
name = "windows-targets"
|
|
2798
|
+
version = "0.53.5"
|
|
2799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2800
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2801
|
+
dependencies = [
|
|
2802
|
+
"windows-link",
|
|
2803
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
2804
|
+
"windows_aarch64_msvc 0.53.1",
|
|
2805
|
+
"windows_i686_gnu 0.53.1",
|
|
2806
|
+
"windows_i686_gnullvm 0.53.1",
|
|
2807
|
+
"windows_i686_msvc 0.53.1",
|
|
2808
|
+
"windows_x86_64_gnu 0.53.1",
|
|
2809
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
2810
|
+
"windows_x86_64_msvc 0.53.1",
|
|
2811
|
+
]
|
|
2812
|
+
|
|
1655
2813
|
[[package]]
|
|
1656
2814
|
name = "windows-threading"
|
|
1657
2815
|
version = "0.2.1"
|
|
@@ -1661,6 +2819,211 @@ dependencies = [
|
|
|
1661
2819
|
"windows-link",
|
|
1662
2820
|
]
|
|
1663
2821
|
|
|
2822
|
+
[[package]]
|
|
2823
|
+
name = "windows_aarch64_gnullvm"
|
|
2824
|
+
version = "0.52.6"
|
|
2825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2826
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2827
|
+
|
|
2828
|
+
[[package]]
|
|
2829
|
+
name = "windows_aarch64_gnullvm"
|
|
2830
|
+
version = "0.53.1"
|
|
2831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2832
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2833
|
+
|
|
2834
|
+
[[package]]
|
|
2835
|
+
name = "windows_aarch64_msvc"
|
|
2836
|
+
version = "0.52.6"
|
|
2837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2838
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2839
|
+
|
|
2840
|
+
[[package]]
|
|
2841
|
+
name = "windows_aarch64_msvc"
|
|
2842
|
+
version = "0.53.1"
|
|
2843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2844
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2845
|
+
|
|
2846
|
+
[[package]]
|
|
2847
|
+
name = "windows_i686_gnu"
|
|
2848
|
+
version = "0.52.6"
|
|
2849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2850
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2851
|
+
|
|
2852
|
+
[[package]]
|
|
2853
|
+
name = "windows_i686_gnu"
|
|
2854
|
+
version = "0.53.1"
|
|
2855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2856
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2857
|
+
|
|
2858
|
+
[[package]]
|
|
2859
|
+
name = "windows_i686_gnullvm"
|
|
2860
|
+
version = "0.52.6"
|
|
2861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2862
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2863
|
+
|
|
2864
|
+
[[package]]
|
|
2865
|
+
name = "windows_i686_gnullvm"
|
|
2866
|
+
version = "0.53.1"
|
|
2867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2868
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2869
|
+
|
|
2870
|
+
[[package]]
|
|
2871
|
+
name = "windows_i686_msvc"
|
|
2872
|
+
version = "0.52.6"
|
|
2873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2874
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2875
|
+
|
|
2876
|
+
[[package]]
|
|
2877
|
+
name = "windows_i686_msvc"
|
|
2878
|
+
version = "0.53.1"
|
|
2879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2880
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2881
|
+
|
|
2882
|
+
[[package]]
|
|
2883
|
+
name = "windows_x86_64_gnu"
|
|
2884
|
+
version = "0.52.6"
|
|
2885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2886
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2887
|
+
|
|
2888
|
+
[[package]]
|
|
2889
|
+
name = "windows_x86_64_gnu"
|
|
2890
|
+
version = "0.53.1"
|
|
2891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2892
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2893
|
+
|
|
2894
|
+
[[package]]
|
|
2895
|
+
name = "windows_x86_64_gnullvm"
|
|
2896
|
+
version = "0.52.6"
|
|
2897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2898
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2899
|
+
|
|
2900
|
+
[[package]]
|
|
2901
|
+
name = "windows_x86_64_gnullvm"
|
|
2902
|
+
version = "0.53.1"
|
|
2903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2904
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2905
|
+
|
|
2906
|
+
[[package]]
|
|
2907
|
+
name = "windows_x86_64_msvc"
|
|
2908
|
+
version = "0.52.6"
|
|
2909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2911
|
+
|
|
2912
|
+
[[package]]
|
|
2913
|
+
name = "windows_x86_64_msvc"
|
|
2914
|
+
version = "0.53.1"
|
|
2915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2916
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2917
|
+
|
|
2918
|
+
[[package]]
|
|
2919
|
+
name = "winnow"
|
|
2920
|
+
version = "1.0.2"
|
|
2921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
+
checksum = "2ee1708bef14716a11bae175f579062d4554d95be2c6829f518df847b7b3fdd0"
|
|
2923
|
+
dependencies = [
|
|
2924
|
+
"memchr",
|
|
2925
|
+
]
|
|
2926
|
+
|
|
2927
|
+
[[package]]
|
|
2928
|
+
name = "wit-bindgen"
|
|
2929
|
+
version = "0.51.0"
|
|
2930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2931
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
2932
|
+
dependencies = [
|
|
2933
|
+
"wit-bindgen-rust-macro",
|
|
2934
|
+
]
|
|
2935
|
+
|
|
2936
|
+
[[package]]
|
|
2937
|
+
name = "wit-bindgen"
|
|
2938
|
+
version = "0.57.1"
|
|
2939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2940
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2941
|
+
|
|
2942
|
+
[[package]]
|
|
2943
|
+
name = "wit-bindgen-core"
|
|
2944
|
+
version = "0.51.0"
|
|
2945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2946
|
+
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
2947
|
+
dependencies = [
|
|
2948
|
+
"anyhow",
|
|
2949
|
+
"heck",
|
|
2950
|
+
"wit-parser",
|
|
2951
|
+
]
|
|
2952
|
+
|
|
2953
|
+
[[package]]
|
|
2954
|
+
name = "wit-bindgen-rust"
|
|
2955
|
+
version = "0.51.0"
|
|
2956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2957
|
+
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
2958
|
+
dependencies = [
|
|
2959
|
+
"anyhow",
|
|
2960
|
+
"heck",
|
|
2961
|
+
"indexmap",
|
|
2962
|
+
"prettyplease",
|
|
2963
|
+
"syn 2.0.117",
|
|
2964
|
+
"wasm-metadata",
|
|
2965
|
+
"wit-bindgen-core",
|
|
2966
|
+
"wit-component",
|
|
2967
|
+
]
|
|
2968
|
+
|
|
2969
|
+
[[package]]
|
|
2970
|
+
name = "wit-bindgen-rust-macro"
|
|
2971
|
+
version = "0.51.0"
|
|
2972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2973
|
+
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
2974
|
+
dependencies = [
|
|
2975
|
+
"anyhow",
|
|
2976
|
+
"prettyplease",
|
|
2977
|
+
"proc-macro2",
|
|
2978
|
+
"quote",
|
|
2979
|
+
"syn 2.0.117",
|
|
2980
|
+
"wit-bindgen-core",
|
|
2981
|
+
"wit-bindgen-rust",
|
|
2982
|
+
]
|
|
2983
|
+
|
|
2984
|
+
[[package]]
|
|
2985
|
+
name = "wit-component"
|
|
2986
|
+
version = "0.244.0"
|
|
2987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2988
|
+
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
2989
|
+
dependencies = [
|
|
2990
|
+
"anyhow",
|
|
2991
|
+
"bitflags",
|
|
2992
|
+
"indexmap",
|
|
2993
|
+
"log",
|
|
2994
|
+
"serde",
|
|
2995
|
+
"serde_derive",
|
|
2996
|
+
"serde_json",
|
|
2997
|
+
"wasm-encoder",
|
|
2998
|
+
"wasm-metadata",
|
|
2999
|
+
"wasmparser",
|
|
3000
|
+
"wit-parser",
|
|
3001
|
+
]
|
|
3002
|
+
|
|
3003
|
+
[[package]]
|
|
3004
|
+
name = "wit-parser"
|
|
3005
|
+
version = "0.244.0"
|
|
3006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3007
|
+
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
3008
|
+
dependencies = [
|
|
3009
|
+
"anyhow",
|
|
3010
|
+
"id-arena",
|
|
3011
|
+
"indexmap",
|
|
3012
|
+
"log",
|
|
3013
|
+
"semver",
|
|
3014
|
+
"serde",
|
|
3015
|
+
"serde_derive",
|
|
3016
|
+
"serde_json",
|
|
3017
|
+
"unicode-xid",
|
|
3018
|
+
"wasmparser",
|
|
3019
|
+
]
|
|
3020
|
+
|
|
3021
|
+
[[package]]
|
|
3022
|
+
name = "writeable"
|
|
3023
|
+
version = "0.6.3"
|
|
3024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3025
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
3026
|
+
|
|
1664
3027
|
[[package]]
|
|
1665
3028
|
name = "x11"
|
|
1666
3029
|
version = "2.21.0"
|
|
@@ -1671,12 +3034,113 @@ dependencies = [
|
|
|
1671
3034
|
"pkg-config",
|
|
1672
3035
|
]
|
|
1673
3036
|
|
|
3037
|
+
[[package]]
|
|
3038
|
+
name = "x11rb"
|
|
3039
|
+
version = "0.13.2"
|
|
3040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3041
|
+
checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
|
|
3042
|
+
dependencies = [
|
|
3043
|
+
"gethostname",
|
|
3044
|
+
"rustix",
|
|
3045
|
+
"x11rb-protocol",
|
|
3046
|
+
]
|
|
3047
|
+
|
|
3048
|
+
[[package]]
|
|
3049
|
+
name = "x11rb-protocol"
|
|
3050
|
+
version = "0.13.2"
|
|
3051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3052
|
+
checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
|
|
3053
|
+
|
|
1674
3054
|
[[package]]
|
|
1675
3055
|
name = "xml-rs"
|
|
1676
3056
|
version = "0.8.28"
|
|
1677
3057
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
3058
|
checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
|
|
1679
3059
|
|
|
3060
|
+
[[package]]
|
|
3061
|
+
name = "yoke"
|
|
3062
|
+
version = "0.8.2"
|
|
3063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3064
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
3065
|
+
dependencies = [
|
|
3066
|
+
"stable_deref_trait",
|
|
3067
|
+
"yoke-derive",
|
|
3068
|
+
"zerofrom",
|
|
3069
|
+
]
|
|
3070
|
+
|
|
3071
|
+
[[package]]
|
|
3072
|
+
name = "yoke-derive"
|
|
3073
|
+
version = "0.8.2"
|
|
3074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3075
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
3076
|
+
dependencies = [
|
|
3077
|
+
"proc-macro2",
|
|
3078
|
+
"quote",
|
|
3079
|
+
"syn 2.0.117",
|
|
3080
|
+
"synstructure",
|
|
3081
|
+
]
|
|
3082
|
+
|
|
3083
|
+
[[package]]
|
|
3084
|
+
name = "zbus"
|
|
3085
|
+
version = "5.15.0"
|
|
3086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3087
|
+
checksum = "c3bcbf15c8708d7fc1be0c993622e0a5cbd5e8b52bfa40afa4c3e0cd8d724ac1"
|
|
3088
|
+
dependencies = [
|
|
3089
|
+
"async-broadcast",
|
|
3090
|
+
"async-executor",
|
|
3091
|
+
"async-io",
|
|
3092
|
+
"async-lock",
|
|
3093
|
+
"async-process",
|
|
3094
|
+
"async-recursion",
|
|
3095
|
+
"async-task",
|
|
3096
|
+
"async-trait",
|
|
3097
|
+
"blocking",
|
|
3098
|
+
"enumflags2",
|
|
3099
|
+
"event-listener",
|
|
3100
|
+
"futures-core",
|
|
3101
|
+
"futures-lite",
|
|
3102
|
+
"hex",
|
|
3103
|
+
"libc",
|
|
3104
|
+
"ordered-stream",
|
|
3105
|
+
"rustix",
|
|
3106
|
+
"serde",
|
|
3107
|
+
"serde_repr",
|
|
3108
|
+
"tracing",
|
|
3109
|
+
"uds_windows",
|
|
3110
|
+
"uuid",
|
|
3111
|
+
"windows-sys 0.61.2",
|
|
3112
|
+
"winnow",
|
|
3113
|
+
"zbus_macros",
|
|
3114
|
+
"zbus_names",
|
|
3115
|
+
"zvariant",
|
|
3116
|
+
]
|
|
3117
|
+
|
|
3118
|
+
[[package]]
|
|
3119
|
+
name = "zbus_macros"
|
|
3120
|
+
version = "5.15.0"
|
|
3121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3122
|
+
checksum = "51fa5406ad9175a8c825a931f8cf347116b531b3634fcb0b627c290f1f2516ff"
|
|
3123
|
+
dependencies = [
|
|
3124
|
+
"proc-macro-crate",
|
|
3125
|
+
"proc-macro2",
|
|
3126
|
+
"quote",
|
|
3127
|
+
"syn 2.0.117",
|
|
3128
|
+
"zbus_names",
|
|
3129
|
+
"zvariant",
|
|
3130
|
+
"zvariant_utils",
|
|
3131
|
+
]
|
|
3132
|
+
|
|
3133
|
+
[[package]]
|
|
3134
|
+
name = "zbus_names"
|
|
3135
|
+
version = "4.3.2"
|
|
3136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3137
|
+
checksum = "7074f3e50b894eac91750142016d30d0a89be8e67dbfd9704fb875825760e52d"
|
|
3138
|
+
dependencies = [
|
|
3139
|
+
"serde",
|
|
3140
|
+
"winnow",
|
|
3141
|
+
"zvariant",
|
|
3142
|
+
]
|
|
3143
|
+
|
|
1680
3144
|
[[package]]
|
|
1681
3145
|
name = "zerocopy"
|
|
1682
3146
|
version = "0.8.48"
|
|
@@ -1697,6 +3161,60 @@ dependencies = [
|
|
|
1697
3161
|
"syn 2.0.117",
|
|
1698
3162
|
]
|
|
1699
3163
|
|
|
3164
|
+
[[package]]
|
|
3165
|
+
name = "zerofrom"
|
|
3166
|
+
version = "0.1.7"
|
|
3167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3168
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
3169
|
+
dependencies = [
|
|
3170
|
+
"zerofrom-derive",
|
|
3171
|
+
]
|
|
3172
|
+
|
|
3173
|
+
[[package]]
|
|
3174
|
+
name = "zerofrom-derive"
|
|
3175
|
+
version = "0.1.7"
|
|
3176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3177
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3178
|
+
dependencies = [
|
|
3179
|
+
"proc-macro2",
|
|
3180
|
+
"quote",
|
|
3181
|
+
"syn 2.0.117",
|
|
3182
|
+
"synstructure",
|
|
3183
|
+
]
|
|
3184
|
+
|
|
3185
|
+
[[package]]
|
|
3186
|
+
name = "zerotrie"
|
|
3187
|
+
version = "0.2.4"
|
|
3188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3189
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
3190
|
+
dependencies = [
|
|
3191
|
+
"displaydoc",
|
|
3192
|
+
"yoke",
|
|
3193
|
+
"zerofrom",
|
|
3194
|
+
]
|
|
3195
|
+
|
|
3196
|
+
[[package]]
|
|
3197
|
+
name = "zerovec"
|
|
3198
|
+
version = "0.11.6"
|
|
3199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3200
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
3201
|
+
dependencies = [
|
|
3202
|
+
"yoke",
|
|
3203
|
+
"zerofrom",
|
|
3204
|
+
"zerovec-derive",
|
|
3205
|
+
]
|
|
3206
|
+
|
|
3207
|
+
[[package]]
|
|
3208
|
+
name = "zerovec-derive"
|
|
3209
|
+
version = "0.11.3"
|
|
3210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3211
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
3212
|
+
dependencies = [
|
|
3213
|
+
"proc-macro2",
|
|
3214
|
+
"quote",
|
|
3215
|
+
"syn 2.0.117",
|
|
3216
|
+
]
|
|
3217
|
+
|
|
1700
3218
|
[[package]]
|
|
1701
3219
|
name = "zmij"
|
|
1702
3220
|
version = "1.0.21"
|
|
@@ -1717,3 +3235,44 @@ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
|
|
|
1717
3235
|
dependencies = [
|
|
1718
3236
|
"zune-core",
|
|
1719
3237
|
]
|
|
3238
|
+
|
|
3239
|
+
[[package]]
|
|
3240
|
+
name = "zvariant"
|
|
3241
|
+
version = "5.11.0"
|
|
3242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
+
checksum = "1c1567a6ec68df868cbbfde844cfc6d81649fe5109a62b116b19fabd53e618ee"
|
|
3244
|
+
dependencies = [
|
|
3245
|
+
"endi",
|
|
3246
|
+
"enumflags2",
|
|
3247
|
+
"serde",
|
|
3248
|
+
"url",
|
|
3249
|
+
"winnow",
|
|
3250
|
+
"zvariant_derive",
|
|
3251
|
+
"zvariant_utils",
|
|
3252
|
+
]
|
|
3253
|
+
|
|
3254
|
+
[[package]]
|
|
3255
|
+
name = "zvariant_derive"
|
|
3256
|
+
version = "5.11.0"
|
|
3257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3258
|
+
checksum = "c7d5b780599bbde114e39d9a0799577fad1ced5105d38515745f7b3099d8ceda"
|
|
3259
|
+
dependencies = [
|
|
3260
|
+
"proc-macro-crate",
|
|
3261
|
+
"proc-macro2",
|
|
3262
|
+
"quote",
|
|
3263
|
+
"syn 2.0.117",
|
|
3264
|
+
"zvariant_utils",
|
|
3265
|
+
]
|
|
3266
|
+
|
|
3267
|
+
[[package]]
|
|
3268
|
+
name = "zvariant_utils"
|
|
3269
|
+
version = "3.3.1"
|
|
3270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3271
|
+
checksum = "6d464f5733ffa07a3164d656f18533caace9d0638596721355d73256a410d691"
|
|
3272
|
+
dependencies = [
|
|
3273
|
+
"proc-macro2",
|
|
3274
|
+
"quote",
|
|
3275
|
+
"serde",
|
|
3276
|
+
"syn 2.0.117",
|
|
3277
|
+
"winnow",
|
|
3278
|
+
]
|