Merge pull request #1075 from hcpl/clarify-readme-example

Clarify the README example for local builds
This commit is contained in:
David Tolnay 2017-10-31 22:16:15 -07:00 committed by GitHub
commit a4e0c2f055
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,10 +20,23 @@ You may be looking for:
## Serde in action ## Serde in action
**Cargo.toml**:
```toml
[dependencies]
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
```
Click on the "Run" button to have a quick taste:
<a href="http://play.integer32.com/?gist=9003c5b88c1f4989941925d7190c6eec" target="_blank"> <a href="http://play.integer32.com/?gist=9003c5b88c1f4989941925d7190c6eec" target="_blank">
<img align="right" width="50" src="https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/master/img/run.png"> <img align="right" width="50" src="https://raw.githubusercontent.com/serde-rs/serde-rs.github.io/master/img/run.png">
</a> </a>
**src/lib.rs**:
```rust ```rust
#[macro_use] #[macro_use]
extern crate serde_derive; extern crate serde_derive;