forked from sminez/penrose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (46 loc) · 1.41 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
52
[package]
name = "penrose"
version = "0.3.1"
edition = "2021"
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/penrose_ui",
"crates/penrose_keysyms"
]
[features]
default = ["x11rb-xcb", "keysyms"]
keysyms = ["penrose_keysyms"]
x11rb-xcb = ["x11rb", "x11rb/allow-unsafe-code"]
[dependencies]
penrose_keysyms = { version = "0.1.1", path = "crates/penrose_keysyms", optional = true }
# penrose_proc = { version = "0.1.3", path = "crates/penrose_proc" }
bitflags = "1.3"
nix = "0.25"
strum = { version = "0.24", features = ["derive"] }
strum_macros = "0.24"
thiserror = "1.0"
tracing = { version = "0.1", features = ["attributes", "log"] }
serde = { version = "1.0", features = ["derive"], optional = true }
x11rb = { version = "0.11", features = ["randr"], optional = true }
anymap = "0.12.1"
[dev-dependencies]
paste = "1.0.9"
penrose_ui = { path = "crates/penrose_ui" }
serde_json = "1.0.86"
simple_test_case = "1.1.0"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }