-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 801 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 801 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
[package]
name = "currust"
version = "1.3.4"
edition = "2024"
description = "A tool to convert Windows (CUR/ANI) cursor themes to Linux (Xcursor) cursor themes."
authors = ["hachispin"]
license = "MIT"
repository = "https://github.com/hachispin/currust"
keywords = ["cursor-converter", "xcursor", "ani", "cursor-theme", "scaling"]
categories = ["command-line-utilities", "parser-implementations"]
readme = "README.md"
[dependencies]
anyhow = "1.0.100"
binrw = "0.15.0"
bytemuck = "1.25.0"
clap = { version = "4.5.53", features = ["derive"] }
configparser = "3.1.0"
fast_image_resize = { version = "6.0.0", features = ["rayon"] }
ico = "0.5.0"
rayon = "1.11.0"
[dev-dependencies]
libc = "0.2.180"
tempfile = "3.24.0"
x11 = "2.21.0"
[profile.release]
lto = "fat"
[profile.dist]
inherits = "release"