Clarify serde support inclusion in readme.md

This commit is contained in:
David Willie 2016-06-22 14:51:18 +10:00
parent 7bfb92711d
commit c631ba3767
1 changed files with 6 additions and 0 deletions

View File

@ -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