[package]
edition = "2024"
name = "pix"
version = "0.15.0"
build = "build.rs"
include = [
"src/**/*",
"Cargo.*",
"LICENSE-*",
"README.md",
"CHANGELOG.md",
"build.rs",
"benches/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pixel / raster image library"
homepage = "https://github.com/DougLau/pix"
documentation = "https://docs.rs/pix"
readme = "README.md"
keywords = [
"pixel",
"image",
"rgb",
"color",
]
categories = ["multimedia::images"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/DougLau/pix"
[lib]
name = "pix"
path = "src/lib.rs"
[[bench]]
name = "rgba_to_rgb"
path = "benches/rgba_to_rgb.rs"
harness = false
[[bench]]
name = "src_over"
path = "benches/src_over.rs"
harness = false
[dev-dependencies.criterion]
version = "0.5"