safex11/Cargo.toml

23 lines
498 B
TOML
Raw Normal View History

2020-06-28 09:43:22 +00:00
[package]
2020-06-28 09:46:25 +00:00
name = "safex11"
2020-06-28 09:56:34 +00:00
version = "0.0.1"
description = "Safe, high-level x11 bindings"
2020-06-28 09:43:22 +00:00
license-file = "../LICENSE"
2020-06-28 09:56:34 +00:00
authors = ["Michael Zhang <iptq@protonmail.com>"]
edition = "2018"
documentation = "https://docs.rs/safex11"
readme = "README.md"
repository = "https://git.sr.ht/~iptq/safex11"
2020-06-28 09:43:22 +00:00
[features]
default = []
xlib = ["x11/xlib"]
xrender = ["x11/xrender"]
xinerama = ["x11/xlib", "x11/xinerama"]
[dependencies]
libc = "0.2"
x11 = { version = "2.18" }
thiserror = "1.0.20"
log = "0.4.8"