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.*"