From 858b7fc1344cd44c60853df2d589eab07695ed9a Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Wed, 6 Oct 2021 21:13:02 +0200 Subject: [PATCH] Bump minimum version of async-trait (#370) Older versions generate invalid code for Handler impls. Co-authored-by: Jonas Platte --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 43d2dfb3..53ef46ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ tower-log = ["tower/log"] ws = ["tokio-tungstenite", "sha-1", "base64"] [dependencies] -async-trait = "0.1" +async-trait = "0.1.43" bitflags = "1.0" bytes = "1.0" futures-util = { version = "0.3", default-features = false, features = ["alloc"] }