obu 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. obu-1.0.0/Cargo.lock +874 -0
  2. obu-1.0.0/Cargo.toml +14 -0
  3. obu-1.0.0/LICENSE-APACHE +202 -0
  4. obu-1.0.0/LICENSE-MIT +21 -0
  5. obu-1.0.0/PKG-INFO +152 -0
  6. obu-1.0.0/README.md +118 -0
  7. obu-1.0.0/obu/Cargo.toml +93 -0
  8. obu-1.0.0/obu/LICENSE-APACHE +202 -0
  9. obu-1.0.0/obu/LICENSE-MIT +21 -0
  10. obu-1.0.0/obu/README.md +75 -0
  11. obu-1.0.0/obu/SECURITY.md +72 -0
  12. obu-1.0.0/obu/benches/benchmarks_zdcbc_b32.jsonl +27 -0
  13. obu-1.0.0/obu/benches/benchmarks_zdcbc_b64.jsonl +26 -0
  14. obu-1.0.0/obu/benches/benchmarks_zdcbc_c32.jsonl +27 -0
  15. obu-1.0.0/obu/benches/benchmarks_zdcbc_hex.jsonl +26 -0
  16. obu-1.0.0/obu/benches/zdcbc_b32.rs +98 -0
  17. obu-1.0.0/obu/benches/zdcbc_b64.rs +98 -0
  18. obu-1.0.0/obu/benches/zdcbc_c32.rs +98 -0
  19. obu-1.0.0/obu/benches/zdcbc_hex.rs +98 -0
  20. obu-1.0.0/obu/src/base32.rs +24 -0
  21. obu-1.0.0/obu/src/bin/secretgen.rs +5 -0
  22. obu-1.0.0/obu/src/codec.rs +26 -0
  23. obu-1.0.0/obu/src/constants.rs +43 -0
  24. obu-1.0.0/obu/src/dec.rs +27 -0
  25. obu-1.0.0/obu/src/encoding.rs +64 -0
  26. obu-1.0.0/obu/src/error.rs +67 -0
  27. obu-1.0.0/obu/src/format.rs +140 -0
  28. obu-1.0.0/obu/src/keygen.rs +38 -0
  29. obu-1.0.0/obu/src/legacy.rs +161 -0
  30. obu-1.0.0/obu/src/lib.rs +152 -0
  31. obu-1.0.0/obu/src/obu.rs +257 -0
  32. obu-1.0.0/obu/src/omnibu.rs +172 -0
  33. obu-1.0.0/obu/src/scheme.rs +91 -0
  34. obu-1.0.0/obu/src/upcbc.rs +94 -0
  35. obu-1.0.0/obu/src/zcodec.rs +154 -0
  36. obu-1.0.0/obu/src/zdcbc.rs +104 -0
  37. obu-1.0.0/obu/src/zdec.rs +48 -0
  38. obu-1.0.0/obu/src/zenc.rs +51 -0
  39. obu-1.0.0/obu/src/zmock1.rs +46 -0
  40. obu-1.0.0/obu/src/zsecret.rs +62 -0
  41. obu-1.0.0/obu/tests/basic_tests.rs +40 -0
  42. obu-1.0.0/obu/tests/legacy_test_vectors.rs +81 -0
  43. obu-1.0.0/obu/tests/legacy_tests.rs +55 -0
  44. obu-1.0.0/obu/tests/obu_vectors.rs +148 -0
  45. obu-1.0.0/obu-py/.gitignore +9 -0
  46. obu-1.0.0/obu-py/CHANGELOG.md +59 -0
  47. obu-1.0.0/obu-py/Cargo.toml +54 -0
  48. obu-1.0.0/obu-py/LICENSE-APACHE +202 -0
  49. obu-1.0.0/obu-py/LICENSE-MIT +21 -0
  50. obu-1.0.0/obu-py/README.md +118 -0
  51. obu-1.0.0/obu-py/src/lib.rs +636 -0
  52. obu-1.0.0/obu-py/tests/test_vectors.py +138 -0
  53. obu-1.0.0/pyproject.toml +45 -0
  54. obu-1.0.0/python/obu/__init__.py +239 -0
  55. obu-1.0.0/python/obu/_obu.pyi +240 -0
  56. obu-1.0.0/python/obu/formats.py +41 -0
  57. obu-1.0.0/python/obu/py.typed +0 -0
  58. obu-1.0.0/python/obu/secretgen.py +4 -0
  59. obu-1.0.0/python/obu/test_inheritance.py +66 -0
obu-1.0.0/Cargo.lock ADDED
@@ -0,0 +1,874 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aes"
7
+ version = "0.8.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "cipher",
13
+ "cpufeatures",
14
+ ]
15
+
16
+ [[package]]
17
+ name = "aho-corasick"
18
+ version = "1.1.4"
19
+ source = "registry+https://github.com/rust-lang/crates.io-index"
20
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
21
+ dependencies = [
22
+ "memchr",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "anes"
27
+ version = "0.1.6"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
30
+
31
+ [[package]]
32
+ name = "anstyle"
33
+ version = "1.0.14"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
36
+
37
+ [[package]]
38
+ name = "autocfg"
39
+ version = "1.5.1"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
42
+
43
+ [[package]]
44
+ name = "block-padding"
45
+ version = "0.3.3"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
48
+ dependencies = [
49
+ "generic-array",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "bumpalo"
54
+ version = "3.20.3"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
57
+
58
+ [[package]]
59
+ name = "cast"
60
+ version = "0.3.0"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
63
+
64
+ [[package]]
65
+ name = "cbc"
66
+ version = "0.1.2"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
69
+ dependencies = [
70
+ "cipher",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "cfg-if"
75
+ version = "1.0.4"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
78
+
79
+ [[package]]
80
+ name = "ciborium"
81
+ version = "0.2.2"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
84
+ dependencies = [
85
+ "ciborium-io",
86
+ "ciborium-ll",
87
+ "serde",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "ciborium-io"
92
+ version = "0.2.2"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
95
+
96
+ [[package]]
97
+ name = "ciborium-ll"
98
+ version = "0.2.2"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
101
+ dependencies = [
102
+ "ciborium-io",
103
+ "half",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "cipher"
108
+ version = "0.4.4"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
111
+ dependencies = [
112
+ "crypto-common",
113
+ "inout",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "clap"
118
+ version = "4.6.1"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
121
+ dependencies = [
122
+ "clap_builder",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "clap_builder"
127
+ version = "4.6.0"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
130
+ dependencies = [
131
+ "anstyle",
132
+ "clap_lex",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "clap_lex"
137
+ version = "1.1.0"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
140
+
141
+ [[package]]
142
+ name = "cpufeatures"
143
+ version = "0.2.17"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
146
+ dependencies = [
147
+ "libc",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "criterion"
152
+ version = "0.5.1"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
155
+ dependencies = [
156
+ "anes",
157
+ "cast",
158
+ "ciborium",
159
+ "clap",
160
+ "criterion-plot",
161
+ "is-terminal",
162
+ "itertools",
163
+ "num-traits",
164
+ "once_cell",
165
+ "oorandom",
166
+ "plotters",
167
+ "rayon",
168
+ "regex",
169
+ "serde",
170
+ "serde_derive",
171
+ "serde_json",
172
+ "tinytemplate",
173
+ "walkdir",
174
+ ]
175
+
176
+ [[package]]
177
+ name = "criterion-plot"
178
+ version = "0.5.0"
179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
180
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
181
+ dependencies = [
182
+ "cast",
183
+ "itertools",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "crossbeam-deque"
188
+ version = "0.8.6"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
191
+ dependencies = [
192
+ "crossbeam-epoch",
193
+ "crossbeam-utils",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "crossbeam-epoch"
198
+ version = "0.9.18"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
201
+ dependencies = [
202
+ "crossbeam-utils",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "crossbeam-utils"
207
+ version = "0.8.21"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
210
+
211
+ [[package]]
212
+ name = "crunchy"
213
+ version = "0.2.4"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
216
+
217
+ [[package]]
218
+ name = "crypto-common"
219
+ version = "0.1.7"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
222
+ dependencies = [
223
+ "generic-array",
224
+ "typenum",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "data-encoding"
229
+ version = "2.11.0"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
232
+
233
+ [[package]]
234
+ name = "either"
235
+ version = "1.16.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
238
+
239
+ [[package]]
240
+ name = "futures-core"
241
+ version = "0.3.32"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
244
+
245
+ [[package]]
246
+ name = "futures-task"
247
+ version = "0.3.32"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
250
+
251
+ [[package]]
252
+ name = "futures-util"
253
+ version = "0.3.32"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
256
+ dependencies = [
257
+ "futures-core",
258
+ "futures-task",
259
+ "pin-project-lite",
260
+ "slab",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "generic-array"
265
+ version = "0.14.7"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
268
+ dependencies = [
269
+ "typenum",
270
+ "version_check",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "getrandom"
275
+ version = "0.2.17"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
278
+ dependencies = [
279
+ "cfg-if",
280
+ "js-sys",
281
+ "libc",
282
+ "wasi",
283
+ "wasm-bindgen",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "half"
288
+ version = "2.7.1"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
291
+ dependencies = [
292
+ "cfg-if",
293
+ "crunchy",
294
+ "zerocopy",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "heck"
299
+ version = "0.5.0"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
302
+
303
+ [[package]]
304
+ name = "hermit-abi"
305
+ version = "0.5.2"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
308
+
309
+ [[package]]
310
+ name = "hex"
311
+ version = "0.4.3"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
314
+
315
+ [[package]]
316
+ name = "inout"
317
+ version = "0.1.4"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
320
+ dependencies = [
321
+ "block-padding",
322
+ "generic-array",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "is-terminal"
327
+ version = "0.4.17"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
330
+ dependencies = [
331
+ "hermit-abi",
332
+ "libc",
333
+ "windows-sys",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "itertools"
338
+ version = "0.10.5"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
341
+ dependencies = [
342
+ "either",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "itoa"
347
+ version = "1.0.18"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
350
+
351
+ [[package]]
352
+ name = "js-sys"
353
+ version = "0.3.103"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
356
+ dependencies = [
357
+ "cfg-if",
358
+ "futures-util",
359
+ "wasm-bindgen",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "libc"
364
+ version = "0.2.186"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
367
+
368
+ [[package]]
369
+ name = "memchr"
370
+ version = "2.8.2"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
373
+
374
+ [[package]]
375
+ name = "num-traits"
376
+ version = "0.2.19"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
379
+ dependencies = [
380
+ "autocfg",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "obu"
385
+ version = "1.0.0"
386
+ dependencies = [
387
+ "aes",
388
+ "cbc",
389
+ "cipher",
390
+ "criterion",
391
+ "data-encoding",
392
+ "getrandom",
393
+ "hex",
394
+ "obu",
395
+ "once_cell",
396
+ "rand",
397
+ "serde",
398
+ "serde_json",
399
+ "thiserror",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "obu-py"
404
+ version = "1.0.0"
405
+ dependencies = [
406
+ "obu",
407
+ "pyo3",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "once_cell"
412
+ version = "1.21.4"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
415
+
416
+ [[package]]
417
+ name = "oorandom"
418
+ version = "11.1.5"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
421
+
422
+ [[package]]
423
+ name = "pin-project-lite"
424
+ version = "0.2.17"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
427
+
428
+ [[package]]
429
+ name = "plotters"
430
+ version = "0.3.7"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
433
+ dependencies = [
434
+ "num-traits",
435
+ "plotters-backend",
436
+ "plotters-svg",
437
+ "wasm-bindgen",
438
+ "web-sys",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "plotters-backend"
443
+ version = "0.3.7"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
446
+
447
+ [[package]]
448
+ name = "plotters-svg"
449
+ version = "0.3.7"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
452
+ dependencies = [
453
+ "plotters-backend",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "portable-atomic"
458
+ version = "1.13.1"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
461
+
462
+ [[package]]
463
+ name = "ppv-lite86"
464
+ version = "0.2.21"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
467
+ dependencies = [
468
+ "zerocopy",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "proc-macro2"
473
+ version = "1.0.106"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
476
+ dependencies = [
477
+ "unicode-ident",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "pyo3"
482
+ version = "0.28.3"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
485
+ dependencies = [
486
+ "libc",
487
+ "once_cell",
488
+ "portable-atomic",
489
+ "pyo3-build-config",
490
+ "pyo3-ffi",
491
+ "pyo3-macros",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "pyo3-build-config"
496
+ version = "0.28.3"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
499
+ dependencies = [
500
+ "target-lexicon",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "pyo3-ffi"
505
+ version = "0.28.3"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
508
+ dependencies = [
509
+ "libc",
510
+ "pyo3-build-config",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "pyo3-macros"
515
+ version = "0.28.3"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
518
+ dependencies = [
519
+ "proc-macro2",
520
+ "pyo3-macros-backend",
521
+ "quote",
522
+ "syn",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "pyo3-macros-backend"
527
+ version = "0.28.3"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
530
+ dependencies = [
531
+ "heck",
532
+ "proc-macro2",
533
+ "pyo3-build-config",
534
+ "quote",
535
+ "syn",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "quote"
540
+ version = "1.0.46"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
543
+ dependencies = [
544
+ "proc-macro2",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "rand"
549
+ version = "0.8.6"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
552
+ dependencies = [
553
+ "libc",
554
+ "rand_chacha",
555
+ "rand_core",
556
+ ]
557
+
558
+ [[package]]
559
+ name = "rand_chacha"
560
+ version = "0.3.1"
561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
562
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
563
+ dependencies = [
564
+ "ppv-lite86",
565
+ "rand_core",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "rand_core"
570
+ version = "0.6.4"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
573
+ dependencies = [
574
+ "getrandom",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "rayon"
579
+ version = "1.12.0"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
582
+ dependencies = [
583
+ "either",
584
+ "rayon-core",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "rayon-core"
589
+ version = "1.13.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
592
+ dependencies = [
593
+ "crossbeam-deque",
594
+ "crossbeam-utils",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "regex"
599
+ version = "1.12.4"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
602
+ dependencies = [
603
+ "aho-corasick",
604
+ "memchr",
605
+ "regex-automata",
606
+ "regex-syntax",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "regex-automata"
611
+ version = "0.4.14"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
614
+ dependencies = [
615
+ "aho-corasick",
616
+ "memchr",
617
+ "regex-syntax",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "regex-syntax"
622
+ version = "0.8.11"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
625
+
626
+ [[package]]
627
+ name = "rustversion"
628
+ version = "1.0.22"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
631
+
632
+ [[package]]
633
+ name = "same-file"
634
+ version = "1.0.6"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
637
+ dependencies = [
638
+ "winapi-util",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "serde"
643
+ version = "1.0.228"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
646
+ dependencies = [
647
+ "serde_core",
648
+ "serde_derive",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "serde_core"
653
+ version = "1.0.228"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
656
+ dependencies = [
657
+ "serde_derive",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "serde_derive"
662
+ version = "1.0.228"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
665
+ dependencies = [
666
+ "proc-macro2",
667
+ "quote",
668
+ "syn",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "serde_json"
673
+ version = "1.0.150"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
676
+ dependencies = [
677
+ "itoa",
678
+ "memchr",
679
+ "serde",
680
+ "serde_core",
681
+ "zmij",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "slab"
686
+ version = "0.4.12"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
689
+
690
+ [[package]]
691
+ name = "syn"
692
+ version = "2.0.118"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
695
+ dependencies = [
696
+ "proc-macro2",
697
+ "quote",
698
+ "unicode-ident",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "target-lexicon"
703
+ version = "0.13.5"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
706
+
707
+ [[package]]
708
+ name = "thiserror"
709
+ version = "1.0.69"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
712
+ dependencies = [
713
+ "thiserror-impl",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "thiserror-impl"
718
+ version = "1.0.69"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
721
+ dependencies = [
722
+ "proc-macro2",
723
+ "quote",
724
+ "syn",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "tinytemplate"
729
+ version = "1.2.1"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
732
+ dependencies = [
733
+ "serde",
734
+ "serde_json",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "typenum"
739
+ version = "1.20.1"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
742
+
743
+ [[package]]
744
+ name = "unicode-ident"
745
+ version = "1.0.24"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
748
+
749
+ [[package]]
750
+ name = "version_check"
751
+ version = "0.9.5"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
754
+
755
+ [[package]]
756
+ name = "walkdir"
757
+ version = "2.5.0"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
760
+ dependencies = [
761
+ "same-file",
762
+ "winapi-util",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "wasi"
767
+ version = "0.11.1+wasi-snapshot-preview1"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
770
+
771
+ [[package]]
772
+ name = "wasm-bindgen"
773
+ version = "0.2.126"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
776
+ dependencies = [
777
+ "cfg-if",
778
+ "once_cell",
779
+ "rustversion",
780
+ "wasm-bindgen-macro",
781
+ "wasm-bindgen-shared",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "wasm-bindgen-macro"
786
+ version = "0.2.126"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
789
+ dependencies = [
790
+ "quote",
791
+ "wasm-bindgen-macro-support",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "wasm-bindgen-macro-support"
796
+ version = "0.2.126"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
799
+ dependencies = [
800
+ "bumpalo",
801
+ "proc-macro2",
802
+ "quote",
803
+ "syn",
804
+ "wasm-bindgen-shared",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "wasm-bindgen-shared"
809
+ version = "0.2.126"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
812
+ dependencies = [
813
+ "unicode-ident",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "web-sys"
818
+ version = "0.3.103"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
821
+ dependencies = [
822
+ "js-sys",
823
+ "wasm-bindgen",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "winapi-util"
828
+ version = "0.1.11"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
831
+ dependencies = [
832
+ "windows-sys",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "windows-link"
837
+ version = "0.2.1"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
840
+
841
+ [[package]]
842
+ name = "windows-sys"
843
+ version = "0.61.2"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
846
+ dependencies = [
847
+ "windows-link",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "zerocopy"
852
+ version = "0.8.52"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
855
+ dependencies = [
856
+ "zerocopy-derive",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "zerocopy-derive"
861
+ version = "0.8.52"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
864
+ dependencies = [
865
+ "proc-macro2",
866
+ "quote",
867
+ "syn",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "zmij"
872
+ version = "1.0.21"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"