2 stable releases
new 1.0.1 | Mar 9, 2025 |
---|---|
1.0.0 | Mar 7, 2025 |
#1242 in Parser implementations
90 downloads per month
6KB
101 lines
Sorbet
A simple KVP (Key Value Pair) file format.
Example Usage:
key => value
key => sorbet
> also
> supports
> multiline
use sorbet_kvp::sorbet;
fn main() {
let contents = "key => value";
let hash_map = sorbet::parse(contents);
println!("{:?}", hash_map);
}
License
This project uses the MIT license, check the LICENSE for more.