diff options
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 9eb4af38f4d..5f6c7437cf8 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; |