limonite 0.1.0

small blog generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern crate pulldown_cmark;
extern crate liquid;
extern crate uuid;
extern crate yaml_rust;
extern crate regex;
extern crate crypto;

mod document;
mod layout;
mod layout_store;
pub mod site;
mod post;
mod util;
mod diff;

include!(concat!(env!("OUT_DIR"), "/version.rs"));