summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorbors-ng[bot] <bors-ng[bot]@users.noreply.github.com>2017-01-29 09:30:09 +0000
committerbors-ng[bot] <bors-ng[bot]@users.noreply.github.com>2017-01-29 09:30:09 +0000
commit2cc32847ac45bee7d0b60020edda3cce7a07b4ce (patch)
tree49a0fc14c3ed50947c2d2f771998cdf38c3948a2 /src/lib.rs
parent9aefb1c02d8cb5746f07dc6ac461ce8eedced5e3 (diff)
parent3e9ebe4fd7428da26dd75e2cc6e5025c847c99e6 (diff)
Merge #10
10: Update to serde 0.9.0 and various improvements
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index bacb67f..8fefd77 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,8 +1,11 @@
//! `x-www-form-urlencoded` meets Serde
+extern crate itoa;
+extern crate dtoa;
#[macro_use]
extern crate serde;
extern crate url;
+extern crate void;
pub mod de;
pub mod ser;