diff --git a/Cargo.lock b/Cargo.lock index dbce3a185..2ac3872af 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1072,9 +1072,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.161" +version = "0.2.171" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" +checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6" [[package]] name = "libredox" @@ -1904,9 +1904,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.40.0" +version = "1.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" +checksum = "492a604e2fd7f814268a378409e6c92b5525d747d10db9a229723f55a417958c" dependencies = [ "backtrace", "bytes", @@ -1955,9 +1955,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" dependencies = [ "proc-macro2", "quote", diff --git a/console-subscriber/Cargo.toml b/console-subscriber/Cargo.toml index 271f21ece..2cd93cecc 100644 --- a/console-subscriber/Cargo.toml +++ b/console-subscriber/Cargo.toml @@ -33,7 +33,7 @@ vsock = ["dep:tokio-vsock"] [dependencies] crossbeam-utils = "0.8.7" -tokio = { version = "1.34", features = ["sync", "time", "macros", "tracing"] } +tokio = { version = "1.43", features = ["sync", "time", "macros", "tracing"] } tokio-stream = { version = "0.1.16", features = ["net"] } thread_local = "1.1.4" console-api = { version = "0.8.0", path = "../console-api", features = ["transport"] } @@ -61,7 +61,7 @@ tonic-web = { version = "0.13", optional = true } tokio-vsock = { version = "0.7.1", optional = true, features = ["tonic013"]} [dev-dependencies] -tokio = { version = "1.34", features = ["full", "rt-multi-thread"] } +tokio = { version = "1.43", features = ["full", "rt-multi-thread"] } tower = { version = "0.4.12", default-features = false, features = ["util"] } futures = "0.3" http = "1.1" diff --git a/tokio-console/Cargo.toml b/tokio-console/Cargo.toml index 482c90dc2..449c083a2 100644 --- a/tokio-console/Cargo.toml +++ b/tokio-console/Cargo.toml @@ -36,7 +36,7 @@ eula = false console-api = { version = "0.8.1", path = "../console-api", features = ["transport"] } clap = { version = "~4.5.4", features = ["wrap_help", "cargo", "derive", "env"] } clap_complete = "~4.5.2" -tokio = { version = "1.34", features = ["full", "rt-multi-thread"] } +tokio = { version = "1.43", features = ["full", "rt-multi-thread"] } tonic = { version = "0.13.0", features = ["transport"] } futures = "0.3" ratatui = { version = "0.26.2", default-features = false, features = ["crossterm"] }