@remotion/renderer 4.0.148 → 4.0.150
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.lock +1207 -0
- package/Cargo.toml +27 -0
- package/dist/browser/BrowserRunner.js +1 -3
- package/dist/create-audio.js +3 -2
- package/dist/create-ffmpeg-complex-filter.d.ts +1 -4
- package/dist/options/enable-multiprocess-on-linux.js +3 -2
- package/dist/perf.js +1 -1
- package/dist/port-config.d.ts +1 -1
- package/dist/render-media.d.ts +1 -1
- package/dist/render-media.js +16 -10
- package/dist/stitch-frames-to-video.js +8 -1
- package/package.json +10 -11
package/Cargo.lock
ADDED
|
@@ -0,0 +1,1207 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler"
|
|
7
|
+
version = "1.0.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "adler32"
|
|
13
|
+
version = "1.2.0"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
|
|
16
|
+
|
|
17
|
+
[[package]]
|
|
18
|
+
name = "arboard"
|
|
19
|
+
version = "3.2.0"
|
|
20
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
+
checksum = "d6041616acea41d67c4a984709ddab1587fd0b10efe5cc563fee954d2f011854"
|
|
22
|
+
dependencies = [
|
|
23
|
+
"clipboard-win",
|
|
24
|
+
"core-graphics",
|
|
25
|
+
"image 0.24.7",
|
|
26
|
+
"log",
|
|
27
|
+
"objc",
|
|
28
|
+
"objc-foundation",
|
|
29
|
+
"objc_id",
|
|
30
|
+
"once_cell",
|
|
31
|
+
"parking_lot",
|
|
32
|
+
"thiserror",
|
|
33
|
+
"winapi",
|
|
34
|
+
"x11rb",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[[package]]
|
|
38
|
+
name = "autocfg"
|
|
39
|
+
version = "1.1.0"
|
|
40
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
41
|
+
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "bindgen"
|
|
45
|
+
version = "0.64.0"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4"
|
|
48
|
+
dependencies = [
|
|
49
|
+
"bitflags",
|
|
50
|
+
"cexpr",
|
|
51
|
+
"clang-sys",
|
|
52
|
+
"lazy_static",
|
|
53
|
+
"lazycell",
|
|
54
|
+
"peeking_take_while",
|
|
55
|
+
"proc-macro2",
|
|
56
|
+
"quote",
|
|
57
|
+
"regex",
|
|
58
|
+
"rustc-hash",
|
|
59
|
+
"shlex",
|
|
60
|
+
"syn 1.0.109",
|
|
61
|
+
]
|
|
62
|
+
|
|
63
|
+
[[package]]
|
|
64
|
+
name = "bitflags"
|
|
65
|
+
version = "1.3.2"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "block"
|
|
71
|
+
version = "0.1.6"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "bytemuck"
|
|
77
|
+
version = "1.13.1"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "byteorder"
|
|
83
|
+
version = "1.4.3"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "bytes"
|
|
89
|
+
version = "1.4.0"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "cc"
|
|
95
|
+
version = "1.0.79"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "cexpr"
|
|
101
|
+
version = "0.6.0"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"nom",
|
|
106
|
+
]
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "cfg-if"
|
|
110
|
+
version = "1.0.0"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "clang-sys"
|
|
116
|
+
version = "1.6.1"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
|
|
119
|
+
dependencies = [
|
|
120
|
+
"glob",
|
|
121
|
+
"libc",
|
|
122
|
+
"libloading",
|
|
123
|
+
]
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "clipboard-win"
|
|
127
|
+
version = "4.5.0"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362"
|
|
130
|
+
dependencies = [
|
|
131
|
+
"error-code",
|
|
132
|
+
"str-buf",
|
|
133
|
+
"winapi",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "color_quant"
|
|
138
|
+
version = "1.1.0"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "core-foundation"
|
|
144
|
+
version = "0.9.3"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"core-foundation-sys",
|
|
149
|
+
"libc",
|
|
150
|
+
]
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "core-foundation-sys"
|
|
154
|
+
version = "0.8.4"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
|
|
157
|
+
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "core-graphics"
|
|
160
|
+
version = "0.22.3"
|
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
162
|
+
checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
|
|
163
|
+
dependencies = [
|
|
164
|
+
"bitflags",
|
|
165
|
+
"core-foundation",
|
|
166
|
+
"core-graphics-types",
|
|
167
|
+
"foreign-types",
|
|
168
|
+
"libc",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "core-graphics-types"
|
|
173
|
+
version = "0.1.2"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33"
|
|
176
|
+
dependencies = [
|
|
177
|
+
"bitflags",
|
|
178
|
+
"core-foundation",
|
|
179
|
+
"libc",
|
|
180
|
+
]
|
|
181
|
+
|
|
182
|
+
[[package]]
|
|
183
|
+
name = "crc32fast"
|
|
184
|
+
version = "1.3.2"
|
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
186
|
+
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
|
187
|
+
dependencies = [
|
|
188
|
+
"cfg-if",
|
|
189
|
+
]
|
|
190
|
+
|
|
191
|
+
[[package]]
|
|
192
|
+
name = "crossbeam-deque"
|
|
193
|
+
version = "0.8.3"
|
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
+
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
|
|
196
|
+
dependencies = [
|
|
197
|
+
"cfg-if",
|
|
198
|
+
"crossbeam-epoch",
|
|
199
|
+
"crossbeam-utils",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "crossbeam-epoch"
|
|
204
|
+
version = "0.9.14"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
|
|
207
|
+
dependencies = [
|
|
208
|
+
"autocfg",
|
|
209
|
+
"cfg-if",
|
|
210
|
+
"crossbeam-utils",
|
|
211
|
+
"memoffset 0.8.0",
|
|
212
|
+
"scopeguard",
|
|
213
|
+
]
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "crossbeam-utils"
|
|
217
|
+
version = "0.8.15"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
|
|
220
|
+
dependencies = [
|
|
221
|
+
"cfg-if",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "deflate"
|
|
226
|
+
version = "0.8.6"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"adler32",
|
|
231
|
+
"byteorder",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "either"
|
|
236
|
+
version = "1.8.1"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "error-code"
|
|
242
|
+
version = "2.3.1"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21"
|
|
245
|
+
dependencies = [
|
|
246
|
+
"libc",
|
|
247
|
+
"str-buf",
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "ffmpeg-next"
|
|
252
|
+
version = "6.0.0"
|
|
253
|
+
source = "git+https://github.com/remotion-dev/rust-ffmpeg?rev=4b95450bfe5fb3165f8d2140f0c36ea7c1d1d4a0#4b95450bfe5fb3165f8d2140f0c36ea7c1d1d4a0"
|
|
254
|
+
dependencies = [
|
|
255
|
+
"bitflags",
|
|
256
|
+
"ffmpeg-sys-next",
|
|
257
|
+
"libc",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "ffmpeg-sys-next"
|
|
262
|
+
version = "6.0.1"
|
|
263
|
+
source = "git+https://github.com/remotion-dev/rust-ffmpeg-sys?rev=d22035366ee5ffbfdf95593f22d7b517f09bd29c#d22035366ee5ffbfdf95593f22d7b517f09bd29c"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"bindgen",
|
|
266
|
+
"cc",
|
|
267
|
+
"flate2",
|
|
268
|
+
"libc",
|
|
269
|
+
"num_cpus",
|
|
270
|
+
"pkg-config",
|
|
271
|
+
"tar",
|
|
272
|
+
"vcpkg",
|
|
273
|
+
]
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "filetime"
|
|
277
|
+
version = "0.2.21"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153"
|
|
280
|
+
dependencies = [
|
|
281
|
+
"cfg-if",
|
|
282
|
+
"libc",
|
|
283
|
+
"redox_syscall 0.2.16",
|
|
284
|
+
"windows-sys",
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "flate2"
|
|
289
|
+
version = "1.0.25"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
|
|
292
|
+
dependencies = [
|
|
293
|
+
"crc32fast",
|
|
294
|
+
"miniz_oxide 0.6.2",
|
|
295
|
+
]
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "foreign-types"
|
|
299
|
+
version = "0.3.2"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
302
|
+
dependencies = [
|
|
303
|
+
"foreign-types-shared",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "foreign-types-shared"
|
|
308
|
+
version = "0.1.1"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "gethostname"
|
|
314
|
+
version = "0.2.3"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
|
|
317
|
+
dependencies = [
|
|
318
|
+
"libc",
|
|
319
|
+
"winapi",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "gif"
|
|
324
|
+
version = "0.11.4"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"color_quant",
|
|
329
|
+
"weezl",
|
|
330
|
+
]
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "glob"
|
|
334
|
+
version = "0.3.1"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "hermit-abi"
|
|
340
|
+
version = "0.2.6"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
|
|
343
|
+
dependencies = [
|
|
344
|
+
"libc",
|
|
345
|
+
]
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "image"
|
|
349
|
+
version = "0.23.14"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1"
|
|
352
|
+
dependencies = [
|
|
353
|
+
"bytemuck",
|
|
354
|
+
"byteorder",
|
|
355
|
+
"color_quant",
|
|
356
|
+
"gif",
|
|
357
|
+
"jpeg-decoder 0.1.22",
|
|
358
|
+
"num-iter",
|
|
359
|
+
"num-rational 0.3.2",
|
|
360
|
+
"num-traits",
|
|
361
|
+
"png 0.16.8",
|
|
362
|
+
"scoped_threadpool",
|
|
363
|
+
"tiff 0.6.1",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "image"
|
|
368
|
+
version = "0.24.7"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"bytemuck",
|
|
373
|
+
"byteorder",
|
|
374
|
+
"color_quant",
|
|
375
|
+
"num-rational 0.4.1",
|
|
376
|
+
"num-traits",
|
|
377
|
+
"png 0.17.7",
|
|
378
|
+
"tiff 0.9.0",
|
|
379
|
+
]
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "itoa"
|
|
383
|
+
version = "1.0.6"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "jpeg-decoder"
|
|
389
|
+
version = "0.1.22"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"rayon",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "jpeg-decoder"
|
|
398
|
+
version = "0.3.0"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"rayon",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "jpeg-encoder"
|
|
407
|
+
version = "0.5.1"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "2cf3affe27ffd9f1992690ec7575568b222abe9cb39738f6531968aca8e64906"
|
|
410
|
+
|
|
411
|
+
[[package]]
|
|
412
|
+
name = "lazy_static"
|
|
413
|
+
version = "1.4.0"
|
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "lazycell"
|
|
419
|
+
version = "1.3.0"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "libc"
|
|
425
|
+
version = "0.2.153"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "libloading"
|
|
431
|
+
version = "0.7.4"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"cfg-if",
|
|
436
|
+
"winapi",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "lock_api"
|
|
441
|
+
version = "0.4.10"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
|
|
444
|
+
dependencies = [
|
|
445
|
+
"autocfg",
|
|
446
|
+
"scopeguard",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "log"
|
|
451
|
+
version = "0.4.20"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "malloc_buf"
|
|
457
|
+
version = "0.0.6"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"libc",
|
|
462
|
+
]
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "memchr"
|
|
466
|
+
version = "2.5.0"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "memoffset"
|
|
472
|
+
version = "0.6.5"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"autocfg",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "memoffset"
|
|
481
|
+
version = "0.8.0"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"autocfg",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "minimal-lexical"
|
|
490
|
+
version = "0.2.1"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "miniz_oxide"
|
|
496
|
+
version = "0.3.7"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"adler32",
|
|
501
|
+
]
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "miniz_oxide"
|
|
505
|
+
version = "0.4.4"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"adler",
|
|
510
|
+
"autocfg",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "miniz_oxide"
|
|
515
|
+
version = "0.6.2"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"adler",
|
|
520
|
+
]
|
|
521
|
+
|
|
522
|
+
[[package]]
|
|
523
|
+
name = "mp4"
|
|
524
|
+
version = "0.13.0"
|
|
525
|
+
source = "git+https://github.com/jonnyburger/mp4-rust?rev=92ba375738cc2f05a4d754e1f968cf2e97d06641#92ba375738cc2f05a4d754e1f968cf2e97d06641"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"byteorder",
|
|
528
|
+
"bytes",
|
|
529
|
+
"num-rational 0.4.1",
|
|
530
|
+
"serde",
|
|
531
|
+
"serde_json",
|
|
532
|
+
"thiserror",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "nix"
|
|
537
|
+
version = "0.24.3"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"bitflags",
|
|
542
|
+
"cfg-if",
|
|
543
|
+
"libc",
|
|
544
|
+
"memoffset 0.6.5",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "nom"
|
|
549
|
+
version = "7.1.3"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"memchr",
|
|
554
|
+
"minimal-lexical",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "ntapi"
|
|
559
|
+
version = "0.4.1"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"winapi",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "num-bigint"
|
|
568
|
+
version = "0.4.3"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"autocfg",
|
|
573
|
+
"num-integer",
|
|
574
|
+
"num-traits",
|
|
575
|
+
]
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "num-integer"
|
|
579
|
+
version = "0.1.45"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
|
582
|
+
dependencies = [
|
|
583
|
+
"autocfg",
|
|
584
|
+
"num-traits",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "num-iter"
|
|
589
|
+
version = "0.1.43"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"autocfg",
|
|
594
|
+
"num-integer",
|
|
595
|
+
"num-traits",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "num-rational"
|
|
600
|
+
version = "0.3.2"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"autocfg",
|
|
605
|
+
"num-integer",
|
|
606
|
+
"num-traits",
|
|
607
|
+
]
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "num-rational"
|
|
611
|
+
version = "0.4.1"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"autocfg",
|
|
616
|
+
"num-bigint",
|
|
617
|
+
"num-integer",
|
|
618
|
+
"num-traits",
|
|
619
|
+
"serde",
|
|
620
|
+
]
|
|
621
|
+
|
|
622
|
+
[[package]]
|
|
623
|
+
name = "num-traits"
|
|
624
|
+
version = "0.2.15"
|
|
625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
+
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
|
|
627
|
+
dependencies = [
|
|
628
|
+
"autocfg",
|
|
629
|
+
]
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "num_cpus"
|
|
633
|
+
version = "1.15.0"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
|
|
636
|
+
dependencies = [
|
|
637
|
+
"hermit-abi",
|
|
638
|
+
"libc",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "objc"
|
|
643
|
+
version = "0.2.7"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
646
|
+
dependencies = [
|
|
647
|
+
"malloc_buf",
|
|
648
|
+
]
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "objc-foundation"
|
|
652
|
+
version = "0.1.1"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"block",
|
|
657
|
+
"objc",
|
|
658
|
+
"objc_id",
|
|
659
|
+
]
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "objc_id"
|
|
663
|
+
version = "0.1.1"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
|
|
666
|
+
dependencies = [
|
|
667
|
+
"objc",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "once_cell"
|
|
672
|
+
version = "1.18.0"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "parking_lot"
|
|
678
|
+
version = "0.12.1"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
|
681
|
+
dependencies = [
|
|
682
|
+
"lock_api",
|
|
683
|
+
"parking_lot_core",
|
|
684
|
+
]
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "parking_lot_core"
|
|
688
|
+
version = "0.9.8"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
|
|
691
|
+
dependencies = [
|
|
692
|
+
"cfg-if",
|
|
693
|
+
"libc",
|
|
694
|
+
"redox_syscall 0.3.5",
|
|
695
|
+
"smallvec",
|
|
696
|
+
"windows-targets 0.48.0",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "peeking_take_while"
|
|
701
|
+
version = "0.1.2"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "pkg-config"
|
|
707
|
+
version = "0.3.26"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "png"
|
|
713
|
+
version = "0.16.8"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6"
|
|
716
|
+
dependencies = [
|
|
717
|
+
"bitflags",
|
|
718
|
+
"crc32fast",
|
|
719
|
+
"deflate",
|
|
720
|
+
"miniz_oxide 0.3.7",
|
|
721
|
+
]
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "png"
|
|
725
|
+
version = "0.17.7"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "5d708eaf860a19b19ce538740d2b4bdeeb8337fa53f7738455e706623ad5c638"
|
|
728
|
+
dependencies = [
|
|
729
|
+
"bitflags",
|
|
730
|
+
"crc32fast",
|
|
731
|
+
"flate2",
|
|
732
|
+
"miniz_oxide 0.6.2",
|
|
733
|
+
]
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "proc-macro2"
|
|
737
|
+
version = "1.0.56"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
|
|
740
|
+
dependencies = [
|
|
741
|
+
"unicode-ident",
|
|
742
|
+
]
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "quote"
|
|
746
|
+
version = "1.0.26"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
|
|
749
|
+
dependencies = [
|
|
750
|
+
"proc-macro2",
|
|
751
|
+
]
|
|
752
|
+
|
|
753
|
+
[[package]]
|
|
754
|
+
name = "rayon"
|
|
755
|
+
version = "1.9.0"
|
|
756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
+
checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd"
|
|
758
|
+
dependencies = [
|
|
759
|
+
"either",
|
|
760
|
+
"rayon-core",
|
|
761
|
+
]
|
|
762
|
+
|
|
763
|
+
[[package]]
|
|
764
|
+
name = "rayon-core"
|
|
765
|
+
version = "1.12.1"
|
|
766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
768
|
+
dependencies = [
|
|
769
|
+
"crossbeam-deque",
|
|
770
|
+
"crossbeam-utils",
|
|
771
|
+
]
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "redox_syscall"
|
|
775
|
+
version = "0.2.16"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"bitflags",
|
|
780
|
+
]
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "redox_syscall"
|
|
784
|
+
version = "0.3.5"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
|
787
|
+
dependencies = [
|
|
788
|
+
"bitflags",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "regex"
|
|
793
|
+
version = "1.7.3"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"regex-syntax",
|
|
798
|
+
]
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "regex-syntax"
|
|
802
|
+
version = "0.6.29"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
805
|
+
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "remotion-renderer"
|
|
808
|
+
version = "0.1.0"
|
|
809
|
+
dependencies = [
|
|
810
|
+
"arboard",
|
|
811
|
+
"ffmpeg-next",
|
|
812
|
+
"image 0.23.14",
|
|
813
|
+
"jpeg-decoder 0.3.0",
|
|
814
|
+
"jpeg-encoder",
|
|
815
|
+
"lazy_static",
|
|
816
|
+
"mp4",
|
|
817
|
+
"png 0.17.7",
|
|
818
|
+
"rayon",
|
|
819
|
+
"serde",
|
|
820
|
+
"serde_json",
|
|
821
|
+
"sysinfo",
|
|
822
|
+
]
|
|
823
|
+
|
|
824
|
+
[[package]]
|
|
825
|
+
name = "rustc-hash"
|
|
826
|
+
version = "1.1.0"
|
|
827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "ryu"
|
|
832
|
+
version = "1.0.13"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "scoped_threadpool"
|
|
838
|
+
version = "0.1.9"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "scopeguard"
|
|
844
|
+
version = "1.1.0"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
847
|
+
|
|
848
|
+
[[package]]
|
|
849
|
+
name = "serde"
|
|
850
|
+
version = "1.0.159"
|
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
+
checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065"
|
|
853
|
+
dependencies = [
|
|
854
|
+
"serde_derive",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "serde_derive"
|
|
859
|
+
version = "1.0.159"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"proc-macro2",
|
|
864
|
+
"quote",
|
|
865
|
+
"syn 2.0.13",
|
|
866
|
+
]
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "serde_json"
|
|
870
|
+
version = "1.0.95"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"itoa",
|
|
875
|
+
"ryu",
|
|
876
|
+
"serde",
|
|
877
|
+
]
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "shlex"
|
|
881
|
+
version = "1.3.0"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
884
|
+
|
|
885
|
+
[[package]]
|
|
886
|
+
name = "smallvec"
|
|
887
|
+
version = "1.11.0"
|
|
888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
889
|
+
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
|
|
890
|
+
|
|
891
|
+
[[package]]
|
|
892
|
+
name = "str-buf"
|
|
893
|
+
version = "1.0.6"
|
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
895
|
+
checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0"
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "syn"
|
|
899
|
+
version = "1.0.109"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"proc-macro2",
|
|
904
|
+
"quote",
|
|
905
|
+
"unicode-ident",
|
|
906
|
+
]
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "syn"
|
|
910
|
+
version = "2.0.13"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec"
|
|
913
|
+
dependencies = [
|
|
914
|
+
"proc-macro2",
|
|
915
|
+
"quote",
|
|
916
|
+
"unicode-ident",
|
|
917
|
+
]
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "sysinfo"
|
|
921
|
+
version = "0.30.7"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "0c385888ef380a852a16209afc8cfad22795dd8873d69c9a14d2e2088f118d18"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"cfg-if",
|
|
926
|
+
"core-foundation-sys",
|
|
927
|
+
"libc",
|
|
928
|
+
"ntapi",
|
|
929
|
+
"once_cell",
|
|
930
|
+
"rayon",
|
|
931
|
+
"windows",
|
|
932
|
+
]
|
|
933
|
+
|
|
934
|
+
[[package]]
|
|
935
|
+
name = "tar"
|
|
936
|
+
version = "0.4.38"
|
|
937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
938
|
+
checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
|
|
939
|
+
dependencies = [
|
|
940
|
+
"filetime",
|
|
941
|
+
"libc",
|
|
942
|
+
"xattr",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "thiserror"
|
|
947
|
+
version = "1.0.40"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
|
|
950
|
+
dependencies = [
|
|
951
|
+
"thiserror-impl",
|
|
952
|
+
]
|
|
953
|
+
|
|
954
|
+
[[package]]
|
|
955
|
+
name = "thiserror-impl"
|
|
956
|
+
version = "1.0.40"
|
|
957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
958
|
+
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
|
959
|
+
dependencies = [
|
|
960
|
+
"proc-macro2",
|
|
961
|
+
"quote",
|
|
962
|
+
"syn 2.0.13",
|
|
963
|
+
]
|
|
964
|
+
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "tiff"
|
|
967
|
+
version = "0.6.1"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "9a53f4706d65497df0c4349241deddf35f84cee19c87ed86ea8ca590f4464437"
|
|
970
|
+
dependencies = [
|
|
971
|
+
"jpeg-decoder 0.1.22",
|
|
972
|
+
"miniz_oxide 0.4.4",
|
|
973
|
+
"weezl",
|
|
974
|
+
]
|
|
975
|
+
|
|
976
|
+
[[package]]
|
|
977
|
+
name = "tiff"
|
|
978
|
+
version = "0.9.0"
|
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
980
|
+
checksum = "6d172b0f4d3fba17ba89811858b9d3d97f928aece846475bbda076ca46736211"
|
|
981
|
+
dependencies = [
|
|
982
|
+
"flate2",
|
|
983
|
+
"jpeg-decoder 0.3.0",
|
|
984
|
+
"weezl",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "unicode-ident"
|
|
989
|
+
version = "1.0.8"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "vcpkg"
|
|
995
|
+
version = "0.2.15"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "weezl"
|
|
1001
|
+
version = "0.1.7"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "winapi"
|
|
1007
|
+
version = "0.3.9"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1010
|
+
dependencies = [
|
|
1011
|
+
"winapi-i686-pc-windows-gnu",
|
|
1012
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1017
|
+
version = "0.4.0"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1020
|
+
|
|
1021
|
+
[[package]]
|
|
1022
|
+
name = "winapi-wsapoll"
|
|
1023
|
+
version = "0.1.1"
|
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1025
|
+
checksum = "44c17110f57155602a80dca10be03852116403c9ff3cd25b079d666f2aa3df6e"
|
|
1026
|
+
dependencies = [
|
|
1027
|
+
"winapi",
|
|
1028
|
+
]
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1032
|
+
version = "0.4.0"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "windows"
|
|
1038
|
+
version = "0.52.0"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"windows-core",
|
|
1043
|
+
"windows-targets 0.52.4",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "windows-core"
|
|
1048
|
+
version = "0.52.0"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"windows-targets 0.52.4",
|
|
1053
|
+
]
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "windows-sys"
|
|
1057
|
+
version = "0.48.0"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"windows-targets 0.48.0",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "windows-targets"
|
|
1066
|
+
version = "0.48.0"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"windows_aarch64_gnullvm 0.48.0",
|
|
1071
|
+
"windows_aarch64_msvc 0.48.0",
|
|
1072
|
+
"windows_i686_gnu 0.48.0",
|
|
1073
|
+
"windows_i686_msvc 0.48.0",
|
|
1074
|
+
"windows_x86_64_gnu 0.48.0",
|
|
1075
|
+
"windows_x86_64_gnullvm 0.48.0",
|
|
1076
|
+
"windows_x86_64_msvc 0.48.0",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "windows-targets"
|
|
1081
|
+
version = "0.52.4"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"windows_aarch64_gnullvm 0.52.4",
|
|
1086
|
+
"windows_aarch64_msvc 0.52.4",
|
|
1087
|
+
"windows_i686_gnu 0.52.4",
|
|
1088
|
+
"windows_i686_msvc 0.52.4",
|
|
1089
|
+
"windows_x86_64_gnu 0.52.4",
|
|
1090
|
+
"windows_x86_64_gnullvm 0.52.4",
|
|
1091
|
+
"windows_x86_64_msvc 0.52.4",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "windows_aarch64_gnullvm"
|
|
1096
|
+
version = "0.48.0"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "windows_aarch64_gnullvm"
|
|
1102
|
+
version = "0.52.4"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9"
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "windows_aarch64_msvc"
|
|
1108
|
+
version = "0.48.0"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "windows_aarch64_msvc"
|
|
1114
|
+
version = "0.52.4"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675"
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "windows_i686_gnu"
|
|
1120
|
+
version = "0.48.0"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "windows_i686_gnu"
|
|
1126
|
+
version = "0.52.4"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3"
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "windows_i686_msvc"
|
|
1132
|
+
version = "0.48.0"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "windows_i686_msvc"
|
|
1138
|
+
version = "0.52.4"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02"
|
|
1141
|
+
|
|
1142
|
+
[[package]]
|
|
1143
|
+
name = "windows_x86_64_gnu"
|
|
1144
|
+
version = "0.48.0"
|
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "windows_x86_64_gnu"
|
|
1150
|
+
version = "0.52.4"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03"
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "windows_x86_64_gnullvm"
|
|
1156
|
+
version = "0.48.0"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "windows_x86_64_gnullvm"
|
|
1162
|
+
version = "0.52.4"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177"
|
|
1165
|
+
|
|
1166
|
+
[[package]]
|
|
1167
|
+
name = "windows_x86_64_msvc"
|
|
1168
|
+
version = "0.48.0"
|
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "windows_x86_64_msvc"
|
|
1174
|
+
version = "0.52.4"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "x11rb"
|
|
1180
|
+
version = "0.10.1"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "592b4883219f345e712b3209c62654ebda0bb50887f330cbd018d0f654bfd507"
|
|
1183
|
+
dependencies = [
|
|
1184
|
+
"gethostname",
|
|
1185
|
+
"nix",
|
|
1186
|
+
"winapi",
|
|
1187
|
+
"winapi-wsapoll",
|
|
1188
|
+
"x11rb-protocol",
|
|
1189
|
+
]
|
|
1190
|
+
|
|
1191
|
+
[[package]]
|
|
1192
|
+
name = "x11rb-protocol"
|
|
1193
|
+
version = "0.10.0"
|
|
1194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
+
checksum = "56b245751c0ac9db0e006dc812031482784e434630205a93c73cfefcaabeac67"
|
|
1196
|
+
dependencies = [
|
|
1197
|
+
"nix",
|
|
1198
|
+
]
|
|
1199
|
+
|
|
1200
|
+
[[package]]
|
|
1201
|
+
name = "xattr"
|
|
1202
|
+
version = "0.2.3"
|
|
1203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
+
checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
|
|
1205
|
+
dependencies = [
|
|
1206
|
+
"libc",
|
|
1207
|
+
]
|