From 2a09c576499b377194f669cb9937d65dc9e84678 Mon Sep 17 00:00:00 2001 From: Lindsay Stewart Date: Tue, 23 Jul 2024 12:36:29 -0700 Subject: [PATCH] fix: pin tokio-macros version (#4658) --- bindings/rust/s2n-tls-tokio/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bindings/rust/s2n-tls-tokio/Cargo.toml b/bindings/rust/s2n-tls-tokio/Cargo.toml index fa7182cfe4c..4783c41c896 100644 --- a/bindings/rust/s2n-tls-tokio/Cargo.toml +++ b/bindings/rust/s2n-tls-tokio/Cargo.toml @@ -27,3 +27,5 @@ tokio = { version = "1", features = [ "io-std", "io-util", "macros", "net", "rt- # cargo package / cargo publish, as those commands do not respect the version pin # in downstream dev-dependencies (in s2n-tls-sys, in this case) jobserver = "=0.1.26" +# newer versions require rust 1.70 +tokio-macros = "=2.3.0"