diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-01-31 10:42:51 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-01-31 10:52:21 +0100 |
commit | bc8197c884e7a5dae25b6aedb02eac98145bee92 (patch) | |
tree | e9d4f2a79aca78f38ce6101a5cff911a587a19a4 /src/lib.rs | |
parent | 2cc32847ac45bee7d0b60020edda3cce7a07b4ce (diff) |
Update serde to 0.9.3 and use serde::ser::Impossible
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,11 +1,12 @@ //! `x-www-form-urlencoded` meets Serde +#![warn(unused_extern_crates)] + extern crate itoa; extern crate dtoa; #[macro_use] extern crate serde; extern crate url; -extern crate void; pub mod de; pub mod ser; |