[package] name = "rusty-keys" version = "0.0.3" authors = ["moparisthebest "] license = "AGPL-3.0" description = "Linux keyboard mapper" repository = "https://code.moparisthebest.com/moparisthebest/rusty-keys" keywords = ["linux", "input", "keyboard", "keymapper"] edition = "2018" include = [ "src/**", "Cargo.toml", "Cargo.lock", "keymap.toml", "LICENSE.md", "README.md", ] [dependencies] getopts = "0.2.21" toml = "0.5.6" serde = { version = "1.0.114", features = ["derive"] } [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.9", features = ["winuser", "wincon"] } lazy_static = "1.4.0" [target.'cfg(target_os="linux")'.dependencies] libc = "0.2.72" nix = "0.17.0" inotify = { version = "0.8.3", default-features = false, features = [] }