1[package]
2name = "tiny-xlib"
3version = "0.2.4"
4edition = "2021"
5rust-version = "1.63"
6authors = ["John Nunley <dev@notgull.net>"]
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-lite = "0.1.0"
20libloading = { version = "0.8.0", optional = true }
21tracing = { version = "0.1.37", default-features = false, optional = true }
22
23[build-dependencies]
24pkg-config = "0.3.27"
25
26[dev-dependencies]
27tracing = "0.1.37"
28tracing-subscriber = "0.3.17"
29x11-dl = "2.21.0"
30x11rb = { version = "0.13.0", features = ["allow-unsafe-code"] }
31
32[lints.rust]
33unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] }
34