2021-10-23 17:18:52 +02:00
|
|
|
[package]
|
|
|
|
name = "libcaesium"
|
2022-01-30 13:22:04 +01:00
|
|
|
version = "0.7.0"
|
2021-10-23 17:18:52 +02:00
|
|
|
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]
|
2022-01-12 14:16:30 +01:00
|
|
|
mozjpeg-sys = "1.0.1"
|
2022-02-12 14:10:12 +01:00
|
|
|
oxipng = "5.0.1"
|
2021-10-23 17:18:52 +02:00
|
|
|
libc = "0.2.76"
|
|
|
|
gifsicle = "1.92.5"
|
2022-02-12 14:33:30 +01:00
|
|
|
webp = "0.2.1"
|
2022-02-12 14:10:12 +01:00
|
|
|
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"
|
2021-10-23 17:18:52 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-23 17:50:48 +01:00
|
|
|
dssim = "3.2.0"
|
2021-10-23 17:18:52 +02:00
|
|
|
kamadak-exif = "0.5.0"
|
|
|
|
|
|
|
|
[lib]
|
2022-02-22 15:00:14 +01:00
|
|
|
name = "caesium"
|
2021-10-23 17:18:52 +02:00
|
|
|
path = "src/lib.rs"
|
2022-01-24 16:21:05 +01:00
|
|
|
crate-type = ["lib", "cdylib"]
|
2021-10-23 17:18:52 +02:00
|
|
|
test = true
|
|
|
|
doctest = false
|
|
|
|
bench = false
|
|
|
|
doc = false
|