From a19c71658e41c9318abd454cc47b392b8021a8fb Mon Sep 17 00:00:00 2001 From: Alex Koshelev Date: Fri, 19 Jan 2024 10:49:17 -0800 Subject: [PATCH] Upgrade tokio to allow Miri We need this fix: https://github.com/tokio-rs/tokio/pull/6179 --- ipa-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipa-core/Cargo.toml b/ipa-core/Cargo.toml index 55eb22847..af0d0d337 100644 --- a/ipa-core/Cargo.toml +++ b/ipa-core/Cargo.toml @@ -136,7 +136,7 @@ sha2 = "0.10" shuttle-crate = { package = "shuttle", version = "0.6.1", optional = true } thiserror = "1.0" time = { version = "0.3", optional = true } -tokio = { version = "1.28", features = ["rt", "rt-multi-thread", "macros"] } +tokio = { version = "1.35", features = ["rt", "rt-multi-thread", "macros"] } # TODO: axum-server holds onto 0.24 and we can't upgrade until they do. Or we move away from axum-server tokio-rustls = { version = "0.24", optional = true } tokio-stream = "0.1.14"