Move common macros into a new crate (fixes #1882)

This commit is contained in:
Matt Brubeck 2014-03-21 10:16:41 -07:00
parent 8317122068
commit 79ca9b6eb0
8 changed files with 30 additions and 67 deletions

View file

@ -8,7 +8,7 @@
#[comment = "The Servo Parallel Browser Project"];
#[license = "MPL"];
#[feature(globs, macro_rules, struct_variant, managed_boxes)];
#[feature(globs, macro_rules, struct_variant, managed_boxes, phase)];
extern crate collections;
extern crate geom;
@ -16,6 +16,8 @@ extern crate hubbub;
extern crate encoding;
extern crate js;
extern crate serialize;
#[phase(syntax)]
extern crate servo_macros = "macros";
extern crate servo_net = "net";
extern crate servo_util = "util";
extern crate style;
@ -23,9 +25,6 @@ extern crate servo_msg = "msg";
extern crate extra;
extern crate native;
// Macros
mod macros;
pub mod dom {
pub mod bindings {
pub mod js;