summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2017-02-05 14:45:48 +0100
committerAnthony Ramine <n.oxyde@gmail.com>2017-02-05 14:46:33 +0100
commita8def0d8656312b86e512fa6798f0ef09e7a3645 (patch)
treeae686e4dd5c3a28d19a7e2c80d3d34cc590ee901
parent9931bc5318da6be3d3ea8ca5c298e132cf13ceac (diff)
Inline docs of reexports and bump version to 0.4.2
-rw-r--r--Cargo.toml5
-rw-r--r--README.md2
-rw-r--r--src/de.rs1
-rw-r--r--src/lib.rs4
4 files changed, 9 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e788d4e..a788d23 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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
diff --git a/README.md b/README.md
index 105393b..316add1 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/src/de.rs b/src/de.rs
index 95999d0..623bb49 100644
--- a/src/de.rs
+++ b/src/de.rs
@@ -2,6 +2,7 @@
use serde::de;
+#[doc(inline)]
pub use serde::de::value::Error;
use serde::de::value::MapDeserializer;
use std::io::Read;
diff --git a/src/lib.rs b/src/lib.rs
index db5f3a7..bf7ad59 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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};