summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 285a091f6da51729b5a737558af846a3ef9abf35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `x-www-form-urlencoded` meets Serde

#![warn(unused_extern_crates)]

extern crate itoa;
extern crate dtoa;
#[macro_use]
extern crate serde;
extern crate url;

pub mod de;
pub mod ser;

pub use de::{Deserializer, from_bytes, from_str};
pub use ser::{Serializer, to_string};