rusty-keys/Cargo.toml

38 lines
735 B
TOML

[package]
name = "rusty-keys"
version = "0.0.3"
authors = ["moparisthebest <admin@moparisthebest.com>"]
license = "AGPL-3.0"
description = "Linux keyboard mapper"
repository = "https://code.moparisthebest.com/moparisthebest/rusty-keys"
keywords = ["linux", "input", "keyboard", "keymapper"]
include = [
"src/**",
"Cargo.toml",
"Cargo.lock",
"keymap.toml",
"LICENSE.md",
"README.md",
]
[dependencies]
libc = "0.2.30"
nix = "0.5.1"
uinput-sys = "0.1.3"
getopts = "0.2.15"
toml = "0.4.5"
serde_derive = "1.0.11"
serde = "1.0.11"
inotify = "0.5.0"
[dependencies.libudev]
optional = true
version = "0.2.0"
[features]
default = ["udev"]
udev = ["libudev"]