archetect-core 0.7.3

Generates Content from Archetype Template Directories and Git Repositories.
Documentation
#[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;

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

mod core;
mod errors;

pub mod actions;
pub mod archetype;
pub mod config;
pub mod input;
pub mod rendering;
pub mod requirements;
pub mod rules;
pub mod system;
pub mod vendor;
pub mod source;
mod utils;