diff options
Diffstat (limited to 'components/gfx/lib.rs')
-rw-r--r-- | components/gfx/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/components/gfx/lib.rs b/components/gfx/lib.rs index 808f2027213..3fe671fc888 100644 --- a/components/gfx/lib.rs +++ b/components/gfx/lib.rs @@ -16,7 +16,7 @@ #![feature(unicode)] #![feature(unsafe_destructor)] -#![allow(missing_copy_implementations)] +#![plugin(plugins)] #[macro_use] extern crate log; @@ -32,8 +32,6 @@ extern crate png; extern crate script_traits; extern crate "rustc-serialize" as rustc_serialize; extern crate unicode; -#[no_link] #[plugin] -extern crate "plugins" as servo_plugins; extern crate net; #[macro_use] extern crate util; |