diff --git a/Cargo.lock b/Cargo.lock index 4f20a7a..e580018 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2346,13 +2346,14 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.11" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" +checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" dependencies = [ + "hermit-abi", "libc", "wasi 0.11.0+wasi-snapshot-preview1", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -2486,16 +2487,6 @@ dependencies = [ "autocfg", ] -[[package]] -name = "num_cpus" -version = "1.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" -dependencies = [ - "hermit-abi", - "libc", -] - [[package]] name = "num_enum" version = "0.5.11" @@ -4355,29 +4346,28 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.38.0" +version = "1.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" +checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1" dependencies = [ "backtrace", "bytes", "libc", "mio", - "num_cpus", "parking_lot", "pin-project-lite", "signal-hook-registry", "socket2", "tokio-macros", "tracing", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] name = "tokio-macros" -version = "2.3.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" dependencies = [ "proc-macro2", "quote", diff --git a/src/bin/sdre-hub/Cargo.toml b/src/bin/sdre-hub/Cargo.toml index 907e41b..90af6dc 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.38.0", features = ["full", "tracing"] } +tokio = { version = "1.39.2", features = ["full", "tracing"] } diff --git a/src/bin/sh-tauri/Cargo.toml b/src/bin/sh-tauri/Cargo.toml index df198e1..0fb4575 100644 --- a/src/bin/sh-tauri/Cargo.toml +++ b/src/bin/sh-tauri/Cargo.toml @@ -24,7 +24,7 @@ serde = { version = "1.0.204", features = ["derive"] } sdrehub = { path = "../../libraries/sdrehub" } sh-config = { path = "../../libraries/sh-config" } tauri = { version = "1.7.1", features = ["api-all"] } -tokio = { version = "1.38.0", features = ["full", "tracing"] } +tokio = { version = "1.39.2", features = ["full", "tracing"] } [features] default = ["custom-protocol"] diff --git a/src/libraries/sdrehub/Cargo.toml b/src/libraries/sdrehub/Cargo.toml index 2b302a7..f1088b9 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.38.0", features = ["full", "tracing"] } +tokio = { version = "1.39.2", 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 29b8de6..4782c2b 100644 --- a/src/libraries/sh-api/Cargo.toml +++ b/src/libraries/sh-api/Cargo.toml @@ -24,4 +24,4 @@ serde_json = "1.0.122" sh-common = { path = "../sh-common" } sh-common-server = { path = "../sh-common-server" } sh-config = { path = "../sh-config" } -tokio = { version = "1.38.0", features = ["full", "tracing"] } +tokio = { version = "1.39.2", features = ["full", "tracing"] } diff --git a/src/libraries/sh-common-server/Cargo.toml b/src/libraries/sh-common-server/Cargo.toml index 918a2d3..06d8fb8 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.38.0", features = ["full"] } +tokio = { version = "1.39.2", features = ["full"] }