File: Cargo.toml.orig

package info (click to toggle)
rust-xkb 0.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 516 kB
  • sloc: makefile: 4
file content (25 lines) | stat: -rw-r--r-- 511 bytes parent folder | download
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"]