rusty-keys/Cargo.toml

48 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2016-04-24 22:32:24 -04:00
[package]
2017-09-21 23:27:49 -04:00
name = "rusty-keys"
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"
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]
getopts = "0.2.21"
toml = { version = "0.5.8", optional = true }
serde = { version = "1.0.130", features = ["derive"], optional = true }
2019-10-07 01:24:29 -04:00
2021-10-09 01:39:10 -04:00
[target.'cfg(target_os="macos")'.dependencies]
core-graphics = "0.22"
core-foundation-sys = "0.8"
#rustkit = "0.0.1"
libc = "0.2"
2019-10-07 01:24:29 -04:00
[target.'cfg(windows)'.dependencies]
2020-07-11 02:20:20 -04:00
winapi = { version = "0.3.9", features = ["winuser", "wincon"] }
2019-10-07 01:24:29 -04:00
lazy_static = "1.4.0"
[target.'cfg(target_os="linux")'.dependencies]
2021-09-24 00:10:02 -04:00
libc = "0.2.102"
nix = "0.22.1"
epoll = { version = "4.3.1", optional = true }
inotify = { version = "0.9.3", default-features = false, features = [], optional = true }
[features]
default = ["epoll_inotify", "toml_serde"]
toml_serde = ["toml", "serde"]
epoll_inotify = ["epoll", "inotify"]