Merge pull request #80 from dwillie/master

Clarify serde support inclusion in readme.md
This commit is contained in:
Kang Seonghoon 2016-06-23 00:45:08 +09:00 committed by GitHub
commit 72c3dff17d
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