forked from sminez/penrose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (45 loc) · 1.56 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
51
[package]
name = "penrose"
version = "0.2.0"
edition = "2018"
authors = ["sminez <[email protected]>"]
license = "MIT"
repository = "https://github.com/sminez/penrose"
documentation = "https://docs.rs/penrose"
readme = "README.md"
description = "A tiling window manager library inspired by dwm and xmonad"
include = [
"src/**/*",
"Cargo.toml",
"README.md"
]
keywords = [ "windowmanager", "window", "manager", "x11" ]
categories = [ "window manager" ]
[workspace]
members = [ "crates/*" ]
[features]
default = ["xcb", "xcb_draw"]
xcb_draw = ["cairo-rs", "cairo-sys-rs", "pango", "pangocairo"]
keysyms = ["penrose_keysyms"]
x11rb-xcb = ["x11rb", "x11rb/allow-unsafe-code"]
[dependencies]
penrose_keysyms = { version = "0.1.0", path = "crates/penrose_keysyms", optional = true }
penrose_proc = { version = "0.1.2", path = "crates/penrose_proc" }
bitflags = "1.2.1"
nix = "0.17.0"
strum = { version = "0.19.2", features = ["derive"] }
strum_macros = "0.19.2"
thiserror = "1.0"
tracing = { version = "0.1", features = ["attributes", "log"] }
cairo-rs = { version = "0.9.1", features = ["xcb"], optional = true }
cairo-sys-rs = { version = "0.10.0", optional = true }
pangocairo = { version = "0.10.0", optional = true }
pango = { version = "0.9.1", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
xcb = { version = "0.9.0", features = ["randr"], optional = true }
x11rb = { version = "0.8.0", features = ["randr"], optional = true }
[dev-dependencies]
paste = "1.0"
serde_json = "1.0"
simplelog = "0.8.0"
tracing-subscriber = "0.2"