Disallow unsafe code.

This commit is contained in:
Sean Bowe 2019-03-21 15:52:13 -06:00
parent 44765a7ad4
commit 8edc7ebe2f
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@
#![no_std]
#![deny(missing_debug_implementations)]
#![deny(missing_docs)]
#![deny(unsafe_code)]
#[cfg(feature = "std")]
#[macro_use]