diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-02-16 10:58:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-16 10:58:19 -0800 |
commit | a099d27f99dadf3f7c26d997e43c1a12e0c5bd0e (patch) | |
tree | 5583d83e8d579d1d7f93887eb7f8a54442161e7a /components/script | |
parent | 05623b36a15b594bbc690fcd8e3b642995618de1 (diff) | |
parent | 3eed8a91a1183e22b69b1be48ad97a253bc1dc0a (diff) | |
download | servo-a099d27f99dadf3f7c26d997e43c1a12e0c5bd0e.tar.gz servo-a099d27f99dadf3f7c26d997e43c1a12e0c5bd0e.zip |
Auto merge of #15584 - nox:plugin, r=jdm
Move script lints to script_plugins
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/15584)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script')
-rw-r--r-- | components/script/Cargo.toml | 1 | ||||
-rw-r--r-- | components/script/lib.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml index 3971f18b489..765b18319ea 100644 --- a/components/script/Cargo.toml +++ b/components/script/Cargo.toml @@ -71,6 +71,7 @@ ref_slice = "1.0" regex = "0.2" rustc-serialize = "0.3" script_layout_interface = {path = "../script_layout_interface"} +script_plugins = {path = "../script_plugins"} script_traits = {path = "../script_traits"} selectors = { path = "../selectors" } serde = "0.8" diff --git a/components/script/lib.rs b/components/script/lib.rs index c7a1598c889..92be1272d6f 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -23,6 +23,7 @@ #![doc = "The script crate contains all matters DOM."] #![plugin(plugins)] +#![plugin(script_plugins)] extern crate angle; extern crate app_units; |