2021-12-12 07:16:16 +00:00
|
|
|
[package]
|
|
|
|
name = "xremap"
|
2022-02-09 18:11:04 +00:00
|
|
|
version = "0.2.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"] }
|
2021-12-22 04:39:30 +00:00
|
|
|
serde_json = "1.0"
|
2021-12-30 06:44:10 +00:00
|
|
|
serde_with = { version = "1.11", features = ["chrono"] }
|
2021-12-17 18:05:39 +00:00
|
|
|
serde_yaml = "0.8"
|
2022-01-31 07:13:47 +00:00
|
|
|
zbus = { version = "1.9.2", optional = true }
|
|
|
|
x11_rs = { package = "x11", version = "2.19.1", features = ["xlib"], optional = true }
|
|
|
|
swayipc = { version = "2.7.2", optional = true }
|
2021-12-21 08:37:21 +00:00
|
|
|
|
|
|
|
[features]
|
2022-01-31 07:13:47 +00:00
|
|
|
gnome = ["zbus"]
|
|
|
|
sway = ["swayipc"]
|
|
|
|
x11 = ["x11_rs"]
|