From af2f90fe74e54ed5a5ab27213256b2eff89fe053 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Fri, 9 Aug 2013 11:52:14 +0100 Subject: [PATCH] Stop the madness and use cssparser as an external lib / crate. See mozilla-servo/rust-cssparser@bb35329bd6afc5e592645d8e163b5d6d0e0d6f7f and mozilla/rust#7899 --- servo-style.rc | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/servo-style.rc b/servo-style.rc index 60cf87b0e8f..658c47c83bc 100644 --- a/servo-style.rc +++ b/servo-style.rc @@ -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;