summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 40ad49e7fea7923e3c724616916e2f458547e716 (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.0"
edition = "2021"

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

[features]
default = []
adler = []

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