xremap/Cargo.toml

33 lines
834 B
TOML
Raw Normal View History

2021-12-12 07:16:16 +00:00
[package]
name = "xremap"
2022-12-06 04:46:20 +00:00
version = "0.7.10"
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.66"
clap = { version = "3.2.23", features = ["derive"] }
clap_complete = "3.2.5"
derive-where = "1.0.0"
env_logger = "0.9.1"
evdev = "0.12.0"
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.25.0"
2022-08-08 11:55:08 +00:00
regex = "1.6.0"
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"] }
serde_yaml = "0.9"
swayipc = { version = "3.0.1", optional = true }
x11rb = { version = "0.11.0", optional = true }
zbus = { version = "1.9.2", optional = true }
2021-12-21 08:37:21 +00:00
[features]
gnome = ["zbus"]
sway = ["swayipc"]
2022-08-11 06:43:07 +00:00
x11 = ["x11rb"]