mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
286f7c643f
When this option is enabled all png images will be converted to PNG-8 (8 bit per pixel).
28 lines
966 B
TOML
28 lines
966 B
TOML
[package]
|
|
categories = ["multimedia::images"]
|
|
description = "Convert 24/32-bit images to 8-bit palette with alpha channel.\nBindings for libimagequant that powers pngquant lossy PNG compressor.\n\nDual-licensed like pngquant. See https://pngquant.org for details."
|
|
documentation = "https://docs.rs/imagequant"
|
|
homepage = "https://pngquant.org/lib/"
|
|
include = ["src/*", "examples/*", "COPYRIGHT", "Cargo.toml", "README.md"]
|
|
keywords = ["quantization", "palette", "image", "pngquant", "compression"]
|
|
authors = [ "Kornel <kornel@pngquant.org>" ]
|
|
license = "GPL-3.0+"
|
|
name = "imagequant"
|
|
readme = "README.md"
|
|
repository = "https://github.com/ImageOptim/libimagequant"
|
|
version = "2.12.6"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
imagequant-sys = { version = "2.12.6", path = "../" }
|
|
libc = "0.2.60"
|
|
|
|
[features]
|
|
default = ["sse"]
|
|
sse = ["imagequant-sys/sse"]
|
|
openmp = ["imagequant-sys/openmp"]
|
|
openmp-static = ["openmp", "imagequant-sys/openmp-static"]
|
|
|
|
[lib]
|
|
name = "imagequant"
|