diff --git a/Cargo.lock b/Cargo.lock index 5ff1a53..d10c2e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1240,7 +1240,7 @@ dependencies = [ [[package]] name = "input-event" -version = "0.1.0" +version = "0.2.0" dependencies = [ "futures-core", "log", diff --git a/Cargo.toml b/Cargo.toml index 1286ba7..14323d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ strip = true lto = "fat" [dependencies] -input-event = { path = "input-event", version = "0.1.0" } +input-event = { path = "input-event", version = "0.2.0" } input-emulation = { path = "input-emulation", version = "0.1.0", default-features = false } input-capture = { path = "input-capture", version = "0.1.0", default-features = false } diff --git a/input-capture/Cargo.toml b/input-capture/Cargo.toml index 2a43bc7..e078d0b 100644 --- a/input-capture/Cargo.toml +++ b/input-capture/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/ferdinandschober/lan-mouse" futures = "0.3.28" futures-core = "0.3.30" log = "0.4.22" -input-event = { path = "../input-event", version = "0.1.0" } +input-event = { path = "../input-event", version = "0.2.0" } memmap = "0.7" tempfile = "3.8" thiserror = "1.0.61" diff --git a/input-emulation/Cargo.toml b/input-emulation/Cargo.toml index 73a7968..4464482 100644 --- a/input-emulation/Cargo.toml +++ b/input-emulation/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/ferdinandschober/lan-mouse" async-trait = "0.1.80" futures = "0.3.28" log = "0.4.22" -input-event = { path = "../input-event", version = "0.1.0" } +input-event = { path = "../input-event", version = "0.2.0" } thiserror = "1.0.61" tokio = { version = "1.32.0", features = [ "io-util", diff --git a/input-event/Cargo.toml b/input-event/Cargo.toml index c392c6a..6d9b0e7 100644 --- a/input-event/Cargo.toml +++ b/input-event/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "input-event" description = "cross-platform input-event types for input-capture / input-emulation" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "GPL-3.0-or-later" repository = "https://github.com/ferdinandschober/lan-mouse"