From 20a99928e7b79c9fa41beb04abd08f6d08bea157 Mon Sep 17 00:00:00 2001 From: Eduard-Mihai Burtescu Date: Tue, 18 Sep 2018 12:56:09 +0300 Subject: [PATCH] Don't #[allow(type_alias_bounds)]. --- src/app.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index cf3e8c6da..246a184df 100644 --- a/src/app.rs +++ b/src/app.rs @@ -43,7 +43,6 @@ impl<'e, E: Endpoint<'e>> App<'e, E> { } } -#[allow(type_alias_bounds)] pub type ResBody = Either, T::Body>; #[allow(missing_docs)]