Compare commits

..

5 Commits

Author SHA1 Message Date
Ferdinand Schober
f29cd2df43 fix all features enabled by default 2024-07-02 21:53:41 +02:00
Ferdinand Schober
7056ff697e fix xdg-desktop-portal backend not available 2024-07-02 21:53:31 +02:00
Ferdinand Schober
ef09cd4806 update deps 2024-07-02 21:45:05 +02:00
Ferdinand Schober
c093c3e0c4 purge dependencies 2024-07-02 21:41:57 +02:00
Ferdinand Schober
dd7f931a10 split into input-{event,capture,emulation} 2024-07-02 20:59:42 +02:00
4 changed files with 6 additions and 6 deletions

View File

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

View File

@@ -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", version = "0.1.0" }
input-event = { path = "../input-event" }
memmap = "0.7"
tempfile = "3.8"
thiserror = "1.0.61"

View File

@@ -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", version = "0.1.0" }
input-event = { path = "../input-event" }
thiserror = "1.0.61"
tokio = { version = "1.32.0", features = ["io-util", "io-std", "macros", "net", "process", "rt", "sync", "signal"] }

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 = { version = "1.0", features = ["derive"] }
serde = "1.0.203"