[package]
name = "imagefmt"
version = "1.0.0"
authors = ["Tero Hänninen"]
description = "Decoders for PNG, TGA, BMP, JPEG. Encoders for PNG, TGA. 8-bit only, with conversions."
license = "MIT"
include = ["src/*", "Cargo.toml", "README.md", "Makefile"]
repository = "https://github.com/lgvz/imagefmt"
documentation = "http://lgvz.github.io/imagefmt/imagefmt/"
[features]
default = ["png", "jpeg", "bmp", "tga"]
png = ["flate2"]
jpeg = []
bmp = []
tga = []
[dependencies.flate2]
version = "0.2"
optional = true