Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 1.55 KB

README.md

File metadata and controls

11 lines (9 loc) · 1.55 KB

bf-configparser

Build Status Crates.io Maintenance

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() and get_vec_parse functions, replacing all get*() functions