kp_anydoc 0.2.4
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 +11 -0
- data/Cargo.lock +1438 -0
- data/Cargo.toml +3 -0
- data/LICENSE.txt +21 -0
- data/README.md +69 -0
- data/THIRD-PARTY-LICENSES.txt +2856 -0
- data/ext/anydoc/Cargo.toml +15 -0
- data/ext/anydoc/extconf.rb +4 -0
- data/ext/anydoc/src/lib.rs +39 -0
- data/lib/anydoc/version.rb +5 -0
- data/lib/anydoc.rb +28 -0
- metadata +126 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,1438 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aes"
|
|
13
|
+
version = "0.8.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"cipher",
|
|
19
|
+
"cpufeatures 0.2.17",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[[package]]
|
|
23
|
+
name = "aho-corasick"
|
|
24
|
+
version = "1.1.5"
|
|
25
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
27
|
+
dependencies = [
|
|
28
|
+
"memchr",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "android_system_properties"
|
|
33
|
+
version = "0.1.6"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
|
|
36
|
+
dependencies = [
|
|
37
|
+
"libc",
|
|
38
|
+
]
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "anstream"
|
|
42
|
+
version = "1.0.0"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"anstyle",
|
|
47
|
+
"anstyle-parse",
|
|
48
|
+
"anstyle-query",
|
|
49
|
+
"anstyle-wincon",
|
|
50
|
+
"colorchoice",
|
|
51
|
+
"is_terminal_polyfill",
|
|
52
|
+
"utf8parse",
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[[package]]
|
|
56
|
+
name = "anstyle"
|
|
57
|
+
version = "1.0.14"
|
|
58
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "anstyle-parse"
|
|
63
|
+
version = "1.0.0"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"utf8parse",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "anstyle-query"
|
|
72
|
+
version = "1.1.5"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
75
|
+
dependencies = [
|
|
76
|
+
"windows-sys",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "anstyle-wincon"
|
|
81
|
+
version = "3.0.11"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"anstyle",
|
|
86
|
+
"once_cell_polyfill",
|
|
87
|
+
"windows-sys",
|
|
88
|
+
]
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "anydoc"
|
|
92
|
+
version = "0.1.0"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"anydoc 0.2.4",
|
|
95
|
+
"magnus",
|
|
96
|
+
"rb-sys",
|
|
97
|
+
]
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "anydoc"
|
|
101
|
+
version = "0.2.4"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "cf0d78e4cfe3654eb3ea04422ec5a94352000ee56e97902125e68e51f7527062"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"cfb",
|
|
106
|
+
"csv",
|
|
107
|
+
"encoding_rs",
|
|
108
|
+
"flate2",
|
|
109
|
+
"log",
|
|
110
|
+
"pdf-inspector",
|
|
111
|
+
"quick-xml",
|
|
112
|
+
"zip",
|
|
113
|
+
]
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "autocfg"
|
|
117
|
+
version = "1.5.1"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
120
|
+
|
|
121
|
+
[[package]]
|
|
122
|
+
name = "bindgen"
|
|
123
|
+
version = "0.72.1"
|
|
124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
126
|
+
dependencies = [
|
|
127
|
+
"bitflags 2.13.1",
|
|
128
|
+
"cexpr",
|
|
129
|
+
"clang-sys",
|
|
130
|
+
"itertools",
|
|
131
|
+
"proc-macro2",
|
|
132
|
+
"quote",
|
|
133
|
+
"regex",
|
|
134
|
+
"rustc-hash",
|
|
135
|
+
"shlex 1.3.0",
|
|
136
|
+
"syn 2.0.119",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "bitflags"
|
|
141
|
+
version = "1.3.2"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "bitflags"
|
|
147
|
+
version = "2.13.1"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "block-buffer"
|
|
153
|
+
version = "0.10.4"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
156
|
+
dependencies = [
|
|
157
|
+
"generic-array",
|
|
158
|
+
]
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "block-padding"
|
|
162
|
+
version = "0.3.3"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
|
|
165
|
+
dependencies = [
|
|
166
|
+
"generic-array",
|
|
167
|
+
]
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "bumpalo"
|
|
171
|
+
version = "3.20.3"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "cbc"
|
|
177
|
+
version = "0.1.2"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
|
|
180
|
+
dependencies = [
|
|
181
|
+
"cipher",
|
|
182
|
+
]
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "cc"
|
|
186
|
+
version = "1.4.3"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "509591b7bcd67f4ef775afad7662703b4935daaa6ec0e5605cfb1090b32a2b6d"
|
|
189
|
+
dependencies = [
|
|
190
|
+
"find-msvc-tools",
|
|
191
|
+
"shlex 2.0.1",
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "cexpr"
|
|
196
|
+
version = "0.6.0"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
199
|
+
dependencies = [
|
|
200
|
+
"nom 7.1.3",
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "cfb"
|
|
205
|
+
version = "0.14.0"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "a347dcabdae9c31b0825fd6a8bed285ec9c2acb89c47827126d52fa4f59cece3"
|
|
208
|
+
dependencies = [
|
|
209
|
+
"fnv",
|
|
210
|
+
"uuid",
|
|
211
|
+
"web-time",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "cfg-if"
|
|
216
|
+
version = "1.0.4"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
219
|
+
|
|
220
|
+
[[package]]
|
|
221
|
+
name = "chacha20"
|
|
222
|
+
version = "0.10.1"
|
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
224
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
225
|
+
dependencies = [
|
|
226
|
+
"cfg-if",
|
|
227
|
+
"cpufeatures 0.3.0",
|
|
228
|
+
"rand_core",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "chrono"
|
|
233
|
+
version = "0.4.45"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"iana-time-zone",
|
|
238
|
+
"num-traits",
|
|
239
|
+
"windows-link",
|
|
240
|
+
]
|
|
241
|
+
|
|
242
|
+
[[package]]
|
|
243
|
+
name = "cipher"
|
|
244
|
+
version = "0.4.4"
|
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
247
|
+
dependencies = [
|
|
248
|
+
"crypto-common",
|
|
249
|
+
"inout",
|
|
250
|
+
]
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "clang-sys"
|
|
254
|
+
version = "1.9.1"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"glob",
|
|
259
|
+
"libc",
|
|
260
|
+
"libloading",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "colorchoice"
|
|
265
|
+
version = "1.0.5"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
268
|
+
|
|
269
|
+
[[package]]
|
|
270
|
+
name = "core-foundation-sys"
|
|
271
|
+
version = "0.8.7"
|
|
272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "cpufeatures"
|
|
277
|
+
version = "0.2.17"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
280
|
+
dependencies = [
|
|
281
|
+
"libc",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "cpufeatures"
|
|
286
|
+
version = "0.3.0"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"libc",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "crc32fast"
|
|
295
|
+
version = "1.5.0"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"cfg-if",
|
|
300
|
+
]
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "crossbeam-deque"
|
|
304
|
+
version = "0.8.7"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"crossbeam-epoch",
|
|
309
|
+
"crossbeam-utils",
|
|
310
|
+
]
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "crossbeam-epoch"
|
|
314
|
+
version = "0.9.20"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
317
|
+
dependencies = [
|
|
318
|
+
"crossbeam-utils",
|
|
319
|
+
]
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "crossbeam-utils"
|
|
323
|
+
version = "0.8.22"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "crypto-common"
|
|
329
|
+
version = "0.1.7"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"generic-array",
|
|
334
|
+
"typenum",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "csv"
|
|
339
|
+
version = "1.4.0"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"csv-core",
|
|
344
|
+
"itoa",
|
|
345
|
+
"ryu",
|
|
346
|
+
"serde_core",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "csv-core"
|
|
351
|
+
version = "0.1.13"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"memchr",
|
|
356
|
+
]
|
|
357
|
+
|
|
358
|
+
[[package]]
|
|
359
|
+
name = "defmt"
|
|
360
|
+
version = "1.1.1"
|
|
361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
+
checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
|
|
363
|
+
dependencies = [
|
|
364
|
+
"bitflags 1.3.2",
|
|
365
|
+
"defmt-macros",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "defmt-macros"
|
|
370
|
+
version = "1.1.1"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"defmt-parser",
|
|
375
|
+
"proc-macro2",
|
|
376
|
+
"quote",
|
|
377
|
+
"syn 2.0.119",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "defmt-parser"
|
|
382
|
+
version = "1.0.0"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"thiserror",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "deranged"
|
|
391
|
+
version = "0.5.8"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "digest"
|
|
397
|
+
version = "0.10.7"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"block-buffer",
|
|
402
|
+
"crypto-common",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "ecb"
|
|
407
|
+
version = "0.1.2"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "1a8bfa975b1aec2145850fcaa1c6fe269a16578c44705a532ae3edc92b8881c7"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"cipher",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "either"
|
|
416
|
+
version = "1.17.0"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "encoding_rs"
|
|
422
|
+
version = "0.8.35"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"cfg-if",
|
|
427
|
+
]
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "env_filter"
|
|
431
|
+
version = "2.0.0"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "900d271a03799a1ee8d1ca9b19893b48ca674a9284fefcfb85f05e74ed314217"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"log",
|
|
436
|
+
"regex",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "env_logger"
|
|
441
|
+
version = "0.11.11"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "de671bd27a75a797dc9ae289ba1e77276e75e2026408aab65185384e2d5cd3f6"
|
|
444
|
+
dependencies = [
|
|
445
|
+
"anstream",
|
|
446
|
+
"anstyle",
|
|
447
|
+
"env_filter",
|
|
448
|
+
"jiff",
|
|
449
|
+
"log",
|
|
450
|
+
]
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "equivalent"
|
|
454
|
+
version = "1.0.2"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "find-msvc-tools"
|
|
460
|
+
version = "0.1.11"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "flate2"
|
|
466
|
+
version = "1.1.9"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
469
|
+
dependencies = [
|
|
470
|
+
"crc32fast",
|
|
471
|
+
"miniz_oxide",
|
|
472
|
+
"zlib-rs",
|
|
473
|
+
]
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "fnv"
|
|
477
|
+
version = "1.0.7"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "futures-core"
|
|
483
|
+
version = "0.3.34"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "futures-task"
|
|
489
|
+
version = "0.3.34"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "futures-util"
|
|
495
|
+
version = "0.3.34"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
498
|
+
dependencies = [
|
|
499
|
+
"futures-core",
|
|
500
|
+
"futures-task",
|
|
501
|
+
"pin-project-lite",
|
|
502
|
+
"slab",
|
|
503
|
+
]
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "generic-array"
|
|
507
|
+
version = "0.14.7"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
510
|
+
dependencies = [
|
|
511
|
+
"typenum",
|
|
512
|
+
"version_check",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "getrandom"
|
|
517
|
+
version = "0.4.3"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"cfg-if",
|
|
522
|
+
"js-sys",
|
|
523
|
+
"libc",
|
|
524
|
+
"r-efi",
|
|
525
|
+
"rand_core",
|
|
526
|
+
"wasm-bindgen",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "glob"
|
|
531
|
+
version = "0.3.4"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "hashbrown"
|
|
537
|
+
version = "0.17.1"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
540
|
+
|
|
541
|
+
[[package]]
|
|
542
|
+
name = "iana-time-zone"
|
|
543
|
+
version = "0.1.65"
|
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
545
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
546
|
+
dependencies = [
|
|
547
|
+
"android_system_properties",
|
|
548
|
+
"core-foundation-sys",
|
|
549
|
+
"iana-time-zone-haiku",
|
|
550
|
+
"js-sys",
|
|
551
|
+
"log",
|
|
552
|
+
"wasm-bindgen",
|
|
553
|
+
"windows-core",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "iana-time-zone-haiku"
|
|
558
|
+
version = "0.1.2"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"cc",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "include_dir"
|
|
567
|
+
version = "0.7.4"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"include_dir_macros",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "include_dir_macros"
|
|
576
|
+
version = "0.7.4"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"proc-macro2",
|
|
581
|
+
"quote",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "indexmap"
|
|
586
|
+
version = "2.14.0"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"equivalent",
|
|
591
|
+
"hashbrown",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "inout"
|
|
596
|
+
version = "0.1.4"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"block-padding",
|
|
601
|
+
"generic-array",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "is_terminal_polyfill"
|
|
606
|
+
version = "1.70.2"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "itertools"
|
|
612
|
+
version = "0.13.0"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"either",
|
|
617
|
+
]
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "itoa"
|
|
621
|
+
version = "1.0.18"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "jiff"
|
|
627
|
+
version = "0.2.35"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "668b7183bd07af9a4885f5c35b0cc5c83c4607a913c16b7e17291832910d2dcc"
|
|
630
|
+
dependencies = [
|
|
631
|
+
"defmt",
|
|
632
|
+
"jiff-core",
|
|
633
|
+
"jiff-static",
|
|
634
|
+
"jiff-tzdb-platform",
|
|
635
|
+
"log",
|
|
636
|
+
"portable-atomic",
|
|
637
|
+
"portable-atomic-util",
|
|
638
|
+
"serde_core",
|
|
639
|
+
"windows-link",
|
|
640
|
+
]
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "jiff-core"
|
|
644
|
+
version = "0.1.0"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "7feca88439efe53da3754500c1851dedf3cb36c524dd5cf8225cc0794de95d09"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"defmt",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "jiff-static"
|
|
653
|
+
version = "0.2.35"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "3a69dcb3a21cfb32ce1cd056169337ca284af0766dd766e7878819b251a49204"
|
|
656
|
+
dependencies = [
|
|
657
|
+
"jiff-core",
|
|
658
|
+
"proc-macro2",
|
|
659
|
+
"quote",
|
|
660
|
+
"syn 2.0.119",
|
|
661
|
+
]
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "jiff-tzdb"
|
|
665
|
+
version = "0.1.8"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "jiff-tzdb-platform"
|
|
671
|
+
version = "0.1.3"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"jiff-tzdb",
|
|
676
|
+
]
|
|
677
|
+
|
|
678
|
+
[[package]]
|
|
679
|
+
name = "js-sys"
|
|
680
|
+
version = "0.3.104"
|
|
681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
+
checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
|
|
683
|
+
dependencies = [
|
|
684
|
+
"cfg-if",
|
|
685
|
+
"futures-util",
|
|
686
|
+
"wasm-bindgen",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "lazy_static"
|
|
691
|
+
version = "1.5.0"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "libc"
|
|
697
|
+
version = "0.2.189"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "libloading"
|
|
703
|
+
version = "0.8.9"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"cfg-if",
|
|
708
|
+
"windows-link",
|
|
709
|
+
]
|
|
710
|
+
|
|
711
|
+
[[package]]
|
|
712
|
+
name = "log"
|
|
713
|
+
version = "0.4.33"
|
|
714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
715
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "lopdf"
|
|
719
|
+
version = "0.42.0"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "25aab26d99567469098e64a02f42679f8965c6401263eefa31d8f2dcc37a221c"
|
|
722
|
+
dependencies = [
|
|
723
|
+
"aes",
|
|
724
|
+
"bitflags 2.13.1",
|
|
725
|
+
"cbc",
|
|
726
|
+
"chrono",
|
|
727
|
+
"ecb",
|
|
728
|
+
"encoding_rs",
|
|
729
|
+
"flate2",
|
|
730
|
+
"getrandom",
|
|
731
|
+
"indexmap",
|
|
732
|
+
"itoa",
|
|
733
|
+
"jiff",
|
|
734
|
+
"log",
|
|
735
|
+
"md-5",
|
|
736
|
+
"nom 8.0.0",
|
|
737
|
+
"rand",
|
|
738
|
+
"rangemap",
|
|
739
|
+
"rayon",
|
|
740
|
+
"sha2",
|
|
741
|
+
"stringprep",
|
|
742
|
+
"thiserror",
|
|
743
|
+
"time",
|
|
744
|
+
"ttf-parser",
|
|
745
|
+
"weezl",
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "magnus"
|
|
750
|
+
version = "0.8.2"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"magnus-macros",
|
|
755
|
+
"rb-sys",
|
|
756
|
+
"rb-sys-env",
|
|
757
|
+
"seq-macro",
|
|
758
|
+
]
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "magnus-macros"
|
|
762
|
+
version = "0.8.0"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
765
|
+
dependencies = [
|
|
766
|
+
"proc-macro2",
|
|
767
|
+
"quote",
|
|
768
|
+
"syn 2.0.119",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "md-5"
|
|
773
|
+
version = "0.10.6"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"cfg-if",
|
|
778
|
+
"digest",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "memchr"
|
|
783
|
+
version = "2.8.3"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "minimal-lexical"
|
|
789
|
+
version = "0.2.1"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "miniz_oxide"
|
|
795
|
+
version = "0.8.9"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
798
|
+
dependencies = [
|
|
799
|
+
"adler2",
|
|
800
|
+
"simd-adler32",
|
|
801
|
+
]
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "nom"
|
|
805
|
+
version = "7.1.3"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
808
|
+
dependencies = [
|
|
809
|
+
"memchr",
|
|
810
|
+
"minimal-lexical",
|
|
811
|
+
]
|
|
812
|
+
|
|
813
|
+
[[package]]
|
|
814
|
+
name = "nom"
|
|
815
|
+
version = "8.0.0"
|
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
+
checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
|
|
818
|
+
dependencies = [
|
|
819
|
+
"memchr",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "num-conv"
|
|
824
|
+
version = "0.2.2"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "num-traits"
|
|
830
|
+
version = "0.2.19"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
833
|
+
dependencies = [
|
|
834
|
+
"autocfg",
|
|
835
|
+
]
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "once_cell"
|
|
839
|
+
version = "1.21.4"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "once_cell_polyfill"
|
|
845
|
+
version = "1.70.2"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "pdf-inspector"
|
|
851
|
+
version = "1.14.2"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "1e024ae242c514e2adf6aee186678e0eabdc2e5ecfbb2159186881b4498593cb"
|
|
854
|
+
dependencies = [
|
|
855
|
+
"env_logger",
|
|
856
|
+
"include_dir",
|
|
857
|
+
"log",
|
|
858
|
+
"lopdf",
|
|
859
|
+
"once_cell",
|
|
860
|
+
"rayon",
|
|
861
|
+
"regex",
|
|
862
|
+
"thiserror",
|
|
863
|
+
"ttf-parser",
|
|
864
|
+
"unicode-normalization",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "pin-project-lite"
|
|
869
|
+
version = "0.2.17"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "portable-atomic"
|
|
875
|
+
version = "1.15.0"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "portable-atomic-util"
|
|
881
|
+
version = "0.2.7"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"portable-atomic",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "powerfmt"
|
|
890
|
+
version = "0.2.0"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "proc-macro2"
|
|
896
|
+
version = "1.0.107"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"unicode-ident",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "quick-xml"
|
|
905
|
+
version = "0.41.0"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1"
|
|
908
|
+
dependencies = [
|
|
909
|
+
"memchr",
|
|
910
|
+
]
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "quote"
|
|
914
|
+
version = "1.0.47"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"proc-macro2",
|
|
919
|
+
]
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "r-efi"
|
|
923
|
+
version = "6.0.0"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "rand"
|
|
929
|
+
version = "0.10.2"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
932
|
+
dependencies = [
|
|
933
|
+
"chacha20",
|
|
934
|
+
"getrandom",
|
|
935
|
+
"rand_core",
|
|
936
|
+
]
|
|
937
|
+
|
|
938
|
+
[[package]]
|
|
939
|
+
name = "rand_core"
|
|
940
|
+
version = "0.10.1"
|
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
942
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "rangemap"
|
|
946
|
+
version = "1.8.0"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "a611d15b50743feb4c76b7d03edcb0e64f399c26961e4efe6975bc398be6aa3d"
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "rayon"
|
|
952
|
+
version = "1.12.0"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
955
|
+
dependencies = [
|
|
956
|
+
"either",
|
|
957
|
+
"rayon-core",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "rayon-core"
|
|
962
|
+
version = "1.13.0"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"crossbeam-deque",
|
|
967
|
+
"crossbeam-utils",
|
|
968
|
+
]
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "rb-sys"
|
|
972
|
+
version = "0.9.130"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "02faf625bb10ba893e3ae620f19c9fb1b5f8fcae0fe4eb86bb3f2230fad75edb"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"rb-sys-build",
|
|
977
|
+
]
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "rb-sys-build"
|
|
981
|
+
version = "0.9.130"
|
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
+
checksum = "05be6f9c86fe5482808162826f6c047d093b3670582296c770de1d94f8066694"
|
|
984
|
+
dependencies = [
|
|
985
|
+
"bindgen",
|
|
986
|
+
"lazy_static",
|
|
987
|
+
"proc-macro2",
|
|
988
|
+
"quote",
|
|
989
|
+
"regex",
|
|
990
|
+
"shell-words",
|
|
991
|
+
"syn 2.0.119",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "rb-sys-env"
|
|
996
|
+
version = "0.2.3"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "regex"
|
|
1002
|
+
version = "1.13.1"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1005
|
+
dependencies = [
|
|
1006
|
+
"aho-corasick",
|
|
1007
|
+
"memchr",
|
|
1008
|
+
"regex-automata",
|
|
1009
|
+
"regex-syntax",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "regex-automata"
|
|
1014
|
+
version = "0.4.18"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"aho-corasick",
|
|
1019
|
+
"memchr",
|
|
1020
|
+
"regex-syntax",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "regex-syntax"
|
|
1025
|
+
version = "0.8.11"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1028
|
+
|
|
1029
|
+
[[package]]
|
|
1030
|
+
name = "rustc-hash"
|
|
1031
|
+
version = "2.1.3"
|
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "rustversion"
|
|
1037
|
+
version = "1.0.23"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "ryu"
|
|
1043
|
+
version = "1.0.23"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "seq-macro"
|
|
1049
|
+
version = "0.3.6"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "serde_core"
|
|
1055
|
+
version = "1.0.229"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1058
|
+
dependencies = [
|
|
1059
|
+
"serde_derive",
|
|
1060
|
+
]
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "serde_derive"
|
|
1064
|
+
version = "1.0.229"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"proc-macro2",
|
|
1069
|
+
"quote",
|
|
1070
|
+
"syn 3.0.3",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "sha2"
|
|
1075
|
+
version = "0.10.9"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1078
|
+
dependencies = [
|
|
1079
|
+
"cfg-if",
|
|
1080
|
+
"cpufeatures 0.2.17",
|
|
1081
|
+
"digest",
|
|
1082
|
+
]
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "shell-words"
|
|
1086
|
+
version = "1.1.1"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "shlex"
|
|
1092
|
+
version = "1.3.0"
|
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1095
|
+
|
|
1096
|
+
[[package]]
|
|
1097
|
+
name = "shlex"
|
|
1098
|
+
version = "2.0.1"
|
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "simd-adler32"
|
|
1104
|
+
version = "0.3.10"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "slab"
|
|
1110
|
+
version = "0.4.12"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "stringprep"
|
|
1116
|
+
version = "0.1.5"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
|
|
1119
|
+
dependencies = [
|
|
1120
|
+
"unicode-bidi",
|
|
1121
|
+
"unicode-normalization",
|
|
1122
|
+
"unicode-properties",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "syn"
|
|
1127
|
+
version = "2.0.119"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"proc-macro2",
|
|
1132
|
+
"quote",
|
|
1133
|
+
"unicode-ident",
|
|
1134
|
+
]
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "syn"
|
|
1138
|
+
version = "3.0.3"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
1141
|
+
dependencies = [
|
|
1142
|
+
"proc-macro2",
|
|
1143
|
+
"quote",
|
|
1144
|
+
"unicode-ident",
|
|
1145
|
+
]
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "thiserror"
|
|
1149
|
+
version = "2.0.20"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
1152
|
+
dependencies = [
|
|
1153
|
+
"thiserror-impl",
|
|
1154
|
+
]
|
|
1155
|
+
|
|
1156
|
+
[[package]]
|
|
1157
|
+
name = "thiserror-impl"
|
|
1158
|
+
version = "2.0.20"
|
|
1159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
1161
|
+
dependencies = [
|
|
1162
|
+
"proc-macro2",
|
|
1163
|
+
"quote",
|
|
1164
|
+
"syn 3.0.3",
|
|
1165
|
+
]
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "time"
|
|
1169
|
+
version = "0.3.55"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
|
|
1172
|
+
dependencies = [
|
|
1173
|
+
"deranged",
|
|
1174
|
+
"num-conv",
|
|
1175
|
+
"powerfmt",
|
|
1176
|
+
"serde_core",
|
|
1177
|
+
"time-core",
|
|
1178
|
+
"time-macros",
|
|
1179
|
+
]
|
|
1180
|
+
|
|
1181
|
+
[[package]]
|
|
1182
|
+
name = "time-core"
|
|
1183
|
+
version = "0.1.9"
|
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
1186
|
+
|
|
1187
|
+
[[package]]
|
|
1188
|
+
name = "time-macros"
|
|
1189
|
+
version = "0.2.32"
|
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
+
checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
|
|
1192
|
+
dependencies = [
|
|
1193
|
+
"num-conv",
|
|
1194
|
+
"time-core",
|
|
1195
|
+
]
|
|
1196
|
+
|
|
1197
|
+
[[package]]
|
|
1198
|
+
name = "tinyvec"
|
|
1199
|
+
version = "1.12.0"
|
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
1202
|
+
dependencies = [
|
|
1203
|
+
"tinyvec_macros",
|
|
1204
|
+
]
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "tinyvec_macros"
|
|
1208
|
+
version = "0.1.1"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1211
|
+
|
|
1212
|
+
[[package]]
|
|
1213
|
+
name = "ttf-parser"
|
|
1214
|
+
version = "0.25.1"
|
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
+
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "typed-path"
|
|
1220
|
+
version = "0.12.3"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
|
|
1223
|
+
|
|
1224
|
+
[[package]]
|
|
1225
|
+
name = "typenum"
|
|
1226
|
+
version = "1.20.1"
|
|
1227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
1229
|
+
|
|
1230
|
+
[[package]]
|
|
1231
|
+
name = "unicode-bidi"
|
|
1232
|
+
version = "0.3.18"
|
|
1233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1234
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
1235
|
+
|
|
1236
|
+
[[package]]
|
|
1237
|
+
name = "unicode-ident"
|
|
1238
|
+
version = "1.0.24"
|
|
1239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1240
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "unicode-normalization"
|
|
1244
|
+
version = "0.1.25"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
|
|
1247
|
+
dependencies = [
|
|
1248
|
+
"tinyvec",
|
|
1249
|
+
]
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "unicode-properties"
|
|
1253
|
+
version = "0.1.4"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "utf8parse"
|
|
1259
|
+
version = "0.2.2"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1262
|
+
|
|
1263
|
+
[[package]]
|
|
1264
|
+
name = "uuid"
|
|
1265
|
+
version = "1.24.1"
|
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
+
checksum = "2cefc03fd367c0c6d4305de1b312cf00248c4114f4a0418ce6a6af769e3b0bd9"
|
|
1268
|
+
dependencies = [
|
|
1269
|
+
"js-sys",
|
|
1270
|
+
"wasm-bindgen",
|
|
1271
|
+
]
|
|
1272
|
+
|
|
1273
|
+
[[package]]
|
|
1274
|
+
name = "version_check"
|
|
1275
|
+
version = "0.9.5"
|
|
1276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "wasm-bindgen"
|
|
1281
|
+
version = "0.2.127"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
|
|
1284
|
+
dependencies = [
|
|
1285
|
+
"cfg-if",
|
|
1286
|
+
"once_cell",
|
|
1287
|
+
"rustversion",
|
|
1288
|
+
"wasm-bindgen-macro",
|
|
1289
|
+
"wasm-bindgen-shared",
|
|
1290
|
+
]
|
|
1291
|
+
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "wasm-bindgen-macro"
|
|
1294
|
+
version = "0.2.127"
|
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
+
checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
|
|
1297
|
+
dependencies = [
|
|
1298
|
+
"quote",
|
|
1299
|
+
"wasm-bindgen-macro-support",
|
|
1300
|
+
]
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "wasm-bindgen-macro-support"
|
|
1304
|
+
version = "0.2.127"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
|
|
1307
|
+
dependencies = [
|
|
1308
|
+
"bumpalo",
|
|
1309
|
+
"proc-macro2",
|
|
1310
|
+
"quote",
|
|
1311
|
+
"syn 2.0.119",
|
|
1312
|
+
"wasm-bindgen-shared",
|
|
1313
|
+
]
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "wasm-bindgen-shared"
|
|
1317
|
+
version = "0.2.127"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"unicode-ident",
|
|
1322
|
+
]
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "web-time"
|
|
1326
|
+
version = "1.1.0"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1329
|
+
dependencies = [
|
|
1330
|
+
"js-sys",
|
|
1331
|
+
"wasm-bindgen",
|
|
1332
|
+
]
|
|
1333
|
+
|
|
1334
|
+
[[package]]
|
|
1335
|
+
name = "weezl"
|
|
1336
|
+
version = "0.1.12"
|
|
1337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
+
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
1339
|
+
|
|
1340
|
+
[[package]]
|
|
1341
|
+
name = "windows-core"
|
|
1342
|
+
version = "0.62.2"
|
|
1343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1345
|
+
dependencies = [
|
|
1346
|
+
"windows-implement",
|
|
1347
|
+
"windows-interface",
|
|
1348
|
+
"windows-link",
|
|
1349
|
+
"windows-result",
|
|
1350
|
+
"windows-strings",
|
|
1351
|
+
]
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "windows-implement"
|
|
1355
|
+
version = "0.60.2"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1358
|
+
dependencies = [
|
|
1359
|
+
"proc-macro2",
|
|
1360
|
+
"quote",
|
|
1361
|
+
"syn 2.0.119",
|
|
1362
|
+
]
|
|
1363
|
+
|
|
1364
|
+
[[package]]
|
|
1365
|
+
name = "windows-interface"
|
|
1366
|
+
version = "0.59.3"
|
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1369
|
+
dependencies = [
|
|
1370
|
+
"proc-macro2",
|
|
1371
|
+
"quote",
|
|
1372
|
+
"syn 2.0.119",
|
|
1373
|
+
]
|
|
1374
|
+
|
|
1375
|
+
[[package]]
|
|
1376
|
+
name = "windows-link"
|
|
1377
|
+
version = "0.2.1"
|
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1380
|
+
|
|
1381
|
+
[[package]]
|
|
1382
|
+
name = "windows-result"
|
|
1383
|
+
version = "0.4.1"
|
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1386
|
+
dependencies = [
|
|
1387
|
+
"windows-link",
|
|
1388
|
+
]
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "windows-strings"
|
|
1392
|
+
version = "0.5.1"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"windows-link",
|
|
1397
|
+
]
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "windows-sys"
|
|
1401
|
+
version = "0.61.2"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1404
|
+
dependencies = [
|
|
1405
|
+
"windows-link",
|
|
1406
|
+
]
|
|
1407
|
+
|
|
1408
|
+
[[package]]
|
|
1409
|
+
name = "zip"
|
|
1410
|
+
version = "8.6.0"
|
|
1411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
+
checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
|
|
1413
|
+
dependencies = [
|
|
1414
|
+
"crc32fast",
|
|
1415
|
+
"flate2",
|
|
1416
|
+
"indexmap",
|
|
1417
|
+
"memchr",
|
|
1418
|
+
"typed-path",
|
|
1419
|
+
"zopfli",
|
|
1420
|
+
]
|
|
1421
|
+
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "zlib-rs"
|
|
1424
|
+
version = "0.6.7"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12"
|
|
1427
|
+
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "zopfli"
|
|
1430
|
+
version = "0.8.3"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
1433
|
+
dependencies = [
|
|
1434
|
+
"bumpalo",
|
|
1435
|
+
"crc32fast",
|
|
1436
|
+
"log",
|
|
1437
|
+
"simd-adler32",
|
|
1438
|
+
]
|