wzrd

An ICCCM & EWMH compliant X11 reparenting, dynamic window manager, written in Rust
git clone git://git.deurzen.net/wzrd
Log | Files | Refs | LICENSE

Cargo.toml (857B)


      1 [package]
      2 name = "wzrd"
      3 version = "0.1.0"
      4 authors = ["deurzen <m.deurzen@tum.de>"]
      5 edition = "2018"
      6 license = "BSD3"
      7 repository = "https://github.com/deurzen/wzrd"
      8 documentation = "https://docs.rs/wzrd"
      9 readme = "README.md"
     10 default-run = "core"
     11 description = """
     12 An ICCCM & EWMH compliant X11 reparenting, tiling window manager, written in Rust
     13 """
     14 
     15 [profile.release]
     16 lto = true
     17 
     18 [lib]
     19 name = "winsys"
     20 path = "src/winsys/mod.rs"
     21 
     22 [[bin]]
     23 name = "core"
     24 path = "src/core/main.rs"
     25 
     26 [[bin]]
     27 name = "bar"
     28 path = "src/bar/main.rs"
     29 
     30 [[bin]]
     31 name = "client"
     32 path = "src/client/main.rs"
     33 
     34 [features]
     35 core = []
     36 bar = []
     37 client = []
     38 
     39 [dependencies]
     40 x11rb = { version = "0.8.0", features = ["cursor", "xinerama", "randr", "res"] }
     41 anyhow = "1.0.33"
     42 log = "0.4"
     43 simplelog = "0.8.0"
     44 nix = "0.19.0"
     45 strum = { version = "0.19", features = ["derive"] }
     46 strum_macros = "0.19"