imposer 0.3.0

A Rust library and CLI for imposing single-sheet PDFs into booklet layouts with configurable n-up binding.
Documentation
[[bin]]
name = "imposer"
path = "src/bin/imposer.rs"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.flate2]
version = "1.1"

[dependencies.image]
version = "0.25"

[dependencies.lopdf]
version = "0.38"

[dependencies.pyo3]
features = ["extension-module"]
optional = true
version = "0.27"

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.rstest]
version = "0.26"

[features]
default = []
python = ["pyo3"]

[lib]
crate-type = ["rlib", "cdylib"]
name = "imposer"
path = "src/lib.rs"

[lints.clippy]
all = "deny"
complexity = "deny"
correctness = "deny"
pedantic = "deny"
perf = "deny"
style = "deny"
suspicious = "deny"

[lints.rust]
dead_code = "deny"
missing_debug_implementations = "deny"
missing_docs = "deny"
non_camel_case_types = "deny"
non_snake_case = "deny"
non_upper_case_globals = "deny"
trivial_casts = "deny"
trivial_numeric_casts = "deny"
unreachable_code = "deny"
unused_imports = "deny"
unused_mut = "deny"
unused_qualifications = "deny"
unused_results = "deny"
unused_variables = "deny"

[package]
authors = ["João M. Martins <contact@jmartins.dev>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "graphics"]
description = "A Rust library and CLI for imposing single-sheet PDFs into booklet layouts with configurable n-up binding."
documentation = "https://docs.rs/imposer"
edition = "2021"
exclude = [".pre-commit-config.yaml"]
homepage = "https://github.com/joaommartins/imposer-rs"
keywords = ["pdf", "booklet", "imposition", "printing", "saddle-stitch"]
license = "MIT"
name = "imposer"
readme = "README.md"
repository = "https://github.com/joaommartins/imposer-rs"
version = "0.3.0"