1[package]
2name = "rmpv"
3version = "1.0.0"
4authors = ["Evgeny Safronov <division494@gmail.com>"]
5license = "MIT"
6description = "Value variant for RMP"
7repository = "https://github.com/3Hren/msgpack-rust"
8documentation = "https://docs.rs/rmpv"
9readme = "../README.md"
10keywords = ["msgpack", "MessagePack", "serialization"]
11categories = ["encoding"]
12edition = "2018"
13
14[features]
15with-serde = ["serde", "serde_bytes"]
16
17[dependencies]
18serde_bytes = { version = "0.11.5", optional = true }
19rmp = { version = "0.8.8", path = "../rmp" }
20num-traits = "0.2.14"
21serde = { version = "1.0.119", optional = true }
22
23[dev-dependencies]
24quickcheck = "1.0.2"
25