From 9dfe4cb39a62c543c8680194cf586aa486066ba1 Mon Sep 17 00:00:00 2001 From: René Kijewski Date: Wed, 5 Jan 2022 19:41:23 +0100 Subject: Add `#![deny(unreachable_pub)]` to all crates --- askama_warp/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'askama_warp/src') diff --git a/askama_warp/src/lib.rs b/askama_warp/src/lib.rs index 30d15fa..90bf6c6 100644 --- a/askama_warp/src/lib.rs +++ b/askama_warp/src/lib.rs @@ -1,4 +1,5 @@ #![deny(elided_lifetimes_in_paths)] +#![deny(unreachable_pub)] pub use askama::*; pub use warp; -- cgit