diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-02-14 14:13:43 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-02-14 14:13:43 +0100 |
commit | c84cea995bd5d1596eaffe041b479ba1081a50fe (patch) | |
tree | 99b71bdc33af9fe83250374e7072bb0506232d10 /components/script/lib.rs | |
parent | 1dfdd0bab82b2356c6fb15d0d0e898a972983ba1 (diff) | |
download | servo-c84cea995bd5d1596eaffe041b479ba1081a50fe.tar.gz servo-c84cea995bd5d1596eaffe041b479ba1081a50fe.zip |
Derive DomObject with a proc macro
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 7126d53653e..3242e0ccf01 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -39,6 +39,8 @@ extern crate core; #[macro_use] extern crate cssparser; extern crate devtools_traits; +#[macro_use] +extern crate domobject_derive; extern crate encoding; extern crate euclid; extern crate fnv; |