summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorPaul Woolcock <paul@woolcock.us>2019-01-07 12:54:02 -0500
committerPaul Woolcock <paul@woolcock.us>2019-01-07 12:54:02 -0500
commit497fa32a449a540bcf9821a393a145d3bc29be4b (patch)
tree2feb1bd13da7e89d47b74cdb9265b1af37dcdd12 /README.md
parentde658232fd42ad8f6ab95a3619dd2136ee08dddf (diff)
Make the `toml` feature more clear in the README example
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index 3d28410..ab0561d 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,13 @@ extern crate elefren;
## Example
+In your `Cargo.toml`, make sure you enable the `toml` feature:
+
+```toml
+[dependencies]
+elefren = { version = "0.18", features = ["toml"] }
+```
+
```rust,no_run
extern crate elefren;