Rust wrapper around libucl

Build Status

Usage

```rust extern crate ucl; use ucl::Parser;

let parser = Parser::new(); let result = parser.parse(r#"name = "mort"; section { nice = true; server = "http://localhost:6666"; chunk = 1Gb; }"#).unwrap();

println!("{}", result.fetchpath("section.nice").andthen(|v| v.as_bool())); ```

Licence

Check out LICENSE file.