mirror of https://git.sr.ht/~stygianentity/bincode
0.6.0
This commit is contained in:
parent
aa531e465a
commit
44ea3bbbdb
14
Cargo.toml
14
Cargo.toml
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bincode"
|
name = "bincode"
|
||||||
version = "0.5.9"
|
version = "0.6.0"
|
||||||
authors = ["Ty Overby <ty@pre-alpha.com>", "Francesco Mazzoli <f@mazzo.li>"]
|
authors = ["Ty Overby <ty@pre-alpha.com>", "Francesco Mazzoli <f@mazzo.li>"]
|
||||||
|
|
||||||
repository = "https://github.com/TyOverby/bincode"
|
repository = "https://github.com/TyOverby/bincode"
|
||||||
|
|
@ -8,13 +8,19 @@ documentation = "http://tyoverby.github.io/bincode/bincode/"
|
||||||
keywords = ["binary", "encode", "decode", "serialize", "deserialize"]
|
keywords = ["binary", "encode", "decode", "serialize", "deserialize"]
|
||||||
|
|
||||||
license = "MIT"
|
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]
|
[dependencies]
|
||||||
rustc-serialize = { version = "0.3.*", optional = true }
|
|
||||||
byteorder = "0.5.*"
|
byteorder = "0.5.*"
|
||||||
num-traits = "0.1.32"
|
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]
|
[dev-dependencies]
|
||||||
serde_macros = "0.8.*"
|
serde_macros = "0.8.*"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue