safex11/Cargo.toml

33 lines
730 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"
2023-08-20 09:54:24 +00:00
version = "0.0.5"
2020-06-28 09:56:34 +00:00
description = "Safe, high-level x11 bindings"
2020-06-28 09:57:42 +00:00
license-file = "LICENSE"
2023-08-20 09:53:05 +00:00
authors = ["Michael Zhang <mail@mzhang.io>"]
edition = "2021"
2020-06-28 09:56:34 +00:00
documentation = "https://docs.rs/safex11"
readme = "README.md"
2023-08-20 09:53:05 +00:00
repository = "https://git.mzhang.io/michael/safex11"
2020-06-28 09:43:22 +00:00
2020-06-28 10:00:57 +00:00
[package.metadata.docs.rs]
all-features = true
2020-06-28 09:43:22 +00:00
[features]
2020-06-29 05:22:13 +00:00
default = ["xlib"]
2020-06-30 07:19:48 +00:00
glx = ["x11/glx", "xlib", "gl_generator"]
2020-06-28 09:43:22 +00:00
xlib = ["x11/xlib"]
xrender = ["x11/xrender"]
2020-06-29 05:22:13 +00:00
xinerama = ["x11/xinerama", "xlib"]
2020-06-28 19:50:29 +00:00
xinput = ["x11/xinput"]
2020-06-28 09:43:22 +00:00
[dependencies]
libc = "0.2"
2023-08-20 09:50:59 +00:00
x11 = { version = "2.21" }
thiserror = "1.0.47"
log = "0.4.20"
bitflags = "2.4.0"
derivative = "2.2.0"
2020-06-30 07:19:48 +00:00
[build-dependencies]
gl_generator = { version = "0.14.0", optional = true }