Skip to content

Commit

Permalink
feat(cbz): Improve performance by decoding images only when necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
gaku-sei committed Jan 8, 2024
1 parent d9a218d commit 0dbd51f
Show file tree
Hide file tree
Showing 12 changed files with 495 additions and 122 deletions.
207 changes: 205 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ camino = "1.1.4"
clap = { version = "4.3.5", features = ["derive"] }
cli-table = "0.4.7"
chrono = "0.4.31"
criterion = { version = "0.5.1", features = ["html_reports"] }
dark-light = "1.0.0"
dialoguer = "0.10.4"
dioxus = "0.4.0"
Expand Down
7 changes: 7 additions & 0 deletions eco-cbz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ thiserror.workspace = true
tracing.workspace = true
zip.workspace = true

[dev-dependencies]
criterion.workspace = true

[features]
default = []
metadata = ["dep:chrono", "dep:serde", "dep:serde_json", "dep:serde_repr"]

[[bench]]
name = "image"
harness = false
Loading

0 comments on commit 0dbd51f

Please sign in to comment.