forked from LGFae/swww
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (36 loc) · 895 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
[workspace]
members = ["daemon"]
default-members = [".", "daemon"]
[package]
name = "swww"
version = "0.9.4"
authors = ["Leonardo Gibrowski Faé <[email protected]>"]
edition = "2021"
rust-version = "1.74"
# Enable some optimizations in debug mode. Otherwise, it is a pain to test it
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies, but not for our code:
[profile.dev.package."*"]
opt-level = 3
[profile.release]
debug = 0
lto = true
opt-level = 3
codegen-units = 1
strip = true
[profile.bench]
lto = "thin"
debug = 1
strip = false
[dependencies]
image = "0.25"
fast_image_resize = "3.0"
clap = { version = "4.5", features = ["derive", "wrap_help", "env"] }
rand = "0.8"
utils = { version = "0.9.4", path = "utils" }
[dev-dependencies]
assert_cmd = "2.0"
[build-dependencies]
clap = { version = "4.5", features = ["derive", "env"] }
clap_complete = "4.5"