-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
24 lines (22 loc) · 946 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "dipc"
version = "1.0.0"
edition = "2021"
description = "Convert your favorite images and wallpapers with your favorite color palettes/themes"
homepage = "https://github.com/doprz/dipc"
repository = "https://github.com/doprz/dipc"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["cli", "graphics", "utility", "image", "tool"]
categories = ["command-line-interface", "command-line-utilities", "graphics", "multimedia::images", "rendering"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.2", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
image = { version = "0.24", features = ["libwebp", "rgb"] }
deltae = "0.3"
lab = "0.11"
owo-colors = { version = "3.5", features = ["supports-colors"] }
supports-color = "2.0"
rayon = "1.7"
indicatif = { version = "0.17.3", features = ["rayon"] }