seqpacker 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. seqpacker-0.1.1/Cargo.lock +931 -0
  2. seqpacker-0.1.1/Cargo.toml +32 -0
  3. seqpacker-0.1.1/LICENSE +21 -0
  4. seqpacker-0.1.1/PKG-INFO +264 -0
  5. seqpacker-0.1.1/README.md +236 -0
  6. seqpacker-0.1.1/bindings/python/Cargo.toml +17 -0
  7. seqpacker-0.1.1/bindings/python/src/lib.rs +67 -0
  8. seqpacker-0.1.1/bindings/python/src/metrics.rs +107 -0
  9. seqpacker-0.1.1/bindings/python/src/pack.rs +55 -0
  10. seqpacker-0.1.1/bindings/python/src/packer.rs +254 -0
  11. seqpacker-0.1.1/bindings/python/src/strategy.rs +47 -0
  12. seqpacker-0.1.1/bindings/python/src/stream_packer.rs +122 -0
  13. seqpacker-0.1.1/crates/seqpacker/Cargo.toml +28 -0
  14. seqpacker-0.1.1/crates/seqpacker/README.md +124 -0
  15. seqpacker-0.1.1/crates/seqpacker/src/algorithms/best_fit.rs +224 -0
  16. seqpacker-0.1.1/crates/seqpacker/src/algorithms/best_fit_decreasing.rs +266 -0
  17. seqpacker-0.1.1/crates/seqpacker/src/algorithms/counting_sort.rs +87 -0
  18. seqpacker-0.1.1/crates/seqpacker/src/algorithms/first_fit.rs +219 -0
  19. seqpacker-0.1.1/crates/seqpacker/src/algorithms/first_fit_decreasing.rs +284 -0
  20. seqpacker-0.1.1/crates/seqpacker/src/algorithms/first_fit_shuffle.rs +294 -0
  21. seqpacker-0.1.1/crates/seqpacker/src/algorithms/harmonic.rs +384 -0
  22. seqpacker-0.1.1/crates/seqpacker/src/algorithms/mod.rs +26 -0
  23. seqpacker-0.1.1/crates/seqpacker/src/algorithms/modified_first_fit_decreasing.rs +466 -0
  24. seqpacker-0.1.1/crates/seqpacker/src/algorithms/next_fit.rs +255 -0
  25. seqpacker-0.1.1/crates/seqpacker/src/algorithms/optimized_best_fit_decreasing.rs +343 -0
  26. seqpacker-0.1.1/crates/seqpacker/src/algorithms/optimized_best_fit_decreasing_parallel.rs +257 -0
  27. seqpacker-0.1.1/crates/seqpacker/src/algorithms/worst_fit.rs +262 -0
  28. seqpacker-0.1.1/crates/seqpacker/src/dev.rs +49 -0
  29. seqpacker-0.1.1/crates/seqpacker/src/engine.rs +342 -0
  30. seqpacker-0.1.1/crates/seqpacker/src/error.rs +198 -0
  31. seqpacker-0.1.1/crates/seqpacker/src/lib.rs +63 -0
  32. seqpacker-0.1.1/crates/seqpacker/src/metrics.rs +307 -0
  33. seqpacker-0.1.1/crates/seqpacker/src/pack.rs +534 -0
  34. seqpacker-0.1.1/crates/seqpacker/src/packer.rs +405 -0
  35. seqpacker-0.1.1/crates/seqpacker/src/placement/btree.rs +227 -0
  36. seqpacker-0.1.1/crates/seqpacker/src/placement/capacity_segment_tree.rs +270 -0
  37. seqpacker-0.1.1/crates/seqpacker/src/placement/linear.rs +255 -0
  38. seqpacker-0.1.1/crates/seqpacker/src/placement/mod.rs +52 -0
  39. seqpacker-0.1.1/crates/seqpacker/src/placement/segment_tree.rs +489 -0
  40. seqpacker-0.1.1/crates/seqpacker/src/sequence.rs +175 -0
  41. seqpacker-0.1.1/crates/seqpacker/src/strategy.rs +238 -0
  42. seqpacker-0.1.1/crates/seqpacker/src/stream.rs +523 -0
  43. seqpacker-0.1.1/crates/seqpacker/src/validation.rs +148 -0
  44. seqpacker-0.1.1/crates/seqpacker/tests/golden.rs +265 -0
  45. seqpacker-0.1.1/crates/seqpacker/tests/proptest_packing.rs +187 -0
  46. seqpacker-0.1.1/pyproject.toml +165 -0
  47. seqpacker-0.1.1/python/seqpacker/__init__.py +29 -0
  48. seqpacker-0.1.1/python/seqpacker/__init__.pyi +313 -0
  49. seqpacker-0.1.1/python/seqpacker/py.typed +0 -0
  50. seqpacker-0.1.1/python/seqpacker/torch_utils.py +319 -0
@@ -0,0 +1,931 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "anyhow"
7
+ version = "1.0.102"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
10
+
11
+ [[package]]
12
+ name = "autocfg"
13
+ version = "1.5.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
16
+
17
+ [[package]]
18
+ name = "bit-set"
19
+ version = "0.8.0"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
22
+ dependencies = [
23
+ "bit-vec",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "bit-vec"
28
+ version = "0.8.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
31
+
32
+ [[package]]
33
+ name = "bitflags"
34
+ version = "2.11.0"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
37
+
38
+ [[package]]
39
+ name = "cfg-if"
40
+ version = "1.0.4"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
43
+
44
+ [[package]]
45
+ name = "crossbeam-deque"
46
+ version = "0.8.6"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
49
+ dependencies = [
50
+ "crossbeam-epoch",
51
+ "crossbeam-utils",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "crossbeam-epoch"
56
+ version = "0.9.18"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
59
+ dependencies = [
60
+ "crossbeam-utils",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "crossbeam-utils"
65
+ version = "0.8.21"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
68
+
69
+ [[package]]
70
+ name = "either"
71
+ version = "1.15.0"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
74
+
75
+ [[package]]
76
+ name = "equivalent"
77
+ version = "1.0.2"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
80
+
81
+ [[package]]
82
+ name = "errno"
83
+ version = "0.3.14"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
86
+ dependencies = [
87
+ "libc",
88
+ "windows-sys",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "fastrand"
93
+ version = "2.3.0"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
96
+
97
+ [[package]]
98
+ name = "fnv"
99
+ version = "1.0.7"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
102
+
103
+ [[package]]
104
+ name = "foldhash"
105
+ version = "0.1.5"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
108
+
109
+ [[package]]
110
+ name = "getrandom"
111
+ version = "0.2.17"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
114
+ dependencies = [
115
+ "cfg-if",
116
+ "libc",
117
+ "wasi",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "getrandom"
122
+ version = "0.3.4"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
125
+ dependencies = [
126
+ "cfg-if",
127
+ "libc",
128
+ "r-efi",
129
+ "wasip2",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "getrandom"
134
+ version = "0.4.1"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
137
+ dependencies = [
138
+ "cfg-if",
139
+ "libc",
140
+ "r-efi",
141
+ "wasip2",
142
+ "wasip3",
143
+ ]
144
+
145
+ [[package]]
146
+ name = "hashbrown"
147
+ version = "0.15.5"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
150
+ dependencies = [
151
+ "foldhash",
152
+ ]
153
+
154
+ [[package]]
155
+ name = "hashbrown"
156
+ version = "0.16.1"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
159
+
160
+ [[package]]
161
+ name = "heck"
162
+ version = "0.5.0"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
165
+
166
+ [[package]]
167
+ name = "id-arena"
168
+ version = "2.3.0"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
171
+
172
+ [[package]]
173
+ name = "indexmap"
174
+ version = "2.13.0"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
177
+ dependencies = [
178
+ "equivalent",
179
+ "hashbrown 0.16.1",
180
+ "serde",
181
+ "serde_core",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "itoa"
186
+ version = "1.0.17"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
189
+
190
+ [[package]]
191
+ name = "leb128fmt"
192
+ version = "0.1.0"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
195
+
196
+ [[package]]
197
+ name = "libc"
198
+ version = "0.2.182"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
201
+
202
+ [[package]]
203
+ name = "libm"
204
+ version = "0.2.16"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
207
+
208
+ [[package]]
209
+ name = "linux-raw-sys"
210
+ version = "0.12.1"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
213
+
214
+ [[package]]
215
+ name = "log"
216
+ version = "0.4.29"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
219
+
220
+ [[package]]
221
+ name = "matrixmultiply"
222
+ version = "0.3.10"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
225
+ dependencies = [
226
+ "autocfg",
227
+ "rawpointer",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "memchr"
232
+ version = "2.8.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
235
+
236
+ [[package]]
237
+ name = "ndarray"
238
+ version = "0.16.1"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
241
+ dependencies = [
242
+ "matrixmultiply",
243
+ "num-complex",
244
+ "num-integer",
245
+ "num-traits",
246
+ "portable-atomic",
247
+ "portable-atomic-util",
248
+ "rawpointer",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "num-complex"
253
+ version = "0.4.6"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
256
+ dependencies = [
257
+ "num-traits",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "num-integer"
262
+ version = "0.1.46"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
265
+ dependencies = [
266
+ "num-traits",
267
+ ]
268
+
269
+ [[package]]
270
+ name = "num-traits"
271
+ version = "0.2.19"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
274
+ dependencies = [
275
+ "autocfg",
276
+ "libm",
277
+ ]
278
+
279
+ [[package]]
280
+ name = "numpy"
281
+ version = "0.28.0"
282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
283
+ checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
284
+ dependencies = [
285
+ "libc",
286
+ "ndarray",
287
+ "num-complex",
288
+ "num-integer",
289
+ "num-traits",
290
+ "pyo3",
291
+ "pyo3-build-config",
292
+ "rustc-hash",
293
+ ]
294
+
295
+ [[package]]
296
+ name = "once_cell"
297
+ version = "1.21.3"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
300
+
301
+ [[package]]
302
+ name = "portable-atomic"
303
+ version = "1.13.1"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
306
+
307
+ [[package]]
308
+ name = "portable-atomic-util"
309
+ version = "0.2.5"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
312
+ dependencies = [
313
+ "portable-atomic",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "ppv-lite86"
318
+ version = "0.2.21"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
321
+ dependencies = [
322
+ "zerocopy",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "prettyplease"
327
+ version = "0.2.37"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
330
+ dependencies = [
331
+ "proc-macro2",
332
+ "syn",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "proc-macro2"
337
+ version = "1.0.106"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
340
+ dependencies = [
341
+ "unicode-ident",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "proptest"
346
+ version = "1.10.0"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
349
+ dependencies = [
350
+ "bit-set",
351
+ "bit-vec",
352
+ "bitflags",
353
+ "num-traits",
354
+ "rand 0.9.2",
355
+ "rand_chacha 0.9.0",
356
+ "rand_xorshift",
357
+ "regex-syntax",
358
+ "rusty-fork",
359
+ "tempfile",
360
+ "unarray",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "pyo3"
365
+ version = "0.28.2"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
368
+ dependencies = [
369
+ "libc",
370
+ "once_cell",
371
+ "portable-atomic",
372
+ "pyo3-build-config",
373
+ "pyo3-ffi",
374
+ "pyo3-macros",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "pyo3-build-config"
379
+ version = "0.28.2"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
382
+ dependencies = [
383
+ "target-lexicon",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "pyo3-ffi"
388
+ version = "0.28.2"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
391
+ dependencies = [
392
+ "libc",
393
+ "pyo3-build-config",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "pyo3-macros"
398
+ version = "0.28.2"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
401
+ dependencies = [
402
+ "proc-macro2",
403
+ "pyo3-macros-backend",
404
+ "quote",
405
+ "syn",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "pyo3-macros-backend"
410
+ version = "0.28.2"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
413
+ dependencies = [
414
+ "heck",
415
+ "proc-macro2",
416
+ "pyo3-build-config",
417
+ "quote",
418
+ "syn",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "quick-error"
423
+ version = "1.2.3"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
426
+
427
+ [[package]]
428
+ name = "quote"
429
+ version = "1.0.44"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
432
+ dependencies = [
433
+ "proc-macro2",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "r-efi"
438
+ version = "5.3.0"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
441
+
442
+ [[package]]
443
+ name = "rand"
444
+ version = "0.8.5"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
447
+ dependencies = [
448
+ "libc",
449
+ "rand_chacha 0.3.1",
450
+ "rand_core 0.6.4",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "rand"
455
+ version = "0.9.2"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
458
+ dependencies = [
459
+ "rand_chacha 0.9.0",
460
+ "rand_core 0.9.5",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "rand_chacha"
465
+ version = "0.3.1"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
468
+ dependencies = [
469
+ "ppv-lite86",
470
+ "rand_core 0.6.4",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "rand_chacha"
475
+ version = "0.9.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
478
+ dependencies = [
479
+ "ppv-lite86",
480
+ "rand_core 0.9.5",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "rand_core"
485
+ version = "0.6.4"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
488
+ dependencies = [
489
+ "getrandom 0.2.17",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "rand_core"
494
+ version = "0.9.5"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
497
+ dependencies = [
498
+ "getrandom 0.3.4",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "rand_distr"
503
+ version = "0.4.3"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
506
+ dependencies = [
507
+ "num-traits",
508
+ "rand 0.8.5",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "rand_xorshift"
513
+ version = "0.4.0"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
516
+ dependencies = [
517
+ "rand_core 0.9.5",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "rawpointer"
522
+ version = "0.2.1"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
525
+
526
+ [[package]]
527
+ name = "rayon"
528
+ version = "1.11.0"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
531
+ dependencies = [
532
+ "either",
533
+ "rayon-core",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "rayon-core"
538
+ version = "1.13.0"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
541
+ dependencies = [
542
+ "crossbeam-deque",
543
+ "crossbeam-utils",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "regex-syntax"
548
+ version = "0.8.10"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
551
+
552
+ [[package]]
553
+ name = "rustc-hash"
554
+ version = "2.1.1"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
557
+
558
+ [[package]]
559
+ name = "rustix"
560
+ version = "1.1.4"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
563
+ dependencies = [
564
+ "bitflags",
565
+ "errno",
566
+ "libc",
567
+ "linux-raw-sys",
568
+ "windows-sys",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "rusty-fork"
573
+ version = "0.3.1"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
576
+ dependencies = [
577
+ "fnv",
578
+ "quick-error",
579
+ "tempfile",
580
+ "wait-timeout",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "semver"
585
+ version = "1.0.27"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
588
+
589
+ [[package]]
590
+ name = "seqpacker"
591
+ version = "0.1.1"
592
+ dependencies = [
593
+ "proptest",
594
+ "rand 0.8.5",
595
+ "rayon",
596
+ "serde",
597
+ "serde_json",
598
+ "smallvec",
599
+ "thiserror",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "seqpacker-bench"
604
+ version = "0.1.1"
605
+ dependencies = [
606
+ "rand 0.8.5",
607
+ "rand_distr",
608
+ "seqpacker",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "seqpacker-python"
613
+ version = "0.1.1"
614
+ dependencies = [
615
+ "numpy",
616
+ "pyo3",
617
+ "seqpacker",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "serde"
622
+ version = "1.0.228"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
625
+ dependencies = [
626
+ "serde_core",
627
+ "serde_derive",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "serde_core"
632
+ version = "1.0.228"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
635
+ dependencies = [
636
+ "serde_derive",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "serde_derive"
641
+ version = "1.0.228"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
644
+ dependencies = [
645
+ "proc-macro2",
646
+ "quote",
647
+ "syn",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "serde_json"
652
+ version = "1.0.149"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
655
+ dependencies = [
656
+ "itoa",
657
+ "memchr",
658
+ "serde",
659
+ "serde_core",
660
+ "zmij",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "smallvec"
665
+ version = "1.15.1"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
668
+
669
+ [[package]]
670
+ name = "syn"
671
+ version = "2.0.117"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
674
+ dependencies = [
675
+ "proc-macro2",
676
+ "quote",
677
+ "unicode-ident",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "target-lexicon"
682
+ version = "0.13.5"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
685
+
686
+ [[package]]
687
+ name = "tempfile"
688
+ version = "3.26.0"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
691
+ dependencies = [
692
+ "fastrand",
693
+ "getrandom 0.4.1",
694
+ "once_cell",
695
+ "rustix",
696
+ "windows-sys",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "thiserror"
701
+ version = "2.0.18"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
704
+ dependencies = [
705
+ "thiserror-impl",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "thiserror-impl"
710
+ version = "2.0.18"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
713
+ dependencies = [
714
+ "proc-macro2",
715
+ "quote",
716
+ "syn",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "unarray"
721
+ version = "0.1.4"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
724
+
725
+ [[package]]
726
+ name = "unicode-ident"
727
+ version = "1.0.24"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
730
+
731
+ [[package]]
732
+ name = "unicode-xid"
733
+ version = "0.2.6"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
736
+
737
+ [[package]]
738
+ name = "wait-timeout"
739
+ version = "0.2.1"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
742
+ dependencies = [
743
+ "libc",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "wasi"
748
+ version = "0.11.1+wasi-snapshot-preview1"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
751
+
752
+ [[package]]
753
+ name = "wasip2"
754
+ version = "1.0.2+wasi-0.2.9"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
757
+ dependencies = [
758
+ "wit-bindgen",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "wasip3"
763
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
766
+ dependencies = [
767
+ "wit-bindgen",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "wasm-encoder"
772
+ version = "0.244.0"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
775
+ dependencies = [
776
+ "leb128fmt",
777
+ "wasmparser",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "wasm-metadata"
782
+ version = "0.244.0"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
785
+ dependencies = [
786
+ "anyhow",
787
+ "indexmap",
788
+ "wasm-encoder",
789
+ "wasmparser",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "wasmparser"
794
+ version = "0.244.0"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
797
+ dependencies = [
798
+ "bitflags",
799
+ "hashbrown 0.15.5",
800
+ "indexmap",
801
+ "semver",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "windows-link"
806
+ version = "0.2.1"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
809
+
810
+ [[package]]
811
+ name = "windows-sys"
812
+ version = "0.61.2"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
815
+ dependencies = [
816
+ "windows-link",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "wit-bindgen"
821
+ version = "0.51.0"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
824
+ dependencies = [
825
+ "wit-bindgen-rust-macro",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "wit-bindgen-core"
830
+ version = "0.51.0"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
833
+ dependencies = [
834
+ "anyhow",
835
+ "heck",
836
+ "wit-parser",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "wit-bindgen-rust"
841
+ version = "0.51.0"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
844
+ dependencies = [
845
+ "anyhow",
846
+ "heck",
847
+ "indexmap",
848
+ "prettyplease",
849
+ "syn",
850
+ "wasm-metadata",
851
+ "wit-bindgen-core",
852
+ "wit-component",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "wit-bindgen-rust-macro"
857
+ version = "0.51.0"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
860
+ dependencies = [
861
+ "anyhow",
862
+ "prettyplease",
863
+ "proc-macro2",
864
+ "quote",
865
+ "syn",
866
+ "wit-bindgen-core",
867
+ "wit-bindgen-rust",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "wit-component"
872
+ version = "0.244.0"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
875
+ dependencies = [
876
+ "anyhow",
877
+ "bitflags",
878
+ "indexmap",
879
+ "log",
880
+ "serde",
881
+ "serde_derive",
882
+ "serde_json",
883
+ "wasm-encoder",
884
+ "wasm-metadata",
885
+ "wasmparser",
886
+ "wit-parser",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "wit-parser"
891
+ version = "0.244.0"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
894
+ dependencies = [
895
+ "anyhow",
896
+ "id-arena",
897
+ "indexmap",
898
+ "log",
899
+ "semver",
900
+ "serde",
901
+ "serde_derive",
902
+ "serde_json",
903
+ "unicode-xid",
904
+ "wasmparser",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "zerocopy"
909
+ version = "0.8.40"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
912
+ dependencies = [
913
+ "zerocopy-derive",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "zerocopy-derive"
918
+ version = "0.8.40"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
921
+ dependencies = [
922
+ "proc-macro2",
923
+ "quote",
924
+ "syn",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "zmij"
929
+ version = "1.0.21"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"