From d1828248a7e4edd667d92adae6a89e32f13e1d21 Mon Sep 17 00:00:00 2001 From: Pascal Hertleif Date: Thu, 28 Jul 2016 10:32:32 +0200 Subject: [PATCH] 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) ;) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9d46abd..32351e1 100644 --- a/README.md +++ b/README.md @@ -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" ... ```