Files
colorgram-rust/Cargo.toml
T
2026-01-06 06:35:50 +03:00

38 lines
838 B
TOML

[package]
name = "colorgram"
version = "1.0.0"
edition = "2024"
authors = ["arabian"]
description = "Rust library that extracts colors from image. Port of colorgram.py"
readme = "README.md"
license = "MIT"
homepage = "https://github.com/arabianq/colorgram-rust"
repository = "https://github.com/arabianq/colorgram-rust"
keywords = ["colors", "image", "extract", "colorgram"]
[dependencies]
image = { version = "0.25.9", default-features = false, features = [
"default-formats",
] }
clap = { version = "4.5.54", default-features = false, features = [
"derive",
"std",
] }
ansi_term = { version = "0.12.1", default-features = false }
[lib]
name = "colorgram"
path = "src/lib.rs"
[[bin]]
name = "colorgram-cli"
path = "src/main.rs"
[profile.release]
strip = true
lto = true
codegen-units = 1
opt-level = "z"
panic = "abort"