From 44ea3bbbdbe65685c7c1e9a911cc3b516c707cfc Mon Sep 17 00:00:00 2001 From: Ty Overby Date: Thu, 28 Jul 2016 12:35:40 -0700 Subject: [PATCH] 0.6.0 --- Cargo.toml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ac09754..c4befb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bincode" -version = "0.5.9" +version = "0.6.0" authors = ["Ty Overby ", "Francesco Mazzoli "] repository = "https://github.com/TyOverby/bincode" @@ -8,13 +8,19 @@ documentation = "http://tyoverby.github.io/bincode/bincode/" keywords = ["binary", "encode", "decode", "serialize", "deserialize"] license = "MIT" -description = "A binary serialization / deserialization strategy and implementation." +description = "A binary serialization / deserialization strategy and implementation with serde and rustc-serialize backends." [dependencies] -rustc-serialize = { version = "0.3.*", optional = true } byteorder = "0.5.*" num-traits = "0.1.32" -serde = { version = "0.8.*", optional = true } + +[dependencies.rustc-serialize] +version = "0.3.*" +optional = true + +[dependencies.serde] +version = "0.8.*" +optional = true [dev-dependencies] serde_macros = "0.8.*"