//! Parser Adapter
//!
//! Used for parsing Blueprint from the following
//! supported formats: `TOML`
use Result;
use ;
/// Parser Trait
///
/// Used as an adapter for different Blueprint file
/// formats. Enables the flexibility to choose a
/// different DSL
///
// @dev
// Parser is Send + Sync to enable concurrent parsing
// Parser is 'static for dynamic dispatch with Box