-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (58 loc) · 1.8 KB
/
Cargo.toml
File metadata and controls
64 lines (58 loc) · 1.8 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
[package]
name = "subtle-rs"
description = "subtle - the manual grid-tiling window manager"
version = "0.1.0"
authors = [
"Christoph Kappel <christoph@unexist.dev>"
]
license-file = "LICENSE"
homepage = "https://subtle.rs"
repository = "https://hg.unexist.dev/subtle-rs"
edition = "2024"
include = ["/src", "LICENSE"]
[dependencies]
env_logger = "0.11.10"
log = "0.4.29"
anyhow = "1.0.102"
clap = { version = "4.6.0", features = ["derive"] }
clap-config-file = "0.6.0"
serde = { version = "1.0.228", features = ["derive"] }
config = "0.15.22"
bitflags = "2.11.0"
x11rb = { version = "0.13.2", features = ["randr", "xinerama", "xinput", "xkb", "image"] }
x11-keysymdef = "0.2.0"
signal-hook = "0.4.4"
easy-min-max = "1.0.0"
regex = "1.12.3"
once_cell = "1.21.4"
veccell = "0.4.0"
exec = "0.3.1"
stdext = "0.3.3"
struct_iterable = "0.1.1"
hex_color = "3.0.0"
derive_builder = "0.20.2"
strum_macros = "0.28.0"
itertools = "0.14.0"
extism = { version = "1.21.0", optional = true }
chrono = { version = "0.4.44", optional = true }
lazy_static = "1.5.0"
[dev-dependencies]
proptest = "1.11.0"
[features]
default = ["plugins"]
plugins = ["extism", "chrono"]
[workspace.lints.rust]
unsafe_code = "deny"
[workspace.lints.clippy]
pedantic = { level = "deny", priority = 1 }
perf = { level = "warn", priority = 2 }
style = { level = "warn", priority = 3 }
complexity = { level = "warn", priority = 4 }
module_name_repetitions = { level = "allow", priority = 20 }
cast_possible_truncation = { level = "allow", priority = 20 }
cast_sign_loss = { level = "allow", priority = 20 }
cast_possible_wrap = { level = "allow", priority = 20 }
cast_precision_loss = { level = "allow", priority = 20 }
missing_errors_doc = { level = "allow", priority = 20 }
similar_names = { level = "allow", priority = 20 }
too_many_lines = { level = "allow", priority = 20 }