haproxy-config 0.4.1

Parse HAProxy configs and easily query it
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc= include_str!("../README.md")]

mod parser;
/// Zero copy and Owned representations of config sections.
pub mod section;

/// Zero copy and Owned representations of the lines in a config section.
pub mod line;

/// Stricter owned representation of an entire config that is easy to query.
pub mod config;

pub use parser::parse_sections;
pub use config::Config;