Rust wrapper around libucl
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.fetch_path("section.nice").and_then(|v| v.as_bool()));
Check out LICENSE file.