This is a Rust library for parsing and writing configuration files based on INI
like file formats used in Zoo Tycoon (2001).
It is forked from configparser-rs, the main differences are:
- Duplicate keys create a list of values instead of overwriting the previous value
- Breaks api compatibility with Python's configparser,
getbool()
and other non-snake case functions are removed - Adds
get_vec()
function to get a vector of values - Adds generic
get_parse()
andget_vec_parse
functions, replacing allget*()
functions