bump dependencies

This commit is contained in:
Ferdinand Schober
2024-11-06 23:53:04 +01:00
parent de674c631a
commit 9d28fe6c7b
7 changed files with 628 additions and 334 deletions

950
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -49,7 +49,7 @@ tokio = { version = "1.32.0", features = [
futures = "0.3.28"
clap = { version = "4.4.11", features = ["derive"] }
slab = "0.4.9"
thiserror = "1.0.61"
thiserror = "2.0.0"
tokio-util = "0.7.11"
local-channel = "0.1.5"

View File

@@ -13,7 +13,7 @@ log = "0.4.22"
input-event = { path = "../input-event", version = "0.2.1" }
memmap = "0.7"
tempfile = "3.8"
thiserror = "1.0.61"
thiserror = "2.0.0"
tokio = { version = "1.32.0", features = [
"io-util",
"io-std",

View File

@@ -11,7 +11,7 @@ async-trait = "0.1.80"
futures = "0.3.28"
log = "0.4.22"
input-event = { path = "../input-event", version = "0.2.1" }
thiserror = "1.0.61"
thiserror = "2.0.0"
tokio = { version = "1.32.0", features = [
"io-util",
"io-std",

View File

@@ -11,7 +11,7 @@ futures-core = "0.3.30"
log = "0.4.22"
num_enum = "0.7.2"
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0.61"
thiserror = "2.0.0"
[target.'cfg(all(unix, not(target_os="macos")))'.dependencies]
reis = { version = "0.2.0", optional = true }

View File

@@ -11,6 +11,6 @@ futures = "0.3.30"
log = "0.4.22"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.107"
thiserror = "1.0.63"
thiserror = "2.0.0"
tokio = { version = "1.32.0", features = ["net", "io-util", "time"] }
tokio-stream = { version = "0.1.15", features = ["io-util"] }

View File

@@ -8,6 +8,6 @@ repository = "https://github.com/feschber/lan-mouse"
[dependencies]
num_enum = "0.7.2"
thiserror = "1.0.61"
thiserror = "2.0.0"
input-event = { path = "../input-event", version = "0.2.1" }
paste = "1.0"