1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate pest_derive;
#[cfg(test)]
#[macro_use]
extern crate pretty_assertions;
#[macro_use]
extern crate serde_derive;
#[cfg_attr(test, macro_use)]
extern crate serde_json;

mod core;
mod errors;
pub mod heck;

pub mod actions;
pub mod archetype;
pub mod config;
pub mod input;
pub mod loggerv;
pub mod rendering;
pub mod requirements;
pub mod rules;
pub mod system;
pub mod template_engine;
pub mod util;
pub mod vendor;

pub use crate::archetype::{Archetype, ArchetypeError};
pub use crate::core::Archetect;
pub use crate::errors::{ArchetectError, RenderError};