forked from LGFae/swww
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (38 loc) · 1.23 KB
/
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
[package]
name = "swww"
version = "0.5.0"
authors = ["Leonardo Gibrowski Faé <[email protected]>"]
edition = "2021"
[profile.release]
debug = 0
lto = true
opt-level = 3
codegen-units = 1
panic = "abort" # stack unwinding is mostly useless since the user won't be able to see it during normal operation
strip = true
[profile.bench]
debug = 1
strip = false
[dependencies]
smithay-client-toolkit = { version = "=0.16.0", default-features = false, features = ["calloop"] }
image = { version = "=0.24.4", default-features = false, features = [ "gif", "jpeg", "png", "pnm",
"tga", "tiff", "webp", "bmp", "farbfeld"]}
log = { version = "=0.4.17", features = ["max_level_debug", "release_max_level_info"] }
simplelog = "=0.12.0"
fork = "=0.1.20"
clap = { version = "=4.0.7", features = ["derive", "wrap_help", "env"] }
lzzzz = "=1.0.3"
serde = { version = "=1.0.145", features = [ "derive" ] }
bincode = "=1.3.3"
lazy_static = "=1.4.0"
fast_image_resize = "=1.0.0"
rand = "=0.8.5"
[dev-dependencies]
assert_cmd = "=2.0.4"
[build-dependencies]
clap = { version = "=4.0.7", features = ["derive", "env"] }
clap_complete = "=4.0.2"
serde = { version = "=1.0.145", features = [ "derive" ] }
[[test]]
name = "integration_tests"
harness = false