Auto merge of #10075 - Ms2ger:deny-unsafe, r=jdm

Deny unsafe code in more crates.

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10075)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-03-20 08:00:53 +05:30
commit 8c92e3f32b
17 changed files with 44 additions and 3 deletions

View file

@ -8,6 +8,8 @@
#![feature(plugin)]
#![plugin(plugins)]
#![deny(unsafe_code)]
#[cfg(not(target_os = "windows"))]
extern crate alloc_jemalloc;
extern crate hbs_pow;
@ -24,6 +26,8 @@ extern crate task_info;
extern crate time as std_time;
extern crate util;
#[allow(unsafe_code)]
mod heartbeats;
#[allow(unsafe_code)]
pub mod mem;
pub mod time;