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_axum/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'askama_axum/src/lib.rs') diff --git a/askama_axum/src/lib.rs b/askama_axum/src/lib.rs index 859b19e..725c56f 100644 --- a/askama_axum/src/lib.rs +++ b/askama_axum/src/lib.rs @@ -1,4 +1,5 @@ #![deny(elided_lifetimes_in_paths)] +#![deny(unreachable_pub)] pub use askama::*; use axum_core::body; -- cgit