From 497fa32a449a540bcf9821a393a145d3bc29be4b Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Mon, 7 Jan 2019 12:54:02 -0500 Subject: [PATCH] Make the `toml` feature more clear in the README example --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) 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;