diff options
-rw-r--r-- | readme.md | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -6,13 +6,12 @@ | |||
6 | 6 | ||
7 | `fondant` is a macro based library to take the boilerplate out of | 7 | `fondant` is a macro based library to take the boilerplate out of |
8 | configuration handling. All you need to do is derive the | 8 | configuration handling. All you need to do is derive the |
9 | `Configure` trait on your struct, and fondant will decide | 9 | `Configure` trait on your struct, and `fondant` will decide |
10 | where to store it and and how to do so safely. | 10 | where to store it and and how to do so safely. |
11 | 11 | ||
12 | 12 | ||
13 | Most of `fondant` is based off the `confy` crate. | 13 | Most of `fondant` is based off the `confy` crate, |
14 | 14 | with a couple of extra features: | |
15 | `fondant` adds a couple of extra features: | ||
16 | 15 | ||
17 | - support for json, yaml and toml | 16 | - support for json, yaml and toml |
18 | - support for custom config paths | 17 | - support for custom config paths |
@@ -20,7 +19,7 @@ Most of `fondant` is based off the `confy` crate. | |||
20 | 19 | ||
21 | ### Usage ([Full Documentation](https://docs.rs/fondant/)) | 20 | ### Usage ([Full Documentation](https://docs.rs/fondant/)) |
22 | 21 | ||
23 | Drop this in your `Cargo.toml` to gets started: | 22 | Drop this in your `Cargo.toml` to get started: |
24 | 23 | ||
25 | ``` | 24 | ``` |
26 | [dependencies] | 25 | [dependencies] |