-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (44 loc) · 985 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "imgc"
version = "0.0.1"
edition = "2021"
authors = ["Duy NG <hi@tduyng.com>"]
description = "A CLI for converting images to the WebP format writtent in Rust"
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/imgc"
homepage = "https://github.com/tduyng/imgc-rs"
repository = "https://github.com/tduyng/imgc-rs"
keywords = ["CLI", "image", "conversion", "webp"]
readme = "README.md"
categories = [
"command-line-utilities",
"multimedia::images",
"multimedia::encoding",
]
include = [
"README.md",
"LICENSE_MIT",
"LICENSE_APACHE",
"Cargo.toml",
"/src/*.rs",
]
default-run = "imgc"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
glob = "0.3"
image = "0.25"
rayon = "1.10"
webp = "0.3"
[profile.dev]
opt-level = 1
debug = 1
[profile.release]
opt-level = 3
panic = "abort"
debug = false
lto = true
strip = true
[profile.dev.package."*"]
opt-level = 2
[badges]
maintenance = { status = "actively-developed" }