xremap/Cargo.toml

32 lines
863 B
TOML
Raw Normal View History

2021-12-12 07:16:16 +00:00
[package]
name = "xremap"
2022-02-23 04:31:22 +00:00
version = "0.3.0"
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]
2022-02-22 06:39:23 +00:00
anyhow = "1.0.53"
clap = { version = "3.0.14", features = ["derive"] }
2022-02-16 09:07:36 +00:00
clap_complete = "3.0.6"
2022-02-22 06:39:23 +00:00
derive-where = "1.0.0-rc.2"
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-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"
serde_with = { version = "1.11", features = ["chrono"] }
2021-12-17 18:05:39 +00:00
serde_yaml = "0.8"
swayipc = { version = "2.7.2", 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"]