xremap/Cargo.toml

32 lines
856 B
TOML
Raw Normal View History

2021-12-12 07:16:16 +00:00
[package]
name = "xremap"
2022-06-22 04:37:06 +00:00
version = "0.4.4"
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]
anyhow = "1.0.59"
clap = { version = "3.2.8", features = ["derive"] }
clap_complete = "3.2.3"
derive-where = "1.0.0"
2021-12-22 15:37:15 +00:00
env_logger = "0.9.0"
evdev = "0.11.4"
2021-12-30 04:44:31 +00:00
indoc = "1.0"
2021-12-19 21:53:16 +00:00
lazy_static = "1.4.0"
log = "0.4.17"
nix = "0.24.2"
2021-12-17 18:05:39 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = { version = "2.0", features = ["chrono"] }
2021-12-17 18:05:39 +00:00
serde_yaml = "0.8"
2022-06-22 05:23:50 +00:00
swayipc = { version = "3.0.0", optional = true }
x11_rs = { package = "x11", version = "2.19.1", features = ["xlib"], optional = true }
zbus = { version = "1.9.2", optional = true }
2021-12-21 08:37:21 +00:00
[features]
gnome = ["zbus"]
sway = ["swayipc"]
x11 = ["x11_rs"]