Skip to content

Commit

Permalink
dependency update, minor readme fix
Browse files Browse the repository at this point in the history
  • Loading branch information
birkenfeld committed May 1, 2018
1 parent effc596 commit 639592f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
@@ -1,23 +1,23 @@
[package]
name = "serde-pickle"
version = "0.4.0"
version = "0.4.1"
authors = ["Georg Brandl <georg@python.org>"]
license = "MIT/Apache-2.0"
description = "A serde-based serialization library for Python's pickle format"
repository = "https://github.com/birkenfeld/serde-pickle"
documentation = "http://birkenfeld.github.io/serde-pickle/serde_pickle/index.html"
documentation = "http://docs.rs/serde-pickle"
keywords = ["pickle", "python", "serde", "serialization"]

[dependencies]
serde = "1.0.2"
byteorder = "1.0.0"
num-bigint = "0.1.32"
num-traits = "0.1.32"
num-bigint = "0.1.43"
num-traits = "0.2.2"
iter-read = "0.1.0"

# For the example binary and the test suite.
[dev-dependencies]
serde_derive = "1.0.2"
serde_json = "1.0.0"
rand = "0.3.14"
quickcheck = "0.4.1"
rand = "0.4.2"
quickcheck = "0.6.2"
9 changes: 2 additions & 7 deletions README.md
Expand Up @@ -4,7 +4,7 @@ Serde Pickle Serialization Library
[![Build status](https://api.travis-ci.org/birkenfeld/serde-pickle.png)](https://travis-ci.org/birkenfeld/serde-pickle)
[![Latest Version](https://img.shields.io/crates/v/serde-pickle.svg)](https://crates.io/crates/serde-pickle)

[Documentation](https://birkenfeld.github.io/serde-pickle/serde_pickle/index.html)
[Documentation](https://docs.rs/serde-pickle)

This crate is a Rust library for parsing and generating Python pickle
streams. It is built upon [Serde](https://github.com/serde-rs/serde), a high
Expand Down Expand Up @@ -55,9 +55,4 @@ fn main() {

Serializing and deserializing structs and enums that implement the
serde-provided traits is supported, and works analogous to other crates
(using either `serde_macros` or `serde_codegen`).

Notes
=====

The test suite currently only works with the nightly-based `serde_macros`.
(using `serde_derive`).

0 comments on commit 639592f

Please sign in to comment.