diff options
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 9d3abf169b9..bc754bd870a 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -11,6 +11,7 @@ #![feature(on_unimplemented)] #![feature(optin_builtin_traits)] #![feature(plugin)] +#![feature(proc_macro)] #![feature(slice_patterns)] #![feature(stmt_expr_attributes)] #![feature(try_from)] @@ -40,6 +41,7 @@ extern crate cssparser; #[macro_use] extern crate deny_public_fields; extern crate devtools_traits; +extern crate dom_struct; #[macro_use] extern crate domobject_derive; extern crate encoding; |