cridecoder 0.1.1__tar.gz → 0.1.2__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 (37) hide show
  1. {cridecoder-0.1.1 → cridecoder-0.1.2}/.github/workflows/release-crate.yml +1 -1
  2. {cridecoder-0.1.1 → cridecoder-0.1.2}/Cargo.lock +1 -1
  3. {cridecoder-0.1.1 → cridecoder-0.1.2}/Cargo.toml +4 -1
  4. {cridecoder-0.1.1 → cridecoder-0.1.2}/PKG-INFO +1 -1
  5. {cridecoder-0.1.1 → cridecoder-0.1.2}/pyproject.toml +1 -1
  6. {cridecoder-0.1.1 → cridecoder-0.1.2}/.github/copilot-Instructions.md +0 -0
  7. {cridecoder-0.1.1 → cridecoder-0.1.2}/.github/workflows/ci.yml +0 -0
  8. {cridecoder-0.1.1 → cridecoder-0.1.2}/.github/workflows/release-python.yml +0 -0
  9. {cridecoder-0.1.1 → cridecoder-0.1.2}/.gitignore +0 -0
  10. {cridecoder-0.1.1 → cridecoder-0.1.2}/AGENTS.md +0 -0
  11. {cridecoder-0.1.1 → cridecoder-0.1.2}/LICENSE +0 -0
  12. {cridecoder-0.1.1 → cridecoder-0.1.2}/README.md +0 -0
  13. {cridecoder-0.1.1 → cridecoder-0.1.2}/examples/debug_acb.rs +0 -0
  14. {cridecoder-0.1.1 → cridecoder-0.1.2}/examples/test_acb.rs +0 -0
  15. {cridecoder-0.1.1 → cridecoder-0.1.2}/examples/test_hca.rs +0 -0
  16. {cridecoder-0.1.1 → cridecoder-0.1.2}/examples/test_usm.rs +0 -0
  17. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/acb/afs.rs +0 -0
  18. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/acb/consts.rs +0 -0
  19. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/acb/extractor.rs +0 -0
  20. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/acb/track.rs +0 -0
  21. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/acb/utf.rs +0 -0
  22. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/acb.rs +0 -0
  23. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/hca/ath.rs +0 -0
  24. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/hca/bitreader.rs +0 -0
  25. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/hca/cipher.rs +0 -0
  26. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/hca/decoder.rs +0 -0
  27. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/hca/hca_file.rs +0 -0
  28. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/hca/imdct.rs +0 -0
  29. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/hca/tables.rs +0 -0
  30. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/hca.rs +0 -0
  31. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/lib.rs +0 -0
  32. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/python.rs +0 -0
  33. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/reader.rs +0 -0
  34. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/usm/extractor.rs +0 -0
  35. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/usm/metadata.rs +0 -0
  36. {cridecoder-0.1.1 → cridecoder-0.1.2}/src/usm.rs +0 -0
  37. {cridecoder-0.1.1 → cridecoder-0.1.2}/tests/integration_tests.rs +0 -0
@@ -12,7 +12,7 @@ jobs:
12
12
  steps:
13
13
  - uses: actions/checkout@v5
14
14
  - uses: dtolnay/rust-toolchain@stable
15
- - uses: Swatinem/rust-cache@v3
15
+ - uses: Swatinem/rust-cache@v2
16
16
  - name: Set version from tag
17
17
  if: github.event_name == 'release'
18
18
  run: |
@@ -28,7 +28,7 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
28
28
 
29
29
  [[package]]
30
30
  name = "cridecoder"
31
- version = "0.1.1"
31
+ version = "0.1.2"
32
32
  dependencies = [
33
33
  "byteorder",
34
34
  "encoding_rs",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "cridecoder"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  edition = "2021"
5
5
  description = "CRI codec library for ACB/AWB, HCA audio, and USM video extraction"
6
6
  license = "MIT"
@@ -38,3 +38,6 @@ path = "examples/test_acb.rs"
38
38
  [[example]]
39
39
  name = "test_usm"
40
40
  path = "examples/test_usm.rs"
41
+
42
+ [profile.release]
43
+ lto = "thin"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cridecoder
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Classifier: Development Status :: 4 - Beta
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -4,7 +4,7 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "cridecoder"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "CRI codec library for ACB/AWB, HCA audio, and USM video extraction"
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes