-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
30 lines (25 loc) · 1008 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 = "zune-png"
version = "0.5.0-rc1"
authors = ["caleb <[email protected]>"]
edition = "2021"
repository = "https://github.com/etemesi254/zune-image/tree/dev/zune-png"
license = "MIT OR Apache-2.0 OR Zlib"
keywords = ["png", "png-decoder", "decoder"]
categories = ["multimedia::images"]
exclude = ["/benches/images/*", "/tests/*", "/.idea/*", "/.gradle/*", "/test-images/*", "fuzz/*"]
description = "A fast, correct and safe png decoder"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
sse = []
std = ["zune-core/std"]
log = ["zune-core/log"]
portable-simd = []
default = ["sse", "std"]
[dependencies]
zune-core = { path = "../zune-core", version = "^0.5.0-rc0" }
zune-inflate = { path = "../zune-inflate", version = "0.2", default-features = false, features = ["zlib"] }
[dev-dependencies]
nanorand = { version = "0.7.0", default-features = false, features = ["wyrand"] } # testing purposes.
png = "0.17.8-rc"
spng = "0.1.0"