Forbid all usage of unsafe code

This commit is contained in:
Tobie Morgan Hitchcock 2022-03-23 15:12:29 +00:00
parent 6017d424eb
commit 7e4bf91a48
2 changed files with 4 additions and 0 deletions

View file

@ -1,3 +1,5 @@
#![forbid(unsafe_code)]
#[macro_use] #[macro_use]
extern crate log; extern crate log;

View file

@ -1,3 +1,5 @@
#![forbid(unsafe_code)]
#[macro_use] #[macro_use]
extern crate log; extern crate log;