diff --git a/Cargo.lock b/Cargo.lock index 1d60b4c4..7d68a39b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -129,7 +129,7 @@ version = "0.1.0" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.96", ] [[package]] @@ -1441,9 +1441,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.34.0" +version = "1.38.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" +checksum = "eb2caba9f80616f438e09748d5acda951967e1ea58508ef53d9c6402485a46df" dependencies = [ "backtrace", "libc", @@ -1457,9 +1457,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" dependencies = [ "proc-macro2", "quote", diff --git a/bins/asvisor-d/Cargo.toml b/bins/asvisor-d/Cargo.toml index 79e3faf8..a77c95a4 100644 --- a/bins/asvisor-d/Cargo.toml +++ b/bins/asvisor-d/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" libasvisor = { workspace = true, default-features = false, features = [] } log = "0.4.20" -tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.38.1", features = ["macros", "rt-multi-thread"] } axum = { version = "0.6.20", features = ["macros"] } serde = { version = "1.0.188" } anyhow = { version = "1.0.75" } diff --git a/bins/asvisor/Cargo.toml b/bins/asvisor/Cargo.toml index e2998c28..83a1ee21 100644 --- a/bins/asvisor/Cargo.toml +++ b/bins/asvisor/Cargo.toml @@ -14,7 +14,7 @@ clap = { version = "4.3.21", features = ["derive"] } derive_more = "0.99.17" thiserror-no-std = "2.0.2" anyhow = { version = "1.0.82" } -tokio = { version = "1.32.0", features = [ +tokio = { version = "1.38.1", features = [ "macros", "rt-multi-thread", ], optional = true }