Skip to content

Commit fa3078b

Browse files
committed
Merge pull request servo#6 from SimonSapin/master
Make modules public. See rust-lang/rust#8478
2 parents 7e130b8 + 1311641 commit fa3078b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cssparser.rc

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ pub use parser::*;
1313
pub use color::*;
1414
pub use nth::*;
1515

16-
mod ast;
17-
mod tokenizer;
18-
mod parser;
19-
mod color;
20-
mod nth;
16+
pub mod ast;
17+
pub mod tokenizer;
18+
pub mod parser;
19+
pub mod color;
20+
pub mod nth;
2121

2222
#[cfg(test)]
2323
mod tests;

0 commit comments

Comments
 (0)