rusty-keys/Cargo.toml

33 lines
646 B
TOML
Raw Normal View History

2016-04-24 22:32:24 -04:00
[package]
2017-09-21 23:27:49 -04:00
name = "rusty-keys"
2017-11-06 23:22:47 -05:00
version = "0.0.2"
2016-04-24 22:32:24 -04:00
2017-09-21 23:27:49 -04:00
authors = ["moparisthebest <admin@moparisthebest.com>"]
2017-09-22 00:30:56 -04:00
license = "AGPL-3.0"
2016-04-24 22:32:24 -04:00
2017-09-21 23:27:49 -04:00
description = "Linux keyboard mapper"
repository = "https://code.moparisthebest.com/moparisthebest/rusty-keys"
keywords = ["linux", "input", "keyboard", "keymapper"]
2016-04-24 22:32:24 -04:00
2017-09-22 00:41:51 -04:00
exclude = [
"keymap.orig.toml",
]
2016-04-24 22:32:24 -04:00
[dependencies]
2017-09-21 23:27:49 -04:00
libc = "0.2"
nix = "0.5"
uinput-sys = "0.1"
getopts = "0.2.15"
toml = "0.4.5"
serde_derive = "1.0.11"
2017-09-21 23:27:49 -04:00
serde = "1.0.11"
2017-11-15 02:39:03 -05:00
inotify = "0.5.0"
2016-04-24 22:32:24 -04:00
[dependencies.libudev]
optional = true
version = "0.2"
[features]
default = ["udev"]
udev = ["libudev"]