cridecoder 0.1.0__cp39-cp39-win_amd64.whl

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.
cridecoder/__init__.py ADDED
@@ -0,0 +1,5 @@
1
+ from .cridecoder import *
2
+
3
+ __doc__ = cridecoder.__doc__
4
+ if hasattr(cridecoder, "__all__"):
5
+ __all__ = cridecoder.__all__
Binary file
@@ -0,0 +1,107 @@
1
+ Metadata-Version: 2.4
2
+ Name: cridecoder
3
+ Version: 0.1.0
4
+ Classifier: Development Status :: 4 - Beta
5
+ Classifier: Intended Audience :: Developers
6
+ Classifier: License :: OSI Approved :: MIT License
7
+ Classifier: Programming Language :: Rust
8
+ Classifier: Programming Language :: Python :: Implementation :: CPython
9
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
10
+ Classifier: Topic :: Multimedia :: Sound/Audio
11
+ Classifier: Topic :: Multimedia :: Video
12
+ License-File: LICENSE
13
+ Summary: CRI codec library for ACB/AWB, HCA audio, and USM video extraction
14
+ Home-Page: https://github.com/Team-Haruki/cridecoder
15
+ License: MIT
16
+ Requires-Python: >=3.9
17
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
18
+
19
+ # cridecoder
20
+
21
+ A pure Rust library for CRI Middleware codec decoding. Supports ACB/AWB audio containers, HCA (High Compression Audio) decoding, and USM video container extraction.
22
+
23
+ ## Credits
24
+
25
+ This project's CRI format implementation is based on and inspired by [vgmstream](https://github.com/vgmstream/vgmstream), a library for playing streamed audio from video games. Many thanks to the vgmstream contributors for their reverse-engineering work on CRI Middleware formats.
26
+
27
+ ## Features
28
+
29
+ - **ACB/AWB Extraction** — Parse CRI ACB audio containers and extract embedded/external audio tracks
30
+ - **HCA Decoding** — Decode HCA audio to PCM samples (f32 or i16) or WAV files
31
+ - **USM Extraction** — Extract MPEG2 video and ADX audio streams from USM video containers
32
+ - **USM Metadata** — Read and export USM metadata as structured JSON
33
+ - **Key Testing** — Test decryption keys for encrypted HCA files
34
+ - **Pure Rust** — No C dependencies, works on any platform Rust supports
35
+
36
+ ## Usage
37
+
38
+ Add to your `Cargo.toml`:
39
+
40
+ ```toml
41
+ [dependencies]
42
+ cridecoder = "0.1"
43
+ ```
44
+
45
+ ### ACB Extraction
46
+
47
+ ```rust
48
+ use std::path::Path;
49
+ use cridecoder::extract_acb_from_file;
50
+
51
+ let tracks = extract_acb_from_file(
52
+ Path::new("audio.acb"),
53
+ Path::new("output/"),
54
+ ).unwrap();
55
+
56
+ if let Some(tracks) = tracks {
57
+ for track in &tracks {
58
+ println!("Extracted: {}", track);
59
+ }
60
+ }
61
+ ```
62
+
63
+ ### HCA to WAV
64
+
65
+ ```rust
66
+ use std::fs::File;
67
+ use cridecoder::HcaDecoder;
68
+
69
+ let mut decoder = HcaDecoder::from_file("audio.hca").unwrap();
70
+ let info = decoder.info();
71
+ println!("Sample rate: {}, Channels: {}", info.sampling_rate, info.channel_count);
72
+
73
+ let mut output = File::create("output.wav").unwrap();
74
+ decoder.decode_to_wav(&mut output).unwrap();
75
+ ```
76
+
77
+ ### USM Extraction
78
+
79
+ ```rust
80
+ use std::path::Path;
81
+ use cridecoder::extract_usm_file;
82
+
83
+ let files = extract_usm_file(
84
+ Path::new("video.usm"),
85
+ Path::new("output/"),
86
+ None, // optional video decryption key
87
+ false, // export audio
88
+ ).unwrap();
89
+
90
+ for file in &files {
91
+ println!("Extracted: {:?}", file);
92
+ }
93
+ ```
94
+
95
+ ## Supported Formats
96
+
97
+ | Format | Description | Operation |
98
+ |--------|-------------|-----------|
99
+ | ACB | CRI Audio Container | Extract embedded HCA/ADX tracks |
100
+ | AWB | CRI Audio Waveform Bank | External track storage for ACB |
101
+ | HCA | High Compression Audio | Decode to WAV/PCM |
102
+ | USM | CRI Video Container | Extract M2V video + ADX audio |
103
+
104
+ ## License
105
+
106
+ MIT
107
+
@@ -0,0 +1,7 @@
1
+ cridecoder/__init__.py,sha256=4dI3g2qEUhIJg3pikAnIlUL_Up2PIjaes8RaQaywQCU,123
2
+ cridecoder/cridecoder.cp39-win_amd64.pyd,sha256=qmVTVKKpjEmRmrc-tOGbZfu7pPCtRk_Ochiy0E13H0M,639488
3
+ cridecoder-0.1.0.dist-info/METADATA,sha256=Al_THKo31nty_4bT2Xa_E_06A4X0By_jk_y_BXzpmBU,3204
4
+ cridecoder-0.1.0.dist-info/WHEEL,sha256=7s8WewX11JeVsuo_pzKpwaHG2DAWBfjKNpTWiy97an8,95
5
+ cridecoder-0.1.0.dist-info/licenses/LICENSE,sha256=L1orEjn1Yt814qGqdFiFj5Hnc2Yc4bKTMQgJmMV3bgo,1093
6
+ cridecoder-0.1.0.dist-info/sboms/cridecoder.cyclonedx.json,sha256=bp2g3WF5GQeP4u_r9vL15Vx117dBfS_46RIXgpzHlEg,32074
7
+ cridecoder-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.12.6)
3
+ Root-Is-Purelib: false
4
+ Tag: cp39-cp39-win_amd64
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Haruki Dev Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,1052 @@
1
+ {
2
+ "bomFormat": "CycloneDX",
3
+ "specVersion": "1.5",
4
+ "version": 1,
5
+ "serialNumber": "urn:uuid:4ae52b07-b268-4d88-b40a-e04ab76a3026",
6
+ "metadata": {
7
+ "timestamp": "2026-03-20T18:32:50.175863200Z",
8
+ "tools": [
9
+ {
10
+ "vendor": "CycloneDX",
11
+ "name": "cargo-cyclonedx",
12
+ "version": "0.5.7"
13
+ }
14
+ ],
15
+ "authors": [
16
+ {
17
+ "name": "Team-Haruki"
18
+ }
19
+ ],
20
+ "component": {
21
+ "type": "library",
22
+ "bom-ref": "path+file:///D:/a/cridecoder/cridecoder#0.1.1",
23
+ "author": "Team-Haruki",
24
+ "name": "cridecoder",
25
+ "version": "0.1.1",
26
+ "description": "CRI codec library for ACB/AWB, HCA audio, and USM video extraction",
27
+ "scope": "required",
28
+ "licenses": [
29
+ {
30
+ "expression": "MIT"
31
+ }
32
+ ],
33
+ "purl": "pkg:cargo/cridecoder@0.1.1?download_url=file://.",
34
+ "externalReferences": [
35
+ {
36
+ "type": "website",
37
+ "url": "https://github.com/Team-Haruki/cridecoder"
38
+ },
39
+ {
40
+ "type": "vcs",
41
+ "url": "https://github.com/Team-Haruki/cridecoder"
42
+ }
43
+ ],
44
+ "components": [
45
+ {
46
+ "type": "library",
47
+ "bom-ref": "path+file:///D:/a/cridecoder/cridecoder#0.1.1 bin-target-0",
48
+ "name": "cridecoder",
49
+ "version": "0.1.1",
50
+ "purl": "pkg:cargo/cridecoder@0.1.1?download_url=file://.#src/lib.rs"
51
+ }
52
+ ]
53
+ },
54
+ "properties": [
55
+ {
56
+ "name": "cdx:rustc:sbom:target:all_targets",
57
+ "value": "true"
58
+ }
59
+ ]
60
+ },
61
+ "components": [
62
+ {
63
+ "type": "library",
64
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0",
65
+ "author": "Andrew Gallant <jamslam@gmail.com>",
66
+ "name": "byteorder",
67
+ "version": "1.5.0",
68
+ "description": "Library for reading/writing numbers in big-endian and little-endian.",
69
+ "scope": "required",
70
+ "hashes": [
71
+ {
72
+ "alg": "SHA-256",
73
+ "content": "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
74
+ }
75
+ ],
76
+ "licenses": [
77
+ {
78
+ "expression": "Unlicense OR MIT"
79
+ }
80
+ ],
81
+ "purl": "pkg:cargo/byteorder@1.5.0",
82
+ "externalReferences": [
83
+ {
84
+ "type": "documentation",
85
+ "url": "https://docs.rs/byteorder"
86
+ },
87
+ {
88
+ "type": "website",
89
+ "url": "https://github.com/BurntSushi/byteorder"
90
+ },
91
+ {
92
+ "type": "vcs",
93
+ "url": "https://github.com/BurntSushi/byteorder"
94
+ }
95
+ ]
96
+ },
97
+ {
98
+ "type": "library",
99
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
100
+ "author": "Alex Crichton <alex@alexcrichton.com>",
101
+ "name": "cfg-if",
102
+ "version": "1.0.4",
103
+ "description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted. ",
104
+ "scope": "required",
105
+ "hashes": [
106
+ {
107
+ "alg": "SHA-256",
108
+ "content": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
109
+ }
110
+ ],
111
+ "licenses": [
112
+ {
113
+ "expression": "MIT OR Apache-2.0"
114
+ }
115
+ ],
116
+ "purl": "pkg:cargo/cfg-if@1.0.4",
117
+ "externalReferences": [
118
+ {
119
+ "type": "vcs",
120
+ "url": "https://github.com/rust-lang/cfg-if"
121
+ }
122
+ ]
123
+ },
124
+ {
125
+ "type": "library",
126
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35",
127
+ "author": "Henri Sivonen <hsivonen@hsivonen.fi>",
128
+ "name": "encoding_rs",
129
+ "version": "0.8.35",
130
+ "description": "A Gecko-oriented implementation of the Encoding Standard",
131
+ "scope": "required",
132
+ "hashes": [
133
+ {
134
+ "alg": "SHA-256",
135
+ "content": "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
136
+ }
137
+ ],
138
+ "licenses": [
139
+ {
140
+ "expression": "(Apache-2.0 OR MIT) AND BSD-3-Clause"
141
+ }
142
+ ],
143
+ "purl": "pkg:cargo/encoding_rs@0.8.35",
144
+ "externalReferences": [
145
+ {
146
+ "type": "documentation",
147
+ "url": "https://docs.rs/encoding_rs/"
148
+ },
149
+ {
150
+ "type": "website",
151
+ "url": "https://docs.rs/encoding_rs/"
152
+ },
153
+ {
154
+ "type": "vcs",
155
+ "url": "https://github.com/hsivonen/encoding_rs"
156
+ }
157
+ ]
158
+ },
159
+ {
160
+ "type": "library",
161
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
162
+ "name": "heck",
163
+ "version": "0.5.0",
164
+ "description": "heck is a case conversion library.",
165
+ "scope": "required",
166
+ "hashes": [
167
+ {
168
+ "alg": "SHA-256",
169
+ "content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
170
+ }
171
+ ],
172
+ "licenses": [
173
+ {
174
+ "expression": "MIT OR Apache-2.0"
175
+ }
176
+ ],
177
+ "purl": "pkg:cargo/heck@0.5.0",
178
+ "externalReferences": [
179
+ {
180
+ "type": "vcs",
181
+ "url": "https://github.com/withoutboats/heck"
182
+ }
183
+ ]
184
+ },
185
+ {
186
+ "type": "library",
187
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3",
188
+ "author": "KokaKiwi <kokakiwi@kokakiwi.net>",
189
+ "name": "hex",
190
+ "version": "0.4.3",
191
+ "description": "Encoding and decoding data into/from hexadecimal representation.",
192
+ "scope": "required",
193
+ "hashes": [
194
+ {
195
+ "alg": "SHA-256",
196
+ "content": "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
197
+ }
198
+ ],
199
+ "licenses": [
200
+ {
201
+ "expression": "MIT OR Apache-2.0"
202
+ }
203
+ ],
204
+ "purl": "pkg:cargo/hex@0.4.3",
205
+ "externalReferences": [
206
+ {
207
+ "type": "documentation",
208
+ "url": "https://docs.rs/hex/"
209
+ },
210
+ {
211
+ "type": "vcs",
212
+ "url": "https://github.com/KokaKiwi/rust-hex"
213
+ }
214
+ ]
215
+ },
216
+ {
217
+ "type": "library",
218
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
219
+ "author": "David Tolnay <dtolnay@gmail.com>",
220
+ "name": "itoa",
221
+ "version": "1.0.18",
222
+ "description": "Fast integer primitive to string conversion",
223
+ "scope": "required",
224
+ "hashes": [
225
+ {
226
+ "alg": "SHA-256",
227
+ "content": "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
228
+ }
229
+ ],
230
+ "licenses": [
231
+ {
232
+ "expression": "MIT OR Apache-2.0"
233
+ }
234
+ ],
235
+ "purl": "pkg:cargo/itoa@1.0.18",
236
+ "externalReferences": [
237
+ {
238
+ "type": "documentation",
239
+ "url": "https://docs.rs/itoa"
240
+ },
241
+ {
242
+ "type": "vcs",
243
+ "url": "https://github.com/dtolnay/itoa"
244
+ }
245
+ ]
246
+ },
247
+ {
248
+ "type": "library",
249
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.183",
250
+ "author": "The Rust Project Developers",
251
+ "name": "libc",
252
+ "version": "0.2.183",
253
+ "description": "Raw FFI bindings to platform libraries like libc.",
254
+ "scope": "required",
255
+ "hashes": [
256
+ {
257
+ "alg": "SHA-256",
258
+ "content": "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
259
+ }
260
+ ],
261
+ "licenses": [
262
+ {
263
+ "expression": "MIT OR Apache-2.0"
264
+ }
265
+ ],
266
+ "purl": "pkg:cargo/libc@0.2.183",
267
+ "externalReferences": [
268
+ {
269
+ "type": "vcs",
270
+ "url": "https://github.com/rust-lang/libc"
271
+ }
272
+ ]
273
+ },
274
+ {
275
+ "type": "library",
276
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.0",
277
+ "author": "Andrew Gallant <jamslam@gmail.com>, bluss",
278
+ "name": "memchr",
279
+ "version": "2.8.0",
280
+ "description": "Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 1, 2 or 3 byte search and single substring search. ",
281
+ "scope": "required",
282
+ "hashes": [
283
+ {
284
+ "alg": "SHA-256",
285
+ "content": "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
286
+ }
287
+ ],
288
+ "licenses": [
289
+ {
290
+ "expression": "Unlicense OR MIT"
291
+ }
292
+ ],
293
+ "purl": "pkg:cargo/memchr@2.8.0",
294
+ "externalReferences": [
295
+ {
296
+ "type": "documentation",
297
+ "url": "https://docs.rs/memchr/"
298
+ },
299
+ {
300
+ "type": "website",
301
+ "url": "https://github.com/BurntSushi/memchr"
302
+ },
303
+ {
304
+ "type": "vcs",
305
+ "url": "https://github.com/BurntSushi/memchr"
306
+ }
307
+ ]
308
+ },
309
+ {
310
+ "type": "library",
311
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
312
+ "author": "Aleksey Kladov <aleksey.kladov@gmail.com>",
313
+ "name": "once_cell",
314
+ "version": "1.21.4",
315
+ "description": "Single assignment cells and lazy values.",
316
+ "scope": "required",
317
+ "hashes": [
318
+ {
319
+ "alg": "SHA-256",
320
+ "content": "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
321
+ }
322
+ ],
323
+ "licenses": [
324
+ {
325
+ "expression": "MIT OR Apache-2.0"
326
+ }
327
+ ],
328
+ "purl": "pkg:cargo/once_cell@1.21.4",
329
+ "externalReferences": [
330
+ {
331
+ "type": "documentation",
332
+ "url": "https://docs.rs/once_cell"
333
+ },
334
+ {
335
+ "type": "vcs",
336
+ "url": "https://github.com/matklad/once_cell"
337
+ }
338
+ ]
339
+ },
340
+ {
341
+ "type": "library",
342
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
343
+ "author": "David Tolnay <dtolnay@gmail.com>, Alex Crichton <alex@alexcrichton.com>",
344
+ "name": "proc-macro2",
345
+ "version": "1.0.106",
346
+ "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.",
347
+ "scope": "required",
348
+ "hashes": [
349
+ {
350
+ "alg": "SHA-256",
351
+ "content": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
352
+ }
353
+ ],
354
+ "licenses": [
355
+ {
356
+ "expression": "MIT OR Apache-2.0"
357
+ }
358
+ ],
359
+ "purl": "pkg:cargo/proc-macro2@1.0.106",
360
+ "externalReferences": [
361
+ {
362
+ "type": "documentation",
363
+ "url": "https://docs.rs/proc-macro2"
364
+ },
365
+ {
366
+ "type": "vcs",
367
+ "url": "https://github.com/dtolnay/proc-macro2"
368
+ }
369
+ ]
370
+ },
371
+ {
372
+ "type": "library",
373
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.2",
374
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
375
+ "name": "pyo3-build-config",
376
+ "version": "0.28.2",
377
+ "description": "Build configuration for the PyO3 ecosystem",
378
+ "scope": "required",
379
+ "hashes": [
380
+ {
381
+ "alg": "SHA-256",
382
+ "content": "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
383
+ }
384
+ ],
385
+ "licenses": [
386
+ {
387
+ "expression": "MIT OR Apache-2.0"
388
+ }
389
+ ],
390
+ "purl": "pkg:cargo/pyo3-build-config@0.28.2",
391
+ "externalReferences": [
392
+ {
393
+ "type": "website",
394
+ "url": "https://github.com/pyo3/pyo3"
395
+ },
396
+ {
397
+ "type": "vcs",
398
+ "url": "https://github.com/pyo3/pyo3"
399
+ }
400
+ ]
401
+ },
402
+ {
403
+ "type": "library",
404
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.28.2",
405
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
406
+ "name": "pyo3-ffi",
407
+ "version": "0.28.2",
408
+ "description": "Python-API bindings for the PyO3 ecosystem",
409
+ "scope": "required",
410
+ "hashes": [
411
+ {
412
+ "alg": "SHA-256",
413
+ "content": "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
414
+ }
415
+ ],
416
+ "licenses": [
417
+ {
418
+ "expression": "MIT OR Apache-2.0"
419
+ }
420
+ ],
421
+ "purl": "pkg:cargo/pyo3-ffi@0.28.2",
422
+ "externalReferences": [
423
+ {
424
+ "type": "website",
425
+ "url": "https://github.com/pyo3/pyo3"
426
+ },
427
+ {
428
+ "type": "other",
429
+ "url": "python"
430
+ },
431
+ {
432
+ "type": "vcs",
433
+ "url": "https://github.com/pyo3/pyo3"
434
+ }
435
+ ]
436
+ },
437
+ {
438
+ "type": "library",
439
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.28.2",
440
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
441
+ "name": "pyo3-macros-backend",
442
+ "version": "0.28.2",
443
+ "description": "Code generation for PyO3 package",
444
+ "scope": "required",
445
+ "hashes": [
446
+ {
447
+ "alg": "SHA-256",
448
+ "content": "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
449
+ }
450
+ ],
451
+ "licenses": [
452
+ {
453
+ "expression": "MIT OR Apache-2.0"
454
+ }
455
+ ],
456
+ "purl": "pkg:cargo/pyo3-macros-backend@0.28.2",
457
+ "externalReferences": [
458
+ {
459
+ "type": "website",
460
+ "url": "https://github.com/pyo3/pyo3"
461
+ },
462
+ {
463
+ "type": "vcs",
464
+ "url": "https://github.com/pyo3/pyo3"
465
+ }
466
+ ]
467
+ },
468
+ {
469
+ "type": "library",
470
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.28.2",
471
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
472
+ "name": "pyo3-macros",
473
+ "version": "0.28.2",
474
+ "description": "Proc macros for PyO3 package",
475
+ "scope": "required",
476
+ "hashes": [
477
+ {
478
+ "alg": "SHA-256",
479
+ "content": "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
480
+ }
481
+ ],
482
+ "licenses": [
483
+ {
484
+ "expression": "MIT OR Apache-2.0"
485
+ }
486
+ ],
487
+ "purl": "pkg:cargo/pyo3-macros@0.28.2",
488
+ "externalReferences": [
489
+ {
490
+ "type": "website",
491
+ "url": "https://github.com/pyo3/pyo3"
492
+ },
493
+ {
494
+ "type": "vcs",
495
+ "url": "https://github.com/pyo3/pyo3"
496
+ }
497
+ ]
498
+ },
499
+ {
500
+ "type": "library",
501
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.28.2",
502
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
503
+ "name": "pyo3",
504
+ "version": "0.28.2",
505
+ "description": "Bindings to Python interpreter",
506
+ "scope": "required",
507
+ "hashes": [
508
+ {
509
+ "alg": "SHA-256",
510
+ "content": "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
511
+ }
512
+ ],
513
+ "licenses": [
514
+ {
515
+ "expression": "MIT OR Apache-2.0"
516
+ }
517
+ ],
518
+ "purl": "pkg:cargo/pyo3@0.28.2",
519
+ "externalReferences": [
520
+ {
521
+ "type": "documentation",
522
+ "url": "https://docs.rs/crate/pyo3/"
523
+ },
524
+ {
525
+ "type": "website",
526
+ "url": "https://github.com/pyo3/pyo3"
527
+ },
528
+ {
529
+ "type": "vcs",
530
+ "url": "https://github.com/pyo3/pyo3"
531
+ }
532
+ ]
533
+ },
534
+ {
535
+ "type": "library",
536
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
537
+ "author": "David Tolnay <dtolnay@gmail.com>",
538
+ "name": "quote",
539
+ "version": "1.0.45",
540
+ "description": "Quasi-quoting macro quote!(...)",
541
+ "scope": "required",
542
+ "hashes": [
543
+ {
544
+ "alg": "SHA-256",
545
+ "content": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
546
+ }
547
+ ],
548
+ "licenses": [
549
+ {
550
+ "expression": "MIT OR Apache-2.0"
551
+ }
552
+ ],
553
+ "purl": "pkg:cargo/quote@1.0.45",
554
+ "externalReferences": [
555
+ {
556
+ "type": "documentation",
557
+ "url": "https://docs.rs/quote/"
558
+ },
559
+ {
560
+ "type": "vcs",
561
+ "url": "https://github.com/dtolnay/quote"
562
+ }
563
+ ]
564
+ },
565
+ {
566
+ "type": "library",
567
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228",
568
+ "author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
569
+ "name": "serde",
570
+ "version": "1.0.228",
571
+ "description": "A generic serialization/deserialization framework",
572
+ "scope": "required",
573
+ "hashes": [
574
+ {
575
+ "alg": "SHA-256",
576
+ "content": "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
577
+ }
578
+ ],
579
+ "licenses": [
580
+ {
581
+ "expression": "MIT OR Apache-2.0"
582
+ }
583
+ ],
584
+ "purl": "pkg:cargo/serde@1.0.228",
585
+ "externalReferences": [
586
+ {
587
+ "type": "documentation",
588
+ "url": "https://docs.rs/serde"
589
+ },
590
+ {
591
+ "type": "website",
592
+ "url": "https://serde.rs"
593
+ },
594
+ {
595
+ "type": "vcs",
596
+ "url": "https://github.com/serde-rs/serde"
597
+ }
598
+ ]
599
+ },
600
+ {
601
+ "type": "library",
602
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228",
603
+ "author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
604
+ "name": "serde_core",
605
+ "version": "1.0.228",
606
+ "description": "Serde traits only, with no support for derive -- use the `serde` crate instead",
607
+ "scope": "required",
608
+ "hashes": [
609
+ {
610
+ "alg": "SHA-256",
611
+ "content": "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
612
+ }
613
+ ],
614
+ "licenses": [
615
+ {
616
+ "expression": "MIT OR Apache-2.0"
617
+ }
618
+ ],
619
+ "purl": "pkg:cargo/serde_core@1.0.228",
620
+ "externalReferences": [
621
+ {
622
+ "type": "documentation",
623
+ "url": "https://docs.rs/serde_core"
624
+ },
625
+ {
626
+ "type": "website",
627
+ "url": "https://serde.rs"
628
+ },
629
+ {
630
+ "type": "vcs",
631
+ "url": "https://github.com/serde-rs/serde"
632
+ }
633
+ ]
634
+ },
635
+ {
636
+ "type": "library",
637
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228",
638
+ "author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
639
+ "name": "serde_derive",
640
+ "version": "1.0.228",
641
+ "description": "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]",
642
+ "scope": "required",
643
+ "hashes": [
644
+ {
645
+ "alg": "SHA-256",
646
+ "content": "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
647
+ }
648
+ ],
649
+ "licenses": [
650
+ {
651
+ "expression": "MIT OR Apache-2.0"
652
+ }
653
+ ],
654
+ "purl": "pkg:cargo/serde_derive@1.0.228",
655
+ "externalReferences": [
656
+ {
657
+ "type": "documentation",
658
+ "url": "https://serde.rs/derive.html"
659
+ },
660
+ {
661
+ "type": "website",
662
+ "url": "https://serde.rs"
663
+ },
664
+ {
665
+ "type": "vcs",
666
+ "url": "https://github.com/serde-rs/serde"
667
+ }
668
+ ]
669
+ },
670
+ {
671
+ "type": "library",
672
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149",
673
+ "author": "Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>",
674
+ "name": "serde_json",
675
+ "version": "1.0.149",
676
+ "description": "A JSON serialization file format",
677
+ "scope": "required",
678
+ "hashes": [
679
+ {
680
+ "alg": "SHA-256",
681
+ "content": "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
682
+ }
683
+ ],
684
+ "licenses": [
685
+ {
686
+ "expression": "MIT OR Apache-2.0"
687
+ }
688
+ ],
689
+ "purl": "pkg:cargo/serde_json@1.0.149",
690
+ "externalReferences": [
691
+ {
692
+ "type": "documentation",
693
+ "url": "https://docs.rs/serde_json"
694
+ },
695
+ {
696
+ "type": "vcs",
697
+ "url": "https://github.com/serde-rs/json"
698
+ }
699
+ ]
700
+ },
701
+ {
702
+ "type": "library",
703
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
704
+ "author": "David Tolnay <dtolnay@gmail.com>",
705
+ "name": "syn",
706
+ "version": "2.0.117",
707
+ "description": "Parser for Rust source code",
708
+ "scope": "required",
709
+ "hashes": [
710
+ {
711
+ "alg": "SHA-256",
712
+ "content": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
713
+ }
714
+ ],
715
+ "licenses": [
716
+ {
717
+ "expression": "MIT OR Apache-2.0"
718
+ }
719
+ ],
720
+ "purl": "pkg:cargo/syn@2.0.117",
721
+ "externalReferences": [
722
+ {
723
+ "type": "documentation",
724
+ "url": "https://docs.rs/syn"
725
+ },
726
+ {
727
+ "type": "vcs",
728
+ "url": "https://github.com/dtolnay/syn"
729
+ }
730
+ ]
731
+ },
732
+ {
733
+ "type": "library",
734
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5",
735
+ "author": "Dan Gohman <sunfish@mozilla.com>",
736
+ "name": "target-lexicon",
737
+ "version": "0.13.5",
738
+ "description": "LLVM target triple types",
739
+ "scope": "required",
740
+ "hashes": [
741
+ {
742
+ "alg": "SHA-256",
743
+ "content": "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
744
+ }
745
+ ],
746
+ "licenses": [
747
+ {
748
+ "expression": "Apache-2.0 WITH LLVM-exception"
749
+ }
750
+ ],
751
+ "purl": "pkg:cargo/target-lexicon@0.13.5",
752
+ "externalReferences": [
753
+ {
754
+ "type": "documentation",
755
+ "url": "https://docs.rs/target-lexicon/"
756
+ },
757
+ {
758
+ "type": "vcs",
759
+ "url": "https://github.com/bytecodealliance/target-lexicon"
760
+ }
761
+ ]
762
+ },
763
+ {
764
+ "type": "library",
765
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18",
766
+ "author": "David Tolnay <dtolnay@gmail.com>",
767
+ "name": "thiserror-impl",
768
+ "version": "2.0.18",
769
+ "description": "Implementation detail of the `thiserror` crate",
770
+ "scope": "required",
771
+ "hashes": [
772
+ {
773
+ "alg": "SHA-256",
774
+ "content": "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
775
+ }
776
+ ],
777
+ "licenses": [
778
+ {
779
+ "expression": "MIT OR Apache-2.0"
780
+ }
781
+ ],
782
+ "purl": "pkg:cargo/thiserror-impl@2.0.18",
783
+ "externalReferences": [
784
+ {
785
+ "type": "vcs",
786
+ "url": "https://github.com/dtolnay/thiserror"
787
+ }
788
+ ]
789
+ },
790
+ {
791
+ "type": "library",
792
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18",
793
+ "author": "David Tolnay <dtolnay@gmail.com>",
794
+ "name": "thiserror",
795
+ "version": "2.0.18",
796
+ "description": "derive(Error)",
797
+ "scope": "required",
798
+ "hashes": [
799
+ {
800
+ "alg": "SHA-256",
801
+ "content": "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
802
+ }
803
+ ],
804
+ "licenses": [
805
+ {
806
+ "expression": "MIT OR Apache-2.0"
807
+ }
808
+ ],
809
+ "purl": "pkg:cargo/thiserror@2.0.18",
810
+ "externalReferences": [
811
+ {
812
+ "type": "documentation",
813
+ "url": "https://docs.rs/thiserror"
814
+ },
815
+ {
816
+ "type": "vcs",
817
+ "url": "https://github.com/dtolnay/thiserror"
818
+ }
819
+ ]
820
+ },
821
+ {
822
+ "type": "library",
823
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24",
824
+ "author": "David Tolnay <dtolnay@gmail.com>",
825
+ "name": "unicode-ident",
826
+ "version": "1.0.24",
827
+ "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31",
828
+ "scope": "required",
829
+ "hashes": [
830
+ {
831
+ "alg": "SHA-256",
832
+ "content": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
833
+ }
834
+ ],
835
+ "licenses": [
836
+ {
837
+ "expression": "(MIT OR Apache-2.0) AND Unicode-3.0"
838
+ }
839
+ ],
840
+ "purl": "pkg:cargo/unicode-ident@1.0.24",
841
+ "externalReferences": [
842
+ {
843
+ "type": "documentation",
844
+ "url": "https://docs.rs/unicode-ident"
845
+ },
846
+ {
847
+ "type": "vcs",
848
+ "url": "https://github.com/dtolnay/unicode-ident"
849
+ }
850
+ ]
851
+ },
852
+ {
853
+ "type": "library",
854
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21",
855
+ "author": "David Tolnay <dtolnay@gmail.com>",
856
+ "name": "zmij",
857
+ "version": "1.0.21",
858
+ "description": "A double-to-string conversion algorithm based on Schubfach and yy",
859
+ "scope": "required",
860
+ "hashes": [
861
+ {
862
+ "alg": "SHA-256",
863
+ "content": "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
864
+ }
865
+ ],
866
+ "licenses": [
867
+ {
868
+ "expression": "MIT"
869
+ }
870
+ ],
871
+ "purl": "pkg:cargo/zmij@1.0.21",
872
+ "externalReferences": [
873
+ {
874
+ "type": "documentation",
875
+ "url": "https://docs.rs/zmij"
876
+ },
877
+ {
878
+ "type": "vcs",
879
+ "url": "https://github.com/dtolnay/zmij"
880
+ }
881
+ ]
882
+ }
883
+ ],
884
+ "dependencies": [
885
+ {
886
+ "ref": "path+file:///D:/a/cridecoder/cridecoder#0.1.1",
887
+ "dependsOn": [
888
+ "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0",
889
+ "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35",
890
+ "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3",
891
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.28.2",
892
+ "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228",
893
+ "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149",
894
+ "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18"
895
+ ]
896
+ },
897
+ {
898
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#byteorder@1.5.0",
899
+ "dependsOn": []
900
+ },
901
+ {
902
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
903
+ "dependsOn": []
904
+ },
905
+ {
906
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#encoding_rs@0.8.35",
907
+ "dependsOn": [
908
+ "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4"
909
+ ]
910
+ },
911
+ {
912
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
913
+ "dependsOn": []
914
+ },
915
+ {
916
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#hex@0.4.3",
917
+ "dependsOn": []
918
+ },
919
+ {
920
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
921
+ "dependsOn": []
922
+ },
923
+ {
924
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.183",
925
+ "dependsOn": []
926
+ },
927
+ {
928
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.0",
929
+ "dependsOn": []
930
+ },
931
+ {
932
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
933
+ "dependsOn": []
934
+ },
935
+ {
936
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
937
+ "dependsOn": [
938
+ "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
939
+ ]
940
+ },
941
+ {
942
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.2",
943
+ "dependsOn": [
944
+ "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
945
+ ]
946
+ },
947
+ {
948
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.28.2",
949
+ "dependsOn": [
950
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.183",
951
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.2"
952
+ ]
953
+ },
954
+ {
955
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.28.2",
956
+ "dependsOn": [
957
+ "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
958
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
959
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.2",
960
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
961
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
962
+ ]
963
+ },
964
+ {
965
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.28.2",
966
+ "dependsOn": [
967
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
968
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.28.2",
969
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
970
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
971
+ ]
972
+ },
973
+ {
974
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.28.2",
975
+ "dependsOn": [
976
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.183",
977
+ "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
978
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.2",
979
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.28.2",
980
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.28.2"
981
+ ]
982
+ },
983
+ {
984
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
985
+ "dependsOn": [
986
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106"
987
+ ]
988
+ },
989
+ {
990
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#serde@1.0.228",
991
+ "dependsOn": [
992
+ "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228",
993
+ "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228"
994
+ ]
995
+ },
996
+ {
997
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228",
998
+ "dependsOn": []
999
+ },
1000
+ {
1001
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_derive@1.0.228",
1002
+ "dependsOn": [
1003
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1004
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1005
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
1006
+ ]
1007
+ },
1008
+ {
1009
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#serde_json@1.0.149",
1010
+ "dependsOn": [
1011
+ "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
1012
+ "registry+https://github.com/rust-lang/crates.io-index#memchr@2.8.0",
1013
+ "registry+https://github.com/rust-lang/crates.io-index#serde_core@1.0.228",
1014
+ "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21"
1015
+ ]
1016
+ },
1017
+ {
1018
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
1019
+ "dependsOn": [
1020
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1021
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1022
+ "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
1023
+ ]
1024
+ },
1025
+ {
1026
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5",
1027
+ "dependsOn": []
1028
+ },
1029
+ {
1030
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18",
1031
+ "dependsOn": [
1032
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1033
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1034
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
1035
+ ]
1036
+ },
1037
+ {
1038
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#thiserror@2.0.18",
1039
+ "dependsOn": [
1040
+ "registry+https://github.com/rust-lang/crates.io-index#thiserror-impl@2.0.18"
1041
+ ]
1042
+ },
1043
+ {
1044
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24",
1045
+ "dependsOn": []
1046
+ },
1047
+ {
1048
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#zmij@1.0.21",
1049
+ "dependsOn": []
1050
+ }
1051
+ ]
1052
+ }