summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 8fefd77ecf3bd99ac8d1934967a052e7293eab4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `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;

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