aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--readme.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/readme.md b/readme.md
index 753faba..9378ccc 100644
--- a/readme.md
+++ b/readme.md
@@ -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
8configuration handling. All you need to do is derive the 8configuration 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
10where to store it and and how to do so safely. 10where to store it and and how to do so safely.
11 11
12 12
13Most of `fondant` is based off the `confy` crate. 13Most of `fondant` is based off the `confy` crate,
14 14with 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
23Drop this in your `Cargo.toml` to gets started: 22Drop this in your `Cargo.toml` to get started:
24 23
25``` 24```
26[dependencies] 25[dependencies]