kickstart 0.6.0

A simple way to get started with a project by scaffolding from a template powered by the Tera engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Kickstart
//! `kickstart` is a framework to generate projects based on templates.
//! It is available as a library in case you want to use it in your own program and as a CLI.
//! See the [kickstart binary](https://github.com/Keats/kickstart/blob/master/src/main.rs)
//! for an example on how to use the library.

#[cfg(feature = "cli")]
pub mod cli;
mod definition;
pub mod errors;
mod filters;
mod generation;
mod utils;
mod value;

pub use definition::{Cleanup, Condition, Hook, TemplateDefinition, Variable};
pub use generation::{HookFile, Template};
pub use value::Value;