diff --git a/Cargo.lock b/Cargo.lock index 9474b04..b5f139c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4374,9 +4374,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.39.2" +version = "1.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" +checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" dependencies = [ "backtrace", "bytes", diff --git a/src/bin/sdre-hub/Cargo.toml b/src/bin/sdre-hub/Cargo.toml index 90af6dc..e6d38b7 100644 --- a/src/bin/sdre-hub/Cargo.toml +++ b/src/bin/sdre-hub/Cargo.toml @@ -16,4 +16,4 @@ keywords.workspace = true [dependencies] sdrehub = { path = "../../libraries/sdrehub" } sh-config = { path = "../../libraries/sh-config" } -tokio = { version = "1.39.2", features = ["full", "tracing"] } +tokio = { version = "1.40.0", features = ["full", "tracing"] } diff --git a/src/bin/sh-tauri/Cargo.toml b/src/bin/sh-tauri/Cargo.toml index f136dee..d4f476c 100644 --- a/src/bin/sh-tauri/Cargo.toml +++ b/src/bin/sh-tauri/Cargo.toml @@ -24,7 +24,7 @@ serde = { version = "1.0.210", features = ["derive"] } sdrehub = { path = "../../libraries/sdrehub" } sh-config = { path = "../../libraries/sh-config" } tauri = { version = "1.7.2", features = ["api-all"] } -tokio = { version = "1.39.2", features = ["full", "tracing"] } +tokio = { version = "1.40.0", features = ["full", "tracing"] } [features] default = ["custom-protocol"] diff --git a/src/libraries/sdrehub/Cargo.toml b/src/libraries/sdrehub/Cargo.toml index f1088b9..2700045 100644 --- a/src/libraries/sdrehub/Cargo.toml +++ b/src/libraries/sdrehub/Cargo.toml @@ -16,7 +16,7 @@ keywords.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tokio = { version = "1.39.2", features = ["full", "tracing"] } +tokio = { version = "1.40.0", features = ["full", "tracing"] } log = "0.4.22" sh-config = { path = "../sh-config" } sh-api = { path = "../sh-api" } diff --git a/src/libraries/sh-api/Cargo.toml b/src/libraries/sh-api/Cargo.toml index d7da7c3..e01632f 100644 --- a/src/libraries/sh-api/Cargo.toml +++ b/src/libraries/sh-api/Cargo.toml @@ -24,4 +24,4 @@ serde_json = "1.0.128" sh-common = { path = "../sh-common" } sh-common-server = { path = "../sh-common-server" } sh-config = { path = "../sh-config" } -tokio = { version = "1.39.2", features = ["full", "tracing"] } +tokio = { version = "1.40.0", features = ["full", "tracing"] } diff --git a/src/libraries/sh-common-server/Cargo.toml b/src/libraries/sh-common-server/Cargo.toml index 06d8fb8..6080431 100644 --- a/src/libraries/sh-common-server/Cargo.toml +++ b/src/libraries/sh-common-server/Cargo.toml @@ -19,4 +19,4 @@ keywords.workspace = true async-trait = "0.1.81" sh-config = { path = "../sh-config" } sh-common = { path = "../sh-common" } -tokio = { version = "1.39.2", features = ["full"] } +tokio = { version = "1.40.0", features = ["full"] }