Inline docs of reexports and bump version to 0.4.2

This commit is contained in:
Anthony Ramine 2017-02-05 14:45:48 +01:00
parent 9931bc5318
commit a8def0d865
4 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "serde_urlencoded"
version = "0.4.1"
version = "0.4.2"
authors = ["Anthony Ramine <n.oxyde@gmail.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/nox/serde_urlencoded"
@ -9,6 +9,9 @@ description = "`x-www-form-urlencoded` meets Serde"
categories = ["encoding", "web-programming"]
keywords = ["serde", "serialization", "urlencoded"]
[badges]
travis-ci = {repository = "nox/serde_urlencoded"}
[lib]
test = false

View File

@ -18,7 +18,7 @@ This crate works with Cargo and can be found on
```toml
[dependencies]
serde_urlencoded = "0.4.0"
serde_urlencoded = "0.4.2"
```
[crates.io]: https://crates.io/crates/serde_urlencoded

View File

@ -2,6 +2,7 @@
use serde::de;
#[doc(inline)]
pub use serde::de::value::Error;
use serde::de::value::MapDeserializer;
use std::io::Read;

View File

@ -11,5 +11,7 @@ extern crate url;
pub mod de;
pub mod ser;
pub use de::{Deserializer, from_bytes, from_str, from_reader};
#[doc(inline)]
pub use de::{Deserializer, from_bytes, from_reader, from_str};
#[doc(inline)]
pub use ser::{Serializer, to_string};