jpk-reader-rs 0.0.1__tar.gz
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.
- jpk_reader_rs-0.0.1/Cargo.lock +1545 -0
- jpk_reader_rs-0.0.1/Cargo.toml +14 -0
- jpk_reader_rs-0.0.1/PKG-INFO +8 -0
- jpk_reader_rs-0.0.1/py/.github/workflows/CI.yml +181 -0
- jpk_reader_rs-0.0.1/py/.gitignore +72 -0
- jpk_reader_rs-0.0.1/py/Cargo.toml +22 -0
- jpk_reader_rs-0.0.1/py/examples/qi_data.py +14 -0
- jpk_reader_rs-0.0.1/py/src/lib.rs +99 -0
- jpk_reader_rs-0.0.1/pyproject.toml +20 -0
- jpk_reader_rs-0.0.1/rs/Cargo.toml +27 -0
- jpk_reader_rs-0.0.1/rs/jpkfile-structure_of_jpk_archives.pdf +0 -0
- jpk_reader_rs-0.0.1/rs/src/lib.rs +2 -0
- jpk_reader_rs-0.0.1/rs/src/properties.rs +106 -0
- jpk_reader_rs-0.0.1/rs/src/qi_map/mod.rs +598 -0
- jpk_reader_rs-0.0.1/rs/src/qi_map/v2_0/lcd_info.rs +607 -0
- jpk_reader_rs-0.0.1/rs/src/qi_map/v2_0/mod.rs +1151 -0
- jpk_reader_rs-0.0.1/rs/tests/jpk_qi_data.rs +117 -0
|
@@ -0,0 +1,1545 @@
|
|
|
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",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[[package]]
|
|
23
|
+
name = "ahash"
|
|
24
|
+
version = "0.8.12"
|
|
25
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
27
|
+
dependencies = [
|
|
28
|
+
"cfg-if",
|
|
29
|
+
"const-random",
|
|
30
|
+
"getrandom 0.3.4",
|
|
31
|
+
"once_cell",
|
|
32
|
+
"version_check",
|
|
33
|
+
"zerocopy",
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
[[package]]
|
|
37
|
+
name = "aho-corasick"
|
|
38
|
+
version = "1.1.4"
|
|
39
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
40
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
41
|
+
dependencies = [
|
|
42
|
+
"memchr",
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
[[package]]
|
|
46
|
+
name = "android_system_properties"
|
|
47
|
+
version = "0.1.5"
|
|
48
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
49
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
50
|
+
dependencies = [
|
|
51
|
+
"libc",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "arrow"
|
|
56
|
+
version = "57.2.0"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "2a2b10dcb159faf30d3f81f6d56c1211a5bea2ca424eabe477648a44b993320e"
|
|
59
|
+
dependencies = [
|
|
60
|
+
"arrow-arith",
|
|
61
|
+
"arrow-array",
|
|
62
|
+
"arrow-buffer",
|
|
63
|
+
"arrow-cast",
|
|
64
|
+
"arrow-data",
|
|
65
|
+
"arrow-ord",
|
|
66
|
+
"arrow-pyarrow",
|
|
67
|
+
"arrow-row",
|
|
68
|
+
"arrow-schema",
|
|
69
|
+
"arrow-select",
|
|
70
|
+
"arrow-string",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "arrow-arith"
|
|
75
|
+
version = "57.2.0"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "288015089e7931843c80ed4032c5274f02b37bcb720c4a42096d50b390e70372"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"arrow-array",
|
|
80
|
+
"arrow-buffer",
|
|
81
|
+
"arrow-data",
|
|
82
|
+
"arrow-schema",
|
|
83
|
+
"chrono",
|
|
84
|
+
"num-traits",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "arrow-array"
|
|
89
|
+
version = "57.2.0"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "65ca404ea6191e06bf30956394173337fa9c35f445bd447fe6c21ab944e1a23c"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"ahash",
|
|
94
|
+
"arrow-buffer",
|
|
95
|
+
"arrow-data",
|
|
96
|
+
"arrow-schema",
|
|
97
|
+
"chrono",
|
|
98
|
+
"half",
|
|
99
|
+
"hashbrown",
|
|
100
|
+
"num-complex",
|
|
101
|
+
"num-integer",
|
|
102
|
+
"num-traits",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "arrow-buffer"
|
|
107
|
+
version = "57.2.0"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "36356383099be0151dacc4245309895f16ba7917d79bdb71a7148659c9206c56"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"bytes",
|
|
112
|
+
"half",
|
|
113
|
+
"num-bigint",
|
|
114
|
+
"num-traits",
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "arrow-cast"
|
|
119
|
+
version = "57.2.0"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "9c8e372ed52bd4ee88cc1e6c3859aa7ecea204158ac640b10e187936e7e87074"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"arrow-array",
|
|
124
|
+
"arrow-buffer",
|
|
125
|
+
"arrow-data",
|
|
126
|
+
"arrow-ord",
|
|
127
|
+
"arrow-schema",
|
|
128
|
+
"arrow-select",
|
|
129
|
+
"atoi",
|
|
130
|
+
"base64",
|
|
131
|
+
"chrono",
|
|
132
|
+
"half",
|
|
133
|
+
"lexical-core",
|
|
134
|
+
"num-traits",
|
|
135
|
+
"ryu",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "arrow-data"
|
|
140
|
+
version = "57.2.0"
|
|
141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
142
|
+
checksum = "bf87f4ff5fc13290aa47e499a8b669a82c5977c6a1fedce22c7f542c1fd5a597"
|
|
143
|
+
dependencies = [
|
|
144
|
+
"arrow-buffer",
|
|
145
|
+
"arrow-schema",
|
|
146
|
+
"half",
|
|
147
|
+
"num-integer",
|
|
148
|
+
"num-traits",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "arrow-ord"
|
|
153
|
+
version = "57.2.0"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "13c4e0530272ca755d6814218dffd04425c5b7854b87fa741d5ff848bf50aa39"
|
|
156
|
+
dependencies = [
|
|
157
|
+
"arrow-array",
|
|
158
|
+
"arrow-buffer",
|
|
159
|
+
"arrow-data",
|
|
160
|
+
"arrow-schema",
|
|
161
|
+
"arrow-select",
|
|
162
|
+
]
|
|
163
|
+
|
|
164
|
+
[[package]]
|
|
165
|
+
name = "arrow-pyarrow"
|
|
166
|
+
version = "57.2.0"
|
|
167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
168
|
+
checksum = "f45c7989cb70214b2f362eaa10266d15e1a433692f2ea1514018be3aace679f4"
|
|
169
|
+
dependencies = [
|
|
170
|
+
"arrow-array",
|
|
171
|
+
"arrow-data",
|
|
172
|
+
"arrow-schema",
|
|
173
|
+
"pyo3",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "arrow-row"
|
|
178
|
+
version = "57.2.0"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "b07f52788744cc71c4628567ad834cadbaeb9f09026ff1d7a4120f69edf7abd3"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"arrow-array",
|
|
183
|
+
"arrow-buffer",
|
|
184
|
+
"arrow-data",
|
|
185
|
+
"arrow-schema",
|
|
186
|
+
"half",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "arrow-schema"
|
|
191
|
+
version = "57.2.0"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "6bb63203e8e0e54b288d0d8043ca8fa1013820822a27692ef1b78a977d879f2c"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"bitflags",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "arrow-select"
|
|
200
|
+
version = "57.2.0"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "c96d8a1c180b44ecf2e66c9a2f2bbcb8b1b6f14e165ce46ac8bde211a363411b"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"ahash",
|
|
205
|
+
"arrow-array",
|
|
206
|
+
"arrow-buffer",
|
|
207
|
+
"arrow-data",
|
|
208
|
+
"arrow-schema",
|
|
209
|
+
"num-traits",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "arrow-string"
|
|
214
|
+
version = "57.2.0"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "a8ad6a81add9d3ea30bf8374ee8329992c7fd246ffd8b7e2f48a3cea5aa0cc9a"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"arrow-array",
|
|
219
|
+
"arrow-buffer",
|
|
220
|
+
"arrow-data",
|
|
221
|
+
"arrow-schema",
|
|
222
|
+
"arrow-select",
|
|
223
|
+
"memchr",
|
|
224
|
+
"num-traits",
|
|
225
|
+
"regex",
|
|
226
|
+
"regex-syntax",
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "atoi"
|
|
231
|
+
version = "2.0.0"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"num-traits",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "autocfg"
|
|
240
|
+
version = "1.5.0"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "base64"
|
|
246
|
+
version = "0.22.1"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "bitflags"
|
|
252
|
+
version = "2.10.0"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "block-buffer"
|
|
258
|
+
version = "0.10.4"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
261
|
+
dependencies = [
|
|
262
|
+
"generic-array",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "bumpalo"
|
|
267
|
+
version = "3.19.1"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "bytes"
|
|
273
|
+
version = "1.11.0"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "bzip2"
|
|
279
|
+
version = "0.6.1"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"libbz2-rs-sys",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "cc"
|
|
288
|
+
version = "1.2.53"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "755d2fce177175ffca841e9a06afdb2c4ab0f593d53b4dee48147dfaade85932"
|
|
291
|
+
dependencies = [
|
|
292
|
+
"find-msvc-tools",
|
|
293
|
+
"jobserver",
|
|
294
|
+
"libc",
|
|
295
|
+
"shlex",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "cfg-if"
|
|
300
|
+
version = "1.0.4"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "chrono"
|
|
306
|
+
version = "0.4.43"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"iana-time-zone",
|
|
311
|
+
"num-traits",
|
|
312
|
+
"windows-link",
|
|
313
|
+
]
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "cipher"
|
|
317
|
+
version = "0.4.4"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"crypto-common",
|
|
322
|
+
"inout",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "const-random"
|
|
327
|
+
version = "0.1.18"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"const-random-macro",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "const-random-macro"
|
|
336
|
+
version = "0.1.16"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"getrandom 0.2.17",
|
|
341
|
+
"once_cell",
|
|
342
|
+
"tiny-keccak",
|
|
343
|
+
]
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "constant_time_eq"
|
|
347
|
+
version = "0.3.1"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "core-foundation-sys"
|
|
353
|
+
version = "0.8.7"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
356
|
+
|
|
357
|
+
[[package]]
|
|
358
|
+
name = "cpufeatures"
|
|
359
|
+
version = "0.2.17"
|
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
362
|
+
dependencies = [
|
|
363
|
+
"libc",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "crc"
|
|
368
|
+
version = "3.3.0"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
|
|
371
|
+
dependencies = [
|
|
372
|
+
"crc-catalog",
|
|
373
|
+
]
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "crc-catalog"
|
|
377
|
+
version = "2.4.0"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
|
|
380
|
+
|
|
381
|
+
[[package]]
|
|
382
|
+
name = "crc32fast"
|
|
383
|
+
version = "1.5.0"
|
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
386
|
+
dependencies = [
|
|
387
|
+
"cfg-if",
|
|
388
|
+
]
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "crossbeam-deque"
|
|
392
|
+
version = "0.8.6"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
395
|
+
dependencies = [
|
|
396
|
+
"crossbeam-epoch",
|
|
397
|
+
"crossbeam-utils",
|
|
398
|
+
]
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "crossbeam-epoch"
|
|
402
|
+
version = "0.9.18"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"crossbeam-utils",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "crossbeam-utils"
|
|
411
|
+
version = "0.8.21"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "crunchy"
|
|
417
|
+
version = "0.2.4"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "crypto-common"
|
|
423
|
+
version = "0.1.7"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"generic-array",
|
|
428
|
+
"typenum",
|
|
429
|
+
]
|
|
430
|
+
|
|
431
|
+
[[package]]
|
|
432
|
+
name = "deflate64"
|
|
433
|
+
version = "0.1.10"
|
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
435
|
+
checksum = "26bf8fc351c5ed29b5c2f0cbbac1b209b74f60ecd62e675a998df72c49af5204"
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "deranged"
|
|
439
|
+
version = "0.5.5"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"powerfmt",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "derive_more"
|
|
448
|
+
version = "2.1.1"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"derive_more-impl",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "derive_more-impl"
|
|
457
|
+
version = "2.1.1"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"proc-macro2",
|
|
462
|
+
"quote",
|
|
463
|
+
"rustc_version",
|
|
464
|
+
"syn",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "digest"
|
|
469
|
+
version = "0.10.7"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"block-buffer",
|
|
474
|
+
"crypto-common",
|
|
475
|
+
"subtle",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "either"
|
|
480
|
+
version = "1.15.0"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "equivalent"
|
|
486
|
+
version = "1.0.2"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "find-msvc-tools"
|
|
492
|
+
version = "0.1.8"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "flate2"
|
|
498
|
+
version = "1.1.8"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"crc32fast",
|
|
503
|
+
"miniz_oxide",
|
|
504
|
+
"zlib-rs",
|
|
505
|
+
]
|
|
506
|
+
|
|
507
|
+
[[package]]
|
|
508
|
+
name = "generic-array"
|
|
509
|
+
version = "0.14.7"
|
|
510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
511
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
512
|
+
dependencies = [
|
|
513
|
+
"typenum",
|
|
514
|
+
"version_check",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "getrandom"
|
|
519
|
+
version = "0.2.17"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"cfg-if",
|
|
524
|
+
"libc",
|
|
525
|
+
"wasi",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "getrandom"
|
|
530
|
+
version = "0.3.4"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
533
|
+
dependencies = [
|
|
534
|
+
"cfg-if",
|
|
535
|
+
"js-sys",
|
|
536
|
+
"libc",
|
|
537
|
+
"r-efi",
|
|
538
|
+
"wasip2",
|
|
539
|
+
"wasm-bindgen",
|
|
540
|
+
]
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "half"
|
|
544
|
+
version = "2.7.1"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"cfg-if",
|
|
549
|
+
"crunchy",
|
|
550
|
+
"num-traits",
|
|
551
|
+
"zerocopy",
|
|
552
|
+
]
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "hashbrown"
|
|
556
|
+
version = "0.16.1"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "heck"
|
|
562
|
+
version = "0.5.0"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "hmac"
|
|
568
|
+
version = "0.12.1"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"digest",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "iana-time-zone"
|
|
577
|
+
version = "0.1.64"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"android_system_properties",
|
|
582
|
+
"core-foundation-sys",
|
|
583
|
+
"iana-time-zone-haiku",
|
|
584
|
+
"js-sys",
|
|
585
|
+
"log",
|
|
586
|
+
"wasm-bindgen",
|
|
587
|
+
"windows-core",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "iana-time-zone-haiku"
|
|
592
|
+
version = "0.1.2"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"cc",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "indexmap"
|
|
601
|
+
version = "2.13.0"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"equivalent",
|
|
606
|
+
"hashbrown",
|
|
607
|
+
]
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "indoc"
|
|
611
|
+
version = "2.0.7"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"rustversion",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "inout"
|
|
620
|
+
version = "0.1.4"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
623
|
+
dependencies = [
|
|
624
|
+
"generic-array",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "jobserver"
|
|
629
|
+
version = "0.1.34"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"getrandom 0.3.4",
|
|
634
|
+
"libc",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "jpk-reader-rs"
|
|
639
|
+
version = "0.0.1"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"arrow",
|
|
642
|
+
"jpk_reader",
|
|
643
|
+
"pyo3",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "jpk_reader"
|
|
648
|
+
version = "0.0.1"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"derive_more",
|
|
651
|
+
"rayon",
|
|
652
|
+
"tracing",
|
|
653
|
+
"tracing-subscriber",
|
|
654
|
+
"tracing-test",
|
|
655
|
+
"zip",
|
|
656
|
+
]
|
|
657
|
+
|
|
658
|
+
[[package]]
|
|
659
|
+
name = "js-sys"
|
|
660
|
+
version = "0.3.85"
|
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
662
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
663
|
+
dependencies = [
|
|
664
|
+
"once_cell",
|
|
665
|
+
"wasm-bindgen",
|
|
666
|
+
]
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "lazy_static"
|
|
670
|
+
version = "1.5.0"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "lexical-core"
|
|
676
|
+
version = "1.0.6"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
|
|
679
|
+
dependencies = [
|
|
680
|
+
"lexical-parse-float",
|
|
681
|
+
"lexical-parse-integer",
|
|
682
|
+
"lexical-util",
|
|
683
|
+
"lexical-write-float",
|
|
684
|
+
"lexical-write-integer",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "lexical-parse-float"
|
|
689
|
+
version = "1.0.6"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"lexical-parse-integer",
|
|
694
|
+
"lexical-util",
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "lexical-parse-integer"
|
|
699
|
+
version = "1.0.6"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
|
|
702
|
+
dependencies = [
|
|
703
|
+
"lexical-util",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "lexical-util"
|
|
708
|
+
version = "1.0.7"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "lexical-write-float"
|
|
714
|
+
version = "1.0.6"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"lexical-util",
|
|
719
|
+
"lexical-write-integer",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "lexical-write-integer"
|
|
724
|
+
version = "1.0.6"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
|
|
727
|
+
dependencies = [
|
|
728
|
+
"lexical-util",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "libbz2-rs-sys"
|
|
733
|
+
version = "0.2.2"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "libc"
|
|
739
|
+
version = "0.2.180"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "libm"
|
|
745
|
+
version = "0.2.15"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "log"
|
|
751
|
+
version = "0.4.29"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "lzma-rust2"
|
|
757
|
+
version = "0.15.7"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "1670343e58806300d87950e3401e820b519b9384281bbabfb15e3636689ffd69"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"crc",
|
|
762
|
+
"sha2",
|
|
763
|
+
]
|
|
764
|
+
|
|
765
|
+
[[package]]
|
|
766
|
+
name = "matchers"
|
|
767
|
+
version = "0.2.0"
|
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
770
|
+
dependencies = [
|
|
771
|
+
"regex-automata",
|
|
772
|
+
]
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "memchr"
|
|
776
|
+
version = "2.7.6"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "memoffset"
|
|
782
|
+
version = "0.9.1"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
785
|
+
dependencies = [
|
|
786
|
+
"autocfg",
|
|
787
|
+
]
|
|
788
|
+
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "miniz_oxide"
|
|
791
|
+
version = "0.8.9"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
794
|
+
dependencies = [
|
|
795
|
+
"adler2",
|
|
796
|
+
"simd-adler32",
|
|
797
|
+
]
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "nu-ansi-term"
|
|
801
|
+
version = "0.50.3"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
804
|
+
dependencies = [
|
|
805
|
+
"windows-sys",
|
|
806
|
+
]
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "num-bigint"
|
|
810
|
+
version = "0.4.6"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"num-integer",
|
|
815
|
+
"num-traits",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "num-complex"
|
|
820
|
+
version = "0.4.6"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
823
|
+
dependencies = [
|
|
824
|
+
"num-traits",
|
|
825
|
+
]
|
|
826
|
+
|
|
827
|
+
[[package]]
|
|
828
|
+
name = "num-conv"
|
|
829
|
+
version = "0.1.0"
|
|
830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
831
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "num-integer"
|
|
835
|
+
version = "0.1.46"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
838
|
+
dependencies = [
|
|
839
|
+
"num-traits",
|
|
840
|
+
]
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "num-traits"
|
|
844
|
+
version = "0.2.19"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
847
|
+
dependencies = [
|
|
848
|
+
"autocfg",
|
|
849
|
+
"libm",
|
|
850
|
+
]
|
|
851
|
+
|
|
852
|
+
[[package]]
|
|
853
|
+
name = "once_cell"
|
|
854
|
+
version = "1.21.3"
|
|
855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
857
|
+
|
|
858
|
+
[[package]]
|
|
859
|
+
name = "pbkdf2"
|
|
860
|
+
version = "0.12.2"
|
|
861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
862
|
+
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
|
|
863
|
+
dependencies = [
|
|
864
|
+
"digest",
|
|
865
|
+
"hmac",
|
|
866
|
+
]
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "pin-project-lite"
|
|
870
|
+
version = "0.2.16"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "pkg-config"
|
|
876
|
+
version = "0.3.32"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "portable-atomic"
|
|
882
|
+
version = "1.13.0"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "powerfmt"
|
|
888
|
+
version = "0.2.0"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "ppmd-rust"
|
|
894
|
+
version = "1.3.0"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "d558c559f0450f16f2a27a1f017ef38468c1090c9ce63c8e51366232d53717b4"
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "proc-macro2"
|
|
900
|
+
version = "1.0.105"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
903
|
+
dependencies = [
|
|
904
|
+
"unicode-ident",
|
|
905
|
+
]
|
|
906
|
+
|
|
907
|
+
[[package]]
|
|
908
|
+
name = "pyo3"
|
|
909
|
+
version = "0.26.0"
|
|
910
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
+
checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
|
|
912
|
+
dependencies = [
|
|
913
|
+
"indoc",
|
|
914
|
+
"libc",
|
|
915
|
+
"memoffset",
|
|
916
|
+
"once_cell",
|
|
917
|
+
"portable-atomic",
|
|
918
|
+
"pyo3-build-config",
|
|
919
|
+
"pyo3-ffi",
|
|
920
|
+
"pyo3-macros",
|
|
921
|
+
"unindent",
|
|
922
|
+
]
|
|
923
|
+
|
|
924
|
+
[[package]]
|
|
925
|
+
name = "pyo3-build-config"
|
|
926
|
+
version = "0.26.0"
|
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
+
checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
|
|
929
|
+
dependencies = [
|
|
930
|
+
"target-lexicon",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "pyo3-ffi"
|
|
935
|
+
version = "0.26.0"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
|
|
938
|
+
dependencies = [
|
|
939
|
+
"libc",
|
|
940
|
+
"pyo3-build-config",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "pyo3-macros"
|
|
945
|
+
version = "0.26.0"
|
|
946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
947
|
+
checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"proc-macro2",
|
|
950
|
+
"pyo3-macros-backend",
|
|
951
|
+
"quote",
|
|
952
|
+
"syn",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "pyo3-macros-backend"
|
|
957
|
+
version = "0.26.0"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
|
|
960
|
+
dependencies = [
|
|
961
|
+
"heck",
|
|
962
|
+
"proc-macro2",
|
|
963
|
+
"pyo3-build-config",
|
|
964
|
+
"quote",
|
|
965
|
+
"syn",
|
|
966
|
+
]
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "quote"
|
|
970
|
+
version = "1.0.43"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
973
|
+
dependencies = [
|
|
974
|
+
"proc-macro2",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "r-efi"
|
|
979
|
+
version = "5.3.0"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "rayon"
|
|
985
|
+
version = "1.11.0"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"either",
|
|
990
|
+
"rayon-core",
|
|
991
|
+
]
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "rayon-core"
|
|
995
|
+
version = "1.13.0"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
998
|
+
dependencies = [
|
|
999
|
+
"crossbeam-deque",
|
|
1000
|
+
"crossbeam-utils",
|
|
1001
|
+
]
|
|
1002
|
+
|
|
1003
|
+
[[package]]
|
|
1004
|
+
name = "regex"
|
|
1005
|
+
version = "1.12.2"
|
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1007
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1008
|
+
dependencies = [
|
|
1009
|
+
"aho-corasick",
|
|
1010
|
+
"memchr",
|
|
1011
|
+
"regex-automata",
|
|
1012
|
+
"regex-syntax",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "regex-automata"
|
|
1017
|
+
version = "0.4.13"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"aho-corasick",
|
|
1022
|
+
"memchr",
|
|
1023
|
+
"regex-syntax",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "regex-syntax"
|
|
1028
|
+
version = "0.8.8"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "rustc_version"
|
|
1034
|
+
version = "0.4.1"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1037
|
+
dependencies = [
|
|
1038
|
+
"semver",
|
|
1039
|
+
]
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "rustversion"
|
|
1043
|
+
version = "1.0.22"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "ryu"
|
|
1049
|
+
version = "1.0.22"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "semver"
|
|
1055
|
+
version = "1.0.27"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "serde_core"
|
|
1061
|
+
version = "1.0.228"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1064
|
+
dependencies = [
|
|
1065
|
+
"serde_derive",
|
|
1066
|
+
]
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "serde_derive"
|
|
1070
|
+
version = "1.0.228"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1073
|
+
dependencies = [
|
|
1074
|
+
"proc-macro2",
|
|
1075
|
+
"quote",
|
|
1076
|
+
"syn",
|
|
1077
|
+
]
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "sha1"
|
|
1081
|
+
version = "0.10.6"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"cfg-if",
|
|
1086
|
+
"cpufeatures",
|
|
1087
|
+
"digest",
|
|
1088
|
+
]
|
|
1089
|
+
|
|
1090
|
+
[[package]]
|
|
1091
|
+
name = "sha2"
|
|
1092
|
+
version = "0.10.9"
|
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
1095
|
+
dependencies = [
|
|
1096
|
+
"cfg-if",
|
|
1097
|
+
"cpufeatures",
|
|
1098
|
+
"digest",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "sharded-slab"
|
|
1103
|
+
version = "0.1.7"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"lazy_static",
|
|
1108
|
+
]
|
|
1109
|
+
|
|
1110
|
+
[[package]]
|
|
1111
|
+
name = "shlex"
|
|
1112
|
+
version = "1.3.0"
|
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "simd-adler32"
|
|
1118
|
+
version = "0.3.8"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "smallvec"
|
|
1124
|
+
version = "1.15.1"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1127
|
+
|
|
1128
|
+
[[package]]
|
|
1129
|
+
name = "subtle"
|
|
1130
|
+
version = "2.6.1"
|
|
1131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1133
|
+
|
|
1134
|
+
[[package]]
|
|
1135
|
+
name = "syn"
|
|
1136
|
+
version = "2.0.114"
|
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
1139
|
+
dependencies = [
|
|
1140
|
+
"proc-macro2",
|
|
1141
|
+
"quote",
|
|
1142
|
+
"unicode-ident",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "target-lexicon"
|
|
1147
|
+
version = "0.13.4"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
1150
|
+
|
|
1151
|
+
[[package]]
|
|
1152
|
+
name = "thread_local"
|
|
1153
|
+
version = "1.1.9"
|
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
1156
|
+
dependencies = [
|
|
1157
|
+
"cfg-if",
|
|
1158
|
+
]
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "time"
|
|
1162
|
+
version = "0.3.45"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd"
|
|
1165
|
+
dependencies = [
|
|
1166
|
+
"deranged",
|
|
1167
|
+
"num-conv",
|
|
1168
|
+
"powerfmt",
|
|
1169
|
+
"serde_core",
|
|
1170
|
+
"time-core",
|
|
1171
|
+
]
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "time-core"
|
|
1175
|
+
version = "0.1.7"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "8b36ee98fd31ec7426d599183e8fe26932a8dc1fb76ddb6214d05493377d34ca"
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "tiny-keccak"
|
|
1181
|
+
version = "2.0.2"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"crunchy",
|
|
1186
|
+
]
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "tracing"
|
|
1190
|
+
version = "0.1.44"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1193
|
+
dependencies = [
|
|
1194
|
+
"pin-project-lite",
|
|
1195
|
+
"tracing-attributes",
|
|
1196
|
+
"tracing-core",
|
|
1197
|
+
]
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "tracing-attributes"
|
|
1201
|
+
version = "0.1.31"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
1204
|
+
dependencies = [
|
|
1205
|
+
"proc-macro2",
|
|
1206
|
+
"quote",
|
|
1207
|
+
"syn",
|
|
1208
|
+
]
|
|
1209
|
+
|
|
1210
|
+
[[package]]
|
|
1211
|
+
name = "tracing-core"
|
|
1212
|
+
version = "0.1.36"
|
|
1213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1215
|
+
dependencies = [
|
|
1216
|
+
"once_cell",
|
|
1217
|
+
"valuable",
|
|
1218
|
+
]
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "tracing-log"
|
|
1222
|
+
version = "0.2.0"
|
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
1225
|
+
dependencies = [
|
|
1226
|
+
"log",
|
|
1227
|
+
"once_cell",
|
|
1228
|
+
"tracing-core",
|
|
1229
|
+
]
|
|
1230
|
+
|
|
1231
|
+
[[package]]
|
|
1232
|
+
name = "tracing-subscriber"
|
|
1233
|
+
version = "0.3.22"
|
|
1234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
1236
|
+
dependencies = [
|
|
1237
|
+
"matchers",
|
|
1238
|
+
"nu-ansi-term",
|
|
1239
|
+
"once_cell",
|
|
1240
|
+
"regex-automata",
|
|
1241
|
+
"sharded-slab",
|
|
1242
|
+
"smallvec",
|
|
1243
|
+
"thread_local",
|
|
1244
|
+
"tracing",
|
|
1245
|
+
"tracing-core",
|
|
1246
|
+
"tracing-log",
|
|
1247
|
+
]
|
|
1248
|
+
|
|
1249
|
+
[[package]]
|
|
1250
|
+
name = "tracing-test"
|
|
1251
|
+
version = "0.2.5"
|
|
1252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
+
checksum = "557b891436fe0d5e0e363427fc7f217abf9ccd510d5136549847bdcbcd011d68"
|
|
1254
|
+
dependencies = [
|
|
1255
|
+
"tracing-core",
|
|
1256
|
+
"tracing-subscriber",
|
|
1257
|
+
"tracing-test-macro",
|
|
1258
|
+
]
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "tracing-test-macro"
|
|
1262
|
+
version = "0.2.5"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "04659ddb06c87d233c566112c1c9c5b9e98256d9af50ec3bc9c8327f873a7568"
|
|
1265
|
+
dependencies = [
|
|
1266
|
+
"quote",
|
|
1267
|
+
"syn",
|
|
1268
|
+
]
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "typenum"
|
|
1272
|
+
version = "1.19.0"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
1275
|
+
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "unicode-ident"
|
|
1278
|
+
version = "1.0.22"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1281
|
+
|
|
1282
|
+
[[package]]
|
|
1283
|
+
name = "unindent"
|
|
1284
|
+
version = "0.2.4"
|
|
1285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1286
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1287
|
+
|
|
1288
|
+
[[package]]
|
|
1289
|
+
name = "valuable"
|
|
1290
|
+
version = "0.1.1"
|
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
1293
|
+
|
|
1294
|
+
[[package]]
|
|
1295
|
+
name = "version_check"
|
|
1296
|
+
version = "0.9.5"
|
|
1297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "wasi"
|
|
1302
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "wasip2"
|
|
1308
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1311
|
+
dependencies = [
|
|
1312
|
+
"wit-bindgen",
|
|
1313
|
+
]
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "wasm-bindgen"
|
|
1317
|
+
version = "0.2.108"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
1320
|
+
dependencies = [
|
|
1321
|
+
"cfg-if",
|
|
1322
|
+
"once_cell",
|
|
1323
|
+
"rustversion",
|
|
1324
|
+
"wasm-bindgen-macro",
|
|
1325
|
+
"wasm-bindgen-shared",
|
|
1326
|
+
]
|
|
1327
|
+
|
|
1328
|
+
[[package]]
|
|
1329
|
+
name = "wasm-bindgen-macro"
|
|
1330
|
+
version = "0.2.108"
|
|
1331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1332
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
1333
|
+
dependencies = [
|
|
1334
|
+
"quote",
|
|
1335
|
+
"wasm-bindgen-macro-support",
|
|
1336
|
+
]
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "wasm-bindgen-macro-support"
|
|
1340
|
+
version = "0.2.108"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
1343
|
+
dependencies = [
|
|
1344
|
+
"bumpalo",
|
|
1345
|
+
"proc-macro2",
|
|
1346
|
+
"quote",
|
|
1347
|
+
"syn",
|
|
1348
|
+
"wasm-bindgen-shared",
|
|
1349
|
+
]
|
|
1350
|
+
|
|
1351
|
+
[[package]]
|
|
1352
|
+
name = "wasm-bindgen-shared"
|
|
1353
|
+
version = "0.2.108"
|
|
1354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1355
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
1356
|
+
dependencies = [
|
|
1357
|
+
"unicode-ident",
|
|
1358
|
+
]
|
|
1359
|
+
|
|
1360
|
+
[[package]]
|
|
1361
|
+
name = "windows-core"
|
|
1362
|
+
version = "0.62.2"
|
|
1363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1364
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1365
|
+
dependencies = [
|
|
1366
|
+
"windows-implement",
|
|
1367
|
+
"windows-interface",
|
|
1368
|
+
"windows-link",
|
|
1369
|
+
"windows-result",
|
|
1370
|
+
"windows-strings",
|
|
1371
|
+
]
|
|
1372
|
+
|
|
1373
|
+
[[package]]
|
|
1374
|
+
name = "windows-implement"
|
|
1375
|
+
version = "0.60.2"
|
|
1376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1378
|
+
dependencies = [
|
|
1379
|
+
"proc-macro2",
|
|
1380
|
+
"quote",
|
|
1381
|
+
"syn",
|
|
1382
|
+
]
|
|
1383
|
+
|
|
1384
|
+
[[package]]
|
|
1385
|
+
name = "windows-interface"
|
|
1386
|
+
version = "0.59.3"
|
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1389
|
+
dependencies = [
|
|
1390
|
+
"proc-macro2",
|
|
1391
|
+
"quote",
|
|
1392
|
+
"syn",
|
|
1393
|
+
]
|
|
1394
|
+
|
|
1395
|
+
[[package]]
|
|
1396
|
+
name = "windows-link"
|
|
1397
|
+
version = "0.2.1"
|
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "windows-result"
|
|
1403
|
+
version = "0.4.1"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1406
|
+
dependencies = [
|
|
1407
|
+
"windows-link",
|
|
1408
|
+
]
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "windows-strings"
|
|
1412
|
+
version = "0.5.1"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1415
|
+
dependencies = [
|
|
1416
|
+
"windows-link",
|
|
1417
|
+
]
|
|
1418
|
+
|
|
1419
|
+
[[package]]
|
|
1420
|
+
name = "windows-sys"
|
|
1421
|
+
version = "0.61.2"
|
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1424
|
+
dependencies = [
|
|
1425
|
+
"windows-link",
|
|
1426
|
+
]
|
|
1427
|
+
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "wit-bindgen"
|
|
1430
|
+
version = "0.51.0"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "zerocopy"
|
|
1436
|
+
version = "0.8.33"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
|
|
1439
|
+
dependencies = [
|
|
1440
|
+
"zerocopy-derive",
|
|
1441
|
+
]
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "zerocopy-derive"
|
|
1445
|
+
version = "0.8.33"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
|
|
1448
|
+
dependencies = [
|
|
1449
|
+
"proc-macro2",
|
|
1450
|
+
"quote",
|
|
1451
|
+
"syn",
|
|
1452
|
+
]
|
|
1453
|
+
|
|
1454
|
+
[[package]]
|
|
1455
|
+
name = "zeroize"
|
|
1456
|
+
version = "1.8.2"
|
|
1457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1458
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1459
|
+
dependencies = [
|
|
1460
|
+
"zeroize_derive",
|
|
1461
|
+
]
|
|
1462
|
+
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "zeroize_derive"
|
|
1465
|
+
version = "1.4.3"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
1468
|
+
dependencies = [
|
|
1469
|
+
"proc-macro2",
|
|
1470
|
+
"quote",
|
|
1471
|
+
"syn",
|
|
1472
|
+
]
|
|
1473
|
+
|
|
1474
|
+
[[package]]
|
|
1475
|
+
name = "zip"
|
|
1476
|
+
version = "7.1.0"
|
|
1477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1478
|
+
checksum = "9013f1222db8a6d680f13a7ccdc60a781199cd09c2fa4eff58e728bb181757fc"
|
|
1479
|
+
dependencies = [
|
|
1480
|
+
"aes",
|
|
1481
|
+
"bzip2",
|
|
1482
|
+
"constant_time_eq",
|
|
1483
|
+
"crc32fast",
|
|
1484
|
+
"deflate64",
|
|
1485
|
+
"flate2",
|
|
1486
|
+
"generic-array",
|
|
1487
|
+
"getrandom 0.3.4",
|
|
1488
|
+
"hmac",
|
|
1489
|
+
"indexmap",
|
|
1490
|
+
"lzma-rust2",
|
|
1491
|
+
"memchr",
|
|
1492
|
+
"pbkdf2",
|
|
1493
|
+
"ppmd-rust",
|
|
1494
|
+
"sha1",
|
|
1495
|
+
"time",
|
|
1496
|
+
"zeroize",
|
|
1497
|
+
"zopfli",
|
|
1498
|
+
"zstd",
|
|
1499
|
+
]
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "zlib-rs"
|
|
1503
|
+
version = "0.5.5"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "40990edd51aae2c2b6907af74ffb635029d5788228222c4bb811e9351c0caad3"
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "zopfli"
|
|
1509
|
+
version = "0.8.3"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"bumpalo",
|
|
1514
|
+
"crc32fast",
|
|
1515
|
+
"log",
|
|
1516
|
+
"simd-adler32",
|
|
1517
|
+
]
|
|
1518
|
+
|
|
1519
|
+
[[package]]
|
|
1520
|
+
name = "zstd"
|
|
1521
|
+
version = "0.13.3"
|
|
1522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
1524
|
+
dependencies = [
|
|
1525
|
+
"zstd-safe",
|
|
1526
|
+
]
|
|
1527
|
+
|
|
1528
|
+
[[package]]
|
|
1529
|
+
name = "zstd-safe"
|
|
1530
|
+
version = "7.2.4"
|
|
1531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1532
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
1533
|
+
dependencies = [
|
|
1534
|
+
"zstd-sys",
|
|
1535
|
+
]
|
|
1536
|
+
|
|
1537
|
+
[[package]]
|
|
1538
|
+
name = "zstd-sys"
|
|
1539
|
+
version = "2.0.16+zstd.1.5.7"
|
|
1540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1541
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
1542
|
+
dependencies = [
|
|
1543
|
+
"cc",
|
|
1544
|
+
"pkg-config",
|
|
1545
|
+
]
|