This commit is contained in:
Ty Overby 2016-07-28 12:35:40 -07:00
parent aa531e465a
commit 44ea3bbbdb
1 changed files with 10 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "bincode"
version = "0.5.9"
version = "0.6.0"
authors = ["Ty Overby <ty@pre-alpha.com>", "Francesco Mazzoli <f@mazzo.li>"]
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.*"