Explicit version in Readme

I know this means it needs to be updated at each major release, but I hate
wildcard dependency versions and one of my goals in life is to hunt them down
and replace them to restore sanity (as defined by SemVer) ;)
This commit is contained in:
Pascal Hertleif 2016-07-28 10:32:32 +02:00 committed by GitHub
parent c1d115843d
commit d1828248a7

View File

@ -20,8 +20,8 @@ This crate works with Cargo and can be found on
```toml
[dependencies]
serde = "*"
serde_json = "*"
serde = "0.8"
serde_json = "0.8"
```
Using Serde JSON
@ -54,8 +54,8 @@ It also can be used with Serde's automatic serialization library,
```toml
[dependencies]
...
serde = "*"
serde_macros = "*"
serde = "0.8"
serde_macros = "0.8"
...
```