image 0.19.0

Imaging library written in Rust. Provides basic filters and decoders for the most common image formats.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

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

[lib]
name = "image"
path = "./src/lib.rs"
[dependencies.byteorder]
version = "1.2.1"

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

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

[dependencies.lzw]
version = "0.10.0"

[dependencies.num-derive]
version = "0.2.0"

[dependencies.num-iter]
version = "0.1.32"

[dependencies.num-rational]
version = "0.1.32"
default-features = false

[dependencies.num-traits]
version = "0.2.0"

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

[dependencies.scoped_threadpool]
version = "0.1"
optional = true
[dev-dependencies.glob]
version = "0.2.10"

[dev-dependencies.num-complex]
version = "0.1.32"

[dev-dependencies.quickcheck]
version = "0.6.2"

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