diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-02-21 11:49:00 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-02-21 11:50:36 +0100 |
commit | 63c4490e7374d4bc2f86f7c0c05c0a57da8c417d (patch) | |
tree | 2c209c918dcc9d296296021d1ce490aed7224004 /components/net | |
parent | e973b2958d9863f2f9fba8fb8641e42202dc940b (diff) | |
download | servo-63c4490e7374d4bc2f86f7c0c05c0a57da8c417d.tar.gz servo-63c4490e7374d4bc2f86f7c0c05c0a57da8c417d.zip |
Kill the plugins crate and its clippy support
Sometimes clippy gets outdated by months, and its current support setup
means that each Servo component need to opt into it by depending on
the plugins crate manually, and not all components do that.
Diffstat (limited to 'components/net')
-rw-r--r-- | components/net/Cargo.toml | 1 | ||||
-rw-r--r-- | components/net/lib.rs | 5 |
2 files changed, 1 insertions, 5 deletions
diff --git a/components/net/Cargo.toml b/components/net/Cargo.toml index 612f3e786b3..da1db328a8f 100644 --- a/components/net/Cargo.toml +++ b/components/net/Cargo.toml @@ -28,7 +28,6 @@ msg = {path = "../msg"} net_traits = {path = "../net_traits"} openssl = "0.7.6" openssl-verify = "0.1" -plugins = {path = "../plugins"} profile_traits = {path = "../profile_traits"} rustc-serialize = "0.3" servo_config = {path = "../config"} 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; |