From 0decdaaf99192c4bf160ef139f4b102f584cb535 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Wed, 2 Sep 2015 19:51:03 +0200 Subject: [PATCH] Make devtools depend on plugins. --- components/devtools/Cargo.toml | 3 +++ components/devtools/lib.rs | 1 + components/servo/Cargo.lock | 1 + ports/cef/Cargo.lock | 1 + ports/gonk/Cargo.lock | 1 + 5 files changed, 7 insertions(+) diff --git a/components/devtools/Cargo.toml b/components/devtools/Cargo.toml index 0c794bd11b3..c5583086848 100644 --- a/components/devtools/Cargo.toml +++ b/components/devtools/Cargo.toml @@ -20,6 +20,9 @@ path = "../msg" [dependencies.util] path = "../util" +[dependencies.plugins] +path = "../plugins" + [dependencies.ipc-channel] git = "https://github.com/pcwalton/ipc-channel" diff --git a/components/devtools/lib.rs b/components/devtools/lib.rs index 34beeccc59d..e552f5ed0ff 100644 --- a/components/devtools/lib.rs +++ b/components/devtools/lib.rs @@ -14,6 +14,7 @@ #![feature(custom_derive)] #![feature(plugin)] #![plugin(serde_macros)] +#![plugin(plugins)] #![allow(non_snake_case)] #![deny(unsafe_code)] diff --git a/components/servo/Cargo.lock b/components/servo/Cargo.lock index 100d586dab0..db7016feb9a 100644 --- a/components/servo/Cargo.lock +++ b/components/servo/Cargo.lock @@ -319,6 +319,7 @@ dependencies = [ "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", + "plugins 0.0.1", "rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", "serde 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde_macros 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/ports/cef/Cargo.lock b/ports/cef/Cargo.lock index 386d2d08a3d..c7c605f8329 100644 --- a/ports/cef/Cargo.lock +++ b/ports/cef/Cargo.lock @@ -311,6 +311,7 @@ dependencies = [ "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", + "plugins 0.0.1", "rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", "serde 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde_macros 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/ports/gonk/Cargo.lock b/ports/gonk/Cargo.lock index 211d088c498..70041a7919c 100644 --- a/ports/gonk/Cargo.lock +++ b/ports/gonk/Cargo.lock @@ -281,6 +281,7 @@ dependencies = [ "ipc-channel 0.1.0 (git+https://github.com/pcwalton/ipc-channel)", "log 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "msg 0.0.1", + "plugins 0.0.1", "rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", "serde 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", "serde_macros 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",