specify dependency versions explicitly

This commit is contained in:
Ferdinand Schober
2024-07-02 22:17:26 +02:00
parent fb2c39e8ae
commit abfc744e4c

View File

@@ -18,9 +18,9 @@ strip = true
lto = "fat"
[dependencies]
input-event = { path = "input-event" }
input-emulation = { path = "input-emulation", default-features = false }
input-capture = { path = "input-capture", default-features = false }
input-event = { path = "input-event", version = "0.1.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 }
hickory-resolver = "0.24.1"
toml = "0.8"