forked from leftwm/leftwm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (45 loc) · 1.04 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
45
46
47
48
49
50
[package]
name = "leftwm"
version = "0.2.7"
authors = ["Lex Childs <[email protected]>"]
description = "A window manager for Adventurers"
edition = "2018"
keywords = ["wm", "window", "manager"]
categories = ["window manager"]
license = "MIT"
repository = "https://github.com/leftwm/leftwm"
readme = "README.md"
[lib]
name = "leftwm"
path = "src/lib.rs"
[dependencies]
signal-hook = "0.3.4"
nix = "0.19.1"
x11-dl = "2.18.4"
xdg = "2.2.0"
toml = "0.5.5"
serde = "1.0.104"
serde_derive = "1.0.104"
serde_json = "1.0.44"
log = "0.4.8"
dirs-next = "2.0.0"
tokio = { version = "1", features = ["full"] }
clap = "2.33.0"
liquid = "0.21.5"
chrono = "0.4.10"
futures = "0.3"
libc = "0.2"
slog = "2.5.2"
slog-stdlog = "4.0.0"
slog-scope = "4.3.0"
slog-envlogger = "2.2.0"
slog-async = "2.4.0"
slog-journald = { version = "2.1.1", optional = true }
slog-term = { version = "2.5.0", optional = true }
[dev-dependencies]
tempfile = "3"
[features]
default = ["slow-dm-fix", "slog-term"]
journald = ["slog-journald", "slow-dm-fix"]
# Sleep on restart
slow-dm-fix = []