typst-rb 0.15.0.0.3
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 +7 -0
- data/Cargo.lock +4136 -0
- data/Cargo.toml +3 -0
- data/LICENSE +176 -0
- data/README.md +200 -0
- data/README.typ +208 -0
- data/Rakefile +43 -0
- data/ext/typst/Cargo.toml +55 -0
- data/ext/typst/extconf.rb +4 -0
- data/ext/typst/src/compiler.rs +257 -0
- data/ext/typst/src/download.rs +7 -0
- data/ext/typst/src/lib.rs +296 -0
- data/ext/typst/src/package.rs +64 -0
- data/ext/typst/src/query.rs +138 -0
- data/ext/typst/src/world.rs +400 -0
- data/lib/base.rb +142 -0
- data/lib/document.rb +37 -0
- data/lib/formats/html_experimental.rb +13 -0
- data/lib/formats/pdf.rb +13 -0
- data/lib/formats/png.rb +13 -0
- data/lib/formats/svg.rb +13 -0
- data/lib/query.rb +22 -0
- data/lib/typst-rb.rb +6 -0
- data/lib/typst.rb +101 -0
- metadata +126 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,4136 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.3"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "android_system_properties"
|
|
22
|
+
version = "0.1.5"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"libc",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "approx"
|
|
31
|
+
version = "0.5.1"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"num-traits",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "arrayref"
|
|
40
|
+
version = "0.3.9"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "arrayvec"
|
|
46
|
+
version = "0.7.6"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "autocfg"
|
|
52
|
+
version = "1.5.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "az"
|
|
58
|
+
version = "1.2.1"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973"
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "base64"
|
|
64
|
+
version = "0.22.1"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "biblatex"
|
|
70
|
+
version = "0.12.0"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "591eba69b7c085632e22ca03606f0bbea68d53bbe26c8962e2d549af20c6a561"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"paste",
|
|
75
|
+
"roman-numerals-rs",
|
|
76
|
+
"strum",
|
|
77
|
+
"unic-langid",
|
|
78
|
+
"unicode-normalization",
|
|
79
|
+
"unscanny",
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "bincode"
|
|
84
|
+
version = "1.3.3"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
87
|
+
dependencies = [
|
|
88
|
+
"serde",
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "bindgen"
|
|
93
|
+
version = "0.72.1"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
96
|
+
dependencies = [
|
|
97
|
+
"bitflags 2.13.0",
|
|
98
|
+
"cexpr",
|
|
99
|
+
"clang-sys",
|
|
100
|
+
"itertools",
|
|
101
|
+
"proc-macro2",
|
|
102
|
+
"quote",
|
|
103
|
+
"regex",
|
|
104
|
+
"rustc-hash",
|
|
105
|
+
"shlex",
|
|
106
|
+
"syn",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "bit-set"
|
|
111
|
+
version = "0.8.0"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"bit-vec",
|
|
116
|
+
]
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "bit-vec"
|
|
120
|
+
version = "0.8.0"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "bitflags"
|
|
126
|
+
version = "1.3.2"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "bitflags"
|
|
132
|
+
version = "2.13.0"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
135
|
+
dependencies = [
|
|
136
|
+
"serde_core",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "bumpalo"
|
|
141
|
+
version = "3.19.0"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "by_address"
|
|
147
|
+
version = "1.2.1"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "bytemuck"
|
|
153
|
+
version = "1.25.0"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
156
|
+
dependencies = [
|
|
157
|
+
"bytemuck_derive",
|
|
158
|
+
]
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "bytemuck_derive"
|
|
162
|
+
version = "1.10.2"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
165
|
+
dependencies = [
|
|
166
|
+
"proc-macro2",
|
|
167
|
+
"quote",
|
|
168
|
+
"syn",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "byteorder"
|
|
173
|
+
version = "1.5.0"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "byteorder-lite"
|
|
179
|
+
version = "0.1.0"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "cc"
|
|
185
|
+
version = "1.2.27"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"shlex",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "cexpr"
|
|
194
|
+
version = "0.6.0"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"nom",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "cfg-if"
|
|
203
|
+
version = "1.0.1"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
|
206
|
+
|
|
207
|
+
[[package]]
|
|
208
|
+
name = "chinese-number"
|
|
209
|
+
version = "0.7.7"
|
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
+
checksum = "49fccaef6346f6d6a741908d3b79fe97c2debe2fbb5eb3a7d00ff5981b52bb6c"
|
|
212
|
+
dependencies = [
|
|
213
|
+
"chinese-variant",
|
|
214
|
+
"enum-ordinalize",
|
|
215
|
+
"num-bigint",
|
|
216
|
+
"num-traits",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "chinese-variant"
|
|
221
|
+
version = "1.1.3"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "7588475145507237ded760e52bf2f1085495245502033756d28ea72ade0e498b"
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "chrono"
|
|
227
|
+
version = "0.4.42"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
230
|
+
dependencies = [
|
|
231
|
+
"iana-time-zone",
|
|
232
|
+
"num-traits",
|
|
233
|
+
"windows-link 0.2.1",
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "ciborium"
|
|
238
|
+
version = "0.2.2"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
241
|
+
dependencies = [
|
|
242
|
+
"ciborium-io",
|
|
243
|
+
"ciborium-ll",
|
|
244
|
+
"serde",
|
|
245
|
+
]
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "ciborium-io"
|
|
249
|
+
version = "0.2.2"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "ciborium-ll"
|
|
255
|
+
version = "0.2.2"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
258
|
+
dependencies = [
|
|
259
|
+
"ciborium-io",
|
|
260
|
+
"half",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "citationberg"
|
|
265
|
+
version = "0.7.0"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "756ff1e3d43a9ecc8183932fb4d9fd3971236f3ce4acb62fe51d1cd43297547d"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"quick-xml 0.38.4",
|
|
270
|
+
"serde",
|
|
271
|
+
"serde_path_to_error",
|
|
272
|
+
]
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "clang-sys"
|
|
276
|
+
version = "1.8.1"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
279
|
+
dependencies = [
|
|
280
|
+
"glob",
|
|
281
|
+
"libc",
|
|
282
|
+
"libloading",
|
|
283
|
+
]
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "cobs"
|
|
287
|
+
version = "0.3.0"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
290
|
+
dependencies = [
|
|
291
|
+
"thiserror 2.0.18",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "codespan-reporting"
|
|
296
|
+
version = "0.13.1"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"serde",
|
|
301
|
+
"termcolor",
|
|
302
|
+
"unicode-width",
|
|
303
|
+
]
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "codex"
|
|
307
|
+
version = "0.3.0"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "0732ab1a27b4ea05e6f9f60a5122c9924dd5123defde0d8e907f58cf643d40e6"
|
|
310
|
+
dependencies = [
|
|
311
|
+
"chinese-number",
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "color"
|
|
316
|
+
version = "0.3.3"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "2ec7c5eb7a16992b1904d76c517d170ab353b0e0b3d5a0c81a8a0cd1037893cf"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"bytemuck",
|
|
321
|
+
]
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "color_quant"
|
|
325
|
+
version = "1.1.0"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "comemo"
|
|
331
|
+
version = "0.5.1"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "3c963350b2b08aa4b725d7802593245380ab53dacfedcaa971385fc33306c0d4"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"comemo-macros",
|
|
336
|
+
"parking_lot",
|
|
337
|
+
"rustc-hash",
|
|
338
|
+
"siphasher",
|
|
339
|
+
"slab",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "comemo-macros"
|
|
344
|
+
version = "0.5.1"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "a3c400139ba1389ef9e20ad2d87cda68b437a66483aa0da616bdf2cea7413853"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"proc-macro2",
|
|
349
|
+
"quote",
|
|
350
|
+
"syn",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "core-foundation"
|
|
355
|
+
version = "0.9.4"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"core-foundation-sys",
|
|
360
|
+
"libc",
|
|
361
|
+
]
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "core-foundation-sys"
|
|
365
|
+
version = "0.8.7"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
368
|
+
|
|
369
|
+
[[package]]
|
|
370
|
+
name = "core_maths"
|
|
371
|
+
version = "0.1.1"
|
|
372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
+
checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30"
|
|
374
|
+
dependencies = [
|
|
375
|
+
"libm",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "crc32fast"
|
|
380
|
+
version = "1.4.2"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
|
383
|
+
dependencies = [
|
|
384
|
+
"cfg-if",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "crossbeam-deque"
|
|
389
|
+
version = "0.8.6"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"crossbeam-epoch",
|
|
394
|
+
"crossbeam-utils",
|
|
395
|
+
]
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "crossbeam-epoch"
|
|
399
|
+
version = "0.9.18"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"crossbeam-utils",
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "crossbeam-utils"
|
|
408
|
+
version = "0.8.21"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "crunchy"
|
|
414
|
+
version = "0.2.4"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "csv"
|
|
420
|
+
version = "1.3.1"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf"
|
|
423
|
+
dependencies = [
|
|
424
|
+
"csv-core",
|
|
425
|
+
"itoa",
|
|
426
|
+
"ryu",
|
|
427
|
+
"serde",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "csv-core"
|
|
432
|
+
version = "0.1.12"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"memchr",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "data-url"
|
|
441
|
+
version = "0.3.1"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a"
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "deranged"
|
|
447
|
+
version = "0.4.0"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"powerfmt",
|
|
452
|
+
]
|
|
453
|
+
|
|
454
|
+
[[package]]
|
|
455
|
+
name = "dirs"
|
|
456
|
+
version = "5.0.1"
|
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
458
|
+
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
|
459
|
+
dependencies = [
|
|
460
|
+
"dirs-sys 0.4.1",
|
|
461
|
+
]
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "dirs"
|
|
465
|
+
version = "6.0.0"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
468
|
+
dependencies = [
|
|
469
|
+
"dirs-sys 0.5.0",
|
|
470
|
+
]
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "dirs-sys"
|
|
474
|
+
version = "0.4.1"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"libc",
|
|
479
|
+
"option-ext",
|
|
480
|
+
"redox_users 0.4.6",
|
|
481
|
+
"windows-sys 0.48.0",
|
|
482
|
+
]
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "dirs-sys"
|
|
486
|
+
version = "0.5.0"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"libc",
|
|
491
|
+
"option-ext",
|
|
492
|
+
"redox_users 0.5.0",
|
|
493
|
+
"windows-sys 0.60.2",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "displaydoc"
|
|
498
|
+
version = "0.2.5"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"proc-macro2",
|
|
503
|
+
"quote",
|
|
504
|
+
"syn",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "ecow"
|
|
509
|
+
version = "0.2.6"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "78e4f79b296fbaab6ce2e22d52cb4c7f010fe0ebe7a32e34fa25885fd797bd02"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"serde",
|
|
514
|
+
]
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "either"
|
|
518
|
+
version = "1.15.0"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "enum-ordinalize"
|
|
524
|
+
version = "4.3.0"
|
|
525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
+
checksum = "fea0dcfa4e54eeb516fe454635a95753ddd39acda650ce703031c6973e315dd5"
|
|
527
|
+
dependencies = [
|
|
528
|
+
"enum-ordinalize-derive",
|
|
529
|
+
]
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "enum-ordinalize-derive"
|
|
533
|
+
version = "4.3.1"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff"
|
|
536
|
+
dependencies = [
|
|
537
|
+
"proc-macro2",
|
|
538
|
+
"quote",
|
|
539
|
+
"syn",
|
|
540
|
+
]
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "env_logger"
|
|
544
|
+
version = "0.10.2"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"humantime",
|
|
549
|
+
"is-terminal",
|
|
550
|
+
"log",
|
|
551
|
+
"regex",
|
|
552
|
+
"termcolor",
|
|
553
|
+
]
|
|
554
|
+
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "env_proxy"
|
|
557
|
+
version = "0.4.1"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "3a5019be18538406a43b5419a5501461f0c8b49ea7dfda0cfc32f4e51fc44be1"
|
|
560
|
+
dependencies = [
|
|
561
|
+
"log",
|
|
562
|
+
"url",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "equivalent"
|
|
567
|
+
version = "1.0.2"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
570
|
+
|
|
571
|
+
[[package]]
|
|
572
|
+
name = "errno"
|
|
573
|
+
version = "0.3.13"
|
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
575
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
|
576
|
+
dependencies = [
|
|
577
|
+
"libc",
|
|
578
|
+
"windows-sys 0.60.2",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "euclid"
|
|
583
|
+
version = "0.22.14"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "f1a05365e3b1c6d1650318537c7460c6923f1abdd272ad6842baa2b509957a06"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"num-traits",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "fancy-regex"
|
|
592
|
+
version = "0.16.2"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"bit-set",
|
|
597
|
+
"regex-automata",
|
|
598
|
+
"regex-syntax",
|
|
599
|
+
]
|
|
600
|
+
|
|
601
|
+
[[package]]
|
|
602
|
+
name = "fast-srgb8"
|
|
603
|
+
version = "1.0.0"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1"
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "fastrand"
|
|
609
|
+
version = "2.3.0"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "fdeflate"
|
|
615
|
+
version = "0.3.7"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"simd-adler32",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "fearless_simd"
|
|
624
|
+
version = "0.4.1"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "b97b65636e5b9ef369943878ac74335ba1c55c1cb6adbf1e2c293c624248d693"
|
|
627
|
+
|
|
628
|
+
[[package]]
|
|
629
|
+
name = "filetime"
|
|
630
|
+
version = "0.2.25"
|
|
631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
+
checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
|
|
633
|
+
dependencies = [
|
|
634
|
+
"cfg-if",
|
|
635
|
+
"libc",
|
|
636
|
+
"libredox",
|
|
637
|
+
"windows-sys 0.59.0",
|
|
638
|
+
]
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "flate2"
|
|
642
|
+
version = "1.1.2"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"crc32fast",
|
|
647
|
+
"libz-rs-sys",
|
|
648
|
+
"miniz_oxide",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "float-cmp"
|
|
653
|
+
version = "0.9.0"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"num-traits",
|
|
658
|
+
]
|
|
659
|
+
|
|
660
|
+
[[package]]
|
|
661
|
+
name = "fnv"
|
|
662
|
+
version = "1.0.7"
|
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "foldhash"
|
|
668
|
+
version = "0.2.0"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "font-types"
|
|
674
|
+
version = "0.11.3"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "5b38ad915f6dadd993ced50848a8291a543bd41ca62bc10740d5e64e2ab4cfd7"
|
|
677
|
+
dependencies = [
|
|
678
|
+
"bytemuck",
|
|
679
|
+
]
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "fontconfig-parser"
|
|
683
|
+
version = "0.5.8"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"roxmltree 0.20.0",
|
|
688
|
+
]
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "fontdb"
|
|
692
|
+
version = "0.15.0"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "020e203f177c0fb250fb19455a252e838d2bbbce1f80f25ecc42402aafa8cd38"
|
|
695
|
+
dependencies = [
|
|
696
|
+
"fontconfig-parser",
|
|
697
|
+
"log",
|
|
698
|
+
"memmap2 0.8.0",
|
|
699
|
+
"slotmap",
|
|
700
|
+
"tinyvec",
|
|
701
|
+
"ttf-parser 0.19.2",
|
|
702
|
+
]
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "fontdb"
|
|
706
|
+
version = "0.23.0"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "457e789b3d1202543297a350643cf459f836cade38934e7a4cf6a39e7cde2905"
|
|
709
|
+
dependencies = [
|
|
710
|
+
"fontconfig-parser",
|
|
711
|
+
"log",
|
|
712
|
+
"memmap2 0.9.5",
|
|
713
|
+
"slotmap",
|
|
714
|
+
"tinyvec",
|
|
715
|
+
"ttf-parser 0.25.1",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "foreign-types"
|
|
720
|
+
version = "0.3.2"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
723
|
+
dependencies = [
|
|
724
|
+
"foreign-types-shared",
|
|
725
|
+
]
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "foreign-types-shared"
|
|
729
|
+
version = "0.1.1"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
732
|
+
|
|
733
|
+
[[package]]
|
|
734
|
+
name = "form_urlencoded"
|
|
735
|
+
version = "1.2.1"
|
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
|
738
|
+
dependencies = [
|
|
739
|
+
"percent-encoding",
|
|
740
|
+
]
|
|
741
|
+
|
|
742
|
+
[[package]]
|
|
743
|
+
name = "getrandom"
|
|
744
|
+
version = "0.2.16"
|
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
746
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
747
|
+
dependencies = [
|
|
748
|
+
"cfg-if",
|
|
749
|
+
"libc",
|
|
750
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "getrandom"
|
|
755
|
+
version = "0.3.3"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"cfg-if",
|
|
760
|
+
"libc",
|
|
761
|
+
"r-efi",
|
|
762
|
+
"wasi 0.14.2+wasi-0.2.4",
|
|
763
|
+
]
|
|
764
|
+
|
|
765
|
+
[[package]]
|
|
766
|
+
name = "gif"
|
|
767
|
+
version = "0.13.3"
|
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
+
checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
|
|
770
|
+
dependencies = [
|
|
771
|
+
"color_quant",
|
|
772
|
+
"weezl",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "gif"
|
|
777
|
+
version = "0.14.2"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
|
|
780
|
+
dependencies = [
|
|
781
|
+
"color_quant",
|
|
782
|
+
"weezl",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "glidesort"
|
|
787
|
+
version = "0.1.2"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "f2e102e6eb644d3e0b186fc161e4460417880a0a0b87d235f2e5b8fb30f2e9e0"
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "glifo"
|
|
793
|
+
version = "0.1.1"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "d99fc21d493812643aae86d53b7bbd02f376434a90317e8a790bc209fdd6605e"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"bytemuck",
|
|
798
|
+
"foldhash",
|
|
799
|
+
"hashbrown 0.17.1",
|
|
800
|
+
"log",
|
|
801
|
+
"peniko",
|
|
802
|
+
"png 0.18.1",
|
|
803
|
+
"skrifa",
|
|
804
|
+
"smallvec",
|
|
805
|
+
"vello_common 0.0.9",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "glob"
|
|
810
|
+
version = "0.3.2"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
813
|
+
|
|
814
|
+
[[package]]
|
|
815
|
+
name = "guillotiere"
|
|
816
|
+
version = "0.7.0"
|
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
+
checksum = "6b17e70c989c36bad147b27a58d148c0741c51448aa5653436547323e524d0ab"
|
|
819
|
+
dependencies = [
|
|
820
|
+
"euclid",
|
|
821
|
+
]
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "half"
|
|
825
|
+
version = "2.6.0"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
|
828
|
+
dependencies = [
|
|
829
|
+
"cfg-if",
|
|
830
|
+
"crunchy",
|
|
831
|
+
]
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "hashbrown"
|
|
835
|
+
version = "0.15.4"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "hashbrown"
|
|
841
|
+
version = "0.17.1"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
844
|
+
dependencies = [
|
|
845
|
+
"foldhash",
|
|
846
|
+
]
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "hayagriva"
|
|
850
|
+
version = "0.10.1"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "7b6c185c5c72546d50b25b70187f01ab9a1a2fa21c4db8691e2426fa5fce805c"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"biblatex",
|
|
855
|
+
"ciborium",
|
|
856
|
+
"citationberg",
|
|
857
|
+
"icu_collator",
|
|
858
|
+
"icu_locale",
|
|
859
|
+
"indexmap",
|
|
860
|
+
"paste",
|
|
861
|
+
"roman-numerals-rs",
|
|
862
|
+
"serde",
|
|
863
|
+
"serde_yaml",
|
|
864
|
+
"thiserror 2.0.18",
|
|
865
|
+
"unic-langid",
|
|
866
|
+
"unicode-segmentation",
|
|
867
|
+
"unscanny",
|
|
868
|
+
"url",
|
|
869
|
+
]
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "hayro"
|
|
873
|
+
version = "0.7.1"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "c4caa128ab87fd48ffb7490617cf93f77f606820dffbc9fd9ef6ab0ed077f56d"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"bytemuck",
|
|
878
|
+
"hayro-interpret",
|
|
879
|
+
"image",
|
|
880
|
+
"kurbo",
|
|
881
|
+
"pic-scale",
|
|
882
|
+
"vello_cpu",
|
|
883
|
+
]
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "hayro-ccitt"
|
|
887
|
+
version = "0.3.0"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "9f4d0e94ddd48749f06bbe4e5389fb9799a0c45bcaf00495042076ef05e3241a"
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "hayro-cmap"
|
|
893
|
+
version = "0.1.0"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "24d285dc30731c8485de5fa732fbdf2b3affdf01e4da7c2135022ca6fa664bf6"
|
|
896
|
+
dependencies = [
|
|
897
|
+
"hayro-postscript",
|
|
898
|
+
]
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "hayro-interpret"
|
|
902
|
+
version = "0.7.0"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "f2613d0406898995042d0794c4245b2f2fba1246490c8ac593769bba6551129d"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"bitflags 2.13.0",
|
|
907
|
+
"hayro-cmap",
|
|
908
|
+
"hayro-syntax",
|
|
909
|
+
"kurbo",
|
|
910
|
+
"moxcms",
|
|
911
|
+
"phf",
|
|
912
|
+
"rustc-hash",
|
|
913
|
+
"siphasher",
|
|
914
|
+
"skrifa",
|
|
915
|
+
"smallvec",
|
|
916
|
+
"yoke",
|
|
917
|
+
]
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "hayro-jbig2"
|
|
921
|
+
version = "0.3.0"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "69374b3668dd45aeb3d3145cda68f2c7b4f223aaa2511e67d076f1c7d741388d"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"fearless_simd",
|
|
926
|
+
"hayro-ccitt",
|
|
927
|
+
]
|
|
928
|
+
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "hayro-jpeg2000"
|
|
931
|
+
version = "0.3.5"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "c75ab947623ef4ccaa7acf0579edf7cbb5a73838e3839a7be73335e522f433a1"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"fearless_simd",
|
|
936
|
+
]
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "hayro-postscript"
|
|
940
|
+
version = "0.1.0"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "885c5ef0654933139a9b9546fc2c69e18d37f38aa2520f079092b1be18f1fcaa"
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "hayro-svg"
|
|
946
|
+
version = "0.7.0"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "7434c89e920d84e077214a29e69b462a6518754610f732f1124af3948410cb8c"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"base64",
|
|
951
|
+
"hayro-interpret",
|
|
952
|
+
"image",
|
|
953
|
+
"kurbo",
|
|
954
|
+
"siphasher",
|
|
955
|
+
"xmlwriter",
|
|
956
|
+
]
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "hayro-syntax"
|
|
960
|
+
version = "0.7.2"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "0edeafd70aa2db743de8ede8637d07ec87db05efe69cde371d03f1b185fcef27"
|
|
963
|
+
dependencies = [
|
|
964
|
+
"flate2",
|
|
965
|
+
"hayro-ccitt",
|
|
966
|
+
"hayro-jbig2",
|
|
967
|
+
"hayro-jpeg2000",
|
|
968
|
+
"memchr",
|
|
969
|
+
"rustc-hash",
|
|
970
|
+
"smallvec",
|
|
971
|
+
"zune-jpeg 0.5.15",
|
|
972
|
+
]
|
|
973
|
+
|
|
974
|
+
[[package]]
|
|
975
|
+
name = "hayro-write"
|
|
976
|
+
version = "0.7.0"
|
|
977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
978
|
+
checksum = "a0b3db92c4917aad24ff30d61413a9a7509ae88b27aee1ae34eff881e1d2723a"
|
|
979
|
+
dependencies = [
|
|
980
|
+
"flate2",
|
|
981
|
+
"hayro-syntax",
|
|
982
|
+
"pdf-writer",
|
|
983
|
+
]
|
|
984
|
+
|
|
985
|
+
[[package]]
|
|
986
|
+
name = "heck"
|
|
987
|
+
version = "0.5.0"
|
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
990
|
+
|
|
991
|
+
[[package]]
|
|
992
|
+
name = "hermit-abi"
|
|
993
|
+
version = "0.5.2"
|
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
995
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "humantime"
|
|
999
|
+
version = "2.2.0"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "hypher"
|
|
1005
|
+
version = "0.1.5"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "3b24ad5637230df201ab1034d593f1d09bf7f2a9274f2e8897638078579f4265"
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "iana-time-zone"
|
|
1011
|
+
version = "0.1.63"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"android_system_properties",
|
|
1016
|
+
"core-foundation-sys",
|
|
1017
|
+
"iana-time-zone-haiku",
|
|
1018
|
+
"js-sys",
|
|
1019
|
+
"log",
|
|
1020
|
+
"wasm-bindgen",
|
|
1021
|
+
"windows-core",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "iana-time-zone-haiku"
|
|
1026
|
+
version = "0.1.2"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"cc",
|
|
1031
|
+
]
|
|
1032
|
+
|
|
1033
|
+
[[package]]
|
|
1034
|
+
name = "icu_collator"
|
|
1035
|
+
version = "2.2.1"
|
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1037
|
+
checksum = "8bbdf98e5e0aa827770acee171ebb568aaab975a36b56afdb5fd0e2f525750bb"
|
|
1038
|
+
dependencies = [
|
|
1039
|
+
"icu_collator_data",
|
|
1040
|
+
"icu_collections",
|
|
1041
|
+
"icu_locale",
|
|
1042
|
+
"icu_locale_core",
|
|
1043
|
+
"icu_normalizer",
|
|
1044
|
+
"icu_properties",
|
|
1045
|
+
"icu_provider",
|
|
1046
|
+
"smallvec",
|
|
1047
|
+
"utf16_iter",
|
|
1048
|
+
"utf8_iter",
|
|
1049
|
+
"zerovec",
|
|
1050
|
+
]
|
|
1051
|
+
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "icu_collator_data"
|
|
1054
|
+
version = "2.2.0"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "038ed8e5817f2059c2f3efb0945ba78d060d3d25e8f1a1bea5139f821a21a2f0"
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "icu_collections"
|
|
1060
|
+
version = "2.2.0"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
1063
|
+
dependencies = [
|
|
1064
|
+
"displaydoc",
|
|
1065
|
+
"potential_utf",
|
|
1066
|
+
"serde",
|
|
1067
|
+
"utf8_iter",
|
|
1068
|
+
"yoke",
|
|
1069
|
+
"zerofrom",
|
|
1070
|
+
"zerovec",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "icu_locale"
|
|
1075
|
+
version = "2.2.0"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "d5a396343c7208121dc86e35623d3dfe19814a7613cfd14964994cdc9c9a2e26"
|
|
1078
|
+
dependencies = [
|
|
1079
|
+
"icu_collections",
|
|
1080
|
+
"icu_locale_core",
|
|
1081
|
+
"icu_locale_data",
|
|
1082
|
+
"icu_provider",
|
|
1083
|
+
"potential_utf",
|
|
1084
|
+
"tinystr",
|
|
1085
|
+
"zerovec",
|
|
1086
|
+
]
|
|
1087
|
+
|
|
1088
|
+
[[package]]
|
|
1089
|
+
name = "icu_locale_core"
|
|
1090
|
+
version = "2.2.0"
|
|
1091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1092
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
1093
|
+
dependencies = [
|
|
1094
|
+
"displaydoc",
|
|
1095
|
+
"litemap",
|
|
1096
|
+
"serde",
|
|
1097
|
+
"tinystr",
|
|
1098
|
+
"writeable",
|
|
1099
|
+
"zerovec",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "icu_locale_data"
|
|
1104
|
+
version = "2.2.0"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "d5fdcc9ac77c6d74ff5cf6e65ef3181d6af32003b16fce3a77fb451d2f695993"
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "icu_normalizer"
|
|
1110
|
+
version = "2.2.0"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1113
|
+
dependencies = [
|
|
1114
|
+
"icu_collections",
|
|
1115
|
+
"icu_normalizer_data",
|
|
1116
|
+
"icu_properties",
|
|
1117
|
+
"icu_provider",
|
|
1118
|
+
"smallvec",
|
|
1119
|
+
"utf16_iter",
|
|
1120
|
+
"utf8_iter",
|
|
1121
|
+
"write16",
|
|
1122
|
+
"zerovec",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "icu_normalizer_data"
|
|
1127
|
+
version = "2.2.0"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1130
|
+
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "icu_properties"
|
|
1133
|
+
version = "2.2.0"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1136
|
+
dependencies = [
|
|
1137
|
+
"icu_collections",
|
|
1138
|
+
"icu_locale_core",
|
|
1139
|
+
"icu_properties_data",
|
|
1140
|
+
"icu_provider",
|
|
1141
|
+
"serde",
|
|
1142
|
+
"zerotrie",
|
|
1143
|
+
"zerovec",
|
|
1144
|
+
]
|
|
1145
|
+
|
|
1146
|
+
[[package]]
|
|
1147
|
+
name = "icu_properties_data"
|
|
1148
|
+
version = "2.2.0"
|
|
1149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1150
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "icu_provider"
|
|
1154
|
+
version = "2.2.0"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"displaydoc",
|
|
1159
|
+
"icu_locale_core",
|
|
1160
|
+
"postcard",
|
|
1161
|
+
"serde",
|
|
1162
|
+
"stable_deref_trait",
|
|
1163
|
+
"writeable",
|
|
1164
|
+
"yoke",
|
|
1165
|
+
"zerofrom",
|
|
1166
|
+
"zerotrie",
|
|
1167
|
+
"zerovec",
|
|
1168
|
+
]
|
|
1169
|
+
|
|
1170
|
+
[[package]]
|
|
1171
|
+
name = "icu_provider_blob"
|
|
1172
|
+
version = "2.2.0"
|
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
+
checksum = "af99a43c4436b6c9a37c27a822ff05238bbad134bcdf6176732208acfae46a3f"
|
|
1175
|
+
dependencies = [
|
|
1176
|
+
"icu_provider",
|
|
1177
|
+
"postcard",
|
|
1178
|
+
"serde",
|
|
1179
|
+
"writeable",
|
|
1180
|
+
"zerotrie",
|
|
1181
|
+
"zerovec",
|
|
1182
|
+
]
|
|
1183
|
+
|
|
1184
|
+
[[package]]
|
|
1185
|
+
name = "icu_segmenter"
|
|
1186
|
+
version = "2.2.0"
|
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1188
|
+
checksum = "5c0794db0b1a86193ac9c48768d0e6c52c54448e0870ad87907d456ee0dac964"
|
|
1189
|
+
dependencies = [
|
|
1190
|
+
"core_maths",
|
|
1191
|
+
"icu_collections",
|
|
1192
|
+
"icu_locale",
|
|
1193
|
+
"icu_provider",
|
|
1194
|
+
"icu_segmenter_data",
|
|
1195
|
+
"potential_utf",
|
|
1196
|
+
"serde",
|
|
1197
|
+
"utf8_iter",
|
|
1198
|
+
"zerovec",
|
|
1199
|
+
]
|
|
1200
|
+
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "icu_segmenter_data"
|
|
1203
|
+
version = "2.2.0"
|
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
+
checksum = "e4a2c462a4d927d512f5f882a033ddd62f33a05bb9f230d98f736ac3dc85938f"
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "idna"
|
|
1209
|
+
version = "1.0.3"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
|
1212
|
+
dependencies = [
|
|
1213
|
+
"idna_adapter",
|
|
1214
|
+
"smallvec",
|
|
1215
|
+
"utf8_iter",
|
|
1216
|
+
]
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "idna_adapter"
|
|
1220
|
+
version = "1.2.1"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1223
|
+
dependencies = [
|
|
1224
|
+
"icu_normalizer",
|
|
1225
|
+
"icu_properties",
|
|
1226
|
+
]
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "image"
|
|
1230
|
+
version = "0.25.6"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a"
|
|
1233
|
+
dependencies = [
|
|
1234
|
+
"bytemuck",
|
|
1235
|
+
"byteorder-lite",
|
|
1236
|
+
"color_quant",
|
|
1237
|
+
"gif 0.13.3",
|
|
1238
|
+
"image-webp",
|
|
1239
|
+
"num-traits",
|
|
1240
|
+
"png 0.17.16",
|
|
1241
|
+
"zune-core 0.4.12",
|
|
1242
|
+
"zune-jpeg 0.4.18",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "image-webp"
|
|
1247
|
+
version = "0.2.4"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
|
|
1250
|
+
dependencies = [
|
|
1251
|
+
"byteorder-lite",
|
|
1252
|
+
"quick-error",
|
|
1253
|
+
]
|
|
1254
|
+
|
|
1255
|
+
[[package]]
|
|
1256
|
+
name = "imagesize"
|
|
1257
|
+
version = "0.14.0"
|
|
1258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1259
|
+
checksum = "09e54e57b4c48b40f7aec75635392b12b3421fa26fe8b4332e63138ed278459c"
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "indexmap"
|
|
1263
|
+
version = "2.10.0"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
|
1266
|
+
dependencies = [
|
|
1267
|
+
"equivalent",
|
|
1268
|
+
"hashbrown 0.15.4",
|
|
1269
|
+
"rayon",
|
|
1270
|
+
"serde",
|
|
1271
|
+
]
|
|
1272
|
+
|
|
1273
|
+
[[package]]
|
|
1274
|
+
name = "infer"
|
|
1275
|
+
version = "0.19.0"
|
|
1276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
|
+
checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7"
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "is-terminal"
|
|
1281
|
+
version = "0.4.16"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
|
|
1284
|
+
dependencies = [
|
|
1285
|
+
"hermit-abi",
|
|
1286
|
+
"libc",
|
|
1287
|
+
"windows-sys 0.59.0",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "itertools"
|
|
1292
|
+
version = "0.12.1"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"either",
|
|
1297
|
+
]
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "itoa"
|
|
1301
|
+
version = "1.0.15"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "js-sys"
|
|
1307
|
+
version = "0.3.77"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
|
1310
|
+
dependencies = [
|
|
1311
|
+
"once_cell",
|
|
1312
|
+
"wasm-bindgen",
|
|
1313
|
+
]
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "kamadak-exif"
|
|
1317
|
+
version = "0.6.1"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "1130d80c7374efad55a117d715a3af9368f0fa7a2c54573afc15a188cd984837"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"mutate_once",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "krilla"
|
|
1326
|
+
version = "0.8.2"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "27da593198b20eeba65caeb73c2bbeec3e53ab08fa549898312ce81c4fce5e33"
|
|
1329
|
+
dependencies = [
|
|
1330
|
+
"base64",
|
|
1331
|
+
"bumpalo",
|
|
1332
|
+
"comemo",
|
|
1333
|
+
"flate2",
|
|
1334
|
+
"float-cmp",
|
|
1335
|
+
"gif 0.14.2",
|
|
1336
|
+
"hayro-write",
|
|
1337
|
+
"image-webp",
|
|
1338
|
+
"imagesize",
|
|
1339
|
+
"indexmap",
|
|
1340
|
+
"pdf-writer",
|
|
1341
|
+
"png 0.18.1",
|
|
1342
|
+
"rayon",
|
|
1343
|
+
"rustc-hash",
|
|
1344
|
+
"rustybuzz",
|
|
1345
|
+
"siphasher",
|
|
1346
|
+
"skrifa",
|
|
1347
|
+
"smallvec",
|
|
1348
|
+
"subsetter",
|
|
1349
|
+
"tiny-skia-path",
|
|
1350
|
+
"xmp-writer",
|
|
1351
|
+
"yoke",
|
|
1352
|
+
"zune-jpeg 0.5.15",
|
|
1353
|
+
]
|
|
1354
|
+
|
|
1355
|
+
[[package]]
|
|
1356
|
+
name = "krilla-svg"
|
|
1357
|
+
version = "0.8.1"
|
|
1358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
+
checksum = "1237d7c37b16ca9fbc2e72dde13a10d321f9a44aceee35c062bc0a43bfc7ce16"
|
|
1360
|
+
dependencies = [
|
|
1361
|
+
"flate2",
|
|
1362
|
+
"fontdb 0.23.0",
|
|
1363
|
+
"krilla",
|
|
1364
|
+
"resvg",
|
|
1365
|
+
"skrifa",
|
|
1366
|
+
"smallvec",
|
|
1367
|
+
"tiny-skia",
|
|
1368
|
+
"usvg",
|
|
1369
|
+
]
|
|
1370
|
+
|
|
1371
|
+
[[package]]
|
|
1372
|
+
name = "kurbo"
|
|
1373
|
+
version = "0.13.1"
|
|
1374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
+
checksum = "4b60dfc32f652b926df6192e55525b16d186c69d47876c3ead4da5cc9f8450e2"
|
|
1376
|
+
dependencies = [
|
|
1377
|
+
"arrayvec",
|
|
1378
|
+
"euclid",
|
|
1379
|
+
"polycool",
|
|
1380
|
+
"smallvec",
|
|
1381
|
+
]
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "lazy_static"
|
|
1385
|
+
version = "1.5.0"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "libc"
|
|
1391
|
+
version = "0.2.174"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
|
1394
|
+
|
|
1395
|
+
[[package]]
|
|
1396
|
+
name = "libloading"
|
|
1397
|
+
version = "0.8.8"
|
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
1400
|
+
dependencies = [
|
|
1401
|
+
"cfg-if",
|
|
1402
|
+
"windows-targets 0.53.2",
|
|
1403
|
+
]
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "libm"
|
|
1407
|
+
version = "0.2.15"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "libredox"
|
|
1413
|
+
version = "0.1.4"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "1580801010e535496706ba011c15f8532df6b42297d2e471fec38ceadd8c0638"
|
|
1416
|
+
dependencies = [
|
|
1417
|
+
"bitflags 2.13.0",
|
|
1418
|
+
"libc",
|
|
1419
|
+
"redox_syscall",
|
|
1420
|
+
]
|
|
1421
|
+
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "libz-rs-sys"
|
|
1424
|
+
version = "0.5.2"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
|
|
1427
|
+
dependencies = [
|
|
1428
|
+
"zlib-rs",
|
|
1429
|
+
]
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "linebender_resource_handle"
|
|
1433
|
+
version = "0.1.1"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "d4a5ff6bcca6c4867b1c4fd4ef63e4db7436ef363e0ad7531d1558856bae64f4"
|
|
1436
|
+
|
|
1437
|
+
[[package]]
|
|
1438
|
+
name = "linked-hash-map"
|
|
1439
|
+
version = "0.5.6"
|
|
1440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "linux-raw-sys"
|
|
1445
|
+
version = "0.9.4"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "lipsum"
|
|
1451
|
+
version = "0.9.1"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "636860251af8963cc40f6b4baadee105f02e21b28131d76eba8e40ce84ab8064"
|
|
1454
|
+
dependencies = [
|
|
1455
|
+
"rand",
|
|
1456
|
+
"rand_chacha",
|
|
1457
|
+
]
|
|
1458
|
+
|
|
1459
|
+
[[package]]
|
|
1460
|
+
name = "litemap"
|
|
1461
|
+
version = "0.8.0"
|
|
1462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
1464
|
+
dependencies = [
|
|
1465
|
+
"serde",
|
|
1466
|
+
]
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "lock_api"
|
|
1470
|
+
version = "0.4.13"
|
|
1471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
|
1473
|
+
dependencies = [
|
|
1474
|
+
"autocfg",
|
|
1475
|
+
"scopeguard",
|
|
1476
|
+
]
|
|
1477
|
+
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "log"
|
|
1480
|
+
version = "0.4.33"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "magnus"
|
|
1486
|
+
version = "0.8.2"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
1489
|
+
dependencies = [
|
|
1490
|
+
"magnus-macros",
|
|
1491
|
+
"rb-sys",
|
|
1492
|
+
"rb-sys-env",
|
|
1493
|
+
"seq-macro",
|
|
1494
|
+
]
|
|
1495
|
+
|
|
1496
|
+
[[package]]
|
|
1497
|
+
name = "magnus-macros"
|
|
1498
|
+
version = "0.8.0"
|
|
1499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1500
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
1501
|
+
dependencies = [
|
|
1502
|
+
"proc-macro2",
|
|
1503
|
+
"quote",
|
|
1504
|
+
"syn",
|
|
1505
|
+
]
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "memchr"
|
|
1509
|
+
version = "2.8.2"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
1512
|
+
|
|
1513
|
+
[[package]]
|
|
1514
|
+
name = "memmap2"
|
|
1515
|
+
version = "0.8.0"
|
|
1516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
+
checksum = "43a5a03cefb0d953ec0be133036f14e109412fa594edc2f77227249db66cc3ed"
|
|
1518
|
+
dependencies = [
|
|
1519
|
+
"libc",
|
|
1520
|
+
]
|
|
1521
|
+
|
|
1522
|
+
[[package]]
|
|
1523
|
+
name = "memmap2"
|
|
1524
|
+
version = "0.9.5"
|
|
1525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1526
|
+
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
|
|
1527
|
+
dependencies = [
|
|
1528
|
+
"libc",
|
|
1529
|
+
]
|
|
1530
|
+
|
|
1531
|
+
[[package]]
|
|
1532
|
+
name = "minimal-lexical"
|
|
1533
|
+
version = "0.2.1"
|
|
1534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1536
|
+
|
|
1537
|
+
[[package]]
|
|
1538
|
+
name = "miniz_oxide"
|
|
1539
|
+
version = "0.8.9"
|
|
1540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1542
|
+
dependencies = [
|
|
1543
|
+
"adler2",
|
|
1544
|
+
"simd-adler32",
|
|
1545
|
+
]
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "moxcms"
|
|
1549
|
+
version = "0.8.1"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
|
|
1552
|
+
dependencies = [
|
|
1553
|
+
"num-traits",
|
|
1554
|
+
"pxfm",
|
|
1555
|
+
]
|
|
1556
|
+
|
|
1557
|
+
[[package]]
|
|
1558
|
+
name = "mutate_once"
|
|
1559
|
+
version = "0.1.1"
|
|
1560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1561
|
+
checksum = "16cf681a23b4d0a43fc35024c176437f9dcd818db34e0f42ab456a0ee5ad497b"
|
|
1562
|
+
|
|
1563
|
+
[[package]]
|
|
1564
|
+
name = "native-tls"
|
|
1565
|
+
version = "0.2.14"
|
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
+
checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
|
|
1568
|
+
dependencies = [
|
|
1569
|
+
"libc",
|
|
1570
|
+
"log",
|
|
1571
|
+
"openssl",
|
|
1572
|
+
"openssl-probe",
|
|
1573
|
+
"openssl-sys",
|
|
1574
|
+
"schannel",
|
|
1575
|
+
"security-framework",
|
|
1576
|
+
"security-framework-sys",
|
|
1577
|
+
"tempfile",
|
|
1578
|
+
]
|
|
1579
|
+
|
|
1580
|
+
[[package]]
|
|
1581
|
+
name = "nom"
|
|
1582
|
+
version = "7.1.3"
|
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1585
|
+
dependencies = [
|
|
1586
|
+
"memchr",
|
|
1587
|
+
"minimal-lexical",
|
|
1588
|
+
]
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "num-bigint"
|
|
1592
|
+
version = "0.4.6"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1595
|
+
dependencies = [
|
|
1596
|
+
"num-integer",
|
|
1597
|
+
"num-traits",
|
|
1598
|
+
]
|
|
1599
|
+
|
|
1600
|
+
[[package]]
|
|
1601
|
+
name = "num-conv"
|
|
1602
|
+
version = "0.1.0"
|
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
1605
|
+
|
|
1606
|
+
[[package]]
|
|
1607
|
+
name = "num-integer"
|
|
1608
|
+
version = "0.1.46"
|
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1611
|
+
dependencies = [
|
|
1612
|
+
"num-traits",
|
|
1613
|
+
]
|
|
1614
|
+
|
|
1615
|
+
[[package]]
|
|
1616
|
+
name = "num-traits"
|
|
1617
|
+
version = "0.2.19"
|
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1620
|
+
dependencies = [
|
|
1621
|
+
"autocfg",
|
|
1622
|
+
]
|
|
1623
|
+
|
|
1624
|
+
[[package]]
|
|
1625
|
+
name = "once_cell"
|
|
1626
|
+
version = "1.21.3"
|
|
1627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1628
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "openssl"
|
|
1632
|
+
version = "0.10.81"
|
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
+
checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45"
|
|
1635
|
+
dependencies = [
|
|
1636
|
+
"bitflags 2.13.0",
|
|
1637
|
+
"cfg-if",
|
|
1638
|
+
"foreign-types",
|
|
1639
|
+
"libc",
|
|
1640
|
+
"openssl-macros",
|
|
1641
|
+
"openssl-sys",
|
|
1642
|
+
]
|
|
1643
|
+
|
|
1644
|
+
[[package]]
|
|
1645
|
+
name = "openssl-macros"
|
|
1646
|
+
version = "0.1.1"
|
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1648
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1649
|
+
dependencies = [
|
|
1650
|
+
"proc-macro2",
|
|
1651
|
+
"quote",
|
|
1652
|
+
"syn",
|
|
1653
|
+
]
|
|
1654
|
+
|
|
1655
|
+
[[package]]
|
|
1656
|
+
name = "openssl-probe"
|
|
1657
|
+
version = "0.1.6"
|
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "openssl-src"
|
|
1663
|
+
version = "300.5.0+3.5.0"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "e8ce546f549326b0e6052b649198487d91320875da901e7bd11a06d1ee3f9c2f"
|
|
1666
|
+
dependencies = [
|
|
1667
|
+
"cc",
|
|
1668
|
+
]
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "openssl-sys"
|
|
1672
|
+
version = "0.9.117"
|
|
1673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
+
checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695"
|
|
1675
|
+
dependencies = [
|
|
1676
|
+
"cc",
|
|
1677
|
+
"libc",
|
|
1678
|
+
"openssl-src",
|
|
1679
|
+
"pkg-config",
|
|
1680
|
+
"vcpkg",
|
|
1681
|
+
]
|
|
1682
|
+
|
|
1683
|
+
[[package]]
|
|
1684
|
+
name = "option-ext"
|
|
1685
|
+
version = "0.2.0"
|
|
1686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1688
|
+
|
|
1689
|
+
[[package]]
|
|
1690
|
+
name = "palette"
|
|
1691
|
+
version = "0.7.6"
|
|
1692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1693
|
+
checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6"
|
|
1694
|
+
dependencies = [
|
|
1695
|
+
"approx",
|
|
1696
|
+
"fast-srgb8",
|
|
1697
|
+
"libm",
|
|
1698
|
+
"palette_derive",
|
|
1699
|
+
]
|
|
1700
|
+
|
|
1701
|
+
[[package]]
|
|
1702
|
+
name = "palette_derive"
|
|
1703
|
+
version = "0.7.6"
|
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
+
checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30"
|
|
1706
|
+
dependencies = [
|
|
1707
|
+
"by_address",
|
|
1708
|
+
"proc-macro2",
|
|
1709
|
+
"quote",
|
|
1710
|
+
"syn",
|
|
1711
|
+
]
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "parking_lot"
|
|
1715
|
+
version = "0.12.4"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
|
|
1718
|
+
dependencies = [
|
|
1719
|
+
"lock_api",
|
|
1720
|
+
"parking_lot_core",
|
|
1721
|
+
]
|
|
1722
|
+
|
|
1723
|
+
[[package]]
|
|
1724
|
+
name = "parking_lot_core"
|
|
1725
|
+
version = "0.9.11"
|
|
1726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1727
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
|
1728
|
+
dependencies = [
|
|
1729
|
+
"cfg-if",
|
|
1730
|
+
"libc",
|
|
1731
|
+
"redox_syscall",
|
|
1732
|
+
"smallvec",
|
|
1733
|
+
"windows-targets 0.52.6",
|
|
1734
|
+
]
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "paste"
|
|
1738
|
+
version = "1.0.15"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1741
|
+
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "pathdiff"
|
|
1744
|
+
version = "0.2.3"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
1747
|
+
|
|
1748
|
+
[[package]]
|
|
1749
|
+
name = "pdf-writer"
|
|
1750
|
+
version = "0.15.0"
|
|
1751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1752
|
+
checksum = "f5e456864a7a304047bff84977dc6fb162bd956475d40ba50b2dcecaada7f753"
|
|
1753
|
+
dependencies = [
|
|
1754
|
+
"bitflags 2.13.0",
|
|
1755
|
+
"itoa",
|
|
1756
|
+
"memchr",
|
|
1757
|
+
"ryu",
|
|
1758
|
+
]
|
|
1759
|
+
|
|
1760
|
+
[[package]]
|
|
1761
|
+
name = "peniko"
|
|
1762
|
+
version = "0.6.1"
|
|
1763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
+
checksum = "839c8299360d2e998bdb106dc0a6cd71dcc5f4df51df1b620361bf50e283cca6"
|
|
1765
|
+
dependencies = [
|
|
1766
|
+
"bytemuck",
|
|
1767
|
+
"color",
|
|
1768
|
+
"kurbo",
|
|
1769
|
+
"linebender_resource_handle",
|
|
1770
|
+
"smallvec",
|
|
1771
|
+
]
|
|
1772
|
+
|
|
1773
|
+
[[package]]
|
|
1774
|
+
name = "percent-encoding"
|
|
1775
|
+
version = "2.3.2"
|
|
1776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "phf"
|
|
1781
|
+
version = "0.13.1"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
1784
|
+
dependencies = [
|
|
1785
|
+
"phf_macros",
|
|
1786
|
+
"phf_shared",
|
|
1787
|
+
"serde",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "phf_generator"
|
|
1792
|
+
version = "0.13.1"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
1795
|
+
dependencies = [
|
|
1796
|
+
"fastrand",
|
|
1797
|
+
"phf_shared",
|
|
1798
|
+
]
|
|
1799
|
+
|
|
1800
|
+
[[package]]
|
|
1801
|
+
name = "phf_macros"
|
|
1802
|
+
version = "0.13.1"
|
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
1805
|
+
dependencies = [
|
|
1806
|
+
"phf_generator",
|
|
1807
|
+
"phf_shared",
|
|
1808
|
+
"proc-macro2",
|
|
1809
|
+
"quote",
|
|
1810
|
+
"syn",
|
|
1811
|
+
]
|
|
1812
|
+
|
|
1813
|
+
[[package]]
|
|
1814
|
+
name = "phf_shared"
|
|
1815
|
+
version = "0.13.1"
|
|
1816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1817
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
1818
|
+
dependencies = [
|
|
1819
|
+
"siphasher",
|
|
1820
|
+
]
|
|
1821
|
+
|
|
1822
|
+
[[package]]
|
|
1823
|
+
name = "pic-scale"
|
|
1824
|
+
version = "0.7.9"
|
|
1825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
+
checksum = "3b05a62c3762cb26cb62665b915fea652def8a9f609b0b289b7f782a7394307b"
|
|
1827
|
+
dependencies = [
|
|
1828
|
+
"num-traits",
|
|
1829
|
+
"pxfm",
|
|
1830
|
+
]
|
|
1831
|
+
|
|
1832
|
+
[[package]]
|
|
1833
|
+
name = "pico-args"
|
|
1834
|
+
version = "0.5.0"
|
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1836
|
+
checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
|
|
1837
|
+
|
|
1838
|
+
[[package]]
|
|
1839
|
+
name = "pixglyph"
|
|
1840
|
+
version = "0.6.1"
|
|
1841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1842
|
+
checksum = "47945e80a49d08350e4a007ac4294c6498d23956c18ea5e6ff480dc93d31643c"
|
|
1843
|
+
dependencies = [
|
|
1844
|
+
"ttf-parser 0.25.1",
|
|
1845
|
+
]
|
|
1846
|
+
|
|
1847
|
+
[[package]]
|
|
1848
|
+
name = "pkg-config"
|
|
1849
|
+
version = "0.3.32"
|
|
1850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1852
|
+
|
|
1853
|
+
[[package]]
|
|
1854
|
+
name = "plist"
|
|
1855
|
+
version = "1.7.2"
|
|
1856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1857
|
+
checksum = "3d77244ce2d584cd84f6a15f86195b8c9b2a0dfbfd817c09e0464244091a58ed"
|
|
1858
|
+
dependencies = [
|
|
1859
|
+
"base64",
|
|
1860
|
+
"indexmap",
|
|
1861
|
+
"quick-xml 0.37.5",
|
|
1862
|
+
"serde",
|
|
1863
|
+
"time",
|
|
1864
|
+
]
|
|
1865
|
+
|
|
1866
|
+
[[package]]
|
|
1867
|
+
name = "png"
|
|
1868
|
+
version = "0.17.16"
|
|
1869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1870
|
+
checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
|
|
1871
|
+
dependencies = [
|
|
1872
|
+
"bitflags 1.3.2",
|
|
1873
|
+
"crc32fast",
|
|
1874
|
+
"fdeflate",
|
|
1875
|
+
"flate2",
|
|
1876
|
+
"miniz_oxide",
|
|
1877
|
+
]
|
|
1878
|
+
|
|
1879
|
+
[[package]]
|
|
1880
|
+
name = "png"
|
|
1881
|
+
version = "0.18.1"
|
|
1882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
+
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
|
1884
|
+
dependencies = [
|
|
1885
|
+
"bitflags 2.13.0",
|
|
1886
|
+
"crc32fast",
|
|
1887
|
+
"fdeflate",
|
|
1888
|
+
"flate2",
|
|
1889
|
+
"miniz_oxide",
|
|
1890
|
+
]
|
|
1891
|
+
|
|
1892
|
+
[[package]]
|
|
1893
|
+
name = "polycool"
|
|
1894
|
+
version = "0.4.0"
|
|
1895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
+
checksum = "50596ddc09eb5ad5f75cacd40209568e66df71baf86e1499a0e99c4cff12a5a6"
|
|
1897
|
+
dependencies = [
|
|
1898
|
+
"arrayvec",
|
|
1899
|
+
]
|
|
1900
|
+
|
|
1901
|
+
[[package]]
|
|
1902
|
+
name = "portable-atomic"
|
|
1903
|
+
version = "1.11.1"
|
|
1904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
1906
|
+
|
|
1907
|
+
[[package]]
|
|
1908
|
+
name = "postcard"
|
|
1909
|
+
version = "1.1.2"
|
|
1910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1911
|
+
checksum = "6c1de96e20f51df24ca73cafcc4690e044854d803259db27a00a461cb3b9d17a"
|
|
1912
|
+
dependencies = [
|
|
1913
|
+
"cobs",
|
|
1914
|
+
"serde",
|
|
1915
|
+
]
|
|
1916
|
+
|
|
1917
|
+
[[package]]
|
|
1918
|
+
name = "potential_utf"
|
|
1919
|
+
version = "0.1.5"
|
|
1920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1921
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1922
|
+
dependencies = [
|
|
1923
|
+
"serde_core",
|
|
1924
|
+
"writeable",
|
|
1925
|
+
"zerovec",
|
|
1926
|
+
]
|
|
1927
|
+
|
|
1928
|
+
[[package]]
|
|
1929
|
+
name = "powerfmt"
|
|
1930
|
+
version = "0.2.0"
|
|
1931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1932
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1933
|
+
|
|
1934
|
+
[[package]]
|
|
1935
|
+
name = "ppv-lite86"
|
|
1936
|
+
version = "0.2.21"
|
|
1937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1939
|
+
dependencies = [
|
|
1940
|
+
"zerocopy",
|
|
1941
|
+
]
|
|
1942
|
+
|
|
1943
|
+
[[package]]
|
|
1944
|
+
name = "proc-macro-hack"
|
|
1945
|
+
version = "0.5.20+deprecated"
|
|
1946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
|
+
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
1948
|
+
|
|
1949
|
+
[[package]]
|
|
1950
|
+
name = "proc-macro2"
|
|
1951
|
+
version = "1.0.95"
|
|
1952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1953
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
|
1954
|
+
dependencies = [
|
|
1955
|
+
"unicode-ident",
|
|
1956
|
+
]
|
|
1957
|
+
|
|
1958
|
+
[[package]]
|
|
1959
|
+
name = "psm"
|
|
1960
|
+
version = "0.1.26"
|
|
1961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1962
|
+
checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
|
|
1963
|
+
dependencies = [
|
|
1964
|
+
"cc",
|
|
1965
|
+
]
|
|
1966
|
+
|
|
1967
|
+
[[package]]
|
|
1968
|
+
name = "pxfm"
|
|
1969
|
+
version = "0.1.26"
|
|
1970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
|
+
checksum = "b3502d6155304a4173a5f2c34b52b7ed0dd085890326cb50fd625fdf39e86b3b"
|
|
1972
|
+
dependencies = [
|
|
1973
|
+
"num-traits",
|
|
1974
|
+
]
|
|
1975
|
+
|
|
1976
|
+
[[package]]
|
|
1977
|
+
name = "quick-error"
|
|
1978
|
+
version = "2.0.1"
|
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
1981
|
+
|
|
1982
|
+
[[package]]
|
|
1983
|
+
name = "quick-xml"
|
|
1984
|
+
version = "0.37.5"
|
|
1985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1986
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
|
1987
|
+
dependencies = [
|
|
1988
|
+
"memchr",
|
|
1989
|
+
]
|
|
1990
|
+
|
|
1991
|
+
[[package]]
|
|
1992
|
+
name = "quick-xml"
|
|
1993
|
+
version = "0.38.4"
|
|
1994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1995
|
+
checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
|
|
1996
|
+
dependencies = [
|
|
1997
|
+
"memchr",
|
|
1998
|
+
"serde",
|
|
1999
|
+
]
|
|
2000
|
+
|
|
2001
|
+
[[package]]
|
|
2002
|
+
name = "quote"
|
|
2003
|
+
version = "1.0.46"
|
|
2004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2005
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
2006
|
+
dependencies = [
|
|
2007
|
+
"proc-macro2",
|
|
2008
|
+
]
|
|
2009
|
+
|
|
2010
|
+
[[package]]
|
|
2011
|
+
name = "r-efi"
|
|
2012
|
+
version = "5.3.0"
|
|
2013
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2014
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2015
|
+
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "rand"
|
|
2018
|
+
version = "0.8.5"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2021
|
+
dependencies = [
|
|
2022
|
+
"rand_core",
|
|
2023
|
+
]
|
|
2024
|
+
|
|
2025
|
+
[[package]]
|
|
2026
|
+
name = "rand_chacha"
|
|
2027
|
+
version = "0.3.1"
|
|
2028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2029
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2030
|
+
dependencies = [
|
|
2031
|
+
"ppv-lite86",
|
|
2032
|
+
"rand_core",
|
|
2033
|
+
]
|
|
2034
|
+
|
|
2035
|
+
[[package]]
|
|
2036
|
+
name = "rand_core"
|
|
2037
|
+
version = "0.6.4"
|
|
2038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2039
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2040
|
+
|
|
2041
|
+
[[package]]
|
|
2042
|
+
name = "rayon"
|
|
2043
|
+
version = "1.10.0"
|
|
2044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2045
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
2046
|
+
dependencies = [
|
|
2047
|
+
"either",
|
|
2048
|
+
"rayon-core",
|
|
2049
|
+
]
|
|
2050
|
+
|
|
2051
|
+
[[package]]
|
|
2052
|
+
name = "rayon-core"
|
|
2053
|
+
version = "1.12.1"
|
|
2054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2055
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
2056
|
+
dependencies = [
|
|
2057
|
+
"crossbeam-deque",
|
|
2058
|
+
"crossbeam-utils",
|
|
2059
|
+
]
|
|
2060
|
+
|
|
2061
|
+
[[package]]
|
|
2062
|
+
name = "rb-sys"
|
|
2063
|
+
version = "0.9.128"
|
|
2064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2065
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
2066
|
+
dependencies = [
|
|
2067
|
+
"rb-sys-build",
|
|
2068
|
+
]
|
|
2069
|
+
|
|
2070
|
+
[[package]]
|
|
2071
|
+
name = "rb-sys-build"
|
|
2072
|
+
version = "0.9.128"
|
|
2073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2074
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
2075
|
+
dependencies = [
|
|
2076
|
+
"bindgen",
|
|
2077
|
+
"lazy_static",
|
|
2078
|
+
"proc-macro2",
|
|
2079
|
+
"quote",
|
|
2080
|
+
"regex",
|
|
2081
|
+
"shell-words",
|
|
2082
|
+
"syn",
|
|
2083
|
+
]
|
|
2084
|
+
|
|
2085
|
+
[[package]]
|
|
2086
|
+
name = "rb-sys-env"
|
|
2087
|
+
version = "0.2.2"
|
|
2088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2089
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
|
2090
|
+
|
|
2091
|
+
[[package]]
|
|
2092
|
+
name = "read-fonts"
|
|
2093
|
+
version = "0.39.2"
|
|
2094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
+
checksum = "c4ed38b89c2c77ff968c524145ad65fb010f38af5c7a224b53b81d47ac2daa81"
|
|
2096
|
+
dependencies = [
|
|
2097
|
+
"bytemuck",
|
|
2098
|
+
"font-types",
|
|
2099
|
+
]
|
|
2100
|
+
|
|
2101
|
+
[[package]]
|
|
2102
|
+
name = "redox_syscall"
|
|
2103
|
+
version = "0.5.13"
|
|
2104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2105
|
+
checksum = "0d04b7d0ee6b4a0207a0a7adb104d23ecb0b47d6beae7152d0fa34b692b29fd6"
|
|
2106
|
+
dependencies = [
|
|
2107
|
+
"bitflags 2.13.0",
|
|
2108
|
+
]
|
|
2109
|
+
|
|
2110
|
+
[[package]]
|
|
2111
|
+
name = "redox_users"
|
|
2112
|
+
version = "0.4.6"
|
|
2113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2114
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2115
|
+
dependencies = [
|
|
2116
|
+
"getrandom 0.2.16",
|
|
2117
|
+
"libredox",
|
|
2118
|
+
"thiserror 1.0.69",
|
|
2119
|
+
]
|
|
2120
|
+
|
|
2121
|
+
[[package]]
|
|
2122
|
+
name = "redox_users"
|
|
2123
|
+
version = "0.5.0"
|
|
2124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
+
checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b"
|
|
2126
|
+
dependencies = [
|
|
2127
|
+
"getrandom 0.2.16",
|
|
2128
|
+
"libredox",
|
|
2129
|
+
"thiserror 2.0.18",
|
|
2130
|
+
]
|
|
2131
|
+
|
|
2132
|
+
[[package]]
|
|
2133
|
+
name = "regex"
|
|
2134
|
+
version = "1.11.1"
|
|
2135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
2137
|
+
dependencies = [
|
|
2138
|
+
"aho-corasick",
|
|
2139
|
+
"memchr",
|
|
2140
|
+
"regex-automata",
|
|
2141
|
+
"regex-syntax",
|
|
2142
|
+
]
|
|
2143
|
+
|
|
2144
|
+
[[package]]
|
|
2145
|
+
name = "regex-automata"
|
|
2146
|
+
version = "0.4.9"
|
|
2147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2148
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
2149
|
+
dependencies = [
|
|
2150
|
+
"aho-corasick",
|
|
2151
|
+
"memchr",
|
|
2152
|
+
"regex-syntax",
|
|
2153
|
+
]
|
|
2154
|
+
|
|
2155
|
+
[[package]]
|
|
2156
|
+
name = "regex-syntax"
|
|
2157
|
+
version = "0.8.5"
|
|
2158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2159
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
2160
|
+
|
|
2161
|
+
[[package]]
|
|
2162
|
+
name = "resvg"
|
|
2163
|
+
version = "0.47.0"
|
|
2164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2165
|
+
checksum = "9be183ad6a216aa96f33e4c8033b0988b8b3ea6fd2359d19af5bac4643fd8e81"
|
|
2166
|
+
dependencies = [
|
|
2167
|
+
"gif 0.14.2",
|
|
2168
|
+
"image-webp",
|
|
2169
|
+
"log",
|
|
2170
|
+
"pico-args",
|
|
2171
|
+
"rgb",
|
|
2172
|
+
"svgtypes",
|
|
2173
|
+
"tiny-skia",
|
|
2174
|
+
"usvg",
|
|
2175
|
+
"zune-jpeg 0.5.15",
|
|
2176
|
+
]
|
|
2177
|
+
|
|
2178
|
+
[[package]]
|
|
2179
|
+
name = "rgb"
|
|
2180
|
+
version = "0.8.50"
|
|
2181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2182
|
+
checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
|
|
2183
|
+
dependencies = [
|
|
2184
|
+
"bytemuck",
|
|
2185
|
+
]
|
|
2186
|
+
|
|
2187
|
+
[[package]]
|
|
2188
|
+
name = "roman-numerals-rs"
|
|
2189
|
+
version = "3.1.0"
|
|
2190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2191
|
+
checksum = "c85cd47a33a4510b1424fe796498e174c6a9cf94e606460ef022a19f3e4ff85e"
|
|
2192
|
+
|
|
2193
|
+
[[package]]
|
|
2194
|
+
name = "roxmltree"
|
|
2195
|
+
version = "0.20.0"
|
|
2196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2197
|
+
checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
2198
|
+
|
|
2199
|
+
[[package]]
|
|
2200
|
+
name = "roxmltree"
|
|
2201
|
+
version = "0.21.1"
|
|
2202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2203
|
+
checksum = "f1964b10c76125c36f8afe190065a4bf9a87bf324842c05701330bba9f1cacbb"
|
|
2204
|
+
dependencies = [
|
|
2205
|
+
"memchr",
|
|
2206
|
+
]
|
|
2207
|
+
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "rust_decimal"
|
|
2210
|
+
version = "1.37.2"
|
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
+
checksum = "b203a6425500a03e0919c42d3c47caca51e79f1132046626d2c8871c5092035d"
|
|
2213
|
+
dependencies = [
|
|
2214
|
+
"arrayvec",
|
|
2215
|
+
"num-traits",
|
|
2216
|
+
]
|
|
2217
|
+
|
|
2218
|
+
[[package]]
|
|
2219
|
+
name = "rustc-hash"
|
|
2220
|
+
version = "2.1.1"
|
|
2221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2222
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2223
|
+
|
|
2224
|
+
[[package]]
|
|
2225
|
+
name = "rustix"
|
|
2226
|
+
version = "1.0.7"
|
|
2227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
+
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
|
|
2229
|
+
dependencies = [
|
|
2230
|
+
"bitflags 2.13.0",
|
|
2231
|
+
"errno",
|
|
2232
|
+
"libc",
|
|
2233
|
+
"linux-raw-sys",
|
|
2234
|
+
"windows-sys 0.59.0",
|
|
2235
|
+
]
|
|
2236
|
+
|
|
2237
|
+
[[package]]
|
|
2238
|
+
name = "rustversion"
|
|
2239
|
+
version = "1.0.21"
|
|
2240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2241
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
|
2242
|
+
|
|
2243
|
+
[[package]]
|
|
2244
|
+
name = "rustybuzz"
|
|
2245
|
+
version = "0.20.1"
|
|
2246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2247
|
+
checksum = "fd3c7c96f8a08ee34eff8857b11b49b07d71d1c3f4e88f8a88d4c9e9f90b1702"
|
|
2248
|
+
dependencies = [
|
|
2249
|
+
"bitflags 2.13.0",
|
|
2250
|
+
"bytemuck",
|
|
2251
|
+
"core_maths",
|
|
2252
|
+
"log",
|
|
2253
|
+
"smallvec",
|
|
2254
|
+
"ttf-parser 0.25.1",
|
|
2255
|
+
"unicode-bidi-mirroring",
|
|
2256
|
+
"unicode-ccc",
|
|
2257
|
+
"unicode-properties",
|
|
2258
|
+
"unicode-script",
|
|
2259
|
+
]
|
|
2260
|
+
|
|
2261
|
+
[[package]]
|
|
2262
|
+
name = "ryu"
|
|
2263
|
+
version = "1.0.20"
|
|
2264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2265
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2266
|
+
|
|
2267
|
+
[[package]]
|
|
2268
|
+
name = "same-file"
|
|
2269
|
+
version = "1.0.6"
|
|
2270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2271
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2272
|
+
dependencies = [
|
|
2273
|
+
"winapi-util",
|
|
2274
|
+
]
|
|
2275
|
+
|
|
2276
|
+
[[package]]
|
|
2277
|
+
name = "schannel"
|
|
2278
|
+
version = "0.1.27"
|
|
2279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
+
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
|
2281
|
+
dependencies = [
|
|
2282
|
+
"windows-sys 0.59.0",
|
|
2283
|
+
]
|
|
2284
|
+
|
|
2285
|
+
[[package]]
|
|
2286
|
+
name = "scopeguard"
|
|
2287
|
+
version = "1.2.0"
|
|
2288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2289
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2290
|
+
|
|
2291
|
+
[[package]]
|
|
2292
|
+
name = "security-framework"
|
|
2293
|
+
version = "2.11.1"
|
|
2294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
2296
|
+
dependencies = [
|
|
2297
|
+
"bitflags 2.13.0",
|
|
2298
|
+
"core-foundation",
|
|
2299
|
+
"core-foundation-sys",
|
|
2300
|
+
"libc",
|
|
2301
|
+
"security-framework-sys",
|
|
2302
|
+
]
|
|
2303
|
+
|
|
2304
|
+
[[package]]
|
|
2305
|
+
name = "security-framework-sys"
|
|
2306
|
+
version = "2.14.0"
|
|
2307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
|
+
checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
|
|
2309
|
+
dependencies = [
|
|
2310
|
+
"core-foundation-sys",
|
|
2311
|
+
"libc",
|
|
2312
|
+
]
|
|
2313
|
+
|
|
2314
|
+
[[package]]
|
|
2315
|
+
name = "semver"
|
|
2316
|
+
version = "1.0.28"
|
|
2317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2319
|
+
|
|
2320
|
+
[[package]]
|
|
2321
|
+
name = "seq-macro"
|
|
2322
|
+
version = "0.3.6"
|
|
2323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2324
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
2325
|
+
|
|
2326
|
+
[[package]]
|
|
2327
|
+
name = "serde"
|
|
2328
|
+
version = "1.0.228"
|
|
2329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2330
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2331
|
+
dependencies = [
|
|
2332
|
+
"serde_core",
|
|
2333
|
+
"serde_derive",
|
|
2334
|
+
]
|
|
2335
|
+
|
|
2336
|
+
[[package]]
|
|
2337
|
+
name = "serde_core"
|
|
2338
|
+
version = "1.0.228"
|
|
2339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2340
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2341
|
+
dependencies = [
|
|
2342
|
+
"serde_derive",
|
|
2343
|
+
]
|
|
2344
|
+
|
|
2345
|
+
[[package]]
|
|
2346
|
+
name = "serde_derive"
|
|
2347
|
+
version = "1.0.228"
|
|
2348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2349
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2350
|
+
dependencies = [
|
|
2351
|
+
"proc-macro2",
|
|
2352
|
+
"quote",
|
|
2353
|
+
"syn",
|
|
2354
|
+
]
|
|
2355
|
+
|
|
2356
|
+
[[package]]
|
|
2357
|
+
name = "serde_json"
|
|
2358
|
+
version = "1.0.140"
|
|
2359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2360
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
|
2361
|
+
dependencies = [
|
|
2362
|
+
"itoa",
|
|
2363
|
+
"memchr",
|
|
2364
|
+
"ryu",
|
|
2365
|
+
"serde",
|
|
2366
|
+
]
|
|
2367
|
+
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "serde_path_to_error"
|
|
2370
|
+
version = "0.1.20"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
2373
|
+
dependencies = [
|
|
2374
|
+
"itoa",
|
|
2375
|
+
"serde",
|
|
2376
|
+
"serde_core",
|
|
2377
|
+
]
|
|
2378
|
+
|
|
2379
|
+
[[package]]
|
|
2380
|
+
name = "serde_spanned"
|
|
2381
|
+
version = "0.6.9"
|
|
2382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2383
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
2384
|
+
dependencies = [
|
|
2385
|
+
"serde",
|
|
2386
|
+
]
|
|
2387
|
+
|
|
2388
|
+
[[package]]
|
|
2389
|
+
name = "serde_yaml"
|
|
2390
|
+
version = "0.9.34+deprecated"
|
|
2391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
+
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
|
|
2393
|
+
dependencies = [
|
|
2394
|
+
"indexmap",
|
|
2395
|
+
"itoa",
|
|
2396
|
+
"ryu",
|
|
2397
|
+
"serde",
|
|
2398
|
+
"unsafe-libyaml",
|
|
2399
|
+
]
|
|
2400
|
+
|
|
2401
|
+
[[package]]
|
|
2402
|
+
name = "shell-words"
|
|
2403
|
+
version = "1.1.0"
|
|
2404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
2406
|
+
|
|
2407
|
+
[[package]]
|
|
2408
|
+
name = "shlex"
|
|
2409
|
+
version = "1.3.0"
|
|
2410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2412
|
+
|
|
2413
|
+
[[package]]
|
|
2414
|
+
name = "simd-adler32"
|
|
2415
|
+
version = "0.3.7"
|
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2417
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
2418
|
+
|
|
2419
|
+
[[package]]
|
|
2420
|
+
name = "simplecss"
|
|
2421
|
+
version = "0.2.2"
|
|
2422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2423
|
+
checksum = "7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c"
|
|
2424
|
+
dependencies = [
|
|
2425
|
+
"log",
|
|
2426
|
+
]
|
|
2427
|
+
|
|
2428
|
+
[[package]]
|
|
2429
|
+
name = "siphasher"
|
|
2430
|
+
version = "1.0.1"
|
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
2433
|
+
|
|
2434
|
+
[[package]]
|
|
2435
|
+
name = "skrifa"
|
|
2436
|
+
version = "0.42.1"
|
|
2437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2438
|
+
checksum = "0c34617370ae968efb7161bb2beb517d9084659aae19e24b89e3db25b46e4564"
|
|
2439
|
+
dependencies = [
|
|
2440
|
+
"bytemuck",
|
|
2441
|
+
"read-fonts",
|
|
2442
|
+
]
|
|
2443
|
+
|
|
2444
|
+
[[package]]
|
|
2445
|
+
name = "slab"
|
|
2446
|
+
version = "0.4.11"
|
|
2447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2448
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2449
|
+
|
|
2450
|
+
[[package]]
|
|
2451
|
+
name = "slotmap"
|
|
2452
|
+
version = "1.0.7"
|
|
2453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2454
|
+
checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
|
|
2455
|
+
dependencies = [
|
|
2456
|
+
"version_check",
|
|
2457
|
+
]
|
|
2458
|
+
|
|
2459
|
+
[[package]]
|
|
2460
|
+
name = "smallvec"
|
|
2461
|
+
version = "1.15.1"
|
|
2462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2463
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2464
|
+
|
|
2465
|
+
[[package]]
|
|
2466
|
+
name = "socks"
|
|
2467
|
+
version = "0.3.4"
|
|
2468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2469
|
+
checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
|
|
2470
|
+
dependencies = [
|
|
2471
|
+
"byteorder",
|
|
2472
|
+
"libc",
|
|
2473
|
+
"winapi",
|
|
2474
|
+
]
|
|
2475
|
+
|
|
2476
|
+
[[package]]
|
|
2477
|
+
name = "spin"
|
|
2478
|
+
version = "0.9.8"
|
|
2479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
2481
|
+
|
|
2482
|
+
[[package]]
|
|
2483
|
+
name = "stable_deref_trait"
|
|
2484
|
+
version = "1.2.0"
|
|
2485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2486
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
2487
|
+
|
|
2488
|
+
[[package]]
|
|
2489
|
+
name = "stacker"
|
|
2490
|
+
version = "0.1.21"
|
|
2491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
+
checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
|
|
2493
|
+
dependencies = [
|
|
2494
|
+
"cc",
|
|
2495
|
+
"cfg-if",
|
|
2496
|
+
"libc",
|
|
2497
|
+
"psm",
|
|
2498
|
+
"windows-sys 0.59.0",
|
|
2499
|
+
]
|
|
2500
|
+
|
|
2501
|
+
[[package]]
|
|
2502
|
+
name = "strict-num"
|
|
2503
|
+
version = "0.1.1"
|
|
2504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2505
|
+
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
2506
|
+
dependencies = [
|
|
2507
|
+
"float-cmp",
|
|
2508
|
+
]
|
|
2509
|
+
|
|
2510
|
+
[[package]]
|
|
2511
|
+
name = "strum"
|
|
2512
|
+
version = "0.27.2"
|
|
2513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2514
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
2515
|
+
dependencies = [
|
|
2516
|
+
"strum_macros",
|
|
2517
|
+
]
|
|
2518
|
+
|
|
2519
|
+
[[package]]
|
|
2520
|
+
name = "strum_macros"
|
|
2521
|
+
version = "0.27.2"
|
|
2522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2523
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
2524
|
+
dependencies = [
|
|
2525
|
+
"heck",
|
|
2526
|
+
"proc-macro2",
|
|
2527
|
+
"quote",
|
|
2528
|
+
"syn",
|
|
2529
|
+
]
|
|
2530
|
+
|
|
2531
|
+
[[package]]
|
|
2532
|
+
name = "subsetter"
|
|
2533
|
+
version = "0.2.6"
|
|
2534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2535
|
+
checksum = "38803281d1c23166c5ebcb455439a5d2afe711cc909cf88af72448c297756ad6"
|
|
2536
|
+
dependencies = [
|
|
2537
|
+
"kurbo",
|
|
2538
|
+
"rustc-hash",
|
|
2539
|
+
"skrifa",
|
|
2540
|
+
"write-fonts",
|
|
2541
|
+
]
|
|
2542
|
+
|
|
2543
|
+
[[package]]
|
|
2544
|
+
name = "svgtypes"
|
|
2545
|
+
version = "0.16.1"
|
|
2546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2547
|
+
checksum = "695b5790b3131dafa99b3bbfd25a216edb3d216dad9ca208d4657bfb8f2abc3d"
|
|
2548
|
+
dependencies = [
|
|
2549
|
+
"kurbo",
|
|
2550
|
+
"siphasher",
|
|
2551
|
+
]
|
|
2552
|
+
|
|
2553
|
+
[[package]]
|
|
2554
|
+
name = "syn"
|
|
2555
|
+
version = "2.0.104"
|
|
2556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2557
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
|
2558
|
+
dependencies = [
|
|
2559
|
+
"proc-macro2",
|
|
2560
|
+
"quote",
|
|
2561
|
+
"unicode-ident",
|
|
2562
|
+
]
|
|
2563
|
+
|
|
2564
|
+
[[package]]
|
|
2565
|
+
name = "synstructure"
|
|
2566
|
+
version = "0.13.2"
|
|
2567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2568
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2569
|
+
dependencies = [
|
|
2570
|
+
"proc-macro2",
|
|
2571
|
+
"quote",
|
|
2572
|
+
"syn",
|
|
2573
|
+
]
|
|
2574
|
+
|
|
2575
|
+
[[package]]
|
|
2576
|
+
name = "syntect"
|
|
2577
|
+
version = "5.3.0"
|
|
2578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
|
+
checksum = "656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925"
|
|
2580
|
+
dependencies = [
|
|
2581
|
+
"bincode",
|
|
2582
|
+
"fancy-regex",
|
|
2583
|
+
"flate2",
|
|
2584
|
+
"fnv",
|
|
2585
|
+
"once_cell",
|
|
2586
|
+
"plist",
|
|
2587
|
+
"regex-syntax",
|
|
2588
|
+
"serde",
|
|
2589
|
+
"serde_derive",
|
|
2590
|
+
"serde_json",
|
|
2591
|
+
"thiserror 2.0.18",
|
|
2592
|
+
"walkdir",
|
|
2593
|
+
"yaml-rust",
|
|
2594
|
+
]
|
|
2595
|
+
|
|
2596
|
+
[[package]]
|
|
2597
|
+
name = "tar"
|
|
2598
|
+
version = "0.4.46"
|
|
2599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2600
|
+
checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840"
|
|
2601
|
+
dependencies = [
|
|
2602
|
+
"filetime",
|
|
2603
|
+
"libc",
|
|
2604
|
+
"xattr",
|
|
2605
|
+
]
|
|
2606
|
+
|
|
2607
|
+
[[package]]
|
|
2608
|
+
name = "tempfile"
|
|
2609
|
+
version = "3.20.0"
|
|
2610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
|
|
2612
|
+
dependencies = [
|
|
2613
|
+
"fastrand",
|
|
2614
|
+
"getrandom 0.3.3",
|
|
2615
|
+
"once_cell",
|
|
2616
|
+
"rustix",
|
|
2617
|
+
"windows-sys 0.59.0",
|
|
2618
|
+
]
|
|
2619
|
+
|
|
2620
|
+
[[package]]
|
|
2621
|
+
name = "termcolor"
|
|
2622
|
+
version = "1.4.1"
|
|
2623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2624
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
2625
|
+
dependencies = [
|
|
2626
|
+
"winapi-util",
|
|
2627
|
+
]
|
|
2628
|
+
|
|
2629
|
+
[[package]]
|
|
2630
|
+
name = "thin-vec"
|
|
2631
|
+
version = "0.2.18"
|
|
2632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2633
|
+
checksum = "b0f7e269b48f0a7dd0146680fa24b50cc67fc0373f086a5b2f99bd084639b482"
|
|
2634
|
+
|
|
2635
|
+
[[package]]
|
|
2636
|
+
name = "thiserror"
|
|
2637
|
+
version = "1.0.69"
|
|
2638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2639
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
2640
|
+
dependencies = [
|
|
2641
|
+
"thiserror-impl 1.0.69",
|
|
2642
|
+
]
|
|
2643
|
+
|
|
2644
|
+
[[package]]
|
|
2645
|
+
name = "thiserror"
|
|
2646
|
+
version = "2.0.18"
|
|
2647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2648
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
2649
|
+
dependencies = [
|
|
2650
|
+
"thiserror-impl 2.0.18",
|
|
2651
|
+
]
|
|
2652
|
+
|
|
2653
|
+
[[package]]
|
|
2654
|
+
name = "thiserror-impl"
|
|
2655
|
+
version = "1.0.69"
|
|
2656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2657
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
2658
|
+
dependencies = [
|
|
2659
|
+
"proc-macro2",
|
|
2660
|
+
"quote",
|
|
2661
|
+
"syn",
|
|
2662
|
+
]
|
|
2663
|
+
|
|
2664
|
+
[[package]]
|
|
2665
|
+
name = "thiserror-impl"
|
|
2666
|
+
version = "2.0.18"
|
|
2667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2668
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
2669
|
+
dependencies = [
|
|
2670
|
+
"proc-macro2",
|
|
2671
|
+
"quote",
|
|
2672
|
+
"syn",
|
|
2673
|
+
]
|
|
2674
|
+
|
|
2675
|
+
[[package]]
|
|
2676
|
+
name = "time"
|
|
2677
|
+
version = "0.3.41"
|
|
2678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2679
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
|
2680
|
+
dependencies = [
|
|
2681
|
+
"deranged",
|
|
2682
|
+
"itoa",
|
|
2683
|
+
"num-conv",
|
|
2684
|
+
"powerfmt",
|
|
2685
|
+
"serde",
|
|
2686
|
+
"time-core",
|
|
2687
|
+
"time-macros",
|
|
2688
|
+
]
|
|
2689
|
+
|
|
2690
|
+
[[package]]
|
|
2691
|
+
name = "time-core"
|
|
2692
|
+
version = "0.1.4"
|
|
2693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
|
2695
|
+
|
|
2696
|
+
[[package]]
|
|
2697
|
+
name = "time-macros"
|
|
2698
|
+
version = "0.2.22"
|
|
2699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2700
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
|
2701
|
+
dependencies = [
|
|
2702
|
+
"num-conv",
|
|
2703
|
+
"time-core",
|
|
2704
|
+
]
|
|
2705
|
+
|
|
2706
|
+
[[package]]
|
|
2707
|
+
name = "tiny-skia"
|
|
2708
|
+
version = "0.12.0"
|
|
2709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2710
|
+
checksum = "47ffee5eaaf5527f630fb0e356b90ebdec84d5d18d937c5e440350f88c5a91ea"
|
|
2711
|
+
dependencies = [
|
|
2712
|
+
"arrayref",
|
|
2713
|
+
"arrayvec",
|
|
2714
|
+
"bytemuck",
|
|
2715
|
+
"cfg-if",
|
|
2716
|
+
"log",
|
|
2717
|
+
"png 0.18.1",
|
|
2718
|
+
"tiny-skia-path",
|
|
2719
|
+
]
|
|
2720
|
+
|
|
2721
|
+
[[package]]
|
|
2722
|
+
name = "tiny-skia-path"
|
|
2723
|
+
version = "0.12.0"
|
|
2724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2725
|
+
checksum = "edca365c3faccca67d06593c5980fa6c57687de727a03131735bb85f01fdeeb9"
|
|
2726
|
+
dependencies = [
|
|
2727
|
+
"arrayref",
|
|
2728
|
+
"bytemuck",
|
|
2729
|
+
"strict-num",
|
|
2730
|
+
]
|
|
2731
|
+
|
|
2732
|
+
[[package]]
|
|
2733
|
+
name = "tinystr"
|
|
2734
|
+
version = "0.8.3"
|
|
2735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2736
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
2737
|
+
dependencies = [
|
|
2738
|
+
"displaydoc",
|
|
2739
|
+
"serde_core",
|
|
2740
|
+
"zerovec",
|
|
2741
|
+
]
|
|
2742
|
+
|
|
2743
|
+
[[package]]
|
|
2744
|
+
name = "tinyvec"
|
|
2745
|
+
version = "1.9.0"
|
|
2746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2747
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
2748
|
+
dependencies = [
|
|
2749
|
+
"tinyvec_macros",
|
|
2750
|
+
]
|
|
2751
|
+
|
|
2752
|
+
[[package]]
|
|
2753
|
+
name = "tinyvec_macros"
|
|
2754
|
+
version = "0.1.1"
|
|
2755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2756
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2757
|
+
|
|
2758
|
+
[[package]]
|
|
2759
|
+
name = "toml"
|
|
2760
|
+
version = "0.8.23"
|
|
2761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2762
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
2763
|
+
dependencies = [
|
|
2764
|
+
"serde",
|
|
2765
|
+
"serde_spanned",
|
|
2766
|
+
"toml_datetime",
|
|
2767
|
+
"toml_edit",
|
|
2768
|
+
]
|
|
2769
|
+
|
|
2770
|
+
[[package]]
|
|
2771
|
+
name = "toml_datetime"
|
|
2772
|
+
version = "0.6.11"
|
|
2773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2774
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
2775
|
+
dependencies = [
|
|
2776
|
+
"serde",
|
|
2777
|
+
]
|
|
2778
|
+
|
|
2779
|
+
[[package]]
|
|
2780
|
+
name = "toml_edit"
|
|
2781
|
+
version = "0.22.27"
|
|
2782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2783
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
2784
|
+
dependencies = [
|
|
2785
|
+
"indexmap",
|
|
2786
|
+
"serde",
|
|
2787
|
+
"serde_spanned",
|
|
2788
|
+
"toml_datetime",
|
|
2789
|
+
"toml_write",
|
|
2790
|
+
"winnow",
|
|
2791
|
+
]
|
|
2792
|
+
|
|
2793
|
+
[[package]]
|
|
2794
|
+
name = "toml_write"
|
|
2795
|
+
version = "0.1.2"
|
|
2796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2797
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
2798
|
+
|
|
2799
|
+
[[package]]
|
|
2800
|
+
name = "ttf-parser"
|
|
2801
|
+
version = "0.19.2"
|
|
2802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2803
|
+
checksum = "49d64318d8311fc2668e48b63969f4343e0a85c4a109aa8460d6672e364b8bd1"
|
|
2804
|
+
|
|
2805
|
+
[[package]]
|
|
2806
|
+
name = "ttf-parser"
|
|
2807
|
+
version = "0.25.1"
|
|
2808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2809
|
+
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
|
2810
|
+
dependencies = [
|
|
2811
|
+
"core_maths",
|
|
2812
|
+
]
|
|
2813
|
+
|
|
2814
|
+
[[package]]
|
|
2815
|
+
name = "two-face"
|
|
2816
|
+
version = "0.4.3"
|
|
2817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2818
|
+
checksum = "384eda438ddf62e2c6f39a174452d952d9d9df5a8ad5ade22198609f8dcaf852"
|
|
2819
|
+
dependencies = [
|
|
2820
|
+
"once_cell",
|
|
2821
|
+
"serde",
|
|
2822
|
+
"syntect",
|
|
2823
|
+
]
|
|
2824
|
+
|
|
2825
|
+
[[package]]
|
|
2826
|
+
name = "typed-arena"
|
|
2827
|
+
version = "2.0.2"
|
|
2828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2829
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
2830
|
+
|
|
2831
|
+
[[package]]
|
|
2832
|
+
name = "typst"
|
|
2833
|
+
version = "0.15.0"
|
|
2834
|
+
dependencies = [
|
|
2835
|
+
"chrono",
|
|
2836
|
+
"codespan-reporting",
|
|
2837
|
+
"comemo",
|
|
2838
|
+
"dirs 5.0.1",
|
|
2839
|
+
"ecow",
|
|
2840
|
+
"env_logger",
|
|
2841
|
+
"env_proxy",
|
|
2842
|
+
"filetime",
|
|
2843
|
+
"flate2",
|
|
2844
|
+
"fontdb 0.15.0",
|
|
2845
|
+
"log",
|
|
2846
|
+
"magnus",
|
|
2847
|
+
"pathdiff",
|
|
2848
|
+
"rb-sys",
|
|
2849
|
+
"same-file",
|
|
2850
|
+
"serde",
|
|
2851
|
+
"serde_json",
|
|
2852
|
+
"serde_yaml",
|
|
2853
|
+
"siphasher",
|
|
2854
|
+
"tar",
|
|
2855
|
+
"typst 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
2856
|
+
"typst-eval",
|
|
2857
|
+
"typst-html",
|
|
2858
|
+
"typst-kit",
|
|
2859
|
+
"typst-layout",
|
|
2860
|
+
"typst-library",
|
|
2861
|
+
"typst-pdf",
|
|
2862
|
+
"typst-render",
|
|
2863
|
+
"typst-svg",
|
|
2864
|
+
"ureq",
|
|
2865
|
+
"walkdir",
|
|
2866
|
+
]
|
|
2867
|
+
|
|
2868
|
+
[[package]]
|
|
2869
|
+
name = "typst"
|
|
2870
|
+
version = "0.15.0"
|
|
2871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2872
|
+
checksum = "3c8bf2a5a9d58cc542764a88dd43c8a679b683db4ae23e36267219339ab36b01"
|
|
2873
|
+
dependencies = [
|
|
2874
|
+
"arrayvec",
|
|
2875
|
+
"comemo",
|
|
2876
|
+
"ecow",
|
|
2877
|
+
"rustc-hash",
|
|
2878
|
+
"typst-eval",
|
|
2879
|
+
"typst-html",
|
|
2880
|
+
"typst-layout",
|
|
2881
|
+
"typst-library",
|
|
2882
|
+
"typst-macros",
|
|
2883
|
+
"typst-realize",
|
|
2884
|
+
"typst-syntax",
|
|
2885
|
+
"typst-timing",
|
|
2886
|
+
"typst-utils",
|
|
2887
|
+
]
|
|
2888
|
+
|
|
2889
|
+
[[package]]
|
|
2890
|
+
name = "typst-assets"
|
|
2891
|
+
version = "0.15.0"
|
|
2892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2893
|
+
checksum = "da9b236d339dce0ec443dc44afe4ba4c6d76b8917bd4b1ae80158d2111f6637b"
|
|
2894
|
+
dependencies = [
|
|
2895
|
+
"bitflags 2.13.0",
|
|
2896
|
+
]
|
|
2897
|
+
|
|
2898
|
+
[[package]]
|
|
2899
|
+
name = "typst-eval"
|
|
2900
|
+
version = "0.15.0"
|
|
2901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2902
|
+
checksum = "4d064876305073ab75d5af039ae5e8dcb32c4cac4aa9f43d0f5aae347baef7c3"
|
|
2903
|
+
dependencies = [
|
|
2904
|
+
"comemo",
|
|
2905
|
+
"ecow",
|
|
2906
|
+
"indexmap",
|
|
2907
|
+
"rustc-hash",
|
|
2908
|
+
"stacker",
|
|
2909
|
+
"toml",
|
|
2910
|
+
"typst-library",
|
|
2911
|
+
"typst-macros",
|
|
2912
|
+
"typst-syntax",
|
|
2913
|
+
"typst-timing",
|
|
2914
|
+
"typst-utils",
|
|
2915
|
+
"unicode-segmentation",
|
|
2916
|
+
]
|
|
2917
|
+
|
|
2918
|
+
[[package]]
|
|
2919
|
+
name = "typst-html"
|
|
2920
|
+
version = "0.15.0"
|
|
2921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
+
checksum = "d442f92bae44087735efc8b83508b259c573bbccf027e098ac68c8f4ca879f76"
|
|
2923
|
+
dependencies = [
|
|
2924
|
+
"az",
|
|
2925
|
+
"bumpalo",
|
|
2926
|
+
"comemo",
|
|
2927
|
+
"ecow",
|
|
2928
|
+
"palette",
|
|
2929
|
+
"rustc-hash",
|
|
2930
|
+
"time",
|
|
2931
|
+
"typst-assets",
|
|
2932
|
+
"typst-library",
|
|
2933
|
+
"typst-macros",
|
|
2934
|
+
"typst-svg",
|
|
2935
|
+
"typst-syntax",
|
|
2936
|
+
"typst-timing",
|
|
2937
|
+
"typst-utils",
|
|
2938
|
+
"unicode-math-class",
|
|
2939
|
+
]
|
|
2940
|
+
|
|
2941
|
+
[[package]]
|
|
2942
|
+
name = "typst-kit"
|
|
2943
|
+
version = "0.15.0"
|
|
2944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2945
|
+
checksum = "55a24650fc436d32deb55b49fd63f7bcad3a864c96f52587b9934c85e0092d6f"
|
|
2946
|
+
dependencies = [
|
|
2947
|
+
"dirs 6.0.0",
|
|
2948
|
+
"ecow",
|
|
2949
|
+
"env_proxy",
|
|
2950
|
+
"fastrand",
|
|
2951
|
+
"flate2",
|
|
2952
|
+
"fontdb 0.23.0",
|
|
2953
|
+
"native-tls",
|
|
2954
|
+
"once_cell",
|
|
2955
|
+
"openssl",
|
|
2956
|
+
"parking_lot",
|
|
2957
|
+
"rustc-hash",
|
|
2958
|
+
"serde",
|
|
2959
|
+
"serde_json",
|
|
2960
|
+
"tar",
|
|
2961
|
+
"typst-assets",
|
|
2962
|
+
"typst-library",
|
|
2963
|
+
"typst-syntax",
|
|
2964
|
+
"typst-timing",
|
|
2965
|
+
"typst-utils",
|
|
2966
|
+
"ureq",
|
|
2967
|
+
"url",
|
|
2968
|
+
]
|
|
2969
|
+
|
|
2970
|
+
[[package]]
|
|
2971
|
+
name = "typst-layout"
|
|
2972
|
+
version = "0.15.0"
|
|
2973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2974
|
+
checksum = "ae5af3949efc6d02e3d55e79430c9096415fcf68166414c3a0e5fed1c3325d5f"
|
|
2975
|
+
dependencies = [
|
|
2976
|
+
"az",
|
|
2977
|
+
"bumpalo",
|
|
2978
|
+
"codex",
|
|
2979
|
+
"comemo",
|
|
2980
|
+
"ecow",
|
|
2981
|
+
"either",
|
|
2982
|
+
"hypher",
|
|
2983
|
+
"icu_properties",
|
|
2984
|
+
"icu_provider",
|
|
2985
|
+
"icu_provider_blob",
|
|
2986
|
+
"icu_segmenter",
|
|
2987
|
+
"kurbo",
|
|
2988
|
+
"libm",
|
|
2989
|
+
"memchr",
|
|
2990
|
+
"rustc-hash",
|
|
2991
|
+
"rustybuzz",
|
|
2992
|
+
"smallvec",
|
|
2993
|
+
"ttf-parser 0.25.1",
|
|
2994
|
+
"typst-assets",
|
|
2995
|
+
"typst-library",
|
|
2996
|
+
"typst-macros",
|
|
2997
|
+
"typst-syntax",
|
|
2998
|
+
"typst-timing",
|
|
2999
|
+
"typst-utils",
|
|
3000
|
+
"unicode-bidi",
|
|
3001
|
+
"unicode-math-class",
|
|
3002
|
+
"unicode-script",
|
|
3003
|
+
"unicode-segmentation",
|
|
3004
|
+
]
|
|
3005
|
+
|
|
3006
|
+
[[package]]
|
|
3007
|
+
name = "typst-library"
|
|
3008
|
+
version = "0.15.0"
|
|
3009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3010
|
+
checksum = "9550a33d0f4e1965fd7d69abcf10135e965a4ad3a3aee24573b52dda9234e491"
|
|
3011
|
+
dependencies = [
|
|
3012
|
+
"arrayvec",
|
|
3013
|
+
"az",
|
|
3014
|
+
"bitflags 2.13.0",
|
|
3015
|
+
"bumpalo",
|
|
3016
|
+
"ciborium",
|
|
3017
|
+
"codex",
|
|
3018
|
+
"comemo",
|
|
3019
|
+
"csv",
|
|
3020
|
+
"ecow",
|
|
3021
|
+
"either",
|
|
3022
|
+
"flate2",
|
|
3023
|
+
"fontdb 0.23.0",
|
|
3024
|
+
"glidesort",
|
|
3025
|
+
"hayagriva",
|
|
3026
|
+
"hayro-syntax",
|
|
3027
|
+
"icu_properties",
|
|
3028
|
+
"image",
|
|
3029
|
+
"indexmap",
|
|
3030
|
+
"kamadak-exif",
|
|
3031
|
+
"kurbo",
|
|
3032
|
+
"libm",
|
|
3033
|
+
"lipsum",
|
|
3034
|
+
"memchr",
|
|
3035
|
+
"moxcms",
|
|
3036
|
+
"palette",
|
|
3037
|
+
"percent-encoding",
|
|
3038
|
+
"phf",
|
|
3039
|
+
"png 0.18.1",
|
|
3040
|
+
"rayon",
|
|
3041
|
+
"regex",
|
|
3042
|
+
"regex-syntax",
|
|
3043
|
+
"roxmltree 0.21.1",
|
|
3044
|
+
"rust_decimal",
|
|
3045
|
+
"rustc-hash",
|
|
3046
|
+
"rustybuzz",
|
|
3047
|
+
"serde",
|
|
3048
|
+
"serde_json",
|
|
3049
|
+
"serde_yaml",
|
|
3050
|
+
"siphasher",
|
|
3051
|
+
"smallvec",
|
|
3052
|
+
"syntect",
|
|
3053
|
+
"time",
|
|
3054
|
+
"toml",
|
|
3055
|
+
"ttf-parser 0.25.1",
|
|
3056
|
+
"two-face",
|
|
3057
|
+
"typed-arena",
|
|
3058
|
+
"typst-assets",
|
|
3059
|
+
"typst-macros",
|
|
3060
|
+
"typst-syntax",
|
|
3061
|
+
"typst-timing",
|
|
3062
|
+
"typst-utils",
|
|
3063
|
+
"unicode-math-class",
|
|
3064
|
+
"unicode-normalization",
|
|
3065
|
+
"unicode-segmentation",
|
|
3066
|
+
"unscanny",
|
|
3067
|
+
"usvg",
|
|
3068
|
+
"utf8_iter",
|
|
3069
|
+
"wasmi",
|
|
3070
|
+
"xmlwriter",
|
|
3071
|
+
]
|
|
3072
|
+
|
|
3073
|
+
[[package]]
|
|
3074
|
+
name = "typst-macros"
|
|
3075
|
+
version = "0.15.0"
|
|
3076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
+
checksum = "500e2873a544ca161f98183eea7ddb00030d16f4585b5ffa9e9c8e24f53148e1"
|
|
3078
|
+
dependencies = [
|
|
3079
|
+
"heck",
|
|
3080
|
+
"proc-macro2",
|
|
3081
|
+
"quote",
|
|
3082
|
+
"syn",
|
|
3083
|
+
]
|
|
3084
|
+
|
|
3085
|
+
[[package]]
|
|
3086
|
+
name = "typst-pdf"
|
|
3087
|
+
version = "0.15.0"
|
|
3088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3089
|
+
checksum = "cd7b33bcabc3357480768f6c78dda99a838d621c71b4738b25e09ac30ac063c9"
|
|
3090
|
+
dependencies = [
|
|
3091
|
+
"az",
|
|
3092
|
+
"bytemuck",
|
|
3093
|
+
"codex",
|
|
3094
|
+
"comemo",
|
|
3095
|
+
"ecow",
|
|
3096
|
+
"flate2",
|
|
3097
|
+
"image",
|
|
3098
|
+
"indexmap",
|
|
3099
|
+
"infer",
|
|
3100
|
+
"krilla",
|
|
3101
|
+
"krilla-svg",
|
|
3102
|
+
"rustc-hash",
|
|
3103
|
+
"serde",
|
|
3104
|
+
"smallvec",
|
|
3105
|
+
"typst-assets",
|
|
3106
|
+
"typst-layout",
|
|
3107
|
+
"typst-library",
|
|
3108
|
+
"typst-macros",
|
|
3109
|
+
"typst-syntax",
|
|
3110
|
+
"typst-timing",
|
|
3111
|
+
"typst-utils",
|
|
3112
|
+
]
|
|
3113
|
+
|
|
3114
|
+
[[package]]
|
|
3115
|
+
name = "typst-realize"
|
|
3116
|
+
version = "0.15.0"
|
|
3117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3118
|
+
checksum = "917e09614771258b13409b9a8d4f3915b2a2f7f28ca987701695f82fc6a7c0b9"
|
|
3119
|
+
dependencies = [
|
|
3120
|
+
"arrayvec",
|
|
3121
|
+
"bumpalo",
|
|
3122
|
+
"comemo",
|
|
3123
|
+
"ecow",
|
|
3124
|
+
"regex",
|
|
3125
|
+
"typst-html",
|
|
3126
|
+
"typst-library",
|
|
3127
|
+
"typst-macros",
|
|
3128
|
+
"typst-syntax",
|
|
3129
|
+
"typst-timing",
|
|
3130
|
+
"typst-utils",
|
|
3131
|
+
]
|
|
3132
|
+
|
|
3133
|
+
[[package]]
|
|
3134
|
+
name = "typst-render"
|
|
3135
|
+
version = "0.15.0"
|
|
3136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3137
|
+
checksum = "040ab6e56e91099963ef69dd9f0d284adda66c066b742f1866a20b8295ebb2e3"
|
|
3138
|
+
dependencies = [
|
|
3139
|
+
"bytemuck",
|
|
3140
|
+
"comemo",
|
|
3141
|
+
"hayro",
|
|
3142
|
+
"image",
|
|
3143
|
+
"libm",
|
|
3144
|
+
"pixglyph",
|
|
3145
|
+
"resvg",
|
|
3146
|
+
"tiny-skia",
|
|
3147
|
+
"ttf-parser 0.25.1",
|
|
3148
|
+
"typst-assets",
|
|
3149
|
+
"typst-layout",
|
|
3150
|
+
"typst-library",
|
|
3151
|
+
"typst-macros",
|
|
3152
|
+
"typst-timing",
|
|
3153
|
+
"typst-utils",
|
|
3154
|
+
]
|
|
3155
|
+
|
|
3156
|
+
[[package]]
|
|
3157
|
+
name = "typst-svg"
|
|
3158
|
+
version = "0.15.0"
|
|
3159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3160
|
+
checksum = "878b6e1293c2bea77a8be50670d1cbca4e676af96480313a105cba539da51d1c"
|
|
3161
|
+
dependencies = [
|
|
3162
|
+
"base64",
|
|
3163
|
+
"comemo",
|
|
3164
|
+
"ecow",
|
|
3165
|
+
"flate2",
|
|
3166
|
+
"hayro",
|
|
3167
|
+
"hayro-svg",
|
|
3168
|
+
"image",
|
|
3169
|
+
"indexmap",
|
|
3170
|
+
"itoa",
|
|
3171
|
+
"rustc-hash",
|
|
3172
|
+
"ryu",
|
|
3173
|
+
"ttf-parser 0.25.1",
|
|
3174
|
+
"typst-assets",
|
|
3175
|
+
"typst-layout",
|
|
3176
|
+
"typst-library",
|
|
3177
|
+
"typst-macros",
|
|
3178
|
+
"typst-timing",
|
|
3179
|
+
"typst-utils",
|
|
3180
|
+
"xmlwriter",
|
|
3181
|
+
]
|
|
3182
|
+
|
|
3183
|
+
[[package]]
|
|
3184
|
+
name = "typst-syntax"
|
|
3185
|
+
version = "0.15.0"
|
|
3186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3187
|
+
checksum = "22bf7f87450e5841debd4986b0f912b0f7a2251e600c08aca406305ff52c67b4"
|
|
3188
|
+
dependencies = [
|
|
3189
|
+
"ecow",
|
|
3190
|
+
"rustc-hash",
|
|
3191
|
+
"serde",
|
|
3192
|
+
"toml",
|
|
3193
|
+
"typst-timing",
|
|
3194
|
+
"typst-utils",
|
|
3195
|
+
"unicode-ident",
|
|
3196
|
+
"unicode-math-class",
|
|
3197
|
+
"unicode-script",
|
|
3198
|
+
"unicode-segmentation",
|
|
3199
|
+
"unscanny",
|
|
3200
|
+
]
|
|
3201
|
+
|
|
3202
|
+
[[package]]
|
|
3203
|
+
name = "typst-timing"
|
|
3204
|
+
version = "0.15.0"
|
|
3205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3206
|
+
checksum = "6cc0c78ece2ade6ef73d00a13f9c474e02efc3bcfdb770e16d7c4d24e7492773"
|
|
3207
|
+
dependencies = [
|
|
3208
|
+
"parking_lot",
|
|
3209
|
+
"serde",
|
|
3210
|
+
"serde_json",
|
|
3211
|
+
]
|
|
3212
|
+
|
|
3213
|
+
[[package]]
|
|
3214
|
+
name = "typst-utils"
|
|
3215
|
+
version = "0.15.0"
|
|
3216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3217
|
+
checksum = "40215eb2541102ecfb4cf3bef29da53033a82e22dbc2308c43bdb855701bf8d2"
|
|
3218
|
+
dependencies = [
|
|
3219
|
+
"libm",
|
|
3220
|
+
"once_cell",
|
|
3221
|
+
"portable-atomic",
|
|
3222
|
+
"rayon",
|
|
3223
|
+
"rustc-hash",
|
|
3224
|
+
"semver",
|
|
3225
|
+
"siphasher",
|
|
3226
|
+
"smallvec",
|
|
3227
|
+
"thin-vec",
|
|
3228
|
+
"unicode-math-class",
|
|
3229
|
+
]
|
|
3230
|
+
|
|
3231
|
+
[[package]]
|
|
3232
|
+
name = "unic-langid"
|
|
3233
|
+
version = "0.9.6"
|
|
3234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3235
|
+
checksum = "a28ba52c9b05311f4f6e62d5d9d46f094bd6e84cb8df7b3ef952748d752a7d05"
|
|
3236
|
+
dependencies = [
|
|
3237
|
+
"unic-langid-impl",
|
|
3238
|
+
"unic-langid-macros",
|
|
3239
|
+
]
|
|
3240
|
+
|
|
3241
|
+
[[package]]
|
|
3242
|
+
name = "unic-langid-impl"
|
|
3243
|
+
version = "0.9.6"
|
|
3244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3245
|
+
checksum = "dce1bf08044d4b7a94028c93786f8566047edc11110595914de93362559bc658"
|
|
3246
|
+
dependencies = [
|
|
3247
|
+
"serde",
|
|
3248
|
+
"tinystr",
|
|
3249
|
+
]
|
|
3250
|
+
|
|
3251
|
+
[[package]]
|
|
3252
|
+
name = "unic-langid-macros"
|
|
3253
|
+
version = "0.9.6"
|
|
3254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3255
|
+
checksum = "d5957eb82e346d7add14182a3315a7e298f04e1ba4baac36f7f0dbfedba5fc25"
|
|
3256
|
+
dependencies = [
|
|
3257
|
+
"proc-macro-hack",
|
|
3258
|
+
"tinystr",
|
|
3259
|
+
"unic-langid-impl",
|
|
3260
|
+
"unic-langid-macros-impl",
|
|
3261
|
+
]
|
|
3262
|
+
|
|
3263
|
+
[[package]]
|
|
3264
|
+
name = "unic-langid-macros-impl"
|
|
3265
|
+
version = "0.9.6"
|
|
3266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3267
|
+
checksum = "a1249a628de3ad34b821ecb1001355bca3940bcb2f88558f1a8bd82e977f75b5"
|
|
3268
|
+
dependencies = [
|
|
3269
|
+
"proc-macro-hack",
|
|
3270
|
+
"quote",
|
|
3271
|
+
"syn",
|
|
3272
|
+
"unic-langid-impl",
|
|
3273
|
+
]
|
|
3274
|
+
|
|
3275
|
+
[[package]]
|
|
3276
|
+
name = "unicode-bidi"
|
|
3277
|
+
version = "0.3.18"
|
|
3278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3279
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
3280
|
+
|
|
3281
|
+
[[package]]
|
|
3282
|
+
name = "unicode-bidi-mirroring"
|
|
3283
|
+
version = "0.4.0"
|
|
3284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3285
|
+
checksum = "5dfa6e8c60bb66d49db113e0125ee8711b7647b5579dc7f5f19c42357ed039fe"
|
|
3286
|
+
|
|
3287
|
+
[[package]]
|
|
3288
|
+
name = "unicode-ccc"
|
|
3289
|
+
version = "0.4.0"
|
|
3290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3291
|
+
checksum = "ce61d488bcdc9bc8b5d1772c404828b17fc481c0a582b5581e95fb233aef503e"
|
|
3292
|
+
|
|
3293
|
+
[[package]]
|
|
3294
|
+
name = "unicode-ident"
|
|
3295
|
+
version = "1.0.18"
|
|
3296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3297
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
3298
|
+
|
|
3299
|
+
[[package]]
|
|
3300
|
+
name = "unicode-math-class"
|
|
3301
|
+
version = "0.1.0"
|
|
3302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
|
+
checksum = "7d246cf599d5fae3c8d56e04b20eb519adb89a8af8d0b0fbcded369aa3647d65"
|
|
3304
|
+
|
|
3305
|
+
[[package]]
|
|
3306
|
+
name = "unicode-normalization"
|
|
3307
|
+
version = "0.1.24"
|
|
3308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3309
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
|
3310
|
+
dependencies = [
|
|
3311
|
+
"tinyvec",
|
|
3312
|
+
]
|
|
3313
|
+
|
|
3314
|
+
[[package]]
|
|
3315
|
+
name = "unicode-properties"
|
|
3316
|
+
version = "0.1.3"
|
|
3317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3318
|
+
checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
|
|
3319
|
+
|
|
3320
|
+
[[package]]
|
|
3321
|
+
name = "unicode-script"
|
|
3322
|
+
version = "0.5.7"
|
|
3323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3324
|
+
checksum = "9fb421b350c9aff471779e262955939f565ec18b86c15364e6bdf0d662ca7c1f"
|
|
3325
|
+
|
|
3326
|
+
[[package]]
|
|
3327
|
+
name = "unicode-segmentation"
|
|
3328
|
+
version = "1.12.0"
|
|
3329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3330
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3331
|
+
|
|
3332
|
+
[[package]]
|
|
3333
|
+
name = "unicode-vo"
|
|
3334
|
+
version = "0.1.0"
|
|
3335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3336
|
+
checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
|
|
3337
|
+
|
|
3338
|
+
[[package]]
|
|
3339
|
+
name = "unicode-width"
|
|
3340
|
+
version = "0.1.14"
|
|
3341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3342
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
3343
|
+
|
|
3344
|
+
[[package]]
|
|
3345
|
+
name = "unsafe-libyaml"
|
|
3346
|
+
version = "0.2.11"
|
|
3347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3348
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
3349
|
+
|
|
3350
|
+
[[package]]
|
|
3351
|
+
name = "unscanny"
|
|
3352
|
+
version = "0.1.0"
|
|
3353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3354
|
+
checksum = "e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47"
|
|
3355
|
+
|
|
3356
|
+
[[package]]
|
|
3357
|
+
name = "ureq"
|
|
3358
|
+
version = "2.12.1"
|
|
3359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3360
|
+
checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
|
|
3361
|
+
dependencies = [
|
|
3362
|
+
"base64",
|
|
3363
|
+
"flate2",
|
|
3364
|
+
"log",
|
|
3365
|
+
"native-tls",
|
|
3366
|
+
"once_cell",
|
|
3367
|
+
"serde",
|
|
3368
|
+
"serde_json",
|
|
3369
|
+
"socks",
|
|
3370
|
+
"url",
|
|
3371
|
+
]
|
|
3372
|
+
|
|
3373
|
+
[[package]]
|
|
3374
|
+
name = "url"
|
|
3375
|
+
version = "2.5.4"
|
|
3376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3377
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
|
3378
|
+
dependencies = [
|
|
3379
|
+
"form_urlencoded",
|
|
3380
|
+
"idna",
|
|
3381
|
+
"percent-encoding",
|
|
3382
|
+
"serde",
|
|
3383
|
+
]
|
|
3384
|
+
|
|
3385
|
+
[[package]]
|
|
3386
|
+
name = "usvg"
|
|
3387
|
+
version = "0.47.0"
|
|
3388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3389
|
+
checksum = "d46cf96c5f498d36b7a9693bc6a7075c0bb9303189d61b2249b0dc3d309c07de"
|
|
3390
|
+
dependencies = [
|
|
3391
|
+
"base64",
|
|
3392
|
+
"data-url",
|
|
3393
|
+
"flate2",
|
|
3394
|
+
"fontdb 0.23.0",
|
|
3395
|
+
"imagesize",
|
|
3396
|
+
"kurbo",
|
|
3397
|
+
"log",
|
|
3398
|
+
"pico-args",
|
|
3399
|
+
"roxmltree 0.21.1",
|
|
3400
|
+
"rustybuzz",
|
|
3401
|
+
"simplecss",
|
|
3402
|
+
"siphasher",
|
|
3403
|
+
"strict-num",
|
|
3404
|
+
"svgtypes",
|
|
3405
|
+
"tiny-skia-path",
|
|
3406
|
+
"ttf-parser 0.25.1",
|
|
3407
|
+
"unicode-bidi",
|
|
3408
|
+
"unicode-script",
|
|
3409
|
+
"unicode-vo",
|
|
3410
|
+
"xmlwriter",
|
|
3411
|
+
]
|
|
3412
|
+
|
|
3413
|
+
[[package]]
|
|
3414
|
+
name = "utf16_iter"
|
|
3415
|
+
version = "1.0.5"
|
|
3416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3417
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
3418
|
+
|
|
3419
|
+
[[package]]
|
|
3420
|
+
name = "utf8_iter"
|
|
3421
|
+
version = "1.0.4"
|
|
3422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3423
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3424
|
+
|
|
3425
|
+
[[package]]
|
|
3426
|
+
name = "vcpkg"
|
|
3427
|
+
version = "0.2.15"
|
|
3428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3429
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
3430
|
+
|
|
3431
|
+
[[package]]
|
|
3432
|
+
name = "vello_common"
|
|
3433
|
+
version = "0.0.8"
|
|
3434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3435
|
+
checksum = "3361bff7f7d82c0c496b92048db83846691f0e844cc28dee92b1c824291b55ee"
|
|
3436
|
+
dependencies = [
|
|
3437
|
+
"bytemuck",
|
|
3438
|
+
"fearless_simd",
|
|
3439
|
+
"guillotiere",
|
|
3440
|
+
"hashbrown 0.17.1",
|
|
3441
|
+
"log",
|
|
3442
|
+
"peniko",
|
|
3443
|
+
"png 0.18.1",
|
|
3444
|
+
"smallvec",
|
|
3445
|
+
"thiserror 2.0.18",
|
|
3446
|
+
]
|
|
3447
|
+
|
|
3448
|
+
[[package]]
|
|
3449
|
+
name = "vello_common"
|
|
3450
|
+
version = "0.0.9"
|
|
3451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3452
|
+
checksum = "19d672facaa2d697285a786cd9d44d614cd2ce54cdc022504bf339f8fff3b750"
|
|
3453
|
+
dependencies = [
|
|
3454
|
+
"bytemuck",
|
|
3455
|
+
"fearless_simd",
|
|
3456
|
+
"guillotiere",
|
|
3457
|
+
"hashbrown 0.17.1",
|
|
3458
|
+
"log",
|
|
3459
|
+
"peniko",
|
|
3460
|
+
"png 0.18.1",
|
|
3461
|
+
"smallvec",
|
|
3462
|
+
"thiserror 2.0.18",
|
|
3463
|
+
]
|
|
3464
|
+
|
|
3465
|
+
[[package]]
|
|
3466
|
+
name = "vello_cpu"
|
|
3467
|
+
version = "0.0.8"
|
|
3468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3469
|
+
checksum = "6d8ded630e8316bb94a55881256506d1f3b9947b5f66db8a7d32ca7ba02decd0"
|
|
3470
|
+
dependencies = [
|
|
3471
|
+
"bytemuck",
|
|
3472
|
+
"glifo",
|
|
3473
|
+
"hashbrown 0.17.1",
|
|
3474
|
+
"png 0.18.1",
|
|
3475
|
+
"vello_common 0.0.8",
|
|
3476
|
+
]
|
|
3477
|
+
|
|
3478
|
+
[[package]]
|
|
3479
|
+
name = "version_check"
|
|
3480
|
+
version = "0.9.5"
|
|
3481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3482
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3483
|
+
|
|
3484
|
+
[[package]]
|
|
3485
|
+
name = "walkdir"
|
|
3486
|
+
version = "2.5.0"
|
|
3487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3488
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3489
|
+
dependencies = [
|
|
3490
|
+
"same-file",
|
|
3491
|
+
"winapi-util",
|
|
3492
|
+
]
|
|
3493
|
+
|
|
3494
|
+
[[package]]
|
|
3495
|
+
name = "wasi"
|
|
3496
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3498
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3499
|
+
|
|
3500
|
+
[[package]]
|
|
3501
|
+
name = "wasi"
|
|
3502
|
+
version = "0.14.2+wasi-0.2.4"
|
|
3503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3504
|
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
|
|
3505
|
+
dependencies = [
|
|
3506
|
+
"wit-bindgen-rt",
|
|
3507
|
+
]
|
|
3508
|
+
|
|
3509
|
+
[[package]]
|
|
3510
|
+
name = "wasm-bindgen"
|
|
3511
|
+
version = "0.2.100"
|
|
3512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3513
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
|
3514
|
+
dependencies = [
|
|
3515
|
+
"cfg-if",
|
|
3516
|
+
"once_cell",
|
|
3517
|
+
"rustversion",
|
|
3518
|
+
"wasm-bindgen-macro",
|
|
3519
|
+
]
|
|
3520
|
+
|
|
3521
|
+
[[package]]
|
|
3522
|
+
name = "wasm-bindgen-backend"
|
|
3523
|
+
version = "0.2.100"
|
|
3524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3525
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
3526
|
+
dependencies = [
|
|
3527
|
+
"bumpalo",
|
|
3528
|
+
"log",
|
|
3529
|
+
"proc-macro2",
|
|
3530
|
+
"quote",
|
|
3531
|
+
"syn",
|
|
3532
|
+
"wasm-bindgen-shared",
|
|
3533
|
+
]
|
|
3534
|
+
|
|
3535
|
+
[[package]]
|
|
3536
|
+
name = "wasm-bindgen-macro"
|
|
3537
|
+
version = "0.2.100"
|
|
3538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3539
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
|
3540
|
+
dependencies = [
|
|
3541
|
+
"quote",
|
|
3542
|
+
"wasm-bindgen-macro-support",
|
|
3543
|
+
]
|
|
3544
|
+
|
|
3545
|
+
[[package]]
|
|
3546
|
+
name = "wasm-bindgen-macro-support"
|
|
3547
|
+
version = "0.2.100"
|
|
3548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3549
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
|
3550
|
+
dependencies = [
|
|
3551
|
+
"proc-macro2",
|
|
3552
|
+
"quote",
|
|
3553
|
+
"syn",
|
|
3554
|
+
"wasm-bindgen-backend",
|
|
3555
|
+
"wasm-bindgen-shared",
|
|
3556
|
+
]
|
|
3557
|
+
|
|
3558
|
+
[[package]]
|
|
3559
|
+
name = "wasm-bindgen-shared"
|
|
3560
|
+
version = "0.2.100"
|
|
3561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3562
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
|
3563
|
+
dependencies = [
|
|
3564
|
+
"unicode-ident",
|
|
3565
|
+
]
|
|
3566
|
+
|
|
3567
|
+
[[package]]
|
|
3568
|
+
name = "wasmi"
|
|
3569
|
+
version = "1.1.0"
|
|
3570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3571
|
+
checksum = "2300d0f78cba12f14e29e8dd157ea64050c0a688179aefdb2050105805594a0c"
|
|
3572
|
+
dependencies = [
|
|
3573
|
+
"spin",
|
|
3574
|
+
"wasmi_collections",
|
|
3575
|
+
"wasmi_core",
|
|
3576
|
+
"wasmi_ir",
|
|
3577
|
+
"wasmparser",
|
|
3578
|
+
]
|
|
3579
|
+
|
|
3580
|
+
[[package]]
|
|
3581
|
+
name = "wasmi_collections"
|
|
3582
|
+
version = "1.1.0"
|
|
3583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3584
|
+
checksum = "f8a8c42a2a76148d43097b1d7cc2a5bf33d5c23bd4dd69015fc887e311767884"
|
|
3585
|
+
|
|
3586
|
+
[[package]]
|
|
3587
|
+
name = "wasmi_core"
|
|
3588
|
+
version = "1.1.0"
|
|
3589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3590
|
+
checksum = "9013136083d988725953390bf668b64b7a218fabf26f8b913bbc59546b97ee27"
|
|
3591
|
+
dependencies = [
|
|
3592
|
+
"libm",
|
|
3593
|
+
]
|
|
3594
|
+
|
|
3595
|
+
[[package]]
|
|
3596
|
+
name = "wasmi_ir"
|
|
3597
|
+
version = "1.1.0"
|
|
3598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3599
|
+
checksum = "ba1fa003f79156f406d62ef0e1464dc03e11ace37170e9fa7524299a75ad8f68"
|
|
3600
|
+
dependencies = [
|
|
3601
|
+
"wasmi_core",
|
|
3602
|
+
]
|
|
3603
|
+
|
|
3604
|
+
[[package]]
|
|
3605
|
+
name = "wasmparser"
|
|
3606
|
+
version = "0.239.0"
|
|
3607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3608
|
+
checksum = "8c9d90bb93e764f6beabf1d02028c70a2156a6583e63ac4218dd07ef733368b0"
|
|
3609
|
+
dependencies = [
|
|
3610
|
+
"bitflags 2.13.0",
|
|
3611
|
+
]
|
|
3612
|
+
|
|
3613
|
+
[[package]]
|
|
3614
|
+
name = "weezl"
|
|
3615
|
+
version = "0.1.10"
|
|
3616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3617
|
+
checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3"
|
|
3618
|
+
|
|
3619
|
+
[[package]]
|
|
3620
|
+
name = "winapi"
|
|
3621
|
+
version = "0.3.9"
|
|
3622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3623
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3624
|
+
dependencies = [
|
|
3625
|
+
"winapi-i686-pc-windows-gnu",
|
|
3626
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3627
|
+
]
|
|
3628
|
+
|
|
3629
|
+
[[package]]
|
|
3630
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3631
|
+
version = "0.4.0"
|
|
3632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3633
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3634
|
+
|
|
3635
|
+
[[package]]
|
|
3636
|
+
name = "winapi-util"
|
|
3637
|
+
version = "0.1.9"
|
|
3638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3639
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
3640
|
+
dependencies = [
|
|
3641
|
+
"windows-sys 0.59.0",
|
|
3642
|
+
]
|
|
3643
|
+
|
|
3644
|
+
[[package]]
|
|
3645
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3646
|
+
version = "0.4.0"
|
|
3647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3648
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3649
|
+
|
|
3650
|
+
[[package]]
|
|
3651
|
+
name = "windows-core"
|
|
3652
|
+
version = "0.61.2"
|
|
3653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3654
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
3655
|
+
dependencies = [
|
|
3656
|
+
"windows-implement",
|
|
3657
|
+
"windows-interface",
|
|
3658
|
+
"windows-link 0.1.3",
|
|
3659
|
+
"windows-result",
|
|
3660
|
+
"windows-strings",
|
|
3661
|
+
]
|
|
3662
|
+
|
|
3663
|
+
[[package]]
|
|
3664
|
+
name = "windows-implement"
|
|
3665
|
+
version = "0.60.0"
|
|
3666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3667
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
3668
|
+
dependencies = [
|
|
3669
|
+
"proc-macro2",
|
|
3670
|
+
"quote",
|
|
3671
|
+
"syn",
|
|
3672
|
+
]
|
|
3673
|
+
|
|
3674
|
+
[[package]]
|
|
3675
|
+
name = "windows-interface"
|
|
3676
|
+
version = "0.59.1"
|
|
3677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3678
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
3679
|
+
dependencies = [
|
|
3680
|
+
"proc-macro2",
|
|
3681
|
+
"quote",
|
|
3682
|
+
"syn",
|
|
3683
|
+
]
|
|
3684
|
+
|
|
3685
|
+
[[package]]
|
|
3686
|
+
name = "windows-link"
|
|
3687
|
+
version = "0.1.3"
|
|
3688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3689
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
3690
|
+
|
|
3691
|
+
[[package]]
|
|
3692
|
+
name = "windows-link"
|
|
3693
|
+
version = "0.2.1"
|
|
3694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3695
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3696
|
+
|
|
3697
|
+
[[package]]
|
|
3698
|
+
name = "windows-result"
|
|
3699
|
+
version = "0.3.4"
|
|
3700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3701
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
3702
|
+
dependencies = [
|
|
3703
|
+
"windows-link 0.1.3",
|
|
3704
|
+
]
|
|
3705
|
+
|
|
3706
|
+
[[package]]
|
|
3707
|
+
name = "windows-strings"
|
|
3708
|
+
version = "0.4.2"
|
|
3709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3710
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
3711
|
+
dependencies = [
|
|
3712
|
+
"windows-link 0.1.3",
|
|
3713
|
+
]
|
|
3714
|
+
|
|
3715
|
+
[[package]]
|
|
3716
|
+
name = "windows-sys"
|
|
3717
|
+
version = "0.48.0"
|
|
3718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3719
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
3720
|
+
dependencies = [
|
|
3721
|
+
"windows-targets 0.48.5",
|
|
3722
|
+
]
|
|
3723
|
+
|
|
3724
|
+
[[package]]
|
|
3725
|
+
name = "windows-sys"
|
|
3726
|
+
version = "0.59.0"
|
|
3727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3728
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3729
|
+
dependencies = [
|
|
3730
|
+
"windows-targets 0.52.6",
|
|
3731
|
+
]
|
|
3732
|
+
|
|
3733
|
+
[[package]]
|
|
3734
|
+
name = "windows-sys"
|
|
3735
|
+
version = "0.60.2"
|
|
3736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3737
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3738
|
+
dependencies = [
|
|
3739
|
+
"windows-targets 0.53.2",
|
|
3740
|
+
]
|
|
3741
|
+
|
|
3742
|
+
[[package]]
|
|
3743
|
+
name = "windows-targets"
|
|
3744
|
+
version = "0.48.5"
|
|
3745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3746
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
3747
|
+
dependencies = [
|
|
3748
|
+
"windows_aarch64_gnullvm 0.48.5",
|
|
3749
|
+
"windows_aarch64_msvc 0.48.5",
|
|
3750
|
+
"windows_i686_gnu 0.48.5",
|
|
3751
|
+
"windows_i686_msvc 0.48.5",
|
|
3752
|
+
"windows_x86_64_gnu 0.48.5",
|
|
3753
|
+
"windows_x86_64_gnullvm 0.48.5",
|
|
3754
|
+
"windows_x86_64_msvc 0.48.5",
|
|
3755
|
+
]
|
|
3756
|
+
|
|
3757
|
+
[[package]]
|
|
3758
|
+
name = "windows-targets"
|
|
3759
|
+
version = "0.52.6"
|
|
3760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3761
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3762
|
+
dependencies = [
|
|
3763
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3764
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3765
|
+
"windows_i686_gnu 0.52.6",
|
|
3766
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3767
|
+
"windows_i686_msvc 0.52.6",
|
|
3768
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3769
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3770
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3771
|
+
]
|
|
3772
|
+
|
|
3773
|
+
[[package]]
|
|
3774
|
+
name = "windows-targets"
|
|
3775
|
+
version = "0.53.2"
|
|
3776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3777
|
+
checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
|
|
3778
|
+
dependencies = [
|
|
3779
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
3780
|
+
"windows_aarch64_msvc 0.53.0",
|
|
3781
|
+
"windows_i686_gnu 0.53.0",
|
|
3782
|
+
"windows_i686_gnullvm 0.53.0",
|
|
3783
|
+
"windows_i686_msvc 0.53.0",
|
|
3784
|
+
"windows_x86_64_gnu 0.53.0",
|
|
3785
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
3786
|
+
"windows_x86_64_msvc 0.53.0",
|
|
3787
|
+
]
|
|
3788
|
+
|
|
3789
|
+
[[package]]
|
|
3790
|
+
name = "windows_aarch64_gnullvm"
|
|
3791
|
+
version = "0.48.5"
|
|
3792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3793
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
3794
|
+
|
|
3795
|
+
[[package]]
|
|
3796
|
+
name = "windows_aarch64_gnullvm"
|
|
3797
|
+
version = "0.52.6"
|
|
3798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3799
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3800
|
+
|
|
3801
|
+
[[package]]
|
|
3802
|
+
name = "windows_aarch64_gnullvm"
|
|
3803
|
+
version = "0.53.0"
|
|
3804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3805
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
3806
|
+
|
|
3807
|
+
[[package]]
|
|
3808
|
+
name = "windows_aarch64_msvc"
|
|
3809
|
+
version = "0.48.5"
|
|
3810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3811
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
3812
|
+
|
|
3813
|
+
[[package]]
|
|
3814
|
+
name = "windows_aarch64_msvc"
|
|
3815
|
+
version = "0.52.6"
|
|
3816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3817
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3818
|
+
|
|
3819
|
+
[[package]]
|
|
3820
|
+
name = "windows_aarch64_msvc"
|
|
3821
|
+
version = "0.53.0"
|
|
3822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3823
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
3824
|
+
|
|
3825
|
+
[[package]]
|
|
3826
|
+
name = "windows_i686_gnu"
|
|
3827
|
+
version = "0.48.5"
|
|
3828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3829
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
3830
|
+
|
|
3831
|
+
[[package]]
|
|
3832
|
+
name = "windows_i686_gnu"
|
|
3833
|
+
version = "0.52.6"
|
|
3834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3835
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3836
|
+
|
|
3837
|
+
[[package]]
|
|
3838
|
+
name = "windows_i686_gnu"
|
|
3839
|
+
version = "0.53.0"
|
|
3840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3841
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
3842
|
+
|
|
3843
|
+
[[package]]
|
|
3844
|
+
name = "windows_i686_gnullvm"
|
|
3845
|
+
version = "0.52.6"
|
|
3846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3847
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3848
|
+
|
|
3849
|
+
[[package]]
|
|
3850
|
+
name = "windows_i686_gnullvm"
|
|
3851
|
+
version = "0.53.0"
|
|
3852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3853
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
3854
|
+
|
|
3855
|
+
[[package]]
|
|
3856
|
+
name = "windows_i686_msvc"
|
|
3857
|
+
version = "0.48.5"
|
|
3858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3859
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
3860
|
+
|
|
3861
|
+
[[package]]
|
|
3862
|
+
name = "windows_i686_msvc"
|
|
3863
|
+
version = "0.52.6"
|
|
3864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3865
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3866
|
+
|
|
3867
|
+
[[package]]
|
|
3868
|
+
name = "windows_i686_msvc"
|
|
3869
|
+
version = "0.53.0"
|
|
3870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3871
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
3872
|
+
|
|
3873
|
+
[[package]]
|
|
3874
|
+
name = "windows_x86_64_gnu"
|
|
3875
|
+
version = "0.48.5"
|
|
3876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3877
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
3878
|
+
|
|
3879
|
+
[[package]]
|
|
3880
|
+
name = "windows_x86_64_gnu"
|
|
3881
|
+
version = "0.52.6"
|
|
3882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3883
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3884
|
+
|
|
3885
|
+
[[package]]
|
|
3886
|
+
name = "windows_x86_64_gnu"
|
|
3887
|
+
version = "0.53.0"
|
|
3888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3889
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
3890
|
+
|
|
3891
|
+
[[package]]
|
|
3892
|
+
name = "windows_x86_64_gnullvm"
|
|
3893
|
+
version = "0.48.5"
|
|
3894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3895
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
3896
|
+
|
|
3897
|
+
[[package]]
|
|
3898
|
+
name = "windows_x86_64_gnullvm"
|
|
3899
|
+
version = "0.52.6"
|
|
3900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3901
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3902
|
+
|
|
3903
|
+
[[package]]
|
|
3904
|
+
name = "windows_x86_64_gnullvm"
|
|
3905
|
+
version = "0.53.0"
|
|
3906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3907
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
3908
|
+
|
|
3909
|
+
[[package]]
|
|
3910
|
+
name = "windows_x86_64_msvc"
|
|
3911
|
+
version = "0.48.5"
|
|
3912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3913
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
3914
|
+
|
|
3915
|
+
[[package]]
|
|
3916
|
+
name = "windows_x86_64_msvc"
|
|
3917
|
+
version = "0.52.6"
|
|
3918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3919
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3920
|
+
|
|
3921
|
+
[[package]]
|
|
3922
|
+
name = "windows_x86_64_msvc"
|
|
3923
|
+
version = "0.53.0"
|
|
3924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3925
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
3926
|
+
|
|
3927
|
+
[[package]]
|
|
3928
|
+
name = "winnow"
|
|
3929
|
+
version = "0.7.11"
|
|
3930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3931
|
+
checksum = "74c7b26e3480b707944fc872477815d29a8e429d2f93a1ce000f5fa84a15cbcd"
|
|
3932
|
+
dependencies = [
|
|
3933
|
+
"memchr",
|
|
3934
|
+
]
|
|
3935
|
+
|
|
3936
|
+
[[package]]
|
|
3937
|
+
name = "wit-bindgen-rt"
|
|
3938
|
+
version = "0.39.0"
|
|
3939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3940
|
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
3941
|
+
dependencies = [
|
|
3942
|
+
"bitflags 2.13.0",
|
|
3943
|
+
]
|
|
3944
|
+
|
|
3945
|
+
[[package]]
|
|
3946
|
+
name = "write-fonts"
|
|
3947
|
+
version = "0.48.1"
|
|
3948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3949
|
+
checksum = "cb731d4c4d93eacc69a1ad2f270f905788a98e4a3438267bcafbe08d3431c8d8"
|
|
3950
|
+
dependencies = [
|
|
3951
|
+
"font-types",
|
|
3952
|
+
"indexmap",
|
|
3953
|
+
"kurbo",
|
|
3954
|
+
"log",
|
|
3955
|
+
"read-fonts",
|
|
3956
|
+
]
|
|
3957
|
+
|
|
3958
|
+
[[package]]
|
|
3959
|
+
name = "write16"
|
|
3960
|
+
version = "1.0.0"
|
|
3961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3962
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
|
3963
|
+
|
|
3964
|
+
[[package]]
|
|
3965
|
+
name = "writeable"
|
|
3966
|
+
version = "0.6.3"
|
|
3967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3968
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
3969
|
+
|
|
3970
|
+
[[package]]
|
|
3971
|
+
name = "xattr"
|
|
3972
|
+
version = "1.5.1"
|
|
3973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3974
|
+
checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909"
|
|
3975
|
+
dependencies = [
|
|
3976
|
+
"libc",
|
|
3977
|
+
"rustix",
|
|
3978
|
+
]
|
|
3979
|
+
|
|
3980
|
+
[[package]]
|
|
3981
|
+
name = "xmlwriter"
|
|
3982
|
+
version = "0.1.0"
|
|
3983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3984
|
+
checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
|
|
3985
|
+
|
|
3986
|
+
[[package]]
|
|
3987
|
+
name = "xmp-writer"
|
|
3988
|
+
version = "0.3.3"
|
|
3989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3990
|
+
checksum = "9440ea3e5aeabb0ac63af70daf835274065238cdd0cec83418f417eae38bacee"
|
|
3991
|
+
|
|
3992
|
+
[[package]]
|
|
3993
|
+
name = "yaml-rust"
|
|
3994
|
+
version = "0.4.5"
|
|
3995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3996
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
|
3997
|
+
dependencies = [
|
|
3998
|
+
"linked-hash-map",
|
|
3999
|
+
]
|
|
4000
|
+
|
|
4001
|
+
[[package]]
|
|
4002
|
+
name = "yoke"
|
|
4003
|
+
version = "0.8.3"
|
|
4004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4005
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
4006
|
+
dependencies = [
|
|
4007
|
+
"stable_deref_trait",
|
|
4008
|
+
"yoke-derive",
|
|
4009
|
+
"zerofrom",
|
|
4010
|
+
]
|
|
4011
|
+
|
|
4012
|
+
[[package]]
|
|
4013
|
+
name = "yoke-derive"
|
|
4014
|
+
version = "0.8.2"
|
|
4015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4016
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
4017
|
+
dependencies = [
|
|
4018
|
+
"proc-macro2",
|
|
4019
|
+
"quote",
|
|
4020
|
+
"syn",
|
|
4021
|
+
"synstructure",
|
|
4022
|
+
]
|
|
4023
|
+
|
|
4024
|
+
[[package]]
|
|
4025
|
+
name = "zerocopy"
|
|
4026
|
+
version = "0.8.26"
|
|
4027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4028
|
+
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
|
|
4029
|
+
dependencies = [
|
|
4030
|
+
"zerocopy-derive",
|
|
4031
|
+
]
|
|
4032
|
+
|
|
4033
|
+
[[package]]
|
|
4034
|
+
name = "zerocopy-derive"
|
|
4035
|
+
version = "0.8.26"
|
|
4036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4037
|
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
|
|
4038
|
+
dependencies = [
|
|
4039
|
+
"proc-macro2",
|
|
4040
|
+
"quote",
|
|
4041
|
+
"syn",
|
|
4042
|
+
]
|
|
4043
|
+
|
|
4044
|
+
[[package]]
|
|
4045
|
+
name = "zerofrom"
|
|
4046
|
+
version = "0.1.6"
|
|
4047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4048
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4049
|
+
dependencies = [
|
|
4050
|
+
"zerofrom-derive",
|
|
4051
|
+
]
|
|
4052
|
+
|
|
4053
|
+
[[package]]
|
|
4054
|
+
name = "zerofrom-derive"
|
|
4055
|
+
version = "0.1.6"
|
|
4056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4057
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4058
|
+
dependencies = [
|
|
4059
|
+
"proc-macro2",
|
|
4060
|
+
"quote",
|
|
4061
|
+
"syn",
|
|
4062
|
+
"synstructure",
|
|
4063
|
+
]
|
|
4064
|
+
|
|
4065
|
+
[[package]]
|
|
4066
|
+
name = "zerotrie"
|
|
4067
|
+
version = "0.2.4"
|
|
4068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4069
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
4070
|
+
dependencies = [
|
|
4071
|
+
"displaydoc",
|
|
4072
|
+
"litemap",
|
|
4073
|
+
"serde_core",
|
|
4074
|
+
"yoke",
|
|
4075
|
+
"zerofrom",
|
|
4076
|
+
"zerovec",
|
|
4077
|
+
]
|
|
4078
|
+
|
|
4079
|
+
[[package]]
|
|
4080
|
+
name = "zerovec"
|
|
4081
|
+
version = "0.11.6"
|
|
4082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4083
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
4084
|
+
dependencies = [
|
|
4085
|
+
"serde",
|
|
4086
|
+
"yoke",
|
|
4087
|
+
"zerofrom",
|
|
4088
|
+
"zerovec-derive",
|
|
4089
|
+
]
|
|
4090
|
+
|
|
4091
|
+
[[package]]
|
|
4092
|
+
name = "zerovec-derive"
|
|
4093
|
+
version = "0.11.3"
|
|
4094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4095
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
4096
|
+
dependencies = [
|
|
4097
|
+
"proc-macro2",
|
|
4098
|
+
"quote",
|
|
4099
|
+
"syn",
|
|
4100
|
+
]
|
|
4101
|
+
|
|
4102
|
+
[[package]]
|
|
4103
|
+
name = "zlib-rs"
|
|
4104
|
+
version = "0.5.2"
|
|
4105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4106
|
+
checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
|
|
4107
|
+
|
|
4108
|
+
[[package]]
|
|
4109
|
+
name = "zune-core"
|
|
4110
|
+
version = "0.4.12"
|
|
4111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4112
|
+
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
|
|
4113
|
+
|
|
4114
|
+
[[package]]
|
|
4115
|
+
name = "zune-core"
|
|
4116
|
+
version = "0.5.1"
|
|
4117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4118
|
+
checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
|
|
4119
|
+
|
|
4120
|
+
[[package]]
|
|
4121
|
+
name = "zune-jpeg"
|
|
4122
|
+
version = "0.4.18"
|
|
4123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4124
|
+
checksum = "7384255a918371b5af158218d131530f694de9ad3815ebdd0453a940485cb0fa"
|
|
4125
|
+
dependencies = [
|
|
4126
|
+
"zune-core 0.4.12",
|
|
4127
|
+
]
|
|
4128
|
+
|
|
4129
|
+
[[package]]
|
|
4130
|
+
name = "zune-jpeg"
|
|
4131
|
+
version = "0.5.15"
|
|
4132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4133
|
+
checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
|
|
4134
|
+
dependencies = [
|
|
4135
|
+
"zune-core 0.5.1",
|
|
4136
|
+
]
|