diff --git a/Cargo.lock b/Cargo.lock index 53c1574..0fab43a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1347,9 +1347,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.141" +version = "0.2.147" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5" +checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" [[package]] name = "libm" @@ -2839,11 +2839,12 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.28.2" +version = "1.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2" +checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" dependencies = [ "autocfg", + "backtrace", "bytes", "libc", "mio", diff --git a/common/Cargo.toml b/common/Cargo.toml index 2923a03..99bbdf9 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" anyhow = { version = "1.0.71", features = ["backtrace"] } atty = "0.2.14" console-subscriber = "0.1.9" -tokio = { version = "1.28.2", features = ["full", "tracing"] } +tokio = { version = "1.29.1", features = ["full", "tracing"] } tracing = "0.1.37" tracing-subscriber = { version = "0.3.17", features = [ "env-filter", diff --git a/forwarder/Cargo.toml b/forwarder/Cargo.toml index 012b22a..7d0f7e9 100644 --- a/forwarder/Cargo.toml +++ b/forwarder/Cargo.toml @@ -17,7 +17,7 @@ reqwest = { version = "0.11.18", default_features = false, features = [ ] } serde_json = "1.0.96" sha1 = "0.10.5" -tokio = { version = "1.28.2", features = ["full"] } +tokio = { version = "1.29.1", features = ["full"] } tracing = "0.1.37" rand = "0.8.5" diff --git a/player/Cargo.toml b/player/Cargo.toml index 8d67b1b..643fbbe 100644 --- a/player/Cargo.toml +++ b/player/Cargo.toml @@ -10,7 +10,7 @@ clap = { version = "4.3.0", features = ["derive", "env"] } hex = "0.4.3" librespot = { version = "0.4.2", default-features = false } sha1 = "0.10.5" -tokio = { version = "1.28.2", features = ["full"] } +tokio = { version = "1.29.1", features = ["full"] } tracing = "0.1.37" serde_json = "1.0.96" common = { path = "../common" } diff --git a/receiver/Cargo.toml b/receiver/Cargo.toml index 5fb37cb..c52ee30 100644 --- a/receiver/Cargo.toml +++ b/receiver/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" songbird = { version = "0.3" } anyhow = { version = "1.0.71", features = ["backtrace"] } clap = { version = "4.3.0", features = ["derive", "env"] } -tokio = { version = "1.28.2", features = ["full"] } +tokio = { version = "1.29.1", features = ["full"] } tracing = "0.1.37" serde_json = "1.0.96" axum = "0.6.18"