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
|
[package]
name = "xkb"
version = "0.3.0"
edition = "2021"
authors = ["meh. <meh@schizofreni.co>"]
license = "WTFPL"
description = "Rusty wrapper around libxkbcommon."
repository = "https://github.com/meh/rust-xkb"
keywords = ["xkb", "xkbcommon", "x11", "xcb"]
[dependencies]
bitflags = "1"
libc = "0.2"
ffi = { package = "xkbcommon-sys", version = "1.4.1" }
[dependencies.xcb]
version = "1"
features = ["xkb"]
optional = true
[features]
static = ["ffi/static"]
x11 = ["ffi/x11", "xcb"]
|