From d3aeededdafc2758294014f253b06bef89ec0b9f Mon Sep 17 00:00:00 2001 From: moparisthebest Date: Thu, 10 Jan 2019 01:48:38 -0500 Subject: [PATCH] packaging updates in preparation for 0.0.3 --- .gitignore | 2 +- Cargo.lock | 36 +++++++++++++++++++++++++++++++++++- Cargo.toml | 19 ++++++++++++------- 3 files changed, 48 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index d913617..187b750 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ target - +.idea/ diff --git a/Cargo.lock b/Cargo.lock index 3922cbd..7b79f70 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3,11 +3,40 @@ name = "bitflags" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "bitflags" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures" +version = "0.1.25" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "getopts" version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "inotify" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "inotify-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.30 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "inotify-sys" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.30 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "libc" version = "0.2.30" @@ -52,9 +81,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "rusty-keys" -version = "0.0.2" +version = "0.0.3" dependencies = [ "getopts 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)", + "inotify 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "libc 0.2.30 (registry+https://github.com/rust-lang/crates.io-index)", "libudev 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "nix 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -130,7 +160,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [metadata] "checksum bitflags 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8dead7461c1127cf637931a1e50934eb6eee8bff2f74433ac7909e9afcee04a3" +"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" +"checksum futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)" = "49e7653e374fe0d0c12de4250f0bdb60680b8c80eed558c5c7538eec9c89e21b" "checksum getopts 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)" = "65922871abd2f101a2eb0eaebadc66668e54a87ad9c3dd82520b5f86ede5eff9" +"checksum inotify 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3ad0bfe014aafc0f4e177fbe66c5f2b59ba59f66f58b022aa1963bbe71ab4118" +"checksum inotify-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0" "checksum libc 0.2.30 (registry+https://github.com/rust-lang/crates.io-index)" = "2370ca07ec338939e356443dac2296f581453c35fe1e3a3ed06023c49435f915" "checksum libudev 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ea626d3bdf40a1c5aee3bcd4f40826970cae8d80a8fec934c82a63840094dcfe" "checksum libudev-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "249a1e347fa266dc3184ebc9b4dc57108a30feda16ec0b821e94b42be20b9355" diff --git a/Cargo.toml b/Cargo.toml index 44d7dc4..d7a3c36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusty-keys" -version = "0.0.2" +version = "0.0.3" authors = ["moparisthebest "] license = "AGPL-3.0" @@ -9,14 +9,19 @@ description = "Linux keyboard mapper" repository = "https://code.moparisthebest.com/moparisthebest/rusty-keys" keywords = ["linux", "input", "keyboard", "keymapper"] -exclude = [ - "keymap.orig.toml", +include = [ + "src/**", + "Cargo.toml", + "Cargo.lock", + "keymap.toml", + "LICENSE.md", + "README.md", ] [dependencies] -libc = "0.2" -nix = "0.5" -uinput-sys = "0.1" +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" @@ -25,7 +30,7 @@ inotify = "0.5.0" [dependencies.libudev] optional = true -version = "0.2" +version = "0.2.0" [features] default = ["udev"]