image 0.23.6

Imaging library written in Rust. Provides basic filters and decoders for the most common image formats.
Documentation
[[bench]]
harness = false
name = "decode"
path = "benches/decode.rs"

[[bench]]
harness = false
name = "encode"
path = "benches/encode.rs"
[dependencies.bytemuck]
version = "1"

[dependencies.byteorder]
version = "1.3.2"

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

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

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

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

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

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

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

[dependencies.tiff]
optional = true
version = "0.5.0"
[dev-dependencies.crc32fast]
version = "1.2.0"

[dev-dependencies.criterion]
version = "0.3"

[dev-dependencies.glob]
version = "0.3"

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

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

[features]
benchmarks = []
bmp = []
dds = ["dxt"]
default = ["gif", "jpeg", "ico", "png", "pnm", "tga", "tiff", "webp", "bmp", "hdr", "dxt", "dds", "farbfeld", "jpeg_rayon"]
dxt = []
farbfeld = []
hdr = ["scoped_threadpool"]
ico = ["bmp", "png"]
jpeg_rayon = ["jpeg/rayon"]
pnm = []
tga = []
webp = []

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

[package]
authors = ["The image-rs Developers"]
categories = ["multimedia::images", "multimedia::encoding"]
description = "Imaging library written in Rust. Provides basic filters and decoders for the most common image formats."
documentation = "https://docs.rs/image"
edition = "2018"
exclude = ["src/png/testdata/*", "examples/*", "tests/*"]
homepage = "https://github.com/image-rs/image"
license = "MIT"
name = "image"
readme = "README.md"
repository = "https://github.com/image-rs/image"
version = "0.23.6"