30 lines
735 B
TOML
30 lines
735 B
TOML
[package]
|
|
name = "caesiumclt"
|
|
version = "1.0.0-beta.0"
|
|
authors = ["Matteo Paonessa <matteo.paonessa@gmail.com>"]
|
|
edition = "2021"
|
|
exclude = [
|
|
"tests/*",
|
|
".github/*",
|
|
".idea/*",
|
|
"samples/*"
|
|
]
|
|
readme = "README.md"
|
|
description = "A lossy/lossless image compression tool"
|
|
homepage = "https://github.com/Lymphatus/caesium-clt"
|
|
repository = "https://github.com/Lymphatus/caesium-clt"
|
|
|
|
[dependencies]
|
|
indicatif = { version = "0.17", features = ["rayon"] }
|
|
walkdir = "2.5"
|
|
infer = "0.19"
|
|
rayon = "1.10"
|
|
human_bytes = { version = "0.4", default-features = false }
|
|
kamadak-exif = "0.6"
|
|
imagesize = "0.13"
|
|
libcaesium = "0.17.2"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.14"
|
|
image = "0.25" |