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

#[doc(inline)]
pub use de::{Deserializer, from_bytes, from_reader, from_str};
#[doc(inline)]
pub use ser::{Serializer, to_string};