pymapreduce-core 0.1.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.
Files changed (48) hide show
  1. pymapreduce_core-0.1.0/Cargo.lock +1692 -0
  2. pymapreduce_core-0.1.0/Cargo.toml +67 -0
  3. pymapreduce_core-0.1.0/Dockerfile.worker +5 -0
  4. pymapreduce_core-0.1.0/PKG-INFO +260 -0
  5. pymapreduce_core-0.1.0/README.md +297 -0
  6. pymapreduce_core-0.1.0/docs/architecture.png +0 -0
  7. pymapreduce_core-0.1.0/pymapreduce/Cargo.lock +1838 -0
  8. pymapreduce_core-0.1.0/pymapreduce/Cargo.toml +27 -0
  9. pymapreduce_core-0.1.0/pymapreduce/README.md +247 -0
  10. pymapreduce_core-0.1.0/pymapreduce/src/ipc.rs +65 -0
  11. pymapreduce_core-0.1.0/pymapreduce/src/lib.rs +798 -0
  12. pymapreduce_core-0.1.0/pyproject.toml +29 -0
  13. pymapreduce_core-0.1.0/python/pymapreduce/__init__.py +30 -0
  14. pymapreduce_core-0.1.0/python/pymapreduce/__init__.pyi +66 -0
  15. pymapreduce_core-0.1.0/python/pymapreduce/cli.py +96 -0
  16. pymapreduce_core-0.1.0/python/pymapreduce/daemon.py +145 -0
  17. pymapreduce_core-0.1.0/src/cluster/handle.rs +19 -0
  18. pymapreduce_core-0.1.0/src/cluster/head.rs +843 -0
  19. pymapreduce_core-0.1.0/src/cluster/mod.rs +3 -0
  20. pymapreduce_core-0.1.0/src/cluster/worker.rs +197 -0
  21. pymapreduce_core-0.1.0/src/driver/config.rs +54 -0
  22. pymapreduce_core-0.1.0/src/driver/handle.rs +27 -0
  23. pymapreduce_core-0.1.0/src/driver/mod.rs +264 -0
  24. pymapreduce_core-0.1.0/src/fault/mod.rs +5 -0
  25. pymapreduce_core-0.1.0/src/fault/monitor.rs +204 -0
  26. pymapreduce_core-0.1.0/src/fault/wal.rs +139 -0
  27. pymapreduce_core-0.1.0/src/gcs/mod.rs +5 -0
  28. pymapreduce_core-0.1.0/src/gcs/state.rs +76 -0
  29. pymapreduce_core-0.1.0/src/gcs/store.rs +74 -0
  30. pymapreduce_core-0.1.0/src/lib.rs +17 -0
  31. pymapreduce_core-0.1.0/src/main.rs +89 -0
  32. pymapreduce_core-0.1.0/src/object_store/mod.rs +6 -0
  33. pymapreduce_core-0.1.0/src/object_store/object_ref.rs +30 -0
  34. pymapreduce_core-0.1.0/src/object_store/store.rs +192 -0
  35. pymapreduce_core-0.1.0/src/object_store/tier.rs +37 -0
  36. pymapreduce_core-0.1.0/src/protocol/codec.rs +89 -0
  37. pymapreduce_core-0.1.0/src/protocol/message.rs +104 -0
  38. pymapreduce_core-0.1.0/src/protocol/mod.rs +2 -0
  39. pymapreduce_core-0.1.0/src/scheduler/dispatcher.rs +37 -0
  40. pymapreduce_core-0.1.0/src/scheduler/mod.rs +10 -0
  41. pymapreduce_core-0.1.0/src/scheduler/queue.rs +182 -0
  42. pymapreduce_core-0.1.0/src/scheduler/strategy.rs +230 -0
  43. pymapreduce_core-0.1.0/src/types/error.rs +27 -0
  44. pymapreduce_core-0.1.0/src/types/executor.rs +13 -0
  45. pymapreduce_core-0.1.0/src/types/job.rs +18 -0
  46. pymapreduce_core-0.1.0/src/types/mod.rs +5 -0
  47. pymapreduce_core-0.1.0/src/types/node.rs +36 -0
  48. pymapreduce_core-0.1.0/src/types/task.rs +38 -0
@@ -0,0 +1,1692 @@
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 = "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 = "anyhow"
92
+ version = "1.0.104"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
95
+
96
+ [[package]]
97
+ name = "arbitrary"
98
+ version = "1.4.2"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
101
+ dependencies = [
102
+ "derive_arbitrary",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "async-trait"
107
+ version = "0.1.92"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"
110
+ dependencies = [
111
+ "proc-macro2",
112
+ "quote",
113
+ "syn 3.0.3",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "autocfg"
118
+ version = "1.5.1"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
121
+
122
+ [[package]]
123
+ name = "bincode"
124
+ version = "1.3.3"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
127
+ dependencies = [
128
+ "serde",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "bitflags"
133
+ version = "2.13.1"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
136
+
137
+ [[package]]
138
+ name = "block-buffer"
139
+ version = "0.10.4"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
142
+ dependencies = [
143
+ "generic-array",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "bumpalo"
148
+ version = "3.20.3"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
151
+
152
+ [[package]]
153
+ name = "byteorder"
154
+ version = "1.5.0"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
157
+
158
+ [[package]]
159
+ name = "bytes"
160
+ version = "1.12.1"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
163
+
164
+ [[package]]
165
+ name = "bzip2"
166
+ version = "0.5.2"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
169
+ dependencies = [
170
+ "bzip2-sys",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "bzip2-sys"
175
+ version = "0.1.13+1.0.8"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
178
+ dependencies = [
179
+ "cc",
180
+ "pkg-config",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "cc"
185
+ version = "1.4.4"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273"
188
+ dependencies = [
189
+ "find-msvc-tools",
190
+ "jobserver",
191
+ "libc",
192
+ "shlex",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "cfg-if"
197
+ version = "1.0.4"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
200
+
201
+ [[package]]
202
+ name = "chrono"
203
+ version = "0.4.45"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
206
+ dependencies = [
207
+ "iana-time-zone",
208
+ "js-sys",
209
+ "num-traits",
210
+ "serde",
211
+ "wasm-bindgen",
212
+ "windows-link",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "cipher"
217
+ version = "0.4.4"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
220
+ dependencies = [
221
+ "crypto-common",
222
+ "inout",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "clap"
227
+ version = "4.6.6"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
230
+ dependencies = [
231
+ "clap_builder",
232
+ "clap_derive",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "clap_builder"
237
+ version = "4.6.6"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
240
+ dependencies = [
241
+ "anstream",
242
+ "anstyle",
243
+ "clap_lex",
244
+ "strsim",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "clap_derive"
249
+ version = "4.6.4"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
252
+ dependencies = [
253
+ "heck",
254
+ "proc-macro2",
255
+ "quote",
256
+ "syn 3.0.3",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "clap_lex"
261
+ version = "1.1.0"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
264
+
265
+ [[package]]
266
+ name = "colorchoice"
267
+ version = "1.0.5"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
270
+
271
+ [[package]]
272
+ name = "constant_time_eq"
273
+ version = "0.3.1"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
276
+
277
+ [[package]]
278
+ name = "core-foundation-sys"
279
+ version = "0.8.7"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
282
+
283
+ [[package]]
284
+ name = "cpufeatures"
285
+ version = "0.2.17"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
288
+ dependencies = [
289
+ "libc",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "crc"
294
+ version = "3.4.0"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
297
+ dependencies = [
298
+ "crc-catalog",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "crc-catalog"
303
+ version = "2.5.0"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
306
+
307
+ [[package]]
308
+ name = "crc32fast"
309
+ version = "1.5.1"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550"
312
+ dependencies = [
313
+ "cfg-if",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "crossbeam-deque"
318
+ version = "0.8.7"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
321
+ dependencies = [
322
+ "crossbeam-epoch",
323
+ "crossbeam-utils",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "crossbeam-epoch"
328
+ version = "0.9.20"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
331
+ dependencies = [
332
+ "crossbeam-utils",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "crossbeam-utils"
337
+ version = "0.8.22"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
340
+
341
+ [[package]]
342
+ name = "crypto-common"
343
+ version = "0.1.7"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
346
+ dependencies = [
347
+ "generic-array",
348
+ "typenum",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "dashmap"
353
+ version = "6.2.1"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
356
+ dependencies = [
357
+ "cfg-if",
358
+ "crossbeam-utils",
359
+ "hashbrown 0.14.5",
360
+ "lock_api",
361
+ "once_cell",
362
+ "parking_lot_core",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "deflate64"
367
+ version = "0.1.12"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "ac6b926516df9c60bfa16e107b21086399f8285a44ca9711344b9e553c5146e2"
370
+
371
+ [[package]]
372
+ name = "deranged"
373
+ version = "0.5.8"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
376
+
377
+ [[package]]
378
+ name = "derive_arbitrary"
379
+ version = "1.4.2"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
382
+ dependencies = [
383
+ "proc-macro2",
384
+ "quote",
385
+ "syn 2.0.119",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "digest"
390
+ version = "0.10.7"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
393
+ dependencies = [
394
+ "block-buffer",
395
+ "crypto-common",
396
+ "subtle",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "displaydoc"
401
+ version = "0.2.7"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8"
404
+ dependencies = [
405
+ "proc-macro2",
406
+ "quote",
407
+ "syn 3.0.3",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "either"
412
+ version = "1.18.0"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
415
+
416
+ [[package]]
417
+ name = "equivalent"
418
+ version = "1.0.2"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
421
+
422
+ [[package]]
423
+ name = "errno"
424
+ version = "0.3.14"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
427
+ dependencies = [
428
+ "libc",
429
+ "windows-sys",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "find-msvc-tools"
434
+ version = "0.1.11"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
437
+
438
+ [[package]]
439
+ name = "flate2"
440
+ version = "1.1.9"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
443
+ dependencies = [
444
+ "crc32fast",
445
+ "miniz_oxide",
446
+ ]
447
+
448
+ [[package]]
449
+ name = "futures"
450
+ version = "0.3.34"
451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
452
+ checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
453
+ dependencies = [
454
+ "futures-channel",
455
+ "futures-core",
456
+ "futures-executor",
457
+ "futures-io",
458
+ "futures-sink",
459
+ "futures-task",
460
+ "futures-util",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "futures-channel"
465
+ version = "0.3.34"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
468
+ dependencies = [
469
+ "futures-core",
470
+ "futures-sink",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "futures-core"
475
+ version = "0.3.34"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
478
+
479
+ [[package]]
480
+ name = "futures-executor"
481
+ version = "0.3.34"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
484
+ dependencies = [
485
+ "futures-core",
486
+ "futures-task",
487
+ "futures-util",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "futures-io"
492
+ version = "0.3.34"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
495
+
496
+ [[package]]
497
+ name = "futures-macro"
498
+ version = "0.3.34"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
501
+ dependencies = [
502
+ "proc-macro2",
503
+ "quote",
504
+ "syn 3.0.3",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "futures-sink"
509
+ version = "0.3.34"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
512
+
513
+ [[package]]
514
+ name = "futures-task"
515
+ version = "0.3.34"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
518
+
519
+ [[package]]
520
+ name = "futures-util"
521
+ version = "0.3.34"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
524
+ dependencies = [
525
+ "futures-channel",
526
+ "futures-core",
527
+ "futures-io",
528
+ "futures-macro",
529
+ "futures-sink",
530
+ "futures-task",
531
+ "memchr",
532
+ "pin-project-lite",
533
+ "slab",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "generic-array"
538
+ version = "0.14.7"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
541
+ dependencies = [
542
+ "typenum",
543
+ "version_check",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "getrandom"
548
+ version = "0.3.4"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
551
+ dependencies = [
552
+ "cfg-if",
553
+ "js-sys",
554
+ "libc",
555
+ "r-efi 5.3.0",
556
+ "wasip2",
557
+ "wasm-bindgen",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "getrandom"
562
+ version = "0.4.3"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
565
+ dependencies = [
566
+ "cfg-if",
567
+ "libc",
568
+ "r-efi 6.0.0",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "hashbrown"
573
+ version = "0.14.5"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
576
+
577
+ [[package]]
578
+ name = "hashbrown"
579
+ version = "0.17.1"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
582
+
583
+ [[package]]
584
+ name = "heck"
585
+ version = "0.5.0"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
588
+
589
+ [[package]]
590
+ name = "hermit-abi"
591
+ version = "0.5.2"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
594
+
595
+ [[package]]
596
+ name = "hmac"
597
+ version = "0.12.1"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
600
+ dependencies = [
601
+ "digest",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "iana-time-zone"
606
+ version = "0.1.65"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
609
+ dependencies = [
610
+ "android_system_properties",
611
+ "core-foundation-sys",
612
+ "iana-time-zone-haiku",
613
+ "js-sys",
614
+ "log",
615
+ "wasm-bindgen",
616
+ "windows-core 0.62.2",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "iana-time-zone-haiku"
621
+ version = "0.1.2"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
624
+ dependencies = [
625
+ "cc",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "indexmap"
630
+ version = "2.14.0"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
633
+ dependencies = [
634
+ "equivalent",
635
+ "hashbrown 0.17.1",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "inout"
640
+ version = "0.1.4"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
643
+ dependencies = [
644
+ "generic-array",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "is_terminal_polyfill"
649
+ version = "1.70.2"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
652
+
653
+ [[package]]
654
+ name = "jobserver"
655
+ version = "0.1.35"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
658
+ dependencies = [
659
+ "getrandom 0.4.3",
660
+ "libc",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "js-sys"
665
+ version = "0.3.104"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
668
+ dependencies = [
669
+ "cfg-if",
670
+ "futures-util",
671
+ "wasm-bindgen",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "lazy_static"
676
+ version = "1.5.0"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
679
+
680
+ [[package]]
681
+ name = "libc"
682
+ version = "0.2.189"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
685
+
686
+ [[package]]
687
+ name = "lock_api"
688
+ version = "0.4.14"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
691
+ dependencies = [
692
+ "scopeguard",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "log"
697
+ version = "0.4.33"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
700
+
701
+ [[package]]
702
+ name = "lzma-rs"
703
+ version = "0.3.0"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
706
+ dependencies = [
707
+ "byteorder",
708
+ "crc",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "lzma-sys"
713
+ version = "0.1.20"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
716
+ dependencies = [
717
+ "cc",
718
+ "libc",
719
+ "pkg-config",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "mapreduce"
724
+ version = "0.1.0"
725
+ dependencies = [
726
+ "anyhow",
727
+ "async-trait",
728
+ "bincode",
729
+ "bytes",
730
+ "chrono",
731
+ "clap",
732
+ "dashmap",
733
+ "futures",
734
+ "memmap2",
735
+ "num_cpus",
736
+ "parking_lot",
737
+ "serde",
738
+ "sysinfo",
739
+ "thiserror",
740
+ "tokio",
741
+ "tokio-util",
742
+ "tracing",
743
+ "tracing-subscriber",
744
+ "uuid",
745
+ "zip",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "matchers"
750
+ version = "0.2.0"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
753
+ dependencies = [
754
+ "regex-automata",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "memchr"
759
+ version = "2.8.3"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
762
+
763
+ [[package]]
764
+ name = "memmap2"
765
+ version = "0.9.11"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
768
+ dependencies = [
769
+ "libc",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "miniz_oxide"
774
+ version = "0.8.9"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
777
+ dependencies = [
778
+ "adler2",
779
+ "simd-adler32",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "mio"
784
+ version = "1.2.2"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
787
+ dependencies = [
788
+ "libc",
789
+ "wasi",
790
+ "windows-sys",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "ntapi"
795
+ version = "0.4.3"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
798
+ dependencies = [
799
+ "winapi",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "nu-ansi-term"
804
+ version = "0.50.3"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
807
+ dependencies = [
808
+ "windows-sys",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "num-conv"
813
+ version = "0.2.2"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
816
+
817
+ [[package]]
818
+ name = "num-traits"
819
+ version = "0.2.19"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
822
+ dependencies = [
823
+ "autocfg",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "num_cpus"
828
+ version = "1.17.0"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
831
+ dependencies = [
832
+ "hermit-abi",
833
+ "libc",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "once_cell"
838
+ version = "1.21.4"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
841
+
842
+ [[package]]
843
+ name = "once_cell_polyfill"
844
+ version = "1.70.2"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
847
+
848
+ [[package]]
849
+ name = "parking_lot"
850
+ version = "0.12.5"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
853
+ dependencies = [
854
+ "lock_api",
855
+ "parking_lot_core",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "parking_lot_core"
860
+ version = "0.9.12"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
863
+ dependencies = [
864
+ "cfg-if",
865
+ "libc",
866
+ "redox_syscall",
867
+ "smallvec",
868
+ "windows-link",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "pbkdf2"
873
+ version = "0.12.2"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
876
+ dependencies = [
877
+ "digest",
878
+ "hmac",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "pin-project-lite"
883
+ version = "0.2.17"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
886
+
887
+ [[package]]
888
+ name = "pkg-config"
889
+ version = "0.3.34"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
892
+
893
+ [[package]]
894
+ name = "powerfmt"
895
+ version = "0.2.0"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
898
+
899
+ [[package]]
900
+ name = "proc-macro2"
901
+ version = "1.0.107"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
904
+ dependencies = [
905
+ "unicode-ident",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "quote"
910
+ version = "1.0.47"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
913
+ dependencies = [
914
+ "proc-macro2",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "r-efi"
919
+ version = "5.3.0"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
922
+
923
+ [[package]]
924
+ name = "r-efi"
925
+ version = "6.0.0"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
928
+
929
+ [[package]]
930
+ name = "rayon"
931
+ version = "1.12.0"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
934
+ dependencies = [
935
+ "either",
936
+ "rayon-core",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "rayon-core"
941
+ version = "1.13.0"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
944
+ dependencies = [
945
+ "crossbeam-deque",
946
+ "crossbeam-utils",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "redox_syscall"
951
+ version = "0.5.18"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
954
+ dependencies = [
955
+ "bitflags",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "regex-automata"
960
+ version = "0.4.18"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
963
+ dependencies = [
964
+ "aho-corasick",
965
+ "memchr",
966
+ "regex-syntax",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "regex-syntax"
971
+ version = "0.8.11"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
974
+
975
+ [[package]]
976
+ name = "rustversion"
977
+ version = "1.0.23"
978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
979
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
980
+
981
+ [[package]]
982
+ name = "scopeguard"
983
+ version = "1.2.0"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
986
+
987
+ [[package]]
988
+ name = "serde"
989
+ version = "1.0.229"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
992
+ dependencies = [
993
+ "serde_core",
994
+ "serde_derive",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "serde_core"
999
+ version = "1.0.229"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1002
+ dependencies = [
1003
+ "serde_derive",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "serde_derive"
1008
+ version = "1.0.229"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1011
+ dependencies = [
1012
+ "proc-macro2",
1013
+ "quote",
1014
+ "syn 3.0.3",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "sha1"
1019
+ version = "0.10.7"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
1022
+ dependencies = [
1023
+ "cfg-if",
1024
+ "cpufeatures",
1025
+ "digest",
1026
+ ]
1027
+
1028
+ [[package]]
1029
+ name = "sharded-slab"
1030
+ version = "0.1.7"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1033
+ dependencies = [
1034
+ "lazy_static",
1035
+ ]
1036
+
1037
+ [[package]]
1038
+ name = "shlex"
1039
+ version = "2.0.1"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1042
+
1043
+ [[package]]
1044
+ name = "signal-hook-registry"
1045
+ version = "1.4.8"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1048
+ dependencies = [
1049
+ "errno",
1050
+ "libc",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "simd-adler32"
1055
+ version = "0.3.10"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
1058
+
1059
+ [[package]]
1060
+ name = "slab"
1061
+ version = "0.4.12"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1064
+
1065
+ [[package]]
1066
+ name = "smallvec"
1067
+ version = "1.15.2"
1068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1069
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1070
+
1071
+ [[package]]
1072
+ name = "socket2"
1073
+ version = "0.6.5"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
1076
+ dependencies = [
1077
+ "libc",
1078
+ "windows-sys",
1079
+ ]
1080
+
1081
+ [[package]]
1082
+ name = "strsim"
1083
+ version = "0.11.1"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1086
+
1087
+ [[package]]
1088
+ name = "subtle"
1089
+ version = "2.6.1"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1092
+
1093
+ [[package]]
1094
+ name = "syn"
1095
+ version = "2.0.119"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1098
+ dependencies = [
1099
+ "proc-macro2",
1100
+ "quote",
1101
+ "unicode-ident",
1102
+ ]
1103
+
1104
+ [[package]]
1105
+ name = "syn"
1106
+ version = "3.0.3"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1109
+ dependencies = [
1110
+ "proc-macro2",
1111
+ "quote",
1112
+ "unicode-ident",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "sysinfo"
1117
+ version = "0.32.1"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "4c33cd241af0f2e9e3b5c32163b873b29956890b5342e6745b917ce9d490f4af"
1120
+ dependencies = [
1121
+ "core-foundation-sys",
1122
+ "libc",
1123
+ "memchr",
1124
+ "ntapi",
1125
+ "rayon",
1126
+ "windows",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "thiserror"
1131
+ version = "2.0.20"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1134
+ dependencies = [
1135
+ "thiserror-impl",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "thiserror-impl"
1140
+ version = "2.0.20"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1143
+ dependencies = [
1144
+ "proc-macro2",
1145
+ "quote",
1146
+ "syn 3.0.3",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "thread_local"
1151
+ version = "1.1.10"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
1154
+ dependencies = [
1155
+ "cfg-if",
1156
+ ]
1157
+
1158
+ [[package]]
1159
+ name = "time"
1160
+ version = "0.3.55"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
1163
+ dependencies = [
1164
+ "deranged",
1165
+ "num-conv",
1166
+ "powerfmt",
1167
+ "serde_core",
1168
+ "time-core",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "time-core"
1173
+ version = "0.1.9"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
1176
+
1177
+ [[package]]
1178
+ name = "tokio"
1179
+ version = "1.53.1"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
1182
+ dependencies = [
1183
+ "bytes",
1184
+ "libc",
1185
+ "mio",
1186
+ "parking_lot",
1187
+ "pin-project-lite",
1188
+ "signal-hook-registry",
1189
+ "socket2",
1190
+ "tokio-macros",
1191
+ "windows-sys",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "tokio-macros"
1196
+ version = "2.7.2"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
1199
+ dependencies = [
1200
+ "proc-macro2",
1201
+ "quote",
1202
+ "syn 3.0.3",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "tokio-util"
1207
+ version = "0.7.19"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
1210
+ dependencies = [
1211
+ "bytes",
1212
+ "futures-core",
1213
+ "futures-sink",
1214
+ "libc",
1215
+ "pin-project-lite",
1216
+ "tokio",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "tracing"
1221
+ version = "0.1.44"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1224
+ dependencies = [
1225
+ "pin-project-lite",
1226
+ "tracing-attributes",
1227
+ "tracing-core",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "tracing-attributes"
1232
+ version = "0.1.31"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1235
+ dependencies = [
1236
+ "proc-macro2",
1237
+ "quote",
1238
+ "syn 2.0.119",
1239
+ ]
1240
+
1241
+ [[package]]
1242
+ name = "tracing-core"
1243
+ version = "0.1.36"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1246
+ dependencies = [
1247
+ "once_cell",
1248
+ "valuable",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "tracing-log"
1253
+ version = "0.2.0"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1256
+ dependencies = [
1257
+ "log",
1258
+ "once_cell",
1259
+ "tracing-core",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "tracing-subscriber"
1264
+ version = "0.3.23"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1267
+ dependencies = [
1268
+ "matchers",
1269
+ "nu-ansi-term",
1270
+ "once_cell",
1271
+ "regex-automata",
1272
+ "sharded-slab",
1273
+ "smallvec",
1274
+ "thread_local",
1275
+ "tracing",
1276
+ "tracing-core",
1277
+ "tracing-log",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "typenum"
1282
+ version = "1.20.1"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1285
+
1286
+ [[package]]
1287
+ name = "unicode-ident"
1288
+ version = "1.0.24"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1291
+
1292
+ [[package]]
1293
+ name = "utf8parse"
1294
+ version = "0.2.2"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1297
+
1298
+ [[package]]
1299
+ name = "uuid"
1300
+ version = "1.24.1"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "2cefc03fd367c0c6d4305de1b312cf00248c4114f4a0418ce6a6af769e3b0bd9"
1303
+ dependencies = [
1304
+ "getrandom 0.4.3",
1305
+ "js-sys",
1306
+ "serde_core",
1307
+ "wasm-bindgen",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "valuable"
1312
+ version = "0.1.1"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1315
+
1316
+ [[package]]
1317
+ name = "version_check"
1318
+ version = "0.9.5"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1321
+
1322
+ [[package]]
1323
+ name = "wasi"
1324
+ version = "0.11.1+wasi-snapshot-preview1"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1327
+
1328
+ [[package]]
1329
+ name = "wasip2"
1330
+ version = "1.0.4+wasi-0.2.12"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1333
+ dependencies = [
1334
+ "wit-bindgen",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "wasm-bindgen"
1339
+ version = "0.2.127"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
1342
+ dependencies = [
1343
+ "cfg-if",
1344
+ "once_cell",
1345
+ "rustversion",
1346
+ "wasm-bindgen-macro",
1347
+ "wasm-bindgen-shared",
1348
+ ]
1349
+
1350
+ [[package]]
1351
+ name = "wasm-bindgen-macro"
1352
+ version = "0.2.127"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
1355
+ dependencies = [
1356
+ "quote",
1357
+ "wasm-bindgen-macro-support",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "wasm-bindgen-macro-support"
1362
+ version = "0.2.127"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
1365
+ dependencies = [
1366
+ "bumpalo",
1367
+ "proc-macro2",
1368
+ "quote",
1369
+ "syn 2.0.119",
1370
+ "wasm-bindgen-shared",
1371
+ ]
1372
+
1373
+ [[package]]
1374
+ name = "wasm-bindgen-shared"
1375
+ version = "0.2.127"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
1378
+ dependencies = [
1379
+ "unicode-ident",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "winapi"
1384
+ version = "0.3.9"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1387
+ dependencies = [
1388
+ "winapi-i686-pc-windows-gnu",
1389
+ "winapi-x86_64-pc-windows-gnu",
1390
+ ]
1391
+
1392
+ [[package]]
1393
+ name = "winapi-i686-pc-windows-gnu"
1394
+ version = "0.4.0"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1397
+
1398
+ [[package]]
1399
+ name = "winapi-x86_64-pc-windows-gnu"
1400
+ version = "0.4.0"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1403
+
1404
+ [[package]]
1405
+ name = "windows"
1406
+ version = "0.57.0"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
1409
+ dependencies = [
1410
+ "windows-core 0.57.0",
1411
+ "windows-targets",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "windows-core"
1416
+ version = "0.57.0"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
1419
+ dependencies = [
1420
+ "windows-implement 0.57.0",
1421
+ "windows-interface 0.57.0",
1422
+ "windows-result 0.1.2",
1423
+ "windows-targets",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "windows-core"
1428
+ version = "0.62.2"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1431
+ dependencies = [
1432
+ "windows-implement 0.60.2",
1433
+ "windows-interface 0.59.3",
1434
+ "windows-link",
1435
+ "windows-result 0.4.1",
1436
+ "windows-strings",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "windows-implement"
1441
+ version = "0.57.0"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
1444
+ dependencies = [
1445
+ "proc-macro2",
1446
+ "quote",
1447
+ "syn 2.0.119",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "windows-implement"
1452
+ version = "0.60.2"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1455
+ dependencies = [
1456
+ "proc-macro2",
1457
+ "quote",
1458
+ "syn 2.0.119",
1459
+ ]
1460
+
1461
+ [[package]]
1462
+ name = "windows-interface"
1463
+ version = "0.57.0"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
1466
+ dependencies = [
1467
+ "proc-macro2",
1468
+ "quote",
1469
+ "syn 2.0.119",
1470
+ ]
1471
+
1472
+ [[package]]
1473
+ name = "windows-interface"
1474
+ version = "0.59.3"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1477
+ dependencies = [
1478
+ "proc-macro2",
1479
+ "quote",
1480
+ "syn 2.0.119",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "windows-link"
1485
+ version = "0.2.1"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1488
+
1489
+ [[package]]
1490
+ name = "windows-result"
1491
+ version = "0.1.2"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
1494
+ dependencies = [
1495
+ "windows-targets",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "windows-result"
1500
+ version = "0.4.1"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1503
+ dependencies = [
1504
+ "windows-link",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "windows-strings"
1509
+ version = "0.5.1"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1512
+ dependencies = [
1513
+ "windows-link",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "windows-sys"
1518
+ version = "0.61.2"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1521
+ dependencies = [
1522
+ "windows-link",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "windows-targets"
1527
+ version = "0.52.6"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1530
+ dependencies = [
1531
+ "windows_aarch64_gnullvm",
1532
+ "windows_aarch64_msvc",
1533
+ "windows_i686_gnu",
1534
+ "windows_i686_gnullvm",
1535
+ "windows_i686_msvc",
1536
+ "windows_x86_64_gnu",
1537
+ "windows_x86_64_gnullvm",
1538
+ "windows_x86_64_msvc",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "windows_aarch64_gnullvm"
1543
+ version = "0.52.6"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1546
+
1547
+ [[package]]
1548
+ name = "windows_aarch64_msvc"
1549
+ version = "0.52.6"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1552
+
1553
+ [[package]]
1554
+ name = "windows_i686_gnu"
1555
+ version = "0.52.6"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1558
+
1559
+ [[package]]
1560
+ name = "windows_i686_gnullvm"
1561
+ version = "0.52.6"
1562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1563
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1564
+
1565
+ [[package]]
1566
+ name = "windows_i686_msvc"
1567
+ version = "0.52.6"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1570
+
1571
+ [[package]]
1572
+ name = "windows_x86_64_gnu"
1573
+ version = "0.52.6"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1576
+
1577
+ [[package]]
1578
+ name = "windows_x86_64_gnullvm"
1579
+ version = "0.52.6"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1582
+
1583
+ [[package]]
1584
+ name = "windows_x86_64_msvc"
1585
+ version = "0.52.6"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1588
+
1589
+ [[package]]
1590
+ name = "wit-bindgen"
1591
+ version = "0.57.1"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1594
+
1595
+ [[package]]
1596
+ name = "xz2"
1597
+ version = "0.1.7"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
1600
+ dependencies = [
1601
+ "lzma-sys",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "zeroize"
1606
+ version = "1.9.0"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
1609
+ dependencies = [
1610
+ "zeroize_derive",
1611
+ ]
1612
+
1613
+ [[package]]
1614
+ name = "zeroize_derive"
1615
+ version = "1.5.0"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
1618
+ dependencies = [
1619
+ "proc-macro2",
1620
+ "quote",
1621
+ "syn 2.0.119",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "zip"
1626
+ version = "2.4.2"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "fabe6324e908f85a1c52063ce7aa26b68dcb7eb6dbc83a2d148403c9bc3eba50"
1629
+ dependencies = [
1630
+ "aes",
1631
+ "arbitrary",
1632
+ "bzip2",
1633
+ "constant_time_eq",
1634
+ "crc32fast",
1635
+ "crossbeam-utils",
1636
+ "deflate64",
1637
+ "displaydoc",
1638
+ "flate2",
1639
+ "getrandom 0.3.4",
1640
+ "hmac",
1641
+ "indexmap",
1642
+ "lzma-rs",
1643
+ "memchr",
1644
+ "pbkdf2",
1645
+ "sha1",
1646
+ "thiserror",
1647
+ "time",
1648
+ "xz2",
1649
+ "zeroize",
1650
+ "zopfli",
1651
+ "zstd",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "zopfli"
1656
+ version = "0.8.3"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
1659
+ dependencies = [
1660
+ "bumpalo",
1661
+ "crc32fast",
1662
+ "log",
1663
+ "simd-adler32",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "zstd"
1668
+ version = "0.13.3"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
1671
+ dependencies = [
1672
+ "zstd-safe",
1673
+ ]
1674
+
1675
+ [[package]]
1676
+ name = "zstd-safe"
1677
+ version = "7.2.4"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
1680
+ dependencies = [
1681
+ "zstd-sys",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "zstd-sys"
1686
+ version = "2.0.16+zstd.1.5.7"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
1689
+ dependencies = [
1690
+ "cc",
1691
+ "pkg-config",
1692
+ ]