libcaesium/Cargo.toml

53 lines
1010 B
TOML
Raw Normal View History

2021-10-23 17:18:52 +02:00
[package]
name = "libcaesium"
2022-08-14 18:48:44 +02:00
version = "0.9.1"
2021-10-23 17:18:52 +02:00
authors = ["Matteo Paonessa <matteo.paonessa@gmail.com>"]
2022-04-11 09:58:52 +02:00
edition = "2021"
2021-10-23 17:18:52 +02:00
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-06-06 16:15:55 +02:00
mozjpeg-sys = "1.0.2"
2022-02-12 14:10:12 +01:00
oxipng = "5.0.1"
2022-04-13 20:53:36 +02:00
libc = "0.2"
2021-10-23 17:18:52 +02:00
gifsicle = "1.92.5"
2022-04-13 20:53:36 +02:00
webp = "0.2"
2022-06-06 16:15:55 +02:00
infer = "0.8"
2022-08-14 18:48:44 +02:00
image = { version = "0.24.3", default-features = false, features = ["jpeg", "png", "webp", "gif"] }
2022-04-13 20:53:36 +02:00
img-parts = "0.2"
bytes = "1.1"
2022-07-30 16:01:45 +02:00
lodepng = "3.7"
2022-07-29 12:19:00 +02:00
imagequant = "4.0.0"
2021-10-23 17:18:52 +02:00
[dev-dependencies]
2022-02-23 17:50:48 +01:00
dssim = "3.2.0"
2022-04-11 09:58:52 +02:00
kamadak-exif = "0.5.4"
2021-10-23 17:18:52 +02:00
2022-06-23 13:14:15 +02:00
[[bin]]
name = "main"
path = "src/main.rs"
2021-10-23 17:18:52 +02:00
[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