docs.rs failed to build msgpack-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
rust-msgpack
Msgpack implementation for Rust language.
Installation
Simply include the rust-msgpack in your Cargo dependencies.
[]
= "git@github.com:mneumann/rust-msgpack.git"
Quickstart
extern crate msgpack;
To enable your own data structures to be automatically serialized from and to msgpack, derive from Encodable and Decodable as shown in the following example:
extern crate serialize;
Testing
cargo test
License
This code licensed under the same terms as Rust itself: dual MIT/Apache2 license options.