safex11/Cargo.toml

26 lines
567 B
TOML

[package]
name = "safex11"
version = "0.0.2"
description = "Safe, high-level x11 bindings"
license-file = "LICENSE"
authors = ["Michael Zhang <iptq@protonmail.com>"]
edition = "2018"
documentation = "https://docs.rs/safex11"
readme = "README.md"
repository = "https://git.sr.ht/~iptq/safex11"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
xlib = ["x11/xlib"]
xrender = ["x11/xrender"]
xinerama = ["x11/xlib", "x11/xinerama"]
xinput = ["x11/xinput"]
[dependencies]
libc = "0.2"
x11 = { version = "2.18" }
thiserror = "1.0.20"
log = "0.4.8"