leanshot/x11/Cargo.toml

19 lines
361 B
TOML
Raw Normal View History

2020-06-26 18:51:31 +00:00
[package]
name = "leanshot_x11"
version = "0.2.0"
description = "x11 bindings"
license-file = "../LICENSE"
authors = ["Michael Zhang <failed.down@gmail.com>"]
[features]
default = []
xlib = ["x11/xlib"]
xrender = ["x11/xrender"]
2020-06-26 19:53:06 +00:00
xinerama = ["x11/xlib", "x11/xinerama"]
2020-06-26 18:51:31 +00:00
[dependencies]
libc = "0.2"
x11 = { version = "2.18" }
thiserror = "1.0.20"
2020-06-27 02:14:32 +00:00
log = "0.4.8"