-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (39 loc) · 857 Bytes
/
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
[package]
name = "wzrd"
version = "0.1.0"
authors = ["deurzen <m.deurzen@tum.de>"]
edition = "2018"
license = "BSD3"
repository = "https://github.com/deurzen/wzrd"
documentation = "https://docs.rs/wzrd"
readme = "README.md"
default-run = "core"
description = """
An ICCCM & EWMH compliant X11 reparenting, tiling window manager, written in Rust
"""
[profile.release]
lto = true
[lib]
name = "winsys"
path = "src/winsys/mod.rs"
[[bin]]
name = "core"
path = "src/core/main.rs"
[[bin]]
name = "bar"
path = "src/bar/main.rs"
[[bin]]
name = "client"
path = "src/client/main.rs"
[features]
core = []
bar = []
client = []
[dependencies]
x11rb = { version = "0.8.0", features = ["cursor", "xinerama", "randr", "res"] }
anyhow = "1.0.33"
log = "0.4"
simplelog = "0.8.0"
nix = "0.19.0"
strum = { version = "0.19", features = ["derive"] }
strum_macros = "0.19"