imagedit 0.1.1

A CLI tool for generating documents from images with customizable text and QR codes.
Documentation
[package]
name = "imagedit"
version = "0.1.1"
edition = "2024"
authors = ["alejo.co@proton.me"]
description = "A CLI tool for generating documents from images with customizable text and QR codes."
license = "GPL-3.0"
repository = "https://github.com/alejo-c/imagedit"
readme = "README.md"
keywords = ["pdf", "qr-code", "document", "generator"]
categories = ["command-line-utilities", "multimedia::images"]

[lib]
name = "imagedit"
path = "src/lib.rs"

[[bin]]
name = "imagedit"
path = "src/main.rs"
required-features = ["bin-deps"]

[dependencies]
image = "0.25"
imageproc = "0.25"
ab_glyph = "0.2"
qrcode = "0.14"
clap = { version = "4.5.40", features = ["derive"], optional = true }
printpdf = { version = "0.8.2", features = ["png"] }

[dev-dependencies]
tempfile = "3.0"

[features]
default = []
bin-deps = ["dep:clap"]

[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"
strip = true