-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (42 loc) · 1011 Bytes
/
Copy pathCargo.toml
File metadata and controls
47 lines (42 loc) · 1011 Bytes
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
[package]
name = "cim-cli"
version = "0.2.0-alpha"
edition = "2024"
license = "MIT"
authors = ["feraxhp <feraxhp+gh@gmail.com>"]
description = "A simple CLI tool to convert between image formats"
repository = "https://github.com/feraxhp/cim"
keywords = [
"convert",
"image",
"cli",
]
[dependencies]
rand = "0.9.2"
webp = "0.3.0"
image = "0.25.2"
resvg = "0.45.0"
futures = "0.3.31"
tiny-skia = "0.11.4"
indicatif = "0.18.0"
color-print = "0.3.7"
path-absolutize = "3.1.1"
clap = { version = "4.5.60", features = ["cargo"] }
tokio = { version = "1.47.1", features = ["full", "rt", "rt-multi-thread", "macros"] }
[[bin]]
name = "cim"
path = "src/main.rs"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[package.metadata.generate-rpm]
name = "cim"
url="https://github.com/feraxhp/cim"
assets = [
{ source = "target/release/cim", dest = "/usr/bin/cim", mode = "755" },
]
[package.metadata.deb]
name = "cim"
depends="$auto"
assets = [
["target/release/cim", "usr/bin/", "755"],
]