corosync-config-parser

A Rust crate for hassle-free Corosync's configuration file parsing.

Inspired by Kilobyte22/config-parser.

Usage

```rust extern crate corosyncconfigparser;

let corosyncexample = " logging { fileline: off tostderr: no tologfile: no logfile: /var/log/cluster/corosync.log tosyslog: yes debug: off timestamp: on loggersubsys { subsys: QUORUM debug: off } } " .tostring();

let cfg = corosyncconfigparser::parse(corosync_example).unwrap();

let subsys = cfg .matching("logging") .nth(0) .unwrap() .matching("logger_subsys") .nth(0) .unwrap() .matching("subsys") .nth(0) .unwrap() .get(0); ```