summaryrefslogtreecommitdiffstats
path: root/third_party/rust/serde_urlencoded/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/serde_urlencoded/src/lib.rs')
-rw-r--r--third_party/rust/serde_urlencoded/src/lib.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/third_party/rust/serde_urlencoded/src/lib.rs b/third_party/rust/serde_urlencoded/src/lib.rs
new file mode 100644
index 0000000000..776ae54ab1
--- /dev/null
+++ b/third_party/rust/serde_urlencoded/src/lib.rs
@@ -0,0 +1,17 @@
+//! `x-www-form-urlencoded` meets Serde
+
+#![warn(unused_extern_crates)]
+
+extern crate dtoa;
+extern crate itoa;
+#[macro_use]
+extern crate serde;
+extern crate url;
+
+pub mod de;
+pub mod ser;
+
+#[doc(inline)]
+pub use de::{from_bytes, from_reader, from_str, Deserializer};
+#[doc(inline)]
+pub use ser::{to_string, Serializer};