Skip to content
Snippets Groups Projects
Cargo.toml 624 B
Newer Older
[package]
name = "png_to_svg"
version = "0.1.0"
edition = "2021"
Louis's avatar
Louis committed
authors = [
	"Louis Capitanchik <louis@microhacks.co.uk>"
]
description = "Convert RGBA8 PNG images into SVGs, where each pixel of input creates one output rect"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Louis's avatar
Louis committed
[profile.release]
opt-level = "s"
debug = false
strip = true

[dependencies]
anyhow = "1.0.65"
clap = { version = "4.0.14", features = ["derive"] }
env_logger = "0.9.1"
image = { version = "0.24.4", default-features = false, features = ["png"] }
log = "0.4.17"
rayon = "1.5.3"
thiserror = "1.0.37"