-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
30 lines (26 loc) · 831 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "png-decoder"
version = "0.1.1"
authors = ["Brian Schwind <[email protected]>"]
edition = "2018"
repository = "https://github.com/bschwind/png-decoder"
description = "A pure-Rust, no_std compatible PNG decoder."
homepage = "https://github.com/bschwind/png-decoder"
readme = "README.md"
documentation = "https://docs.rs/png-decoder"
keywords = ["png", "image", "decoder"]
categories = ["multimedia::images"]
license = "MIT OR Apache-2.0 OR Zlib"
exclude = [
"test_pngs/*",
]
[dependencies]
crc32fast = { version = "1", default-features = false }
num_enum = { version = "0.5", default-features = false }
miniz_oxide = { version = "0.4", default-features = false }
[dev-dependencies]
image = { version = "0.23", features = ["png"] }
criterion = "0.3"
[[bench]]
name = "decode_benchmark"
harness = false