summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2016-09-11 13:26:21 +0200
committerAnthony Ramine <n.oxyde@gmail.com>2016-09-11 13:44:28 +0200
commit6ec689b3762a1f8090d97045a76d8d7282dd1fe3 (patch)
tree86fb7f7b09e13fdb65359942e868a747eb8adffc /src/lib.rs
x-www-form-urlencoded meets Serde
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..95a0ad6
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,11 @@
+//! `x-www-form-urlencoded` meets Serde
+
+#[macro_use]
+extern crate serde;
+extern crate url;
+
+pub mod de;
+pub mod ser;
+
+pub use de::Deserializer;
+pub use ser::Serializer;