Skip to content

Commit

Permalink
2.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
shiro committed Dec 7, 2023
1 parent 572b55f commit 050e2d8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "map2"
version = "2.0.8"
version = "2.0.9"
authors = ["shiro <[email protected]>"]
edition = "2018"

Expand Down Expand Up @@ -70,4 +70,4 @@ path = "src/man/man.rs"
name = "integration-tests"
path = "examples/tests/_setup_integration_tests/setup_integration_tests.rs"
harness = false
required-features = ["integration"]
required-features = ["integration"]
6 changes: 3 additions & 3 deletions src/key_defs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ pub static ALL_KEYS: &'static [evdev_rs::enums::EV_KEY] = &[
KEY_KBD_LCD_MENU3,
KEY_KBD_LCD_MENU4,
KEY_KBD_LCD_MENU5,
KEY_MAX,
// KEY_MAX,
];

pub static ALL_BUTTONS: &'static [evdev_rs::enums::EV_KEY] = &[
Expand Down Expand Up @@ -621,7 +621,7 @@ pub static ALL_REL: &'static [evdev_rs::enums::EV_REL] = &[
REL_RESERVED,
REL_WHEEL_HI_RES,
REL_HWHEEL_HI_RES,
REL_MAX,
// REL_MAX,
];

pub static ALL_ABS: &'static [evdev_rs::enums::EV_ABS] = &[
Expand Down Expand Up @@ -667,7 +667,7 @@ pub static ALL_ABS: &'static [evdev_rs::enums::EV_ABS] = &[
ABS_MT_DISTANCE,
ABS_MT_TOOL_X,
ABS_MT_TOOL_Y,
ABS_MAX,
// ABS_MAX,
];

lazy_static! {
Expand Down
2 changes: 1 addition & 1 deletion src/writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,4 @@ impl Drop for Writer {
let _ = self.exit_tx.send(());
let _ = self.ev_tx.send((0, InputEvent::Raw(SYN_REPORT.clone())));
}
}
}

0 comments on commit 050e2d8

Please sign in to comment.