zpl_renderer 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +23 -0
- data/COMPATIBILITY.md +64 -0
- data/LICENSE.txt +24 -0
- data/README.md +147 -0
- data/exe/zpl-render +95 -0
- data/lib/zpl_renderer/binary.rb +63 -0
- data/lib/zpl_renderer/decoder.rb +42 -0
- data/lib/zpl_renderer/engine.rb +87 -0
- data/lib/zpl_renderer/errors.rb +14 -0
- data/lib/zpl_renderer/options.rb +139 -0
- data/lib/zpl_renderer/renderer.rb +23 -0
- data/lib/zpl_renderer/sanitizer.rb +156 -0
- data/lib/zpl_renderer/validation.rb +185 -0
- data/lib/zpl_renderer/version.rb +5 -0
- data/lib/zpl_renderer.rb +85 -0
- data/renderer/Cargo.lock +2473 -0
- data/renderer/Cargo.toml +25 -0
- data/renderer/src/main.rs +310 -0
- data/vendor/bin/SHA256SUMS +1 -0
- data/vendor/bin/x86_64-unknown-linux-gnu/zpl-renderer +0 -0
- metadata +113 -0
data/renderer/Cargo.lock
ADDED
|
@@ -0,0 +1,2473 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ab_glyph"
|
|
7
|
+
version = "0.2.32"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "01c0457472c38ea5bd1c3b5ada5e368271cb550be7a4ca4a0b4634e9913f6cc2"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"ab_glyph_rasterizer",
|
|
12
|
+
"owned_ttf_parser",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[[package]]
|
|
16
|
+
name = "ab_glyph_rasterizer"
|
|
17
|
+
version = "0.1.10"
|
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
+
checksum = "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618"
|
|
20
|
+
|
|
21
|
+
[[package]]
|
|
22
|
+
name = "adler2"
|
|
23
|
+
version = "2.0.1"
|
|
24
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
26
|
+
|
|
27
|
+
[[package]]
|
|
28
|
+
name = "aes"
|
|
29
|
+
version = "0.8.4"
|
|
30
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
32
|
+
dependencies = [
|
|
33
|
+
"cfg-if",
|
|
34
|
+
"cipher",
|
|
35
|
+
"cpufeatures 0.2.17",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "aho-corasick"
|
|
40
|
+
version = "1.1.4"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"memchr",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "aligned"
|
|
49
|
+
version = "0.4.3"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"as-slice",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "aligned-vec"
|
|
58
|
+
version = "0.6.4"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"equator",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "android_system_properties"
|
|
67
|
+
version = "0.1.5"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"libc",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "anstream"
|
|
76
|
+
version = "1.0.0"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"anstyle",
|
|
81
|
+
"anstyle-parse",
|
|
82
|
+
"anstyle-query",
|
|
83
|
+
"anstyle-wincon",
|
|
84
|
+
"colorchoice",
|
|
85
|
+
"is_terminal_polyfill",
|
|
86
|
+
"utf8parse",
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "anstyle"
|
|
91
|
+
version = "1.0.14"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "anstyle-parse"
|
|
97
|
+
version = "1.0.0"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
100
|
+
dependencies = [
|
|
101
|
+
"utf8parse",
|
|
102
|
+
]
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "anstyle-query"
|
|
106
|
+
version = "1.1.5"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
109
|
+
dependencies = [
|
|
110
|
+
"windows-sys",
|
|
111
|
+
]
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "anstyle-wincon"
|
|
115
|
+
version = "3.0.11"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
118
|
+
dependencies = [
|
|
119
|
+
"anstyle",
|
|
120
|
+
"once_cell_polyfill",
|
|
121
|
+
"windows-sys",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "anyhow"
|
|
126
|
+
version = "1.0.104"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "approx"
|
|
132
|
+
version = "0.5.1"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
135
|
+
dependencies = [
|
|
136
|
+
"num-traits",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "arbitrary"
|
|
141
|
+
version = "1.4.2"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "arg_enum_proc_macro"
|
|
147
|
+
version = "0.3.4"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"proc-macro2",
|
|
152
|
+
"quote",
|
|
153
|
+
"syn 2.0.119",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "arrayvec"
|
|
158
|
+
version = "0.7.8"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "as-slice"
|
|
164
|
+
version = "0.2.1"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"stable_deref_trait",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "autocfg"
|
|
173
|
+
version = "1.5.1"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "av-scenechange"
|
|
179
|
+
version = "0.14.1"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"aligned",
|
|
184
|
+
"anyhow",
|
|
185
|
+
"arg_enum_proc_macro",
|
|
186
|
+
"arrayvec",
|
|
187
|
+
"log",
|
|
188
|
+
"num-rational",
|
|
189
|
+
"num-traits",
|
|
190
|
+
"pastey",
|
|
191
|
+
"rayon",
|
|
192
|
+
"thiserror",
|
|
193
|
+
"v_frame",
|
|
194
|
+
"y4m",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "av1-grain"
|
|
199
|
+
version = "0.2.5"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"anyhow",
|
|
204
|
+
"arrayvec",
|
|
205
|
+
"log",
|
|
206
|
+
"nom",
|
|
207
|
+
"num-rational",
|
|
208
|
+
"v_frame",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "avif-serialize"
|
|
213
|
+
version = "0.8.9"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "e7178fe5f7d460b13895ebb9dcb28a3a6216d2df2574a0806cb51b555d297f38"
|
|
216
|
+
dependencies = [
|
|
217
|
+
"arrayvec",
|
|
218
|
+
]
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "base64"
|
|
222
|
+
version = "0.22.1"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "bit-set"
|
|
228
|
+
version = "0.8.0"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"bit-vec",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "bit-vec"
|
|
237
|
+
version = "0.8.0"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
240
|
+
|
|
241
|
+
[[package]]
|
|
242
|
+
name = "bit_field"
|
|
243
|
+
version = "0.10.3"
|
|
244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
245
|
+
checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
|
|
246
|
+
|
|
247
|
+
[[package]]
|
|
248
|
+
name = "bitflags"
|
|
249
|
+
version = "1.3.2"
|
|
250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
251
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "bitflags"
|
|
255
|
+
version = "2.13.1"
|
|
256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "bitstream-io"
|
|
261
|
+
version = "4.10.0"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "7eff00be299a18769011411c9def0d827e8f2d7bf0c3dbf53633147a8867fd1f"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"no_std_io2",
|
|
266
|
+
]
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "block-buffer"
|
|
270
|
+
version = "0.10.4"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
273
|
+
dependencies = [
|
|
274
|
+
"generic-array",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "block-padding"
|
|
279
|
+
version = "0.3.3"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"generic-array",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "built"
|
|
288
|
+
version = "0.8.1"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "5c0e531d93d39c34eef561e929e8a7f86d77a5af08aac4f6d6e39976c51858e9"
|
|
291
|
+
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "bumpalo"
|
|
294
|
+
version = "3.20.3"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "bytecount"
|
|
300
|
+
version = "0.6.9"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "bytemuck"
|
|
306
|
+
version = "1.25.2"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "byteorder-lite"
|
|
312
|
+
version = "0.1.0"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "cbc"
|
|
318
|
+
version = "0.1.2"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"cipher",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "cc"
|
|
327
|
+
version = "1.4.0"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"find-msvc-tools",
|
|
332
|
+
"jobserver",
|
|
333
|
+
"libc",
|
|
334
|
+
"shlex",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "cfg-if"
|
|
339
|
+
version = "1.0.4"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "chacha20"
|
|
345
|
+
version = "0.10.1"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
348
|
+
dependencies = [
|
|
349
|
+
"cfg-if",
|
|
350
|
+
"cpufeatures 0.3.0",
|
|
351
|
+
"rand_core 0.10.1",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "chrono"
|
|
356
|
+
version = "0.4.45"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
359
|
+
dependencies = [
|
|
360
|
+
"iana-time-zone",
|
|
361
|
+
"num-traits",
|
|
362
|
+
"windows-link",
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "chrono-tz"
|
|
367
|
+
version = "0.10.4"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
|
|
370
|
+
dependencies = [
|
|
371
|
+
"chrono",
|
|
372
|
+
"phf",
|
|
373
|
+
]
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "cipher"
|
|
377
|
+
version = "0.4.4"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"crypto-common",
|
|
382
|
+
"inout",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "clap"
|
|
387
|
+
version = "4.6.4"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"clap_builder",
|
|
392
|
+
"clap_derive",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "clap_builder"
|
|
397
|
+
version = "4.6.2"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"anstream",
|
|
402
|
+
"anstyle",
|
|
403
|
+
"clap_lex",
|
|
404
|
+
"strsim",
|
|
405
|
+
]
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "clap_derive"
|
|
409
|
+
version = "4.6.4"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"heck",
|
|
414
|
+
"proc-macro2",
|
|
415
|
+
"quote",
|
|
416
|
+
"syn 3.0.3",
|
|
417
|
+
]
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "clap_lex"
|
|
421
|
+
version = "1.1.0"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "codepage-437"
|
|
427
|
+
version = "0.1.0"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "e40c1169585d8d08e5675a39f2fc056cd19a258fc4cba5e3bbf4a9c1026de535"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"csv",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "color_quant"
|
|
436
|
+
version = "1.1.0"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "colorchoice"
|
|
442
|
+
version = "1.0.5"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "core-foundation-sys"
|
|
448
|
+
version = "0.8.7"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "cpufeatures"
|
|
454
|
+
version = "0.2.17"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"libc",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "cpufeatures"
|
|
463
|
+
version = "0.3.0"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"libc",
|
|
468
|
+
]
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "crc32fast"
|
|
472
|
+
version = "1.5.0"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"cfg-if",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "crossbeam-deque"
|
|
481
|
+
version = "0.8.7"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"crossbeam-epoch",
|
|
486
|
+
"crossbeam-utils",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "crossbeam-epoch"
|
|
491
|
+
version = "0.9.20"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"crossbeam-utils",
|
|
496
|
+
]
|
|
497
|
+
|
|
498
|
+
[[package]]
|
|
499
|
+
name = "crossbeam-utils"
|
|
500
|
+
version = "0.8.22"
|
|
501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
502
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
503
|
+
|
|
504
|
+
[[package]]
|
|
505
|
+
name = "crunchy"
|
|
506
|
+
version = "0.2.4"
|
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "crypto-common"
|
|
512
|
+
version = "0.1.7"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"generic-array",
|
|
517
|
+
"typenum",
|
|
518
|
+
]
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "csv"
|
|
522
|
+
version = "1.4.0"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
525
|
+
dependencies = [
|
|
526
|
+
"csv-core",
|
|
527
|
+
"itoa",
|
|
528
|
+
"ryu",
|
|
529
|
+
"serde_core",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "csv-core"
|
|
534
|
+
version = "0.1.13"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
537
|
+
dependencies = [
|
|
538
|
+
"memchr",
|
|
539
|
+
]
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "datamatrix"
|
|
543
|
+
version = "0.3.3"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "b2d3882a013aca40e2e24f0e454ef7a581a50c603d67eded130013ab641a289d"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"arrayvec",
|
|
548
|
+
"flagset",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "defmt"
|
|
553
|
+
version = "1.1.1"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"bitflags 1.3.2",
|
|
558
|
+
"defmt-macros",
|
|
559
|
+
]
|
|
560
|
+
|
|
561
|
+
[[package]]
|
|
562
|
+
name = "defmt-macros"
|
|
563
|
+
version = "1.1.1"
|
|
564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
565
|
+
checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
|
|
566
|
+
dependencies = [
|
|
567
|
+
"defmt-parser",
|
|
568
|
+
"proc-macro2",
|
|
569
|
+
"quote",
|
|
570
|
+
"syn 2.0.119",
|
|
571
|
+
]
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "defmt-parser"
|
|
575
|
+
version = "1.0.0"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
|
|
578
|
+
dependencies = [
|
|
579
|
+
"thiserror",
|
|
580
|
+
]
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "deranged"
|
|
584
|
+
version = "0.5.8"
|
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "digest"
|
|
590
|
+
version = "0.10.7"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"block-buffer",
|
|
595
|
+
"crypto-common",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "ecb"
|
|
600
|
+
version = "0.1.2"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "1a8bfa975b1aec2145850fcaa1c6fe269a16578c44705a532ae3edc92b8881c7"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"cipher",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "either"
|
|
609
|
+
version = "1.17.0"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "encoding_rs"
|
|
615
|
+
version = "0.8.35"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"cfg-if",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "equator"
|
|
624
|
+
version = "0.4.2"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
|
|
627
|
+
dependencies = [
|
|
628
|
+
"equator-macro",
|
|
629
|
+
]
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "equator-macro"
|
|
633
|
+
version = "0.4.2"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
|
|
636
|
+
dependencies = [
|
|
637
|
+
"proc-macro2",
|
|
638
|
+
"quote",
|
|
639
|
+
"syn 2.0.119",
|
|
640
|
+
]
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "equivalent"
|
|
644
|
+
version = "1.0.2"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "exr"
|
|
650
|
+
version = "1.74.2"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "711fe42c9964295e01ee3fba3f9fe0e1d24b98886950d68efe81b1c76e21adf3"
|
|
653
|
+
dependencies = [
|
|
654
|
+
"bit_field",
|
|
655
|
+
"half",
|
|
656
|
+
"lebe",
|
|
657
|
+
"miniz_oxide",
|
|
658
|
+
"num-complex",
|
|
659
|
+
"pulp",
|
|
660
|
+
"rayon-core",
|
|
661
|
+
"smallvec",
|
|
662
|
+
"zune-inflate",
|
|
663
|
+
]
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "fancy-regex"
|
|
667
|
+
version = "0.17.0"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "72cf461f865c862bb7dc573f643dd6a2b6842f7c30b07882b56bd148cc2761b8"
|
|
670
|
+
dependencies = [
|
|
671
|
+
"bit-set",
|
|
672
|
+
"regex-automata",
|
|
673
|
+
"regex-syntax",
|
|
674
|
+
]
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "fax"
|
|
678
|
+
version = "0.2.7"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "caf1079563223d5d59d83c85886a56e586cfd5c1a26292e971a0fa266531ac5a"
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "fdeflate"
|
|
684
|
+
version = "0.3.7"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
687
|
+
dependencies = [
|
|
688
|
+
"simd-adler32",
|
|
689
|
+
]
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "find-msvc-tools"
|
|
693
|
+
version = "0.1.9"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "flagset"
|
|
699
|
+
version = "0.4.7"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe"
|
|
702
|
+
|
|
703
|
+
[[package]]
|
|
704
|
+
name = "flate2"
|
|
705
|
+
version = "1.1.9"
|
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
708
|
+
dependencies = [
|
|
709
|
+
"crc32fast",
|
|
710
|
+
"miniz_oxide",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "fnv"
|
|
715
|
+
version = "1.0.7"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "futures-core"
|
|
721
|
+
version = "0.3.33"
|
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "futures-task"
|
|
727
|
+
version = "0.3.33"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "futures-util"
|
|
733
|
+
version = "0.3.33"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"futures-core",
|
|
738
|
+
"futures-task",
|
|
739
|
+
"pin-project-lite",
|
|
740
|
+
"slab",
|
|
741
|
+
]
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "generic-array"
|
|
745
|
+
version = "0.14.7"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
748
|
+
dependencies = [
|
|
749
|
+
"typenum",
|
|
750
|
+
"version_check",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "getrandom"
|
|
755
|
+
version = "0.3.4"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"cfg-if",
|
|
760
|
+
"js-sys",
|
|
761
|
+
"libc",
|
|
762
|
+
"r-efi 5.3.0",
|
|
763
|
+
"wasip2",
|
|
764
|
+
"wasm-bindgen",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "getrandom"
|
|
769
|
+
version = "0.4.3"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"cfg-if",
|
|
774
|
+
"libc",
|
|
775
|
+
"r-efi 6.0.0",
|
|
776
|
+
"rand_core 0.10.1",
|
|
777
|
+
]
|
|
778
|
+
|
|
779
|
+
[[package]]
|
|
780
|
+
name = "gif"
|
|
781
|
+
version = "0.14.2"
|
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
+
checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
|
|
784
|
+
dependencies = [
|
|
785
|
+
"color_quant",
|
|
786
|
+
"weezl",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "glam"
|
|
791
|
+
version = "0.14.0"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "333928d5eb103c5d4050533cec0384302db6be8ef7d3cebd30ec6a35350353da"
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "glam"
|
|
797
|
+
version = "0.15.2"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "3abb554f8ee44336b72d522e0a7fe86a29e09f839a36022fa869a7dfe941a54b"
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "glam"
|
|
803
|
+
version = "0.16.0"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "4126c0479ccf7e8664c36a2d719f5f2c140fbb4f9090008098d2c291fa5b3f16"
|
|
806
|
+
|
|
807
|
+
[[package]]
|
|
808
|
+
name = "glam"
|
|
809
|
+
version = "0.17.3"
|
|
810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
|
+
checksum = "e01732b97afd8508eee3333a541b9f7610f454bb818669e66e90f5f57c93a776"
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "glam"
|
|
815
|
+
version = "0.18.0"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "525a3e490ba77b8e326fb67d4b44b4bd2f920f44d4cc73ccec50adc68e3bee34"
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "glam"
|
|
821
|
+
version = "0.19.0"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "2b8509e6791516e81c1a630d0bd7fbac36d2fa8712a9da8662e716b52d5051ca"
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "glam"
|
|
827
|
+
version = "0.20.5"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "f43e957e744be03f5801a55472f593d43fabdebf25a4585db250f04d86b1675f"
|
|
830
|
+
|
|
831
|
+
[[package]]
|
|
832
|
+
name = "glam"
|
|
833
|
+
version = "0.21.3"
|
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
|
+
checksum = "518faa5064866338b013ff9b2350dc318e14cc4fcd6cb8206d7e7c9886c98815"
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "glam"
|
|
839
|
+
version = "0.22.0"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "12f597d56c1bd55a811a1be189459e8fad2bbc272616375602443bdfb37fa774"
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "glam"
|
|
845
|
+
version = "0.23.0"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c"
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "glam"
|
|
851
|
+
version = "0.24.2"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945"
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "glam"
|
|
857
|
+
version = "0.25.0"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
|
|
860
|
+
|
|
861
|
+
[[package]]
|
|
862
|
+
name = "glam"
|
|
863
|
+
version = "0.27.0"
|
|
864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
+
checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "glam"
|
|
869
|
+
version = "0.28.0"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "779ae4bf7e8421cf91c0b3b64e7e8b40b862fba4d393f59150042de7c4965a94"
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "glam"
|
|
875
|
+
version = "0.29.3"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "glam"
|
|
881
|
+
version = "0.30.10"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "glam"
|
|
887
|
+
version = "0.31.1"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "556f6b2ea90b8d15a74e0e7bb41671c9bdf38cd9f78c284d750b9ce58a2b5be7"
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "glam"
|
|
893
|
+
version = "0.32.1"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "f70749695b063ecbf6b62949ccccde2e733ec3ecbbd71d467dca4e5c6c97cca0"
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "half"
|
|
899
|
+
version = "2.7.1"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"cfg-if",
|
|
904
|
+
"crunchy",
|
|
905
|
+
"zerocopy",
|
|
906
|
+
]
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "hashbrown"
|
|
910
|
+
version = "0.17.1"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "heck"
|
|
916
|
+
version = "0.5.0"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "iana-time-zone"
|
|
922
|
+
version = "0.1.65"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"android_system_properties",
|
|
927
|
+
"core-foundation-sys",
|
|
928
|
+
"iana-time-zone-haiku",
|
|
929
|
+
"js-sys",
|
|
930
|
+
"log",
|
|
931
|
+
"wasm-bindgen",
|
|
932
|
+
"windows-core",
|
|
933
|
+
]
|
|
934
|
+
|
|
935
|
+
[[package]]
|
|
936
|
+
name = "iana-time-zone-haiku"
|
|
937
|
+
version = "0.1.2"
|
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
940
|
+
dependencies = [
|
|
941
|
+
"cc",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "image"
|
|
946
|
+
version = "0.25.10"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"bytemuck",
|
|
951
|
+
"byteorder-lite",
|
|
952
|
+
"color_quant",
|
|
953
|
+
"exr",
|
|
954
|
+
"gif",
|
|
955
|
+
"image-webp",
|
|
956
|
+
"moxcms",
|
|
957
|
+
"num-traits",
|
|
958
|
+
"png",
|
|
959
|
+
"qoi",
|
|
960
|
+
"ravif",
|
|
961
|
+
"rayon",
|
|
962
|
+
"rgb",
|
|
963
|
+
"tiff",
|
|
964
|
+
"zune-core",
|
|
965
|
+
"zune-jpeg",
|
|
966
|
+
]
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "image-webp"
|
|
970
|
+
version = "0.2.4"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
|
|
973
|
+
dependencies = [
|
|
974
|
+
"byteorder-lite",
|
|
975
|
+
"quick-error",
|
|
976
|
+
]
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "imageproc"
|
|
980
|
+
version = "0.26.2"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "645329c490783f3ea465d2b6c7c08286fece97f15e714fd533b6c70a3ead2252"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"ab_glyph",
|
|
985
|
+
"approx",
|
|
986
|
+
"getrandom 0.3.4",
|
|
987
|
+
"image",
|
|
988
|
+
"itertools",
|
|
989
|
+
"nalgebra",
|
|
990
|
+
"num",
|
|
991
|
+
"rand 0.9.5",
|
|
992
|
+
"rand_distr",
|
|
993
|
+
"rayon",
|
|
994
|
+
"rustdct",
|
|
995
|
+
]
|
|
996
|
+
|
|
997
|
+
[[package]]
|
|
998
|
+
name = "imgref"
|
|
999
|
+
version = "1.12.2"
|
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1001
|
+
checksum = "89194689a993ab15268672e99e7b0e19da2da3268ac682e8f02d29d4d1434cd7"
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "indexmap"
|
|
1005
|
+
version = "2.14.0"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"equivalent",
|
|
1010
|
+
"hashbrown",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "inout"
|
|
1015
|
+
version = "0.1.4"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"block-padding",
|
|
1020
|
+
"generic-array",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "interpolate_name"
|
|
1025
|
+
version = "0.2.4"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"proc-macro2",
|
|
1030
|
+
"quote",
|
|
1031
|
+
"syn 2.0.119",
|
|
1032
|
+
]
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "is_terminal_polyfill"
|
|
1036
|
+
version = "1.70.2"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "itertools"
|
|
1042
|
+
version = "0.14.0"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1045
|
+
dependencies = [
|
|
1046
|
+
"either",
|
|
1047
|
+
]
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "itoa"
|
|
1051
|
+
version = "1.0.18"
|
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "jiff"
|
|
1057
|
+
version = "0.2.35"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "668b7183bd07af9a4885f5c35b0cc5c83c4607a913c16b7e17291832910d2dcc"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"defmt",
|
|
1062
|
+
"jiff-core",
|
|
1063
|
+
"jiff-static",
|
|
1064
|
+
"jiff-tzdb-platform",
|
|
1065
|
+
"log",
|
|
1066
|
+
"portable-atomic",
|
|
1067
|
+
"portable-atomic-util",
|
|
1068
|
+
"serde_core",
|
|
1069
|
+
"windows-link",
|
|
1070
|
+
]
|
|
1071
|
+
|
|
1072
|
+
[[package]]
|
|
1073
|
+
name = "jiff-core"
|
|
1074
|
+
version = "0.1.0"
|
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
+
checksum = "7feca88439efe53da3754500c1851dedf3cb36c524dd5cf8225cc0794de95d09"
|
|
1077
|
+
dependencies = [
|
|
1078
|
+
"defmt",
|
|
1079
|
+
]
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "jiff-static"
|
|
1083
|
+
version = "0.2.35"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "3a69dcb3a21cfb32ce1cd056169337ca284af0766dd766e7878819b251a49204"
|
|
1086
|
+
dependencies = [
|
|
1087
|
+
"jiff-core",
|
|
1088
|
+
"proc-macro2",
|
|
1089
|
+
"quote",
|
|
1090
|
+
"syn 2.0.119",
|
|
1091
|
+
]
|
|
1092
|
+
|
|
1093
|
+
[[package]]
|
|
1094
|
+
name = "jiff-tzdb"
|
|
1095
|
+
version = "0.1.8"
|
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
+
checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
|
|
1098
|
+
|
|
1099
|
+
[[package]]
|
|
1100
|
+
name = "jiff-tzdb-platform"
|
|
1101
|
+
version = "0.1.3"
|
|
1102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1103
|
+
checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
|
|
1104
|
+
dependencies = [
|
|
1105
|
+
"jiff-tzdb",
|
|
1106
|
+
]
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "jobserver"
|
|
1110
|
+
version = "0.1.35"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
1113
|
+
dependencies = [
|
|
1114
|
+
"getrandom 0.4.3",
|
|
1115
|
+
"libc",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "js-sys"
|
|
1120
|
+
version = "0.3.103"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
1123
|
+
dependencies = [
|
|
1124
|
+
"cfg-if",
|
|
1125
|
+
"futures-util",
|
|
1126
|
+
"wasm-bindgen",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "labelize"
|
|
1131
|
+
version = "1.3.0"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "a58ae8e38621d77f40570e17c3ae75e03e63aa8dcdefc1ace0c74c4d776a22f2"
|
|
1134
|
+
dependencies = [
|
|
1135
|
+
"ab_glyph",
|
|
1136
|
+
"base64",
|
|
1137
|
+
"datamatrix",
|
|
1138
|
+
"flate2",
|
|
1139
|
+
"image",
|
|
1140
|
+
"imageproc",
|
|
1141
|
+
"lopdf",
|
|
1142
|
+
"qrcode",
|
|
1143
|
+
"rxing",
|
|
1144
|
+
"thiserror",
|
|
1145
|
+
]
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "lazy_static"
|
|
1149
|
+
version = "1.5.0"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1152
|
+
|
|
1153
|
+
[[package]]
|
|
1154
|
+
name = "lebe"
|
|
1155
|
+
version = "0.5.3"
|
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1157
|
+
checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
|
|
1158
|
+
|
|
1159
|
+
[[package]]
|
|
1160
|
+
name = "libc"
|
|
1161
|
+
version = "0.2.189"
|
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "libfuzzer-sys"
|
|
1167
|
+
version = "0.4.13"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "a9fd2f41a1cba099f79a0b6b6c35656cf7c03351a7bae8ff0f28f25270f929d2"
|
|
1170
|
+
dependencies = [
|
|
1171
|
+
"arbitrary",
|
|
1172
|
+
"cc",
|
|
1173
|
+
]
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "libm"
|
|
1177
|
+
version = "0.2.16"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1180
|
+
|
|
1181
|
+
[[package]]
|
|
1182
|
+
name = "log"
|
|
1183
|
+
version = "0.4.33"
|
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
1186
|
+
|
|
1187
|
+
[[package]]
|
|
1188
|
+
name = "loop9"
|
|
1189
|
+
version = "0.1.5"
|
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
+
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
|
|
1192
|
+
dependencies = [
|
|
1193
|
+
"imgref",
|
|
1194
|
+
]
|
|
1195
|
+
|
|
1196
|
+
[[package]]
|
|
1197
|
+
name = "lopdf"
|
|
1198
|
+
version = "0.40.0"
|
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
+
checksum = "73fdcbab5b237a03984f83b1394dc534e0b1960675c7f3ec4d04dccc9032b56d"
|
|
1201
|
+
dependencies = [
|
|
1202
|
+
"aes",
|
|
1203
|
+
"bitflags 2.13.1",
|
|
1204
|
+
"cbc",
|
|
1205
|
+
"chrono",
|
|
1206
|
+
"ecb",
|
|
1207
|
+
"encoding_rs",
|
|
1208
|
+
"flate2",
|
|
1209
|
+
"getrandom 0.4.3",
|
|
1210
|
+
"indexmap",
|
|
1211
|
+
"itoa",
|
|
1212
|
+
"jiff",
|
|
1213
|
+
"log",
|
|
1214
|
+
"md-5",
|
|
1215
|
+
"nom",
|
|
1216
|
+
"nom_locate",
|
|
1217
|
+
"rand 0.10.2",
|
|
1218
|
+
"rangemap",
|
|
1219
|
+
"rayon",
|
|
1220
|
+
"sha2",
|
|
1221
|
+
"stringprep",
|
|
1222
|
+
"thiserror",
|
|
1223
|
+
"time",
|
|
1224
|
+
"ttf-parser",
|
|
1225
|
+
"weezl",
|
|
1226
|
+
]
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "matrixmultiply"
|
|
1230
|
+
version = "0.3.11"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
|
|
1233
|
+
dependencies = [
|
|
1234
|
+
"autocfg",
|
|
1235
|
+
"rawpointer",
|
|
1236
|
+
]
|
|
1237
|
+
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "maybe-rayon"
|
|
1240
|
+
version = "0.1.1"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
|
|
1243
|
+
dependencies = [
|
|
1244
|
+
"cfg-if",
|
|
1245
|
+
"rayon",
|
|
1246
|
+
]
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "md-5"
|
|
1250
|
+
version = "0.10.6"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
1253
|
+
dependencies = [
|
|
1254
|
+
"cfg-if",
|
|
1255
|
+
"digest",
|
|
1256
|
+
]
|
|
1257
|
+
|
|
1258
|
+
[[package]]
|
|
1259
|
+
name = "memchr"
|
|
1260
|
+
version = "2.8.3"
|
|
1261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
1263
|
+
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "miniz_oxide"
|
|
1266
|
+
version = "0.8.9"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1269
|
+
dependencies = [
|
|
1270
|
+
"adler2",
|
|
1271
|
+
"simd-adler32",
|
|
1272
|
+
]
|
|
1273
|
+
|
|
1274
|
+
[[package]]
|
|
1275
|
+
name = "moxcms"
|
|
1276
|
+
version = "0.8.1"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
|
|
1279
|
+
dependencies = [
|
|
1280
|
+
"num-traits",
|
|
1281
|
+
"pxfm",
|
|
1282
|
+
]
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "multimap"
|
|
1286
|
+
version = "0.10.1"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
|
1289
|
+
dependencies = [
|
|
1290
|
+
"serde",
|
|
1291
|
+
]
|
|
1292
|
+
|
|
1293
|
+
[[package]]
|
|
1294
|
+
name = "nalgebra"
|
|
1295
|
+
version = "0.34.2"
|
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
+
checksum = "df76ea0ff5c7e6b88689085804d6132ded0ddb9de5ca5b8aeb9eeadc0508a70a"
|
|
1298
|
+
dependencies = [
|
|
1299
|
+
"approx",
|
|
1300
|
+
"glam 0.14.0",
|
|
1301
|
+
"glam 0.15.2",
|
|
1302
|
+
"glam 0.16.0",
|
|
1303
|
+
"glam 0.17.3",
|
|
1304
|
+
"glam 0.18.0",
|
|
1305
|
+
"glam 0.19.0",
|
|
1306
|
+
"glam 0.20.5",
|
|
1307
|
+
"glam 0.21.3",
|
|
1308
|
+
"glam 0.22.0",
|
|
1309
|
+
"glam 0.23.0",
|
|
1310
|
+
"glam 0.24.2",
|
|
1311
|
+
"glam 0.25.0",
|
|
1312
|
+
"glam 0.27.0",
|
|
1313
|
+
"glam 0.28.0",
|
|
1314
|
+
"glam 0.29.3",
|
|
1315
|
+
"glam 0.30.10",
|
|
1316
|
+
"glam 0.31.1",
|
|
1317
|
+
"glam 0.32.1",
|
|
1318
|
+
"matrixmultiply",
|
|
1319
|
+
"num-complex",
|
|
1320
|
+
"num-rational",
|
|
1321
|
+
"num-traits",
|
|
1322
|
+
"simba",
|
|
1323
|
+
"typenum",
|
|
1324
|
+
]
|
|
1325
|
+
|
|
1326
|
+
[[package]]
|
|
1327
|
+
name = "new_debug_unreachable"
|
|
1328
|
+
version = "1.0.6"
|
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1330
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "no_std_io2"
|
|
1334
|
+
version = "0.9.4"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "418abd1b6d34fbf6cae440dc874771b0525a604428704c76e48b29a5e67b8003"
|
|
1337
|
+
dependencies = [
|
|
1338
|
+
"memchr",
|
|
1339
|
+
]
|
|
1340
|
+
|
|
1341
|
+
[[package]]
|
|
1342
|
+
name = "nom"
|
|
1343
|
+
version = "8.0.0"
|
|
1344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
1346
|
+
dependencies = [
|
|
1347
|
+
"memchr",
|
|
1348
|
+
]
|
|
1349
|
+
|
|
1350
|
+
[[package]]
|
|
1351
|
+
name = "nom_locate"
|
|
1352
|
+
version = "5.0.0"
|
|
1353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1354
|
+
checksum = "0b577e2d69827c4740cba2b52efaad1c4cc7c73042860b199710b3575c68438d"
|
|
1355
|
+
dependencies = [
|
|
1356
|
+
"bytecount",
|
|
1357
|
+
"memchr",
|
|
1358
|
+
"nom",
|
|
1359
|
+
]
|
|
1360
|
+
|
|
1361
|
+
[[package]]
|
|
1362
|
+
name = "noop_proc_macro"
|
|
1363
|
+
version = "0.3.0"
|
|
1364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1365
|
+
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
|
|
1366
|
+
|
|
1367
|
+
[[package]]
|
|
1368
|
+
name = "num"
|
|
1369
|
+
version = "0.4.3"
|
|
1370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
|
+
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
|
|
1372
|
+
dependencies = [
|
|
1373
|
+
"num-bigint",
|
|
1374
|
+
"num-complex",
|
|
1375
|
+
"num-integer",
|
|
1376
|
+
"num-iter",
|
|
1377
|
+
"num-rational",
|
|
1378
|
+
"num-traits",
|
|
1379
|
+
]
|
|
1380
|
+
|
|
1381
|
+
[[package]]
|
|
1382
|
+
name = "num-bigint"
|
|
1383
|
+
version = "0.4.8"
|
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
+
checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
|
|
1386
|
+
dependencies = [
|
|
1387
|
+
"num-integer",
|
|
1388
|
+
"num-traits",
|
|
1389
|
+
]
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "num-complex"
|
|
1393
|
+
version = "0.4.6"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
1396
|
+
dependencies = [
|
|
1397
|
+
"bytemuck",
|
|
1398
|
+
"num-traits",
|
|
1399
|
+
]
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "num-conv"
|
|
1403
|
+
version = "0.2.2"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
1406
|
+
|
|
1407
|
+
[[package]]
|
|
1408
|
+
name = "num-derive"
|
|
1409
|
+
version = "0.4.2"
|
|
1410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
1412
|
+
dependencies = [
|
|
1413
|
+
"proc-macro2",
|
|
1414
|
+
"quote",
|
|
1415
|
+
"syn 2.0.119",
|
|
1416
|
+
]
|
|
1417
|
+
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "num-integer"
|
|
1420
|
+
version = "0.1.46"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1423
|
+
dependencies = [
|
|
1424
|
+
"num-traits",
|
|
1425
|
+
]
|
|
1426
|
+
|
|
1427
|
+
[[package]]
|
|
1428
|
+
name = "num-iter"
|
|
1429
|
+
version = "0.1.46"
|
|
1430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
+
checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
|
|
1432
|
+
dependencies = [
|
|
1433
|
+
"num-integer",
|
|
1434
|
+
"num-traits",
|
|
1435
|
+
]
|
|
1436
|
+
|
|
1437
|
+
[[package]]
|
|
1438
|
+
name = "num-rational"
|
|
1439
|
+
version = "0.4.2"
|
|
1440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1442
|
+
dependencies = [
|
|
1443
|
+
"num-bigint",
|
|
1444
|
+
"num-integer",
|
|
1445
|
+
"num-traits",
|
|
1446
|
+
]
|
|
1447
|
+
|
|
1448
|
+
[[package]]
|
|
1449
|
+
name = "num-traits"
|
|
1450
|
+
version = "0.2.19"
|
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1453
|
+
dependencies = [
|
|
1454
|
+
"autocfg",
|
|
1455
|
+
"libm",
|
|
1456
|
+
]
|
|
1457
|
+
|
|
1458
|
+
[[package]]
|
|
1459
|
+
name = "once_cell"
|
|
1460
|
+
version = "1.21.4"
|
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1462
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1463
|
+
|
|
1464
|
+
[[package]]
|
|
1465
|
+
name = "once_cell_polyfill"
|
|
1466
|
+
version = "1.70.2"
|
|
1467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1469
|
+
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "owned_ttf_parser"
|
|
1472
|
+
version = "0.25.1"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b"
|
|
1475
|
+
dependencies = [
|
|
1476
|
+
"ttf-parser",
|
|
1477
|
+
]
|
|
1478
|
+
|
|
1479
|
+
[[package]]
|
|
1480
|
+
name = "paste"
|
|
1481
|
+
version = "1.0.15"
|
|
1482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1484
|
+
|
|
1485
|
+
[[package]]
|
|
1486
|
+
name = "pastey"
|
|
1487
|
+
version = "0.1.1"
|
|
1488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1489
|
+
checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
|
|
1490
|
+
|
|
1491
|
+
[[package]]
|
|
1492
|
+
name = "phf"
|
|
1493
|
+
version = "0.12.1"
|
|
1494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
1496
|
+
dependencies = [
|
|
1497
|
+
"phf_shared",
|
|
1498
|
+
]
|
|
1499
|
+
|
|
1500
|
+
[[package]]
|
|
1501
|
+
name = "phf_shared"
|
|
1502
|
+
version = "0.12.1"
|
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
|
1505
|
+
dependencies = [
|
|
1506
|
+
"siphasher",
|
|
1507
|
+
]
|
|
1508
|
+
|
|
1509
|
+
[[package]]
|
|
1510
|
+
name = "pin-project-lite"
|
|
1511
|
+
version = "0.2.17"
|
|
1512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "png"
|
|
1517
|
+
version = "0.18.1"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
|
1520
|
+
dependencies = [
|
|
1521
|
+
"bitflags 2.13.1",
|
|
1522
|
+
"crc32fast",
|
|
1523
|
+
"fdeflate",
|
|
1524
|
+
"flate2",
|
|
1525
|
+
"miniz_oxide",
|
|
1526
|
+
]
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "portable-atomic"
|
|
1530
|
+
version = "1.14.0"
|
|
1531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
1533
|
+
|
|
1534
|
+
[[package]]
|
|
1535
|
+
name = "portable-atomic-util"
|
|
1536
|
+
version = "0.2.7"
|
|
1537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1538
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
1539
|
+
dependencies = [
|
|
1540
|
+
"portable-atomic",
|
|
1541
|
+
]
|
|
1542
|
+
|
|
1543
|
+
[[package]]
|
|
1544
|
+
name = "powerfmt"
|
|
1545
|
+
version = "0.2.0"
|
|
1546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1547
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1548
|
+
|
|
1549
|
+
[[package]]
|
|
1550
|
+
name = "ppv-lite86"
|
|
1551
|
+
version = "0.2.21"
|
|
1552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1554
|
+
dependencies = [
|
|
1555
|
+
"zerocopy",
|
|
1556
|
+
]
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "primal-check"
|
|
1560
|
+
version = "0.3.4"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "dc0d895b311e3af9902528fbb8f928688abbd95872819320517cc24ca6b2bd08"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"num-integer",
|
|
1565
|
+
]
|
|
1566
|
+
|
|
1567
|
+
[[package]]
|
|
1568
|
+
name = "proc-macro2"
|
|
1569
|
+
version = "1.0.107"
|
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
1572
|
+
dependencies = [
|
|
1573
|
+
"unicode-ident",
|
|
1574
|
+
]
|
|
1575
|
+
|
|
1576
|
+
[[package]]
|
|
1577
|
+
name = "profiling"
|
|
1578
|
+
version = "1.0.18"
|
|
1579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1580
|
+
checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
|
|
1581
|
+
dependencies = [
|
|
1582
|
+
"profiling-procmacros",
|
|
1583
|
+
]
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "profiling-procmacros"
|
|
1587
|
+
version = "1.0.18"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "4488a4a36b9a4ba6b9334a32a39971f77c1436ec82c38707bce707699cc3bbcb"
|
|
1590
|
+
dependencies = [
|
|
1591
|
+
"quote",
|
|
1592
|
+
"syn 2.0.119",
|
|
1593
|
+
]
|
|
1594
|
+
|
|
1595
|
+
[[package]]
|
|
1596
|
+
name = "pulp"
|
|
1597
|
+
version = "0.22.3"
|
|
1598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1599
|
+
checksum = "046aa45b989642ec2e4717c8e72d677b13edd831a4d3b6cf37d9a3e54912496a"
|
|
1600
|
+
dependencies = [
|
|
1601
|
+
"bytemuck",
|
|
1602
|
+
"cfg-if",
|
|
1603
|
+
"libm",
|
|
1604
|
+
"num-complex",
|
|
1605
|
+
"paste",
|
|
1606
|
+
"pulp-wasm-simd-flag",
|
|
1607
|
+
"raw-cpuid",
|
|
1608
|
+
"reborrow",
|
|
1609
|
+
"version_check",
|
|
1610
|
+
]
|
|
1611
|
+
|
|
1612
|
+
[[package]]
|
|
1613
|
+
name = "pulp-wasm-simd-flag"
|
|
1614
|
+
version = "0.1.1"
|
|
1615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
+
checksum = "1d8f70e07b9c3962945a74e59ca1c511bba65b6419468acc217c457d93f3c740"
|
|
1617
|
+
|
|
1618
|
+
[[package]]
|
|
1619
|
+
name = "pxfm"
|
|
1620
|
+
version = "0.1.30"
|
|
1621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
+
checksum = "d55d956fa96f5ec02be2e13af0e20391a5aa83d6a074e3ad368959d0fab299ea"
|
|
1623
|
+
|
|
1624
|
+
[[package]]
|
|
1625
|
+
name = "qoi"
|
|
1626
|
+
version = "0.4.1"
|
|
1627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1628
|
+
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
|
|
1629
|
+
dependencies = [
|
|
1630
|
+
"bytemuck",
|
|
1631
|
+
]
|
|
1632
|
+
|
|
1633
|
+
[[package]]
|
|
1634
|
+
name = "qrcode"
|
|
1635
|
+
version = "0.14.1"
|
|
1636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1637
|
+
checksum = "d68782463e408eb1e668cf6152704bd856c78c5b6417adaee3203d8f4c1fc9ec"
|
|
1638
|
+
dependencies = [
|
|
1639
|
+
"image",
|
|
1640
|
+
]
|
|
1641
|
+
|
|
1642
|
+
[[package]]
|
|
1643
|
+
name = "quick-error"
|
|
1644
|
+
version = "2.0.1"
|
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
1647
|
+
|
|
1648
|
+
[[package]]
|
|
1649
|
+
name = "quote"
|
|
1650
|
+
version = "1.0.47"
|
|
1651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1652
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
1653
|
+
dependencies = [
|
|
1654
|
+
"proc-macro2",
|
|
1655
|
+
]
|
|
1656
|
+
|
|
1657
|
+
[[package]]
|
|
1658
|
+
name = "r-efi"
|
|
1659
|
+
version = "5.3.0"
|
|
1660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1661
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1662
|
+
|
|
1663
|
+
[[package]]
|
|
1664
|
+
name = "r-efi"
|
|
1665
|
+
version = "6.0.0"
|
|
1666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1667
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "rand"
|
|
1671
|
+
version = "0.9.5"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
1674
|
+
dependencies = [
|
|
1675
|
+
"rand_chacha",
|
|
1676
|
+
"rand_core 0.9.5",
|
|
1677
|
+
]
|
|
1678
|
+
|
|
1679
|
+
[[package]]
|
|
1680
|
+
name = "rand"
|
|
1681
|
+
version = "0.10.2"
|
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1683
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
1684
|
+
dependencies = [
|
|
1685
|
+
"chacha20",
|
|
1686
|
+
"getrandom 0.4.3",
|
|
1687
|
+
"rand_core 0.10.1",
|
|
1688
|
+
]
|
|
1689
|
+
|
|
1690
|
+
[[package]]
|
|
1691
|
+
name = "rand_chacha"
|
|
1692
|
+
version = "0.9.0"
|
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1695
|
+
dependencies = [
|
|
1696
|
+
"ppv-lite86",
|
|
1697
|
+
"rand_core 0.9.5",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "rand_core"
|
|
1702
|
+
version = "0.9.5"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1705
|
+
dependencies = [
|
|
1706
|
+
"getrandom 0.3.4",
|
|
1707
|
+
]
|
|
1708
|
+
|
|
1709
|
+
[[package]]
|
|
1710
|
+
name = "rand_core"
|
|
1711
|
+
version = "0.10.1"
|
|
1712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1713
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "rand_distr"
|
|
1717
|
+
version = "0.5.1"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
|
|
1720
|
+
dependencies = [
|
|
1721
|
+
"num-traits",
|
|
1722
|
+
"rand 0.9.5",
|
|
1723
|
+
]
|
|
1724
|
+
|
|
1725
|
+
[[package]]
|
|
1726
|
+
name = "rangemap"
|
|
1727
|
+
version = "1.7.1"
|
|
1728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1729
|
+
checksum = "973443cf09a9c8656b574a866ab68dfa19f0867d0340648c7d2f6a71b8a8ea68"
|
|
1730
|
+
|
|
1731
|
+
[[package]]
|
|
1732
|
+
name = "rav1e"
|
|
1733
|
+
version = "0.8.1"
|
|
1734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1735
|
+
checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
|
|
1736
|
+
dependencies = [
|
|
1737
|
+
"aligned-vec",
|
|
1738
|
+
"arbitrary",
|
|
1739
|
+
"arg_enum_proc_macro",
|
|
1740
|
+
"arrayvec",
|
|
1741
|
+
"av-scenechange",
|
|
1742
|
+
"av1-grain",
|
|
1743
|
+
"bitstream-io",
|
|
1744
|
+
"built",
|
|
1745
|
+
"cfg-if",
|
|
1746
|
+
"interpolate_name",
|
|
1747
|
+
"itertools",
|
|
1748
|
+
"libc",
|
|
1749
|
+
"libfuzzer-sys",
|
|
1750
|
+
"log",
|
|
1751
|
+
"maybe-rayon",
|
|
1752
|
+
"new_debug_unreachable",
|
|
1753
|
+
"noop_proc_macro",
|
|
1754
|
+
"num-derive",
|
|
1755
|
+
"num-traits",
|
|
1756
|
+
"paste",
|
|
1757
|
+
"profiling",
|
|
1758
|
+
"rand 0.9.5",
|
|
1759
|
+
"rand_chacha",
|
|
1760
|
+
"simd_helpers",
|
|
1761
|
+
"thiserror",
|
|
1762
|
+
"v_frame",
|
|
1763
|
+
"wasm-bindgen",
|
|
1764
|
+
]
|
|
1765
|
+
|
|
1766
|
+
[[package]]
|
|
1767
|
+
name = "ravif"
|
|
1768
|
+
version = "0.13.0"
|
|
1769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
+
checksum = "e52310197d971b0f5be7fe6b57530dcd27beb35c1b013f29d66c1ad73fbbcc45"
|
|
1771
|
+
dependencies = [
|
|
1772
|
+
"avif-serialize",
|
|
1773
|
+
"imgref",
|
|
1774
|
+
"loop9",
|
|
1775
|
+
"quick-error",
|
|
1776
|
+
"rav1e",
|
|
1777
|
+
"rayon",
|
|
1778
|
+
"rgb",
|
|
1779
|
+
]
|
|
1780
|
+
|
|
1781
|
+
[[package]]
|
|
1782
|
+
name = "raw-cpuid"
|
|
1783
|
+
version = "11.6.0"
|
|
1784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1785
|
+
checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
|
|
1786
|
+
dependencies = [
|
|
1787
|
+
"bitflags 2.13.1",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "rawpointer"
|
|
1792
|
+
version = "0.2.1"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
1795
|
+
|
|
1796
|
+
[[package]]
|
|
1797
|
+
name = "rayon"
|
|
1798
|
+
version = "1.12.0"
|
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
1801
|
+
dependencies = [
|
|
1802
|
+
"either",
|
|
1803
|
+
"rayon-core",
|
|
1804
|
+
]
|
|
1805
|
+
|
|
1806
|
+
[[package]]
|
|
1807
|
+
name = "rayon-core"
|
|
1808
|
+
version = "1.13.0"
|
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1811
|
+
dependencies = [
|
|
1812
|
+
"crossbeam-deque",
|
|
1813
|
+
"crossbeam-utils",
|
|
1814
|
+
]
|
|
1815
|
+
|
|
1816
|
+
[[package]]
|
|
1817
|
+
name = "reborrow"
|
|
1818
|
+
version = "0.5.5"
|
|
1819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1820
|
+
checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
|
|
1821
|
+
|
|
1822
|
+
[[package]]
|
|
1823
|
+
name = "regex"
|
|
1824
|
+
version = "1.13.1"
|
|
1825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1827
|
+
dependencies = [
|
|
1828
|
+
"aho-corasick",
|
|
1829
|
+
"memchr",
|
|
1830
|
+
"regex-automata",
|
|
1831
|
+
"regex-syntax",
|
|
1832
|
+
]
|
|
1833
|
+
|
|
1834
|
+
[[package]]
|
|
1835
|
+
name = "regex-automata"
|
|
1836
|
+
version = "0.4.16"
|
|
1837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
+
checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
|
|
1839
|
+
dependencies = [
|
|
1840
|
+
"aho-corasick",
|
|
1841
|
+
"memchr",
|
|
1842
|
+
"regex-syntax",
|
|
1843
|
+
]
|
|
1844
|
+
|
|
1845
|
+
[[package]]
|
|
1846
|
+
name = "regex-syntax"
|
|
1847
|
+
version = "0.8.11"
|
|
1848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1849
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1850
|
+
|
|
1851
|
+
[[package]]
|
|
1852
|
+
name = "rgb"
|
|
1853
|
+
version = "0.8.53"
|
|
1854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1855
|
+
checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
|
|
1856
|
+
|
|
1857
|
+
[[package]]
|
|
1858
|
+
name = "rustdct"
|
|
1859
|
+
version = "0.7.1"
|
|
1860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1861
|
+
checksum = "8b61555105d6a9bf98797c063c362a1d24ed8ab0431655e38f1cf51e52089551"
|
|
1862
|
+
dependencies = [
|
|
1863
|
+
"rustfft",
|
|
1864
|
+
]
|
|
1865
|
+
|
|
1866
|
+
[[package]]
|
|
1867
|
+
name = "rustfft"
|
|
1868
|
+
version = "6.4.1"
|
|
1869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1870
|
+
checksum = "21db5f9893e91f41798c88680037dba611ca6674703c1a18601b01a72c8adb89"
|
|
1871
|
+
dependencies = [
|
|
1872
|
+
"num-complex",
|
|
1873
|
+
"num-integer",
|
|
1874
|
+
"num-traits",
|
|
1875
|
+
"primal-check",
|
|
1876
|
+
"strength_reduce",
|
|
1877
|
+
"transpose",
|
|
1878
|
+
]
|
|
1879
|
+
|
|
1880
|
+
[[package]]
|
|
1881
|
+
name = "rustversion"
|
|
1882
|
+
version = "1.0.23"
|
|
1883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "rxing"
|
|
1888
|
+
version = "0.8.6"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "dc56bde1cf7f3c9cc908ef2670efede68bbad283acb6674b709aa3befdab451d"
|
|
1891
|
+
dependencies = [
|
|
1892
|
+
"chrono",
|
|
1893
|
+
"chrono-tz",
|
|
1894
|
+
"codepage-437",
|
|
1895
|
+
"encoding_rs",
|
|
1896
|
+
"fancy-regex",
|
|
1897
|
+
"multimap",
|
|
1898
|
+
"num",
|
|
1899
|
+
"once_cell",
|
|
1900
|
+
"regex",
|
|
1901
|
+
"rxing-one-d-proc-derive",
|
|
1902
|
+
"thiserror",
|
|
1903
|
+
"unicode-segmentation",
|
|
1904
|
+
"uriparse",
|
|
1905
|
+
"urlencoding",
|
|
1906
|
+
]
|
|
1907
|
+
|
|
1908
|
+
[[package]]
|
|
1909
|
+
name = "rxing-one-d-proc-derive"
|
|
1910
|
+
version = "0.8.0"
|
|
1911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1912
|
+
checksum = "d7e5f136594d614d0d8e44f63508abd25c8fe0280655bb1d477b177bf718d0a4"
|
|
1913
|
+
dependencies = [
|
|
1914
|
+
"quote",
|
|
1915
|
+
"syn 2.0.119",
|
|
1916
|
+
]
|
|
1917
|
+
|
|
1918
|
+
[[package]]
|
|
1919
|
+
name = "ryu"
|
|
1920
|
+
version = "1.0.23"
|
|
1921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1922
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1923
|
+
|
|
1924
|
+
[[package]]
|
|
1925
|
+
name = "safe_arch"
|
|
1926
|
+
version = "0.7.4"
|
|
1927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
+
checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
|
|
1929
|
+
dependencies = [
|
|
1930
|
+
"bytemuck",
|
|
1931
|
+
]
|
|
1932
|
+
|
|
1933
|
+
[[package]]
|
|
1934
|
+
name = "serde"
|
|
1935
|
+
version = "1.0.229"
|
|
1936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1938
|
+
dependencies = [
|
|
1939
|
+
"serde_core",
|
|
1940
|
+
"serde_derive",
|
|
1941
|
+
]
|
|
1942
|
+
|
|
1943
|
+
[[package]]
|
|
1944
|
+
name = "serde_core"
|
|
1945
|
+
version = "1.0.229"
|
|
1946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1948
|
+
dependencies = [
|
|
1949
|
+
"serde_derive",
|
|
1950
|
+
]
|
|
1951
|
+
|
|
1952
|
+
[[package]]
|
|
1953
|
+
name = "serde_derive"
|
|
1954
|
+
version = "1.0.229"
|
|
1955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1956
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1957
|
+
dependencies = [
|
|
1958
|
+
"proc-macro2",
|
|
1959
|
+
"quote",
|
|
1960
|
+
"syn 3.0.3",
|
|
1961
|
+
]
|
|
1962
|
+
|
|
1963
|
+
[[package]]
|
|
1964
|
+
name = "serde_json"
|
|
1965
|
+
version = "1.0.151"
|
|
1966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
1968
|
+
dependencies = [
|
|
1969
|
+
"itoa",
|
|
1970
|
+
"memchr",
|
|
1971
|
+
"serde",
|
|
1972
|
+
"serde_core",
|
|
1973
|
+
"zmij",
|
|
1974
|
+
]
|
|
1975
|
+
|
|
1976
|
+
[[package]]
|
|
1977
|
+
name = "sha2"
|
|
1978
|
+
version = "0.10.9"
|
|
1979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1981
|
+
dependencies = [
|
|
1982
|
+
"cfg-if",
|
|
1983
|
+
"cpufeatures 0.2.17",
|
|
1984
|
+
"digest",
|
|
1985
|
+
]
|
|
1986
|
+
|
|
1987
|
+
[[package]]
|
|
1988
|
+
name = "shlex"
|
|
1989
|
+
version = "2.0.1"
|
|
1990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1992
|
+
|
|
1993
|
+
[[package]]
|
|
1994
|
+
name = "simba"
|
|
1995
|
+
version = "0.9.1"
|
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
+
checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
|
|
1998
|
+
dependencies = [
|
|
1999
|
+
"approx",
|
|
2000
|
+
"num-complex",
|
|
2001
|
+
"num-traits",
|
|
2002
|
+
"paste",
|
|
2003
|
+
"wide",
|
|
2004
|
+
]
|
|
2005
|
+
|
|
2006
|
+
[[package]]
|
|
2007
|
+
name = "simd-adler32"
|
|
2008
|
+
version = "0.3.10"
|
|
2009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
2011
|
+
|
|
2012
|
+
[[package]]
|
|
2013
|
+
name = "simd_helpers"
|
|
2014
|
+
version = "0.1.0"
|
|
2015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
+
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
|
|
2017
|
+
dependencies = [
|
|
2018
|
+
"quote",
|
|
2019
|
+
]
|
|
2020
|
+
|
|
2021
|
+
[[package]]
|
|
2022
|
+
name = "siphasher"
|
|
2023
|
+
version = "1.0.3"
|
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
2026
|
+
|
|
2027
|
+
[[package]]
|
|
2028
|
+
name = "slab"
|
|
2029
|
+
version = "0.4.12"
|
|
2030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2031
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2032
|
+
|
|
2033
|
+
[[package]]
|
|
2034
|
+
name = "smallvec"
|
|
2035
|
+
version = "1.15.2"
|
|
2036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2037
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
2038
|
+
|
|
2039
|
+
[[package]]
|
|
2040
|
+
name = "stable_deref_trait"
|
|
2041
|
+
version = "1.2.1"
|
|
2042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2043
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2044
|
+
|
|
2045
|
+
[[package]]
|
|
2046
|
+
name = "strength_reduce"
|
|
2047
|
+
version = "0.2.4"
|
|
2048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2049
|
+
checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
2050
|
+
|
|
2051
|
+
[[package]]
|
|
2052
|
+
name = "stringprep"
|
|
2053
|
+
version = "0.1.5"
|
|
2054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2055
|
+
checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
|
|
2056
|
+
dependencies = [
|
|
2057
|
+
"unicode-bidi",
|
|
2058
|
+
"unicode-normalization",
|
|
2059
|
+
"unicode-properties",
|
|
2060
|
+
]
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "strsim"
|
|
2064
|
+
version = "0.11.1"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2067
|
+
|
|
2068
|
+
[[package]]
|
|
2069
|
+
name = "syn"
|
|
2070
|
+
version = "2.0.119"
|
|
2071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2072
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
2073
|
+
dependencies = [
|
|
2074
|
+
"proc-macro2",
|
|
2075
|
+
"quote",
|
|
2076
|
+
"unicode-ident",
|
|
2077
|
+
]
|
|
2078
|
+
|
|
2079
|
+
[[package]]
|
|
2080
|
+
name = "syn"
|
|
2081
|
+
version = "3.0.3"
|
|
2082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
2084
|
+
dependencies = [
|
|
2085
|
+
"proc-macro2",
|
|
2086
|
+
"quote",
|
|
2087
|
+
"unicode-ident",
|
|
2088
|
+
]
|
|
2089
|
+
|
|
2090
|
+
[[package]]
|
|
2091
|
+
name = "thiserror"
|
|
2092
|
+
version = "2.0.19"
|
|
2093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2094
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
2095
|
+
dependencies = [
|
|
2096
|
+
"thiserror-impl",
|
|
2097
|
+
]
|
|
2098
|
+
|
|
2099
|
+
[[package]]
|
|
2100
|
+
name = "thiserror-impl"
|
|
2101
|
+
version = "2.0.19"
|
|
2102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2103
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
2104
|
+
dependencies = [
|
|
2105
|
+
"proc-macro2",
|
|
2106
|
+
"quote",
|
|
2107
|
+
"syn 3.0.3",
|
|
2108
|
+
]
|
|
2109
|
+
|
|
2110
|
+
[[package]]
|
|
2111
|
+
name = "tiff"
|
|
2112
|
+
version = "0.11.3"
|
|
2113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2114
|
+
checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
|
|
2115
|
+
dependencies = [
|
|
2116
|
+
"fax",
|
|
2117
|
+
"flate2",
|
|
2118
|
+
"half",
|
|
2119
|
+
"quick-error",
|
|
2120
|
+
"weezl",
|
|
2121
|
+
"zune-jpeg",
|
|
2122
|
+
]
|
|
2123
|
+
|
|
2124
|
+
[[package]]
|
|
2125
|
+
name = "time"
|
|
2126
|
+
version = "0.3.54"
|
|
2127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2128
|
+
checksum = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244"
|
|
2129
|
+
dependencies = [
|
|
2130
|
+
"deranged",
|
|
2131
|
+
"num-conv",
|
|
2132
|
+
"powerfmt",
|
|
2133
|
+
"serde_core",
|
|
2134
|
+
"time-core",
|
|
2135
|
+
"time-macros",
|
|
2136
|
+
]
|
|
2137
|
+
|
|
2138
|
+
[[package]]
|
|
2139
|
+
name = "time-core"
|
|
2140
|
+
version = "0.1.9"
|
|
2141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
2143
|
+
|
|
2144
|
+
[[package]]
|
|
2145
|
+
name = "time-macros"
|
|
2146
|
+
version = "0.2.32"
|
|
2147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2148
|
+
checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
|
|
2149
|
+
dependencies = [
|
|
2150
|
+
"num-conv",
|
|
2151
|
+
"time-core",
|
|
2152
|
+
]
|
|
2153
|
+
|
|
2154
|
+
[[package]]
|
|
2155
|
+
name = "tinyvec"
|
|
2156
|
+
version = "1.12.0"
|
|
2157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
2159
|
+
dependencies = [
|
|
2160
|
+
"tinyvec_macros",
|
|
2161
|
+
]
|
|
2162
|
+
|
|
2163
|
+
[[package]]
|
|
2164
|
+
name = "tinyvec_macros"
|
|
2165
|
+
version = "0.1.1"
|
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
2168
|
+
|
|
2169
|
+
[[package]]
|
|
2170
|
+
name = "transpose"
|
|
2171
|
+
version = "0.2.3"
|
|
2172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
+
checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e"
|
|
2174
|
+
dependencies = [
|
|
2175
|
+
"num-integer",
|
|
2176
|
+
"strength_reduce",
|
|
2177
|
+
]
|
|
2178
|
+
|
|
2179
|
+
[[package]]
|
|
2180
|
+
name = "ttf-parser"
|
|
2181
|
+
version = "0.25.1"
|
|
2182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2183
|
+
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
|
2184
|
+
|
|
2185
|
+
[[package]]
|
|
2186
|
+
name = "typenum"
|
|
2187
|
+
version = "1.20.1"
|
|
2188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2189
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
2190
|
+
|
|
2191
|
+
[[package]]
|
|
2192
|
+
name = "unicode-bidi"
|
|
2193
|
+
version = "0.3.18"
|
|
2194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2195
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
2196
|
+
|
|
2197
|
+
[[package]]
|
|
2198
|
+
name = "unicode-ident"
|
|
2199
|
+
version = "1.0.24"
|
|
2200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2201
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2202
|
+
|
|
2203
|
+
[[package]]
|
|
2204
|
+
name = "unicode-normalization"
|
|
2205
|
+
version = "0.1.25"
|
|
2206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
2208
|
+
dependencies = [
|
|
2209
|
+
"tinyvec",
|
|
2210
|
+
]
|
|
2211
|
+
|
|
2212
|
+
[[package]]
|
|
2213
|
+
name = "unicode-properties"
|
|
2214
|
+
version = "0.1.4"
|
|
2215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2216
|
+
checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
|
|
2217
|
+
|
|
2218
|
+
[[package]]
|
|
2219
|
+
name = "unicode-segmentation"
|
|
2220
|
+
version = "1.13.3"
|
|
2221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2222
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
2223
|
+
|
|
2224
|
+
[[package]]
|
|
2225
|
+
name = "uriparse"
|
|
2226
|
+
version = "0.6.4"
|
|
2227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
+
checksum = "0200d0fc04d809396c2ad43f3c95da3582a2556eba8d453c1087f4120ee352ff"
|
|
2229
|
+
dependencies = [
|
|
2230
|
+
"fnv",
|
|
2231
|
+
"lazy_static",
|
|
2232
|
+
]
|
|
2233
|
+
|
|
2234
|
+
[[package]]
|
|
2235
|
+
name = "urlencoding"
|
|
2236
|
+
version = "2.1.3"
|
|
2237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2238
|
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
2239
|
+
|
|
2240
|
+
[[package]]
|
|
2241
|
+
name = "utf8parse"
|
|
2242
|
+
version = "0.2.2"
|
|
2243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2244
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2245
|
+
|
|
2246
|
+
[[package]]
|
|
2247
|
+
name = "v_frame"
|
|
2248
|
+
version = "0.3.9"
|
|
2249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2250
|
+
checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
|
|
2251
|
+
dependencies = [
|
|
2252
|
+
"aligned-vec",
|
|
2253
|
+
"num-traits",
|
|
2254
|
+
"wasm-bindgen",
|
|
2255
|
+
]
|
|
2256
|
+
|
|
2257
|
+
[[package]]
|
|
2258
|
+
name = "version_check"
|
|
2259
|
+
version = "0.9.5"
|
|
2260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2262
|
+
|
|
2263
|
+
[[package]]
|
|
2264
|
+
name = "wasip2"
|
|
2265
|
+
version = "1.0.4+wasi-0.2.12"
|
|
2266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2267
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
2268
|
+
dependencies = [
|
|
2269
|
+
"wit-bindgen",
|
|
2270
|
+
]
|
|
2271
|
+
|
|
2272
|
+
[[package]]
|
|
2273
|
+
name = "wasm-bindgen"
|
|
2274
|
+
version = "0.2.126"
|
|
2275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2276
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
2277
|
+
dependencies = [
|
|
2278
|
+
"cfg-if",
|
|
2279
|
+
"once_cell",
|
|
2280
|
+
"rustversion",
|
|
2281
|
+
"wasm-bindgen-macro",
|
|
2282
|
+
"wasm-bindgen-shared",
|
|
2283
|
+
]
|
|
2284
|
+
|
|
2285
|
+
[[package]]
|
|
2286
|
+
name = "wasm-bindgen-macro"
|
|
2287
|
+
version = "0.2.126"
|
|
2288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2289
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
2290
|
+
dependencies = [
|
|
2291
|
+
"quote",
|
|
2292
|
+
"wasm-bindgen-macro-support",
|
|
2293
|
+
]
|
|
2294
|
+
|
|
2295
|
+
[[package]]
|
|
2296
|
+
name = "wasm-bindgen-macro-support"
|
|
2297
|
+
version = "0.2.126"
|
|
2298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2299
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
2300
|
+
dependencies = [
|
|
2301
|
+
"bumpalo",
|
|
2302
|
+
"proc-macro2",
|
|
2303
|
+
"quote",
|
|
2304
|
+
"syn 2.0.119",
|
|
2305
|
+
"wasm-bindgen-shared",
|
|
2306
|
+
]
|
|
2307
|
+
|
|
2308
|
+
[[package]]
|
|
2309
|
+
name = "wasm-bindgen-shared"
|
|
2310
|
+
version = "0.2.126"
|
|
2311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
2313
|
+
dependencies = [
|
|
2314
|
+
"unicode-ident",
|
|
2315
|
+
]
|
|
2316
|
+
|
|
2317
|
+
[[package]]
|
|
2318
|
+
name = "weezl"
|
|
2319
|
+
version = "0.1.12"
|
|
2320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2321
|
+
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
2322
|
+
|
|
2323
|
+
[[package]]
|
|
2324
|
+
name = "wide"
|
|
2325
|
+
version = "0.7.33"
|
|
2326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
|
+
checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
|
|
2328
|
+
dependencies = [
|
|
2329
|
+
"bytemuck",
|
|
2330
|
+
"safe_arch",
|
|
2331
|
+
]
|
|
2332
|
+
|
|
2333
|
+
[[package]]
|
|
2334
|
+
name = "windows-core"
|
|
2335
|
+
version = "0.62.2"
|
|
2336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2337
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2338
|
+
dependencies = [
|
|
2339
|
+
"windows-implement",
|
|
2340
|
+
"windows-interface",
|
|
2341
|
+
"windows-link",
|
|
2342
|
+
"windows-result",
|
|
2343
|
+
"windows-strings",
|
|
2344
|
+
]
|
|
2345
|
+
|
|
2346
|
+
[[package]]
|
|
2347
|
+
name = "windows-implement"
|
|
2348
|
+
version = "0.60.2"
|
|
2349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2350
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2351
|
+
dependencies = [
|
|
2352
|
+
"proc-macro2",
|
|
2353
|
+
"quote",
|
|
2354
|
+
"syn 2.0.119",
|
|
2355
|
+
]
|
|
2356
|
+
|
|
2357
|
+
[[package]]
|
|
2358
|
+
name = "windows-interface"
|
|
2359
|
+
version = "0.59.3"
|
|
2360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2362
|
+
dependencies = [
|
|
2363
|
+
"proc-macro2",
|
|
2364
|
+
"quote",
|
|
2365
|
+
"syn 2.0.119",
|
|
2366
|
+
]
|
|
2367
|
+
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "windows-link"
|
|
2370
|
+
version = "0.2.1"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2373
|
+
|
|
2374
|
+
[[package]]
|
|
2375
|
+
name = "windows-result"
|
|
2376
|
+
version = "0.4.1"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2379
|
+
dependencies = [
|
|
2380
|
+
"windows-link",
|
|
2381
|
+
]
|
|
2382
|
+
|
|
2383
|
+
[[package]]
|
|
2384
|
+
name = "windows-strings"
|
|
2385
|
+
version = "0.5.1"
|
|
2386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2388
|
+
dependencies = [
|
|
2389
|
+
"windows-link",
|
|
2390
|
+
]
|
|
2391
|
+
|
|
2392
|
+
[[package]]
|
|
2393
|
+
name = "windows-sys"
|
|
2394
|
+
version = "0.61.2"
|
|
2395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2396
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2397
|
+
dependencies = [
|
|
2398
|
+
"windows-link",
|
|
2399
|
+
]
|
|
2400
|
+
|
|
2401
|
+
[[package]]
|
|
2402
|
+
name = "wit-bindgen"
|
|
2403
|
+
version = "0.57.1"
|
|
2404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2405
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2406
|
+
|
|
2407
|
+
[[package]]
|
|
2408
|
+
name = "y4m"
|
|
2409
|
+
version = "0.8.0"
|
|
2410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
+
checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
|
|
2412
|
+
|
|
2413
|
+
[[package]]
|
|
2414
|
+
name = "zerocopy"
|
|
2415
|
+
version = "0.8.55"
|
|
2416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2417
|
+
checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
|
|
2418
|
+
dependencies = [
|
|
2419
|
+
"zerocopy-derive",
|
|
2420
|
+
]
|
|
2421
|
+
|
|
2422
|
+
[[package]]
|
|
2423
|
+
name = "zerocopy-derive"
|
|
2424
|
+
version = "0.8.55"
|
|
2425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
+
checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
|
|
2427
|
+
dependencies = [
|
|
2428
|
+
"proc-macro2",
|
|
2429
|
+
"quote",
|
|
2430
|
+
"syn 2.0.119",
|
|
2431
|
+
]
|
|
2432
|
+
|
|
2433
|
+
[[package]]
|
|
2434
|
+
name = "zmij"
|
|
2435
|
+
version = "1.0.23"
|
|
2436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|
|
2438
|
+
|
|
2439
|
+
[[package]]
|
|
2440
|
+
name = "zpl-renderer"
|
|
2441
|
+
version = "0.1.0"
|
|
2442
|
+
dependencies = [
|
|
2443
|
+
"clap",
|
|
2444
|
+
"image",
|
|
2445
|
+
"labelize",
|
|
2446
|
+
"rxing",
|
|
2447
|
+
"serde",
|
|
2448
|
+
"serde_json",
|
|
2449
|
+
]
|
|
2450
|
+
|
|
2451
|
+
[[package]]
|
|
2452
|
+
name = "zune-core"
|
|
2453
|
+
version = "0.5.1"
|
|
2454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2455
|
+
checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
|
|
2456
|
+
|
|
2457
|
+
[[package]]
|
|
2458
|
+
name = "zune-inflate"
|
|
2459
|
+
version = "0.2.54"
|
|
2460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
+
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
|
|
2462
|
+
dependencies = [
|
|
2463
|
+
"simd-adler32",
|
|
2464
|
+
]
|
|
2465
|
+
|
|
2466
|
+
[[package]]
|
|
2467
|
+
name = "zune-jpeg"
|
|
2468
|
+
version = "0.5.15"
|
|
2469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2470
|
+
checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
|
|
2471
|
+
dependencies = [
|
|
2472
|
+
"zune-core",
|
|
2473
|
+
]
|