| Crates.io | sorbet_kvp |
| lib.rs | sorbet_kvp |
| version | 1.0.2 |
| created_at | 2025-03-07 00:50:23.156827+00 |
| updated_at | 2025-08-05 07:04:18.750342+00 |
| description | A simple KVP file format |
| homepage | |
| repository | https://github.com/thoq-jar/sorbet |
| max_upload_size | |
| id | 1582091 |
| size | 5,420 |
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);
}
This project uses the MIT license, check the LICENSE for more.