Stop the madness and use cssparser as an external lib / crate.

See mozilla-servo/rust-cssparser@bb35329bd6
and mozilla/rust#7899
This commit is contained in:
Simon Sapin 2013-08-09 11:52:14 +01:00
parent 3f6a557578
commit af2f90fe74

View file

@ -2,23 +2,7 @@
#[crate_type = "lib"];
extern mod extra;
#[path = "../rust-cssparser/ast.rs"]
mod ast;
#[path = "../rust-cssparser/tokenizer.rs"]
mod tokenizer;
#[path = "../rust-cssparser/parser.rs"]
mod syntax;
#[path = "../rust-cssparser/color.rs"]
mod color;
mod cssparser {
pub use super::ast::*;
pub use super::tokenizer::*;
pub use super::syntax::*;
}
extern mod cssparser;
pub mod stylesheets;
pub mod selectors;