diff options
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r-- | components/net/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs index 082627067a8..d4edd3ec953 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -2,12 +2,9 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +#![deny(unsafe_code)] #![feature(box_syntax)] #![feature(mpsc_select)] -#![feature(plugin)] -#![plugin(plugins)] - -#![deny(unsafe_code)] extern crate brotli; extern crate content_blocker as content_blocker_parser; |