2016-04-24 22:32:24 -04:00
|
|
|
[package]
|
2017-09-21 23:27:49 -04:00
|
|
|
name = "rusty-keys"
|
2019-01-10 01:48:38 -05:00
|
|
|
version = "0.0.3"
|
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
|
|
|
|
2019-09-29 23:49:23 -04:00
|
|
|
edition = "2018"
|
|
|
|
|
2019-01-10 01:48:38 -05:00
|
|
|
include = [
|
|
|
|
"src/**",
|
|
|
|
"Cargo.toml",
|
|
|
|
"Cargo.lock",
|
|
|
|
"keymap.toml",
|
|
|
|
"LICENSE.md",
|
|
|
|
"README.md",
|
2017-09-22 00:41:51 -04:00
|
|
|
]
|
|
|
|
|
2016-04-24 22:32:24 -04:00
|
|
|
[dependencies]
|
2019-09-29 23:05:37 -04:00
|
|
|
getopts = "0.2.21"
|
|
|
|
toml = "0.5.3"
|
2019-09-30 22:55:16 -04:00
|
|
|
serde = { version = "1.0.101", features = ["derive"] }
|
2019-10-07 01:24:29 -04:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-10-07 01:59:43 -04:00
|
|
|
winapi = { version = "0.3", features = ["winuser", "wincon"] }
|
2019-10-07 01:24:29 -04:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
|
|
|
libc = "0.2.62"
|
|
|
|
nix = "0.15.0"
|
|
|
|
uinput-sys = "0.1.7"
|
2019-09-29 23:05:37 -04:00
|
|
|
inotify = { version = "0.7.0", default-features = false, features = [] }
|