Some checks failed
Release / plan (push) Failing after 1m14s
Release / build-local-artifacts (${{ join(matrix.targets, ', ') }}) (push) Has been cancelled
Release / build-global-artifacts (push) Has been cancelled
Release / host (push) Has been cancelled
Release / announce (push) Has been cancelled
31 lines
571 B
TOML
31 lines
571 B
TOML
[package]
|
|
name = "pixel-palette-colorizer"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
repository = "https://github.com/GKaszewski/pixel-palette-colorizer"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.102"
|
|
clap = { version = "4.6.1", features = ["derive"] }
|
|
image = "0.25.10"
|
|
indicatif = "0.18.4"
|
|
palette = "0.7"
|
|
rayon = "1.12.0"
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = "0.3.23"
|
|
walkdir = "2"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
# The profile that 'dist' will build with
|
|
[profile.dist]
|
|
inherits = "release"
|
|
lto = "thin"
|