mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
Deny unsafe code in more crates.
This commit is contained in:
parent
c90a1b9b1c
commit
08083f1c9d
17 changed files with 44 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue