[[bin]]
name = "depth-map-processor"
path = "src/main.rs"
[dependencies.clap]
features = ["derive"]
version = "4.5.54"
[dependencies.colorgrad]
features = ["preset"]
version = "0.8.0"
[dependencies.image]
version = "0.25.9"
[lib]
name = "depth_map_processor"
path = "src/lib.rs"
[package]
authors = ["RustedBytes <dev@rustedbytes.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "multimedia::images"]
description = "Normalize 16-bit PNG depth maps to 8-bit grayscale with optional Turbo visualization."
edition = "2024"
exclude = ["target/**", "test.png"]
homepage = "https://github.com/RustedBytes/depth-map-processor"
keywords = ["depth-map", "image-processing", "png", "colormap", "cli"]
license = "MIT"
name = "depth-map-processor"
readme = "README.md"
repository = "https://github.com/RustedBytes/depth-map-processor"
version = "0.1.0"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true