diff options
Diffstat (limited to 'src/components/macros/macros.rs')
-rw-r--r-- | src/components/macros/macros.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/components/macros/macros.rs b/src/components/macros/macros.rs index 13b48456576..9203567075b 100644 --- a/src/components/macros/macros.rs +++ b/src/components/macros/macros.rs @@ -2,10 +2,12 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#[crate_id = "github.com/mozilla/servo#macros:0.1"]; -#[crate_type = "lib"]; +#![crate_id = "github.com/mozilla/servo#macros:0.1"] +#![crate_type = "lib"] +#![crate_type = "rlib"] +#![crate_type = "dylib"] -#[feature(macro_rules)]; +#![feature(macro_rules)] #[macro_export] macro_rules! bitfield( |