feat: implement cbz writing and pdf reading

This commit is contained in:
Marc Plano-Lesay 2025-10-13 16:52:25 +11:00
parent 034f0b142c
commit e8287d0c6e
Signed by: kernald
GPG key ID: 66A41B08CC62A6CF
10 changed files with 644 additions and 57 deletions

View file

@ -34,7 +34,7 @@ fn job_new_sets_output_extension() {
#[test]
fn format_capabilities_consistent() {
assert!(FormatId::Cbz.can_read());
assert!(!FormatId::Cbz.can_write());
assert!(FormatId::Cbz.can_write());
assert!(FormatId::Pdf.can_write());
assert!(!FormatId::Pdf.can_read());
assert!(FormatId::Pdf.can_read());
}