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 /tests/unit | |
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 'tests/unit')
-rw-r--r-- | tests/unit/net/Cargo.toml | 1 | ||||
-rw-r--r-- | tests/unit/net/lib.rs | 3 | ||||
-rw-r--r-- | tests/unit/script/Cargo.toml | 1 | ||||
-rw-r--r-- | tests/unit/script/lib.rs | 3 |
4 files changed, 0 insertions, 8 deletions
diff --git a/tests/unit/net/Cargo.toml b/tests/unit/net/Cargo.toml index ab0dacff885..bbfe3dfc251 100644 --- a/tests/unit/net/Cargo.toml +++ b/tests/unit/net/Cargo.toml @@ -20,7 +20,6 @@ ipc-channel = "0.7" msg = {path = "../../../components/msg"} net = {path = "../../../components/net"} net_traits = {path = "../../../components/net_traits"} -plugins = {path = "../../../components/plugins"} profile_traits = {path = "../../../components/profile_traits"} servo_config = {path = "../../../components/config"} time = "0.1" diff --git a/tests/unit/net/lib.rs b/tests/unit/net/lib.rs index 47f732dc7b8..ce8ad0416c5 100644 --- a/tests/unit/net/lib.rs +++ b/tests/unit/net/lib.rs @@ -2,9 +2,6 @@ * 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/. */ -#![feature(plugin)] -#![plugin(plugins)] - extern crate content_blocker; extern crate cookie as cookie_rs; extern crate devtools_traits; diff --git a/tests/unit/script/Cargo.toml b/tests/unit/script/Cargo.toml index b3410706376..4b1f693d5f6 100644 --- a/tests/unit/script/Cargo.toml +++ b/tests/unit/script/Cargo.toml @@ -12,6 +12,5 @@ doctest = false [dependencies] euclid = "0.11" msg = {path = "../../../components/msg"} -plugins = {path = "../../../components/plugins"} script = {path = "../../../components/script"} servo_url = {path = "../../../components/url"} diff --git a/tests/unit/script/lib.rs b/tests/unit/script/lib.rs index 9b8c1ba6f5e..83131e51dd2 100644 --- a/tests/unit/script/lib.rs +++ b/tests/unit/script/lib.rs @@ -2,9 +2,6 @@ * 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/. */ -#![feature(plugin)] -#![plugin(plugins)] - extern crate euclid; extern crate msg; extern crate script; |