mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Move common macros into a new crate (fixes #1882)
This commit is contained in:
parent
8317122068
commit
79ca9b6eb0
8 changed files with 30 additions and 67 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue