image 0.19.0

Imaging library written in Rust. Provides basic filters and decoders for the most common image formats.
Documentation
[package]
name = "image"
version = "0.19.0"
license = "MIT"
description = "Imaging library written in Rust. Provides basic filters and decoders for the most common image formats."
authors = [
    "ccgn",
    "bvssvni <bvssvni@gmail.com>",
    "nwin",
    "TyOverby <ty@pre-alpha.com>",
    "HeroicKatora",
    "Calum"]
readme = "README.md"
documentation = "https://docs.rs/image"
repository = "https://github.com/PistonDevelopers/image.git"
homepage = "https://github.com/PistonDevelopers/image"
categories = ["multimedia::images", "multimedia::encoding"]
exclude = [
    "src/png/testdata/*",
    "examples/*",
    "tests/*",
]

[lib]
name = "image"
path = "./src/lib.rs"

[dependencies]
byteorder = "1.2.1"
num-derive = "0.2.0"
num-iter = "0.1.32"
num-rational = { version = "0.1.32", default-features = false }
num-traits = "0.2.0"
lzw = "0.10.0"

[dependencies.gif]
version = "0.10.0"
optional = true

[dependencies.jpeg-decoder]
version = "0.1"
default-features = false
optional = true

[dependencies.png]
version = "0.12"
optional = true

[dependencies.scoped_threadpool]
version = "0.1"
optional = true

[dev-dependencies]
num-complex = "0.1.32"
glob = "0.2.10"
quickcheck = "0.6.2"

[features]
default = ["gif_codec", "jpeg", "ico", "png_codec", "pnm", "tga", "tiff", "webp", "bmp", "hdr", "dxt", "jpeg_rayon"]

gif_codec = ["gif"]
ico = ["bmp", "png_codec"]
jpeg = ["jpeg-decoder"]
png_codec = ["png"]
pnm = []
tga = []
tiff = []
webp = []
bmp = []
hdr = ["scoped_threadpool"]
dxt = []
jpeg_rayon = ["jpeg-decoder/rayon"]

benchmarks = []