| 1 | [package] |
| 2 | name = "tiny-xlib" |
| 3 | version = "0.2.4" |
| 4 | edition = "2021" |
| 5 | rust-version = "1.63" |
| 6 | authors = ["John Nunley <dev@notgull.net>" ] |
| 7 | license = "MIT OR Apache-2.0 OR Zlib" |
| 8 | description = "A tiny Xlib wrapper for Rust" |
| 9 | repository = "https://github.com/notgull/tiny-xlib" |
| 10 | documentation = "https://docs.rs/tiny-xlib" |
| 11 | homepage = "https://github.com/notgull/tiny-xlib" |
| 12 | |
| 13 | [features] |
| 14 | default = ["tracing" ] |
| 15 | dlopen = ["libloading" ] |
| 16 | |
| 17 | [dependencies] |
| 18 | as-raw-xcb-connection = "1.0.0" |
| 19 | ctor-lite = "0.1.0" |
| 20 | libloading = { version = "0.8.0" , optional = true } |
| 21 | tracing = { version = "0.1.37" , default-features = false, optional = true } |
| 22 | |
| 23 | [build-dependencies] |
| 24 | pkg-config = "0.3.27" |
| 25 | |
| 26 | [dev-dependencies] |
| 27 | tracing = "0.1.37" |
| 28 | tracing-subscriber = "0.3.17" |
| 29 | x11-dl = "2.21.0" |
| 30 | x11rb = { version = "0.13.0" , features = ["allow-unsafe-code" ] } |
| 31 | |
| 32 | [lints.rust] |
| 33 | unexpected_cfgs = { level = "warn" , check-cfg = ['cfg(coverage)' ] } |
| 34 | |