diff options
author | Sam Scott <sam.scott89@gmail.com> | 2017-03-12 15:33:01 -0400 |
---|---|---|
committer | Sam Scott <sam.scott89@gmail.com> | 2017-03-12 15:33:01 -0400 |
commit | 4dfe0be52666a922ee8aa97e2a1d677c6463fcf2 (patch) | |
tree | 8ce5f56cef9981e5e2e00a9b09b60082b8de0482 /src/lib.rs | |
parent | 57bfc2e1061da6bf55a1d04ac35e6dbbeebabb69 (diff) |
Address some clippy comments.
Add docs for `Config`.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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; |