From b7b5ff0633092006205ccfca9febab0978c0c957 Mon Sep 17 00:00:00 2001 From: René Kijewski Date: Wed, 5 Jan 2022 19:41:40 +0100 Subject: Add `#![forbid(unsafe_code)]` to all crates except askama_escape --- askama_axum/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'askama_axum') diff --git a/askama_axum/src/lib.rs b/askama_axum/src/lib.rs index 725c56f..21217ff 100644 --- a/askama_axum/src/lib.rs +++ b/askama_axum/src/lib.rs @@ -1,3 +1,4 @@ +#![forbid(unsafe_code)] #![deny(elided_lifetimes_in_paths)] #![deny(unreachable_pub)] -- cgit