libcaesium/Cargo.toml

53 lines
1008 B
TOML

[package]
name = "libcaesium"
version = "0.9.0"
authors = ["Matteo Paonessa <matteo.paonessa@gmail.com>"]
edition = "2021"
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.2"
oxipng = "5.0.1"
libc = "0.2"
gifsicle = "1.92.5"
webp = "0.2"
infer = "0.8"
image = { version = "0.24", default-features = false, features = ["jpeg", "png", "webp", "gif"] }
img-parts = "0.2"
bytes = "1.1"
lodepng = "3.7"
imagequant = "4.0.0"
[dev-dependencies]
dssim = "3.2.0"
kamadak-exif = "0.5.4"
[[bin]]
name = "main"
path = "src/main.rs"
[lib]
name = "caesium"
path = "src/lib.rs"
crate-type = ["lib", "cdylib"]
test = true
doctest = false
bench = false
doc = false