Compare commits

..

7 Commits

Author SHA1 Message Date
Ferdinand Schober
684735b499 fix dependencies in input-event 2024-07-02 22:34:43 +02:00
Ferdinand Schober
abfc744e4c specify dependency versions explicitly 2024-07-02 22:17:26 +02:00
Ferdinand Schober
fb2c39e8ae fix all features enabled by default 2024-07-02 22:07:37 +02:00
Ferdinand Schober
82ab5ecbbd fix xdg-desktop-portal backend not available 2024-07-02 22:07:37 +02:00
Ferdinand Schober
3fd2b31562 update deps 2024-07-02 22:07:37 +02:00
Ferdinand Schober
90e83cee87 purge dependencies 2024-07-02 22:07:37 +02:00
Ferdinand Schober
4db2d37f32 split into input-{event,capture,emulation} 2024-07-02 22:07:37 +02:00
2 changed files with 4 additions and 4 deletions

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"

View File

@@ -11,4 +11,4 @@ anyhow = "1.0.86"
futures-core = "0.3.30"
log = "0.4.22"
num_enum = "0.7.2"
serde = "1.0.203"
serde = { version = "1.0", features = ["derive"] }