propparse 0.1.0

A library to parse .properties files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Properties Parser

A library to parse `.properties` files.

Use the published `fetch_file` function to parse a file from the given path.
On success, it returns a `Vec<Entry>`, which contains all entries in the provided
file.

An `Entry` provides the following data structure:
```

```