diff --git a/Cargo.lock b/Cargo.lock index 44093ae..2baf9b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -294,9 +294,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hermit-abi" -version = "0.3.4" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" [[package]] name = "humantime" @@ -375,13 +375,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", - "windows-sys 0.48.0", + "windows-sys 0.52.0", ] [[package]] @@ -469,16 +470,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 = "object" version = "0.32.2" @@ -733,29 +724,28 @@ dependencies = [ [[package]] name = "tokio" -version = "1.38.0" +version = "1.39.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" +checksum = "d040ac2b29ab03b09d4129c2f5bbd012a3ac2f79d38ff506a4bf8dd34b0eac8a" 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/rust/oxide-bin/Cargo.toml b/rust/oxide-bin/Cargo.toml index c5256b2..bf22ebd 100644 --- a/rust/oxide-bin/Cargo.toml +++ b/rust/oxide-bin/Cargo.toml @@ -18,5 +18,5 @@ oxide-config = { path = "../oxide-config" } oxide-scanner = { path = "../oxide-scanner" } oxide-decoders = { path = "../oxide-decoders" } sdre-rust-logging = "0.3.3" -tokio = { version = "1.38.0", features = ["full", "tracing"] } +tokio = { version = "1.39.1", features = ["full", "tracing"] } array-init = "2.1.0" diff --git a/rust/oxide-decoders/Cargo.toml b/rust/oxide-decoders/Cargo.toml index 2c75782..a4cb2b1 100644 --- a/rust/oxide-decoders/Cargo.toml +++ b/rust/oxide-decoders/Cargo.toml @@ -15,6 +15,6 @@ rust-version.workspace = true log = "0.4.22" custom_error = "1.9.2" num = "0.4.3" -tokio = { version = "1.38.0", features = ["full", "tracing"] } +tokio = { version = "1.39.1", features = ["full", "tracing"] } oxide-helpers = { path = "../oxide-helpers" } # num-complex = "0.4.3" diff --git a/rust/oxide-output/Cargo.toml b/rust/oxide-output/Cargo.toml index 5a4e1cd..a47fe41 100644 --- a/rust/oxide-output/Cargo.toml +++ b/rust/oxide-output/Cargo.toml @@ -12,6 +12,6 @@ license.workspace = true rust-version.workspace = true [dependencies] -tokio = { version = "1.38.0", features = ["full", "tracing"] } +tokio = { version = "1.39.1", features = ["full", "tracing"] } log = "0.4.22" oxide-decoders = { path = "../oxide-decoders" } diff --git a/rust/oxide-rtlsdr/Cargo.toml b/rust/oxide-rtlsdr/Cargo.toml index fe3178e..d4b4697 100644 --- a/rust/oxide-rtlsdr/Cargo.toml +++ b/rust/oxide-rtlsdr/Cargo.toml @@ -20,6 +20,6 @@ ctrlc = "3.4.4" num = "0.4.3" custom_error = "1.9.2" oxide-decoders = { path = "../oxide-decoders" } -tokio = { version = "1.38.0", features = ["full", "tracing"] } +tokio = { version = "1.39.1", features = ["full", "tracing"] } array-init = "2.1.0" # num-complex = "0.4.3" diff --git a/rust/oxide-scanner/Cargo.toml b/rust/oxide-scanner/Cargo.toml index eb5c2c4..64e82df 100644 --- a/rust/oxide-scanner/Cargo.toml +++ b/rust/oxide-scanner/Cargo.toml @@ -16,4 +16,4 @@ oxide-rtlsdr = { path = "../oxide-rtlsdr" } oxide-decoders = { path = "../oxide-decoders" } oxide-output = { path = "../oxide-output" } log = "0.4.22" -tokio = { version = "1.38.0", features = ["full", "tracing"] } +tokio = { version = "1.39.1", features = ["full", "tracing"] }