Forbid unsafe code

This commit is contained in:
Graham Esau 2020-09-25 18:34:57 +01:00
parent b09217c5ad
commit 40d9bfd517
2 changed files with 3 additions and 0 deletions

View file

@ -1,3 +1,4 @@
#![forbid(unsafe_code)]
/*!
Generate JSON Schema documents from Rust code

View file

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