streamxl 1.0.0__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.
- streamxl-1.0.0/Cargo.lock +863 -0
- streamxl-1.0.0/Cargo.toml +9 -0
- streamxl-1.0.0/LICENSE +21 -0
- streamxl-1.0.0/PKG-INFO +477 -0
- streamxl-1.0.0/README.md +443 -0
- streamxl-1.0.0/core/Cargo.toml +18 -0
- streamxl-1.0.0/core/src/dates.rs +67 -0
- streamxl-1.0.0/core/src/lib.rs +13 -0
- streamxl-1.0.0/core/src/shared_strings.rs +27 -0
- streamxl-1.0.0/core/src/sheet_manager.rs +167 -0
- streamxl-1.0.0/core/src/sheet_parser.rs +116 -0
- streamxl-1.0.0/core/src/stream.rs +116 -0
- streamxl-1.0.0/core/src/styles.rs +109 -0
- streamxl-1.0.0/core/src/workbook.rs +81 -0
- streamxl-1.0.0/core/src/writer.rs +286 -0
- streamxl-1.0.0/core/src/zip_reader.rs +66 -0
- streamxl-1.0.0/pyproject.toml +66 -0
- streamxl-1.0.0/python/Cargo.toml +12 -0
- streamxl-1.0.0/python/src/lib.rs +197 -0
- streamxl-1.0.0/python/streamxl/__init__.py +5 -0
- streamxl-1.0.0/python/streamxl/api.py +174 -0
- streamxl-1.0.0/python/streamxl/core.py +16 -0
|
@@ -0,0 +1,863 @@
|
|
|
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 = "arbitrary"
|
|
24
|
+
version = "1.4.2"
|
|
25
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
27
|
+
dependencies = [
|
|
28
|
+
"derive_arbitrary",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "autocfg"
|
|
33
|
+
version = "1.5.1"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
36
|
+
|
|
37
|
+
[[package]]
|
|
38
|
+
name = "block-buffer"
|
|
39
|
+
version = "0.10.4"
|
|
40
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
41
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
42
|
+
dependencies = [
|
|
43
|
+
"generic-array",
|
|
44
|
+
]
|
|
45
|
+
|
|
46
|
+
[[package]]
|
|
47
|
+
name = "bumpalo"
|
|
48
|
+
version = "3.20.3"
|
|
49
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
51
|
+
|
|
52
|
+
[[package]]
|
|
53
|
+
name = "byteorder"
|
|
54
|
+
version = "1.5.0"
|
|
55
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "bytes"
|
|
60
|
+
version = "1.12.0"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "bzip2"
|
|
66
|
+
version = "0.5.2"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
|
|
69
|
+
dependencies = [
|
|
70
|
+
"bzip2-sys",
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "bzip2-sys"
|
|
75
|
+
version = "0.1.13+1.0.8"
|
|
76
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
77
|
+
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
78
|
+
dependencies = [
|
|
79
|
+
"cc",
|
|
80
|
+
"pkg-config",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "cc"
|
|
85
|
+
version = "1.2.66"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"find-msvc-tools",
|
|
90
|
+
"jobserver",
|
|
91
|
+
"libc",
|
|
92
|
+
"shlex",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "cfg-if"
|
|
97
|
+
version = "1.0.4"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "cipher"
|
|
103
|
+
version = "0.4.4"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
106
|
+
dependencies = [
|
|
107
|
+
"crypto-common",
|
|
108
|
+
"inout",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "constant_time_eq"
|
|
113
|
+
version = "0.3.1"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "cpufeatures"
|
|
119
|
+
version = "0.2.17"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"libc",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "crc"
|
|
128
|
+
version = "3.4.0"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"crc-catalog",
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "crc-catalog"
|
|
137
|
+
version = "2.5.0"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "crc32fast"
|
|
143
|
+
version = "1.5.0"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"cfg-if",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "crossbeam-utils"
|
|
152
|
+
version = "0.8.22"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "crypto-common"
|
|
158
|
+
version = "0.1.7"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"generic-array",
|
|
163
|
+
"typenum",
|
|
164
|
+
]
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "deflate64"
|
|
168
|
+
version = "0.1.12"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "ac6b926516df9c60bfa16e107b21086399f8285a44ca9711344b9e553c5146e2"
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "deranged"
|
|
174
|
+
version = "0.5.8"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "derive_arbitrary"
|
|
180
|
+
version = "1.4.2"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
|
|
183
|
+
dependencies = [
|
|
184
|
+
"proc-macro2",
|
|
185
|
+
"quote",
|
|
186
|
+
"syn",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "digest"
|
|
191
|
+
version = "0.10.7"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"block-buffer",
|
|
196
|
+
"crypto-common",
|
|
197
|
+
"subtle",
|
|
198
|
+
]
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "displaydoc"
|
|
202
|
+
version = "0.2.6"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
205
|
+
dependencies = [
|
|
206
|
+
"proc-macro2",
|
|
207
|
+
"quote",
|
|
208
|
+
"syn",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "equivalent"
|
|
213
|
+
version = "1.0.2"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "find-msvc-tools"
|
|
219
|
+
version = "0.1.9"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "flate2"
|
|
225
|
+
version = "1.1.9"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"crc32fast",
|
|
230
|
+
"miniz_oxide",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "generic-array"
|
|
235
|
+
version = "0.14.7"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"typenum",
|
|
240
|
+
"version_check",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "getrandom"
|
|
245
|
+
version = "0.3.4"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"cfg-if",
|
|
250
|
+
"js-sys",
|
|
251
|
+
"libc",
|
|
252
|
+
"r-efi 5.3.0",
|
|
253
|
+
"wasip2",
|
|
254
|
+
"wasm-bindgen",
|
|
255
|
+
]
|
|
256
|
+
|
|
257
|
+
[[package]]
|
|
258
|
+
name = "getrandom"
|
|
259
|
+
version = "0.4.3"
|
|
260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
262
|
+
dependencies = [
|
|
263
|
+
"cfg-if",
|
|
264
|
+
"libc",
|
|
265
|
+
"r-efi 6.0.0",
|
|
266
|
+
]
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "hashbrown"
|
|
270
|
+
version = "0.17.1"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "heck"
|
|
276
|
+
version = "0.5.0"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "hmac"
|
|
282
|
+
version = "0.12.1"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"digest",
|
|
287
|
+
]
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "indexmap"
|
|
291
|
+
version = "2.14.0"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"equivalent",
|
|
296
|
+
"hashbrown",
|
|
297
|
+
]
|
|
298
|
+
|
|
299
|
+
[[package]]
|
|
300
|
+
name = "indoc"
|
|
301
|
+
version = "2.0.7"
|
|
302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
303
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
304
|
+
dependencies = [
|
|
305
|
+
"rustversion",
|
|
306
|
+
]
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "inout"
|
|
310
|
+
version = "0.1.4"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
313
|
+
dependencies = [
|
|
314
|
+
"generic-array",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "jobserver"
|
|
319
|
+
version = "0.1.35"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
322
|
+
dependencies = [
|
|
323
|
+
"getrandom 0.4.3",
|
|
324
|
+
"libc",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "js-sys"
|
|
329
|
+
version = "0.3.103"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"cfg-if",
|
|
334
|
+
"wasm-bindgen",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "libc"
|
|
339
|
+
version = "0.2.186"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "log"
|
|
345
|
+
version = "0.4.33"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "lzma-rs"
|
|
351
|
+
version = "0.3.0"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"byteorder",
|
|
356
|
+
"crc",
|
|
357
|
+
]
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "lzma-sys"
|
|
361
|
+
version = "0.1.20"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"cc",
|
|
366
|
+
"libc",
|
|
367
|
+
"pkg-config",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "memchr"
|
|
372
|
+
version = "2.8.2"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "memoffset"
|
|
378
|
+
version = "0.9.1"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"autocfg",
|
|
383
|
+
]
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "miniz_oxide"
|
|
387
|
+
version = "0.8.9"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"adler2",
|
|
392
|
+
"simd-adler32",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "num-conv"
|
|
397
|
+
version = "0.2.2"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "once_cell"
|
|
403
|
+
version = "1.21.4"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "pbkdf2"
|
|
409
|
+
version = "0.12.2"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"digest",
|
|
414
|
+
"hmac",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "pin-project-lite"
|
|
419
|
+
version = "0.2.17"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "pkg-config"
|
|
425
|
+
version = "0.3.33"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "portable-atomic"
|
|
431
|
+
version = "1.13.1"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
434
|
+
|
|
435
|
+
[[package]]
|
|
436
|
+
name = "powerfmt"
|
|
437
|
+
version = "0.2.0"
|
|
438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "proc-macro2"
|
|
443
|
+
version = "1.0.106"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
446
|
+
dependencies = [
|
|
447
|
+
"unicode-ident",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "pyo3"
|
|
452
|
+
version = "0.23.5"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"cfg-if",
|
|
457
|
+
"indoc",
|
|
458
|
+
"libc",
|
|
459
|
+
"memoffset",
|
|
460
|
+
"once_cell",
|
|
461
|
+
"portable-atomic",
|
|
462
|
+
"pyo3-build-config",
|
|
463
|
+
"pyo3-ffi",
|
|
464
|
+
"pyo3-macros",
|
|
465
|
+
"unindent",
|
|
466
|
+
]
|
|
467
|
+
|
|
468
|
+
[[package]]
|
|
469
|
+
name = "pyo3-build-config"
|
|
470
|
+
version = "0.23.5"
|
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
473
|
+
dependencies = [
|
|
474
|
+
"once_cell",
|
|
475
|
+
"target-lexicon",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "pyo3-ffi"
|
|
480
|
+
version = "0.23.5"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
483
|
+
dependencies = [
|
|
484
|
+
"libc",
|
|
485
|
+
"pyo3-build-config",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "pyo3-macros"
|
|
490
|
+
version = "0.23.5"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"proc-macro2",
|
|
495
|
+
"pyo3-macros-backend",
|
|
496
|
+
"quote",
|
|
497
|
+
"syn",
|
|
498
|
+
]
|
|
499
|
+
|
|
500
|
+
[[package]]
|
|
501
|
+
name = "pyo3-macros-backend"
|
|
502
|
+
version = "0.23.5"
|
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
505
|
+
dependencies = [
|
|
506
|
+
"heck",
|
|
507
|
+
"proc-macro2",
|
|
508
|
+
"pyo3-build-config",
|
|
509
|
+
"quote",
|
|
510
|
+
"syn",
|
|
511
|
+
]
|
|
512
|
+
|
|
513
|
+
[[package]]
|
|
514
|
+
name = "quick-xml"
|
|
515
|
+
version = "0.36.2"
|
|
516
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
517
|
+
checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
|
|
518
|
+
dependencies = [
|
|
519
|
+
"memchr",
|
|
520
|
+
"tokio",
|
|
521
|
+
]
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "quote"
|
|
525
|
+
version = "1.0.46"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
528
|
+
dependencies = [
|
|
529
|
+
"proc-macro2",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "r-efi"
|
|
534
|
+
version = "5.3.0"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "r-efi"
|
|
540
|
+
version = "6.0.0"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "rustversion"
|
|
546
|
+
version = "1.0.23"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "serde_core"
|
|
552
|
+
version = "1.0.228"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"serde_derive",
|
|
557
|
+
]
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "serde_derive"
|
|
561
|
+
version = "1.0.228"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
564
|
+
dependencies = [
|
|
565
|
+
"proc-macro2",
|
|
566
|
+
"quote",
|
|
567
|
+
"syn",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "sha1"
|
|
572
|
+
version = "0.10.6"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"cfg-if",
|
|
577
|
+
"cpufeatures",
|
|
578
|
+
"digest",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "shlex"
|
|
583
|
+
version = "2.0.1"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "simd-adler32"
|
|
589
|
+
version = "0.3.9"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "streamxl-core"
|
|
595
|
+
version = "1.0.0"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"pyo3",
|
|
598
|
+
"quick-xml",
|
|
599
|
+
"zip",
|
|
600
|
+
]
|
|
601
|
+
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "streamxl-python"
|
|
604
|
+
version = "0.4.0"
|
|
605
|
+
dependencies = [
|
|
606
|
+
"pyo3",
|
|
607
|
+
"streamxl-core",
|
|
608
|
+
]
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "subtle"
|
|
612
|
+
version = "2.6.1"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "syn"
|
|
618
|
+
version = "2.0.118"
|
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
621
|
+
dependencies = [
|
|
622
|
+
"proc-macro2",
|
|
623
|
+
"quote",
|
|
624
|
+
"unicode-ident",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "target-lexicon"
|
|
629
|
+
version = "0.12.16"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
632
|
+
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "thiserror"
|
|
635
|
+
version = "2.0.18"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
638
|
+
dependencies = [
|
|
639
|
+
"thiserror-impl",
|
|
640
|
+
]
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "thiserror-impl"
|
|
644
|
+
version = "2.0.18"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"proc-macro2",
|
|
649
|
+
"quote",
|
|
650
|
+
"syn",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "time"
|
|
655
|
+
version = "0.3.53"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "18dfaaeddcb932337b5e7866ee7d0ce9b76d2fd092997146f187ec09b4558a50"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"deranged",
|
|
660
|
+
"num-conv",
|
|
661
|
+
"powerfmt",
|
|
662
|
+
"serde_core",
|
|
663
|
+
"time-core",
|
|
664
|
+
]
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "time-core"
|
|
668
|
+
version = "0.1.9"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
671
|
+
|
|
672
|
+
[[package]]
|
|
673
|
+
name = "tokio"
|
|
674
|
+
version = "1.52.3"
|
|
675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
676
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
677
|
+
dependencies = [
|
|
678
|
+
"bytes",
|
|
679
|
+
"pin-project-lite",
|
|
680
|
+
]
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "typenum"
|
|
684
|
+
version = "1.20.1"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "unicode-ident"
|
|
690
|
+
version = "1.0.24"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "unindent"
|
|
696
|
+
version = "0.2.4"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "version_check"
|
|
702
|
+
version = "0.9.5"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "wasip2"
|
|
708
|
+
version = "1.0.4+wasi-0.2.12"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"wit-bindgen",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "wasm-bindgen"
|
|
717
|
+
version = "0.2.126"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
|
|
720
|
+
dependencies = [
|
|
721
|
+
"cfg-if",
|
|
722
|
+
"once_cell",
|
|
723
|
+
"rustversion",
|
|
724
|
+
"wasm-bindgen-macro",
|
|
725
|
+
"wasm-bindgen-shared",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "wasm-bindgen-macro"
|
|
730
|
+
version = "0.2.126"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"quote",
|
|
735
|
+
"wasm-bindgen-macro-support",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "wasm-bindgen-macro-support"
|
|
740
|
+
version = "0.2.126"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"bumpalo",
|
|
745
|
+
"proc-macro2",
|
|
746
|
+
"quote",
|
|
747
|
+
"syn",
|
|
748
|
+
"wasm-bindgen-shared",
|
|
749
|
+
]
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "wasm-bindgen-shared"
|
|
753
|
+
version = "0.2.126"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
|
|
756
|
+
dependencies = [
|
|
757
|
+
"unicode-ident",
|
|
758
|
+
]
|
|
759
|
+
|
|
760
|
+
[[package]]
|
|
761
|
+
name = "wit-bindgen"
|
|
762
|
+
version = "0.57.1"
|
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "xz2"
|
|
768
|
+
version = "0.1.7"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"lzma-sys",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "zeroize"
|
|
777
|
+
version = "1.9.0"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
780
|
+
dependencies = [
|
|
781
|
+
"zeroize_derive",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "zeroize_derive"
|
|
786
|
+
version = "1.5.0"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"proc-macro2",
|
|
791
|
+
"quote",
|
|
792
|
+
"syn",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "zip"
|
|
797
|
+
version = "2.4.2"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
|
|
800
|
+
dependencies = [
|
|
801
|
+
"aes",
|
|
802
|
+
"arbitrary",
|
|
803
|
+
"bzip2",
|
|
804
|
+
"constant_time_eq",
|
|
805
|
+
"crc32fast",
|
|
806
|
+
"crossbeam-utils",
|
|
807
|
+
"deflate64",
|
|
808
|
+
"displaydoc",
|
|
809
|
+
"flate2",
|
|
810
|
+
"getrandom 0.3.4",
|
|
811
|
+
"hmac",
|
|
812
|
+
"indexmap",
|
|
813
|
+
"lzma-rs",
|
|
814
|
+
"memchr",
|
|
815
|
+
"pbkdf2",
|
|
816
|
+
"sha1",
|
|
817
|
+
"thiserror",
|
|
818
|
+
"time",
|
|
819
|
+
"xz2",
|
|
820
|
+
"zeroize",
|
|
821
|
+
"zopfli",
|
|
822
|
+
"zstd",
|
|
823
|
+
]
|
|
824
|
+
|
|
825
|
+
[[package]]
|
|
826
|
+
name = "zopfli"
|
|
827
|
+
version = "0.8.3"
|
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
829
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
830
|
+
dependencies = [
|
|
831
|
+
"bumpalo",
|
|
832
|
+
"crc32fast",
|
|
833
|
+
"log",
|
|
834
|
+
"simd-adler32",
|
|
835
|
+
]
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "zstd"
|
|
839
|
+
version = "0.13.3"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
842
|
+
dependencies = [
|
|
843
|
+
"zstd-safe",
|
|
844
|
+
]
|
|
845
|
+
|
|
846
|
+
[[package]]
|
|
847
|
+
name = "zstd-safe"
|
|
848
|
+
version = "7.2.4"
|
|
849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
851
|
+
dependencies = [
|
|
852
|
+
"zstd-sys",
|
|
853
|
+
]
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "zstd-sys"
|
|
857
|
+
version = "2.0.16+zstd.1.5.7"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
860
|
+
dependencies = [
|
|
861
|
+
"cc",
|
|
862
|
+
"pkg-config",
|
|
863
|
+
]
|