From 35e626976efe28dc6ae6a543ce0fbc1623ee3bc4 Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Tue, 2 Jul 2024 22:39:20 +0200 Subject: [PATCH] add explicit version --- input-capture/Cargo.toml | 2 +- input-emulation/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/input-capture/Cargo.toml b/input-capture/Cargo.toml index 987d82c..eac69fa 100644 --- a/input-capture/Cargo.toml +++ b/input-capture/Cargo.toml @@ -11,7 +11,7 @@ anyhow = "1.0.86" futures = "0.3.28" futures-core = "0.3.30" log = "0.4.22" -input-event = { path = "../input-event" } +input-event = { path = "../input-event", version = "0.1.0" } memmap = "0.7" tempfile = "3.8" thiserror = "1.0.61" diff --git a/input-emulation/Cargo.toml b/input-emulation/Cargo.toml index 449058e..be33ef3 100644 --- a/input-emulation/Cargo.toml +++ b/input-emulation/Cargo.toml @@ -11,7 +11,7 @@ anyhow = "1.0.86" async-trait = "0.1.80" futures = "0.3.28" log = "0.4.22" -input-event = { path = "../input-event" } +input-event = { path = "../input-event", version = "0.1.0" } thiserror = "1.0.61" tokio = { version = "1.32.0", features = ["io-util", "io-std", "macros", "net", "process", "rt", "sync", "signal"] }