gerbil-ini
Simple no-std compatible .ini parsing library.
Example usage
use ;
let some_ini = r#"
; This is a comment.
[My Section]
; Here's a value
some KEY=This is a value!
; Here's another value
anotherkey=This is yet another value!
;commented out=this value isn't real :(
[Another Section]
yourkey=This is a value!
some KEY=This, too, is a value!
anotherkey=//Wow Look At Me I'm A Value\\
"#;
let ini = parse.expect;
let section = ini.get_section.unwrap;
assert_eq!;
assert_eq!;