runbound 0.3.1

RFC-compliant DNS recursive resolver — drop-in replacement for Unbound, with integrated REST API
1
2
3
4
5
6
7
pub mod parser;

pub use parser::UnboundConfig;

pub fn load(path: &str) -> anyhow::Result<UnboundConfig> {
    parser::parse_file(path)
}