-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 961 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "tiny-xlib"
version = "0.2.5"
edition = "2021"
rust-version = "1.70"
authors = ["John Nunley <dev@notgull.net>"]
license = "MIT OR Apache-2.0 OR Zlib"
description = "A tiny Xlib wrapper for Rust"
repository = "https://github.com/rust-windowing/tiny-xlib"
documentation = "https://docs.rs/tiny-xlib"
homepage = "https://github.com/rust-windowing/tiny-xlib"
[features]
default = ["tracing"]
dlopen = ["libloading"]
[dependencies]
as-raw-xcb-connection = "1.0.0"
ctor = { version = "0.10.0", default-features = false, features = ["std"] }
libloading = { version = "0.8.0", optional = true }
tracing = { version = "0.1.37", default-features = false, optional = true }
[build-dependencies]
pkg-config = "0.3.27"
[dev-dependencies]
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
x11-dl = "2.21.0"
x11rb = { version = "0.13.0", features = ["allow-unsafe-code"] }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] }