-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (62 loc) · 1.84 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (62 loc) · 1.84 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "timewall"
description = "All-in-one tool for Apple dynamic HEIF wallpapers on GNU/Linux"
version = "2.1.0"
edition = "2021"
authors = ["Bazyli Cyran <bazyli@cyran.dev>"]
categories = ["command-line-utilities", "multimedia::images"]
keywords = ["wallpaper", "dynamic-wallpaper", "heif"]
homepage = "https://github.com/bcyran/timewall"
repository = "https://github.com/bcyran/timewall.git"
readme = "README.md"
license = "MIT"
build = "build.rs"
[dependencies]
anyhow = "1.0.102"
async-io = "2.6.0"
base64 = "0.22.1"
chrono = "0.4.44"
clap = { version = "4.6.1", features = ["derive"] }
clap-verbosity-flag = "3.0.4"
directories = "6.0.0"
env_logger = "0.11.6"
futures-lite = "2.6.1"
itertools = "0.15.0"
libheif-rs = { version = "2.7.0", default-features = false, features = ["v1_19"] }
log = "0.4.29"
nix = { version = "0.31.2", default-features = false, features = ["signal"] }
num_cpus = "1.17.0"
ordered-float = { version = "5.3.0", features = ["serde"] }
plist = "1.9.0"
png = "0.18.1"
seahash = "4.1.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
signal-hook = "0.4.4"
sun = "0.3.1"
threadpool = "1.8.1"
toml = "1.1.2"
wallpape-rs = "2.0.0"
xml-rs = "1.0.0"
zbus = "5.15.0"
[dev-dependencies]
assert_cmd = "2.2.0"
assert_fs = "1.1.3"
predicates = "3.1.4"
rstest = "0.17.0"
[lints.rust]
warnings = "deny"
[lints.clippy]
complexity = { level = "deny", priority = -1 }
correctness = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
style = { level = "deny", priority = -1 }
suspicious = { level = "deny", priority = -1 }
module_name_repetitions = "allow"
option_if_let_else = "allow"
[build-dependencies]
clap = { version = "4.6.1", features = ["derive"] }
clap-verbosity-flag = "3.0.4"
clap_complete = "4.6.5"