summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: ded9de432d9f5e1c71b110053c2e20b07d184fd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "minipng"
description = "Tiny PNG decoder with no dependencies"
repository = "https://github.com/pommicket/minipng"
categories = ["encoding", "graphics", "multimedia::images", "no-std::no-alloc"]
keywords = ["png", "decoder", "image", "no_std", "no_alloc"]
exclude = ["/test/large", "/benches/large.png"]
license = "0BSD"
version = "0.1.1"
edition = "2024"

[dev-dependencies]
criterion = { version = "0.7.0", features = ["html_reports"] }
png = "0.18.0"
png-decoder = "0.1.1"

[features]
default = []
adler = []

[[bench]]
name = "bench"
harness = false