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/script_layout_interface/lib.rs | |
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/script_layout_interface/lib.rs')
-rw-r--r-- | components/script_layout_interface/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script_layout_interface/lib.rs b/components/script_layout_interface/lib.rs index d5bebc8b2d3..87b76763d7d 100644 --- a/components/script_layout_interface/lib.rs +++ b/components/script_layout_interface/lib.rs @@ -9,8 +9,6 @@ #![deny(unsafe_code)] #![feature(box_syntax)] #![feature(nonzero)] -#![feature(plugin)] -#![plugin(plugins)] extern crate app_units; extern crate atomic_refcell; |