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
//! **stager** - This crate stages files for packaging
//!
//! ```toml
//! [dependencies]
//! stager = "0.3"
//! ```

#![warn(warnings)]

#[macro_use]
extern crate failure;
extern crate globwalk;
#[cfg(feature = "de")]
extern crate liquid;
#[macro_use]
extern crate log;
#[cfg(feature = "de")]
#[macro_use]
extern crate serde;

pub mod action;
pub mod builder;
#[cfg(feature = "de")]
pub mod de;

mod error;