From d29c1f26c21425e73758d59ae730c2c078988254 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 6 Oct 2021 20:46:10 +0200 Subject: [PATCH] Bump minimum version of async-trait (#369) Older versions generate invalid code for Handler impls. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 96353a7b..682b92f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,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" dyn-clone = "1.0"