diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-03-18 14:43:03 +0100 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-03-18 14:43:03 +0100 |
commit | 08083f1c9d08de0e19e16efb9e6923612706032c (patch) | |
tree | c6610962bea427b945ba12ecd3cea62b16b46cd6 /components/style/lib.rs | |
parent | c90a1b9b1c44dbf3d3f9dde7e99f4fccfe598542 (diff) | |
download | servo-08083f1c9d08de0e19e16efb9e6923612706032c.tar.gz servo-08083f1c9d08de0e19e16efb9e6923612706032c.zip |
Deny unsafe code in more crates.
Diffstat (limited to 'components/style/lib.rs')
-rw-r--r-- | components/style/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/style/lib.rs b/components/style/lib.rs index 3d9f7f14014..a696b882d43 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -14,6 +14,8 @@ #![plugin(plugins)] #![plugin(serde_macros)] +#![deny(unsafe_code)] + #![recursion_limit = "500"] // For match_ignore_ascii_case in PropertyDeclaration::parse extern crate app_units; |