1 | [package] |
2 | name = "tiny-xlib" |
3 | version = "0.2.2" |
4 | edition = "2021" |
5 | rust-version = "1.63" |
6 | authors = ["John Nunley <jtnunley01@gmail.com>" ] |
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 = "0.2.0" |
20 | libloading = { version = "0.8.0" , optional = true } |
21 | tracing = { version = "0.1.37" , default-features = false, optional = true } |
22 | |
23 | [dev-dependencies] |
24 | tracing = "0.1.37" |
25 | tracing-subscriber = "0.3.17" |
26 | x11-dl = "2.21.0" |
27 | x11rb = { version = "0.12.0" , features = ["allow-unsafe-code" ] } |
28 | |