sculptor 0.0.6

(Placeholder of) an app framework that uses configuration files.
Documentation
#[macro_export]
macro_rules! submod {
    ( $( $m:ident ),* ) => {
        $(
            pub mod $m;
            pub use $m::*;
        )*
    };
}

#[cfg(feature = "project_info")]
submod!(project_info);
#[cfg(feature = "file_io")]
submod!(file_io);
#[cfg(feature = "sha_snap")]
submod!(sha_snap);

// diff
// watch