atompack-db 0.2.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 (70) hide show
  1. atompack_db-0.2.0/Cargo.lock +1046 -0
  2. atompack_db-0.2.0/Cargo.toml +29 -0
  3. atompack_db-0.2.0/LICENSE +201 -0
  4. atompack_db-0.2.0/PKG-INFO +95 -0
  5. atompack_db-0.2.0/README.md +63 -0
  6. atompack_db-0.2.0/atompack/Cargo.toml +24 -0
  7. atompack_db-0.2.0/atompack/examples/basic_usage.rs +50 -0
  8. atompack_db-0.2.0/atompack/src/atom.rs +475 -0
  9. atompack_db-0.2.0/atompack/src/bin/atompack-bench.rs +329 -0
  10. atompack_db-0.2.0/atompack/src/compression.rs +151 -0
  11. atompack_db-0.2.0/atompack/src/lib.rs +33 -0
  12. atompack_db-0.2.0/atompack/src/storage/header.rs +145 -0
  13. atompack_db-0.2.0/atompack/src/storage/index.rs +134 -0
  14. atompack_db-0.2.0/atompack/src/storage/mod.rs +1059 -0
  15. atompack_db-0.2.0/atompack/src/storage/soa.rs +464 -0
  16. atompack_db-0.2.0/atompack-py/Cargo.toml +20 -0
  17. atompack_db-0.2.0/atompack-py/LICENSE +201 -0
  18. atompack_db-0.2.0/atompack-py/README.md +63 -0
  19. atompack_db-0.2.0/atompack-py/benchmarks/README.md +360 -0
  20. atompack_db-0.2.0/atompack-py/benchmarks/atom_hdf5_soa.py +474 -0
  21. atompack_db-0.2.0/atompack-py/benchmarks/atom_lmdb.py +401 -0
  22. atompack_db-0.2.0/atompack-py/benchmarks/atom_lmdb_pickle.py +186 -0
  23. atompack_db-0.2.0/atompack-py/benchmarks/atompack_batch_benchmark.py +308 -0
  24. atompack_db-0.2.0/atompack-py/benchmarks/atompack_bestcase_read_benchmark.py +375 -0
  25. atompack_db-0.2.0/atompack-py/benchmarks/benchmark.py +1959 -0
  26. atompack_db-0.2.0/atompack-py/benchmarks/convert_legacy_atompack.py +757 -0
  27. atompack_db-0.2.0/atompack-py/benchmarks/hdf5_tuned_experiment.py +418 -0
  28. atompack_db-0.2.0/atompack-py/benchmarks/memory_benchmark.py +592 -0
  29. atompack_db-0.2.0/atompack-py/benchmarks/memory_benchmark_results.json +188 -0
  30. atompack_db-0.2.0/atompack-py/benchmarks/plot_benchmark_report.py +2553 -0
  31. atompack_db-0.2.0/atompack-py/benchmarks/plot_benchmark_story.py +904 -0
  32. atompack_db-0.2.0/atompack-py/benchmarks/release_blogpost.md +130 -0
  33. atompack_db-0.2.0/atompack-py/benchmarks/scaling_benchmark.py +768 -0
  34. atompack_db-0.2.0/atompack-py/benchmarks/write_benchmark.py +1318 -0
  35. atompack_db-0.2.0/atompack-py/src/database.rs +341 -0
  36. atompack_db-0.2.0/atompack-py/src/database_batch.rs +651 -0
  37. atompack_db-0.2.0/atompack-py/src/database_flat.rs +426 -0
  38. atompack_db-0.2.0/atompack-py/src/lib.rs +836 -0
  39. atompack_db-0.2.0/atompack-py/src/molecule.rs +849 -0
  40. atompack_db-0.2.0/atompack-py/src/molecule_helpers.rs +1003 -0
  41. atompack_db-0.2.0/atompack-py/tests/benchmarks/conftest.py +56 -0
  42. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_atom_hdf5_soa.py +219 -0
  43. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_benchmark_ase_read_path.py +54 -0
  44. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_benchmark_ase_write_context.py +80 -0
  45. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_benchmark_cache_validation.py +433 -0
  46. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_benchmark_read_sample_defaults.py +126 -0
  47. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_convert_legacy_atompack.py +439 -0
  48. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_hdf5_tuned_experiment.py +61 -0
  49. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_lmdb_pickle_and_compare.py +49 -0
  50. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_memory_benchmark_paths.py +49 -0
  51. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_other_benchmark_populate_defaults.py +57 -0
  52. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_plot_benchmark_report.py +304 -0
  53. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_plot_benchmark_story.py +157 -0
  54. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_publication_surface.py +37 -0
  55. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_scaling_benchmark_ase_write_context.py +133 -0
  56. atompack_db-0.2.0/atompack-py/tests/benchmarks/test_write_benchmark_lmdb_soa.py +287 -0
  57. atompack_db-0.2.0/atompack-py/tests/conftest.py +27 -0
  58. atompack_db-0.2.0/atompack-py/tests/test_atom_molecule.py +264 -0
  59. atompack_db-0.2.0/atompack-py/tests/test_database.py +579 -0
  60. atompack_db-0.2.0/atompack-py/tests/test_from_ase.py +504 -0
  61. atompack_db-0.2.0/atompack-py/tests/test_hub.py +516 -0
  62. atompack_db-0.2.0/atompack-py/tests/test_import_side_effects.py +27 -0
  63. atompack_db-0.2.0/atompack-py/uv.lock +4723 -0
  64. atompack_db-0.2.0/pyproject.toml +76 -0
  65. atompack_db-0.2.0/python/atompack/__init__.py +56 -0
  66. atompack_db-0.2.0/python/atompack/__init__.pyi +737 -0
  67. atompack_db-0.2.0/python/atompack/_atompack_rs.pyi +524 -0
  68. atompack_db-0.2.0/python/atompack/ase_bridge.py +721 -0
  69. atompack_db-0.2.0/python/atompack/hub.py +450 -0
  70. atompack_db-0.2.0/python/atompack/hub.pyi +152 -0
@@ -0,0 +1,1046 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anes"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
19
+
20
+ [[package]]
21
+ name = "anstyle"
22
+ version = "1.0.13"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
25
+
26
+ [[package]]
27
+ name = "atompack"
28
+ version = "0.2.0"
29
+ dependencies = [
30
+ "bincode",
31
+ "bytemuck",
32
+ "criterion",
33
+ "lz4",
34
+ "memmap2",
35
+ "ndarray",
36
+ "plotters",
37
+ "rand",
38
+ "rayon",
39
+ "serde",
40
+ "tempfile",
41
+ "thiserror",
42
+ "zstd",
43
+ ]
44
+
45
+ [[package]]
46
+ name = "atompack-py"
47
+ version = "0.2.0"
48
+ dependencies = [
49
+ "atompack",
50
+ "bincode",
51
+ "bytemuck",
52
+ "numpy",
53
+ "pyo3",
54
+ "pyo3-build-config",
55
+ "rayon",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "autocfg"
60
+ version = "1.5.0"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
63
+
64
+ [[package]]
65
+ name = "bincode"
66
+ version = "1.3.3"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
69
+ dependencies = [
70
+ "serde",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "bitflags"
75
+ version = "2.10.0"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
78
+
79
+ [[package]]
80
+ name = "bumpalo"
81
+ version = "3.19.0"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
84
+
85
+ [[package]]
86
+ name = "bytemuck"
87
+ version = "1.24.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
90
+ dependencies = [
91
+ "bytemuck_derive",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "bytemuck_derive"
96
+ version = "1.10.2"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
99
+ dependencies = [
100
+ "proc-macro2",
101
+ "quote",
102
+ "syn",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "cast"
107
+ version = "0.3.0"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
110
+
111
+ [[package]]
112
+ name = "cc"
113
+ version = "1.2.45"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe"
116
+ dependencies = [
117
+ "find-msvc-tools",
118
+ "jobserver",
119
+ "libc",
120
+ "shlex",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "cfg-if"
125
+ version = "1.0.4"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
128
+
129
+ [[package]]
130
+ name = "ciborium"
131
+ version = "0.2.2"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
134
+ dependencies = [
135
+ "ciborium-io",
136
+ "ciborium-ll",
137
+ "serde",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "ciborium-io"
142
+ version = "0.2.2"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
145
+
146
+ [[package]]
147
+ name = "ciborium-ll"
148
+ version = "0.2.2"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
151
+ dependencies = [
152
+ "ciborium-io",
153
+ "half",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "clap"
158
+ version = "4.5.51"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
161
+ dependencies = [
162
+ "clap_builder",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "clap_builder"
167
+ version = "4.5.51"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
170
+ dependencies = [
171
+ "anstyle",
172
+ "clap_lex",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "clap_lex"
177
+ version = "0.7.6"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
180
+
181
+ [[package]]
182
+ name = "criterion"
183
+ version = "0.5.1"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
186
+ dependencies = [
187
+ "anes",
188
+ "cast",
189
+ "ciborium",
190
+ "clap",
191
+ "criterion-plot",
192
+ "is-terminal",
193
+ "itertools",
194
+ "num-traits",
195
+ "once_cell",
196
+ "oorandom",
197
+ "plotters",
198
+ "rayon",
199
+ "regex",
200
+ "serde",
201
+ "serde_derive",
202
+ "serde_json",
203
+ "tinytemplate",
204
+ "walkdir",
205
+ ]
206
+
207
+ [[package]]
208
+ name = "criterion-plot"
209
+ version = "0.5.0"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
212
+ dependencies = [
213
+ "cast",
214
+ "itertools",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "crossbeam-deque"
219
+ version = "0.8.6"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
222
+ dependencies = [
223
+ "crossbeam-epoch",
224
+ "crossbeam-utils",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "crossbeam-epoch"
229
+ version = "0.9.18"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
232
+ dependencies = [
233
+ "crossbeam-utils",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "crossbeam-utils"
238
+ version = "0.8.21"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
241
+
242
+ [[package]]
243
+ name = "crunchy"
244
+ version = "0.2.4"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
247
+
248
+ [[package]]
249
+ name = "either"
250
+ version = "1.15.0"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
253
+
254
+ [[package]]
255
+ name = "errno"
256
+ version = "0.3.14"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
259
+ dependencies = [
260
+ "libc",
261
+ "windows-sys",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "fastrand"
266
+ version = "2.3.0"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
269
+
270
+ [[package]]
271
+ name = "find-msvc-tools"
272
+ version = "0.1.4"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
275
+
276
+ [[package]]
277
+ name = "getrandom"
278
+ version = "0.2.16"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
281
+ dependencies = [
282
+ "cfg-if",
283
+ "libc",
284
+ "wasi",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "getrandom"
289
+ version = "0.3.4"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
292
+ dependencies = [
293
+ "cfg-if",
294
+ "libc",
295
+ "r-efi",
296
+ "wasip2",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "half"
301
+ version = "2.7.1"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
304
+ dependencies = [
305
+ "cfg-if",
306
+ "crunchy",
307
+ "zerocopy",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "heck"
312
+ version = "0.5.0"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
315
+
316
+ [[package]]
317
+ name = "hermit-abi"
318
+ version = "0.5.2"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
321
+
322
+ [[package]]
323
+ name = "indoc"
324
+ version = "2.0.7"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
327
+ dependencies = [
328
+ "rustversion",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "is-terminal"
333
+ version = "0.4.17"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
336
+ dependencies = [
337
+ "hermit-abi",
338
+ "libc",
339
+ "windows-sys",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "itertools"
344
+ version = "0.10.5"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
347
+ dependencies = [
348
+ "either",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "itoa"
353
+ version = "1.0.15"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
356
+
357
+ [[package]]
358
+ name = "jobserver"
359
+ version = "0.1.34"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
362
+ dependencies = [
363
+ "getrandom 0.3.4",
364
+ "libc",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "js-sys"
369
+ version = "0.3.82"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
372
+ dependencies = [
373
+ "once_cell",
374
+ "wasm-bindgen",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "libc"
379
+ version = "0.2.177"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
382
+
383
+ [[package]]
384
+ name = "linux-raw-sys"
385
+ version = "0.11.0"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
388
+
389
+ [[package]]
390
+ name = "lz4"
391
+ version = "1.28.1"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
394
+ dependencies = [
395
+ "lz4-sys",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "lz4-sys"
400
+ version = "1.11.1+lz4-1.10.0"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
403
+ dependencies = [
404
+ "cc",
405
+ "libc",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "matrixmultiply"
410
+ version = "0.3.10"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
413
+ dependencies = [
414
+ "autocfg",
415
+ "rawpointer",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "memchr"
420
+ version = "2.7.6"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
423
+
424
+ [[package]]
425
+ name = "memmap2"
426
+ version = "0.9.9"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
429
+ dependencies = [
430
+ "libc",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "memoffset"
435
+ version = "0.9.1"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
438
+ dependencies = [
439
+ "autocfg",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "ndarray"
444
+ version = "0.15.6"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
447
+ dependencies = [
448
+ "matrixmultiply",
449
+ "num-complex",
450
+ "num-integer",
451
+ "num-traits",
452
+ "rawpointer",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "num-complex"
457
+ version = "0.4.6"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
460
+ dependencies = [
461
+ "num-traits",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "num-integer"
466
+ version = "0.1.46"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
469
+ dependencies = [
470
+ "num-traits",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "num-traits"
475
+ version = "0.2.19"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
478
+ dependencies = [
479
+ "autocfg",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "numpy"
484
+ version = "0.26.0"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "9b2dba356160b54f5371b550575b78130a54718b4c6e46b3f33a6da74a27e78b"
487
+ dependencies = [
488
+ "libc",
489
+ "ndarray",
490
+ "num-complex",
491
+ "num-integer",
492
+ "num-traits",
493
+ "pyo3",
494
+ "pyo3-build-config",
495
+ "rustc-hash",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "once_cell"
500
+ version = "1.21.3"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
503
+
504
+ [[package]]
505
+ name = "oorandom"
506
+ version = "11.1.5"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
509
+
510
+ [[package]]
511
+ name = "pkg-config"
512
+ version = "0.3.32"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
515
+
516
+ [[package]]
517
+ name = "plotters"
518
+ version = "0.3.7"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
521
+ dependencies = [
522
+ "num-traits",
523
+ "plotters-backend",
524
+ "plotters-svg",
525
+ "wasm-bindgen",
526
+ "web-sys",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "plotters-backend"
531
+ version = "0.3.7"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
534
+
535
+ [[package]]
536
+ name = "plotters-svg"
537
+ version = "0.3.7"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
540
+ dependencies = [
541
+ "plotters-backend",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "portable-atomic"
546
+ version = "1.11.1"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
549
+
550
+ [[package]]
551
+ name = "ppv-lite86"
552
+ version = "0.2.21"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
555
+ dependencies = [
556
+ "zerocopy",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "proc-macro2"
561
+ version = "1.0.103"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
564
+ dependencies = [
565
+ "unicode-ident",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "pyo3"
570
+ version = "0.26.0"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
573
+ dependencies = [
574
+ "indoc",
575
+ "libc",
576
+ "memoffset",
577
+ "once_cell",
578
+ "portable-atomic",
579
+ "pyo3-build-config",
580
+ "pyo3-ffi",
581
+ "pyo3-macros",
582
+ "unindent",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "pyo3-build-config"
587
+ version = "0.26.0"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
590
+ dependencies = [
591
+ "target-lexicon",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "pyo3-ffi"
596
+ version = "0.26.0"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
599
+ dependencies = [
600
+ "libc",
601
+ "pyo3-build-config",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "pyo3-macros"
606
+ version = "0.26.0"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
609
+ dependencies = [
610
+ "proc-macro2",
611
+ "pyo3-macros-backend",
612
+ "quote",
613
+ "syn",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "pyo3-macros-backend"
618
+ version = "0.26.0"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
621
+ dependencies = [
622
+ "heck",
623
+ "proc-macro2",
624
+ "pyo3-build-config",
625
+ "quote",
626
+ "syn",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "quote"
631
+ version = "1.0.42"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
634
+ dependencies = [
635
+ "proc-macro2",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "r-efi"
640
+ version = "5.3.0"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
643
+
644
+ [[package]]
645
+ name = "rand"
646
+ version = "0.8.5"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
649
+ dependencies = [
650
+ "libc",
651
+ "rand_chacha",
652
+ "rand_core",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "rand_chacha"
657
+ version = "0.3.1"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
660
+ dependencies = [
661
+ "ppv-lite86",
662
+ "rand_core",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "rand_core"
667
+ version = "0.6.4"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
670
+ dependencies = [
671
+ "getrandom 0.2.16",
672
+ ]
673
+
674
+ [[package]]
675
+ name = "rawpointer"
676
+ version = "0.2.1"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
679
+
680
+ [[package]]
681
+ name = "rayon"
682
+ version = "1.11.0"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
685
+ dependencies = [
686
+ "either",
687
+ "rayon-core",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "rayon-core"
692
+ version = "1.13.0"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
695
+ dependencies = [
696
+ "crossbeam-deque",
697
+ "crossbeam-utils",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "regex"
702
+ version = "1.12.2"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
705
+ dependencies = [
706
+ "aho-corasick",
707
+ "memchr",
708
+ "regex-automata",
709
+ "regex-syntax",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "regex-automata"
714
+ version = "0.4.13"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
717
+ dependencies = [
718
+ "aho-corasick",
719
+ "memchr",
720
+ "regex-syntax",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "regex-syntax"
725
+ version = "0.8.8"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
728
+
729
+ [[package]]
730
+ name = "rustc-hash"
731
+ version = "2.1.2"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
734
+
735
+ [[package]]
736
+ name = "rustix"
737
+ version = "1.1.2"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
740
+ dependencies = [
741
+ "bitflags",
742
+ "errno",
743
+ "libc",
744
+ "linux-raw-sys",
745
+ "windows-sys",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "rustversion"
750
+ version = "1.0.22"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
753
+
754
+ [[package]]
755
+ name = "ryu"
756
+ version = "1.0.20"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
759
+
760
+ [[package]]
761
+ name = "same-file"
762
+ version = "1.0.6"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
765
+ dependencies = [
766
+ "winapi-util",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "serde"
771
+ version = "1.0.228"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
774
+ dependencies = [
775
+ "serde_core",
776
+ "serde_derive",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "serde_core"
781
+ version = "1.0.228"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
784
+ dependencies = [
785
+ "serde_derive",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "serde_derive"
790
+ version = "1.0.228"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
793
+ dependencies = [
794
+ "proc-macro2",
795
+ "quote",
796
+ "syn",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "serde_json"
801
+ version = "1.0.145"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
804
+ dependencies = [
805
+ "itoa",
806
+ "memchr",
807
+ "ryu",
808
+ "serde",
809
+ "serde_core",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "shlex"
814
+ version = "1.3.0"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
817
+
818
+ [[package]]
819
+ name = "syn"
820
+ version = "2.0.110"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
823
+ dependencies = [
824
+ "proc-macro2",
825
+ "quote",
826
+ "unicode-ident",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "target-lexicon"
831
+ version = "0.13.5"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
834
+
835
+ [[package]]
836
+ name = "tempfile"
837
+ version = "3.23.0"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
840
+ dependencies = [
841
+ "fastrand",
842
+ "getrandom 0.3.4",
843
+ "once_cell",
844
+ "rustix",
845
+ "windows-sys",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "thiserror"
850
+ version = "1.0.69"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
853
+ dependencies = [
854
+ "thiserror-impl",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "thiserror-impl"
859
+ version = "1.0.69"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
862
+ dependencies = [
863
+ "proc-macro2",
864
+ "quote",
865
+ "syn",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "tinytemplate"
870
+ version = "1.2.1"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
873
+ dependencies = [
874
+ "serde",
875
+ "serde_json",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "unicode-ident"
880
+ version = "1.0.22"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
883
+
884
+ [[package]]
885
+ name = "unindent"
886
+ version = "0.2.4"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
889
+
890
+ [[package]]
891
+ name = "walkdir"
892
+ version = "2.5.0"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
895
+ dependencies = [
896
+ "same-file",
897
+ "winapi-util",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "wasi"
902
+ version = "0.11.1+wasi-snapshot-preview1"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
905
+
906
+ [[package]]
907
+ name = "wasip2"
908
+ version = "1.0.1+wasi-0.2.4"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
911
+ dependencies = [
912
+ "wit-bindgen",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "wasm-bindgen"
917
+ version = "0.2.105"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
920
+ dependencies = [
921
+ "cfg-if",
922
+ "once_cell",
923
+ "rustversion",
924
+ "wasm-bindgen-macro",
925
+ "wasm-bindgen-shared",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "wasm-bindgen-macro"
930
+ version = "0.2.105"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
933
+ dependencies = [
934
+ "quote",
935
+ "wasm-bindgen-macro-support",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "wasm-bindgen-macro-support"
940
+ version = "0.2.105"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
943
+ dependencies = [
944
+ "bumpalo",
945
+ "proc-macro2",
946
+ "quote",
947
+ "syn",
948
+ "wasm-bindgen-shared",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "wasm-bindgen-shared"
953
+ version = "0.2.105"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
956
+ dependencies = [
957
+ "unicode-ident",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "web-sys"
962
+ version = "0.3.82"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
965
+ dependencies = [
966
+ "js-sys",
967
+ "wasm-bindgen",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "winapi-util"
972
+ version = "0.1.11"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
975
+ dependencies = [
976
+ "windows-sys",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "windows-link"
981
+ version = "0.2.1"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
984
+
985
+ [[package]]
986
+ name = "windows-sys"
987
+ version = "0.61.2"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
990
+ dependencies = [
991
+ "windows-link",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "wit-bindgen"
996
+ version = "0.46.0"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
999
+
1000
+ [[package]]
1001
+ name = "zerocopy"
1002
+ version = "0.8.27"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
1005
+ dependencies = [
1006
+ "zerocopy-derive",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "zerocopy-derive"
1011
+ version = "0.8.27"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
1014
+ dependencies = [
1015
+ "proc-macro2",
1016
+ "quote",
1017
+ "syn",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "zstd"
1022
+ version = "0.13.3"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
1025
+ dependencies = [
1026
+ "zstd-safe",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "zstd-safe"
1031
+ version = "7.2.4"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
1034
+ dependencies = [
1035
+ "zstd-sys",
1036
+ ]
1037
+
1038
+ [[package]]
1039
+ name = "zstd-sys"
1040
+ version = "2.0.16+zstd.1.5.7"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
1043
+ dependencies = [
1044
+ "cc",
1045
+ "pkg-config",
1046
+ ]