From c631ba37672ead52de907c4e865be6b235259b77 Mon Sep 17 00:00:00 2001 From: David Willie Date: Wed, 22 Jun 2016 14:51:18 +1000 Subject: [PATCH] Clarify serde support inclusion in readme.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 6c3fdf3..8457276 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,12 @@ Put this in your `Cargo.toml`: chrono = "0.2" ``` +Or, if you want [Serde](http://github.com/serde-rs/serde) support, include it like this: +```toml +[dependencies] +chrono = { version = "0.2", features = ["serde"] } +``` + And put this in your crate root: ```rust