sculptor 0.0.4

(Placeholder of) an app framework that uses configuration files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[macro_export]
macro_rules! submod {
    ( $( $m:ident ),* ) => {
        $(
            pub mod $m;
            pub use $m::*;
        )*
    };
}

submod!(project_info);
submod!(file_io);
submod!(sha_snap);