mirror of
https://github.com/k0kubun/xremap
synced 2024-11-15 18:12:50 +00:00
be51386e42
This reverts commit c063d065c3
.
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "xremap"
|
|
version = "0.8.11"
|
|
edition = "2021"
|
|
description = "Dynamic key remapp for X and Wayland"
|
|
license = "MIT"
|
|
repository = "https://github.com/k0kubun/xremap"
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
clap = { version = "4.3.19", features = ["derive"] }
|
|
clap_complete = "4.3.2"
|
|
derive-where = "1.2.5"
|
|
env_logger = "0.10.0"
|
|
evdev = "0.12.1"
|
|
fork = "0.1"
|
|
indoc = "2.0"
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.19"
|
|
nix = "0.26.2"
|
|
regex = "1.9.6"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_with = { version = "3.3", features = ["chrono"] }
|
|
serde_yaml = "0.9"
|
|
swayipc = { version = "3.0.1", optional = true }
|
|
wayland-client = { version = "0.30", optional = true }
|
|
wayland-protocols-wlr = { version = "0.1", features = ["client"], optional = true }
|
|
x11rb = { version = "0.12.0", optional = true }
|
|
zbus = { version = "1.9.2", optional = true }
|
|
hyprland = { version = "0.3.12", optional = true }
|
|
|
|
[features]
|
|
gnome = ["zbus"]
|
|
sway = ["swayipc"]
|
|
x11 = ["x11rb"]
|
|
hypr = ["hyprland"]
|
|
kde = ["zbus"]
|
|
wlroots = ["wayland-client", "wayland-protocols-wlr"]
|