libcaesium/Cargo.toml

48 lines
960 B
TOML

[package]
name = "libcaesium"
version = "0.7.0"
authors = ["Matteo Paonessa <matteo.paonessa@gmail.com>"]
edition = "2018"
categories = ["multimedia::images"]
keywords = [
"compression",
"library",
"jpeg",
"png",
"gif",
"webp"
]
description = "A lossy/lossless image compression library."
readme = "README.md"
exclude = [
"tests/*",
]
homepage = "https://github.com/Lymphatus/libcaesium"
repository = "https://github.com/Lymphatus/libcaesium"
license = "Apache-2.0"
[dependencies]
mozjpeg-sys = "1.0.1"
oxipng = "5.0.1"
libc = "0.2.76"
gifsicle = "1.92.5"
webp = "0.2.1"
infer = "0.6.0"
image = { version = "0.24", default-features = false, features = ["jpeg", "png", "webp", "gif"] }
img-parts = "0.2.3"
bytes = "1.1.0"
[dev-dependencies]
dssim = "3.1.2"
kamadak-exif = "0.5.0"
lodepng = "=3.5.2"
[lib]
name = "libcaesium"
path = "src/lib.rs"
crate-type = ["lib", "cdylib"]
test = true
doctest = false
bench = false
doc = false