2021-11-28 12:36:12 +00:00
|
|
|
[package]
|
|
|
|
name = "qoi-fast"
|
2021-11-28 16:54:16 +00:00
|
|
|
version = "0.0.1"
|
|
|
|
description = "Fast encoder/decoder for QOI (Quite Okay Image) format"
|
2021-11-28 12:36:12 +00:00
|
|
|
authors = ["Ivan Smirnov <rust@ivan.smirnov.ie>"]
|
|
|
|
edition = "2021"
|
|
|
|
readme = "README.md"
|
|
|
|
license = "MIT"
|
2021-11-28 16:54:16 +00:00
|
|
|
repository = "https://github.com/aldanor/qoi-fast"
|
|
|
|
homepage = "https://github.com/aldanor/qoi-fast"
|
|
|
|
documentation = "https://docs.rs/qoi-fast"
|
|
|
|
categories = ["multimedia::images", "multimedia::encoding"]
|
|
|
|
keywords = ["qoi", "graphics", "image", "encoding"]
|
|
|
|
exclude = [
|
|
|
|
"benches/*",
|
|
|
|
"assets/*",
|
|
|
|
]
|
2021-11-28 12:36:12 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-11-28 16:54:16 +00:00
|
|
|
png = "^0.17.2"
|
2021-11-28 12:36:12 +00:00
|
|
|
|
|
|
|
[target.'cfg(bench)'.dev-dependencies]
|
|
|
|
# to activate, pass RUSTFLAGS="--cfg bench" until cargo does this automatically
|
|
|
|
criterion = "^0.3.5"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "qoi_fast"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
bench = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bench"
|
|
|
|
harness = false
|