forked from image-rs/image-png
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (42 loc) · 920 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "png"
version = "0.16.3"
license = "MIT OR Apache-2.0"
description = "PNG decoding and encoding library in pure Rust"
categories = ["multimedia::images"]
authors = ["nwin <[email protected]>"]
repository = "https://github.com/image-rs/image-png.git"
edition = "2018"
include = [
"/LICENSE-MIT",
"/LICENSE-APACHE",
"/README.md",
"/CHANGES.md",
"/src/",
"/examples/",
"/benches/",
]
[dependencies]
inflate = "0.4.2"
deflate = { version = "0.8.2", optional = true }
bitflags = "1.0"
crc32fast = "1.2.0"
[dev-dependencies]
criterion = "0.3.1"
getopts = "0.2.14"
term = "0.6.1"
glob = "0.3"
rand = "0.7.0"
[dev-dependencies.glium]
version = "0.24"
features = ["glutin"]
default-features = false
[features]
png-encoding = ["deflate"]
default = ["png-encoding"]
unstable = []
benchmarks = []
[[bench]]
path = "benches/decoder.rs"
name = "decoder"
harness = false