confiner 0.2.1

A config language for things that look like trees.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::collections::{HashMap, HashSet};
use std::sync::Arc;
use std::path::{Path, PathBuf};

mod grammar;
mod deser;
mod loader;
mod file_loader;

pub use grammar::Block;
pub use loader::Loader;
pub use file_loader::FileLoader;

pub type StdError = Box<dyn std::error::Error + Sync + Send>;
pub type StdResult<T=()> = Result<T, StdError>;