1d1ff74d88
Closes #210
27 lines
454 B
Rust
27 lines
454 B
Rust
extern crate tera;
|
|
extern crate slug;
|
|
extern crate serde;
|
|
extern crate rayon;
|
|
|
|
extern crate errors;
|
|
extern crate config;
|
|
extern crate front_matter;
|
|
extern crate rendering;
|
|
extern crate utils;
|
|
|
|
#[cfg(test)]
|
|
extern crate tempdir;
|
|
#[cfg(test)]
|
|
extern crate toml;
|
|
|
|
mod file_info;
|
|
mod page;
|
|
mod section;
|
|
mod sorting;
|
|
|
|
|
|
pub use file_info::FileInfo;
|
|
pub use page::Page;
|
|
pub use section::Section;
|
|
pub use sorting::{sort_pages, populate_previous_and_next_pages};
|