xremap/Cargo.toml

29 lines
598 B
TOML
Raw Normal View History

2021-12-12 07:16:16 +00:00
[package]
name = "xremap"
2021-12-29 06:47:39 +00:00
version = "0.1.5"
2021-12-12 07:16:16 +00:00
edition = "2021"
2021-12-23 04:19:25 +00:00
description = "Dynamic key remapp for X and Wayland"
license = "MIT"
2021-12-12 07:16:16 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-12-22 15:37:15 +00:00
env_logger = "0.9.0"
2021-12-13 04:47:04 +00:00
evdev = "0.11.3"
2021-12-18 08:38:58 +00:00
getopts = "0.2"
2021-12-30 04:44:31 +00:00
indoc = "1.0"
2021-12-19 21:53:16 +00:00
lazy_static = "1.4.0"
2021-12-22 15:37:15 +00:00
log = "0.4.14"
2021-12-17 05:59:59 +00:00
nix = "0.23.1"
2021-12-17 18:05:39 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2021-12-17 18:05:39 +00:00
serde_yaml = "0.8"
swayipc = "2.7.2"
2021-12-21 08:37:21 +00:00
x11_rs = { package = "x11", version = "2.19.1", features = ["xlib"] }
zbus = "1.9.2"
2021-12-21 08:37:21 +00:00
[features]
gnome = []
sway = []
2021-12-21 08:37:21 +00:00
x11 = []