summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSam Scott <sam.scott89@gmail.com>2017-03-12 15:33:01 -0400
committerSam Scott <sam.scott89@gmail.com>2017-03-12 15:33:01 -0400
commit4dfe0be52666a922ee8aa97e2a1d677c6463fcf2 (patch)
tree8ce5f56cef9981e5e2e00a9b09b60082b8de0482 /src/lib.rs
parent57bfc2e1061da6bf55a1d04ac35e6dbbeebabb69 (diff)
Address some clippy comments.
Add docs for `Config`.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib.rs b/src/lib.rs
index b14df1b..d11e49f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -5,7 +5,7 @@
//!
//! This library aims for compatability with the syntax of
//! [qs](https://github.com/ljharb/qs) and also of the
-//! [Rack::Utils::parse_nested_query](http://www.rubydoc.info/github/rack/rack/Rack/Utils#parse_nested_query-class_method)
+//! [`Rack::Utils::parse_nested_query`](http://www.rubydoc.info/github/rack/rack/Rack/Utils#parse_nested_query-class_method)
//! implementation.
//!
//! For users who do *not* require nested URL parameters, it is highly
@@ -66,10 +66,6 @@ extern crate dtoa;
extern crate serde;
extern crate url;
-#[macro_use]
-extern crate serde_derive;
-
-
pub mod de;
pub mod ser;