-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 1.06 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (31 loc) · 1.06 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
[package]
name = "nlock"
version = "0.1.7-pre"
edition = "2024"
[dependencies]
anyhow = "1.0.100"
atomic_enum = "0.3.0"
cairo-rs = { version = "0.21.5", features = ["png"] }
chrono = "0.4.42"
clap = { version = "4.5.53", features = ["derive"] }
clap_complete = "4.5.64"
config = { version = "0.15.18", features = ["toml"], default-features = false }
dirs = "6.0.0"
gdk-pixbuf = { version = "0.21.5", optional = true }
nix = { version = "0.31.3", features = ["event", "fs", "mman", "process", "signal", "time", "user"] }
num_enum = "0.7.6"
pango = { version = "0.21.5", optional = true }
pangocairo = { version = "0.21.5", optional = true }
serde = { version = "1.0.228", features = ["derive"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
wayland-client = "0.31.11"
wayland-protocols = { version = "0.32.9", features = ["client", "staging"] }
xkbcommon = "0.9.0"
zeroize = "1.8.2"
[features]
default = ["gdk-pixbuf", "pango"]
gdk-pixbuf = ["dep:gdk-pixbuf"]
pango = ["dep:pango", "dep:pangocairo"]
[build-dependencies]
time = { version = "0.3.47", features = ["formatting"] }