1[package]
2name = "tiny-xlib"
3version = "0.2.2"
4edition = "2021"
5rust-version = "1.63"
6authors = ["John Nunley <jtnunley01@gmail.com>"]
7license = "MIT OR Apache-2.0 OR Zlib"
8description = "A tiny Xlib wrapper for Rust"
9repository = "https://github.com/notgull/tiny-xlib"
10documentation = "https://docs.rs/tiny-xlib"
11homepage = "https://github.com/notgull/tiny-xlib"
12
13[features]
14default = ["tracing"]
15dlopen = ["libloading"]
16
17[dependencies]
18as-raw-xcb-connection = "1.0.0"
19ctor = "0.2.0"
20libloading = { version = "0.8.0", optional = true }
21tracing = { version = "0.1.37", default-features = false, optional = true }
22
23[dev-dependencies]
24tracing = "0.1.37"
25tracing-subscriber = "0.3.17"
26x11-dl = "2.21.0"
27x11rb = { version = "0.12.0", features = ["allow-unsafe-code"] }
28