cleanup clippy warnings

This commit is contained in:
Nikolay Kim 2020-03-31 08:20:13 +06:00
parent c73e64226d
commit 4d6cdbf405
4 changed files with 10 additions and 10 deletions

View file

@ -1,6 +1,6 @@
# Changes # Changes
## [0.3.0] - 2020-03-22 ## [0.3.0] - 2020-03-31
* Case insensitive routing * Case insensitive routing

View file

@ -4,7 +4,7 @@ version = "0.3.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"] authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Path router" description = "Path router"
keywords = ["ntex"] keywords = ["ntex"]
repository = "https://github.com/fafhrd91/ntex.git" repository = "https://github.com/ntex-rs/ntex.git"
documentation = "https://docs.rs/ntex-router/" documentation = "https://docs.rs/ntex-router/"
license = "MIT" license = "MIT"
edition = "2018" edition = "2018"
@ -19,10 +19,10 @@ default = ["http"]
[dependencies] [dependencies]
regex = "1.3.5" regex = "1.3.5"
serde = "1.0.105" serde = "1.0.105"
bytestring = "0.1.2" bytestring = "0.1.5"
log = "0.4.8" log = "0.4.8"
http = { version = "0.2.0", optional = true } http = { version = "0.2.1", optional = true }
[dev-dependencies] [dev-dependencies]
http = "0.2.0" http = "0.2.1"
serde_derive = "1.0" serde_derive = "1.0"

View file

@ -22,7 +22,7 @@ pub trait Resource<T: ResourcePath> {
pub trait ResourcePath { pub trait ResourcePath {
fn path(&self) -> &str; fn path(&self) -> &str;
fn unquote<'a>(s: &'a str) -> std::borrow::Cow<'a, str> { fn unquote(s: &str) -> std::borrow::Cow<'_, str> {
s.into() s.into()
} }
} }
@ -70,7 +70,7 @@ impl<'a> IntoPattern for &'a str {
impl<T: AsRef<str>> IntoPattern for Vec<T> { impl<T: AsRef<str>> IntoPattern for Vec<T> {
fn patterns(&self) -> Vec<String> { fn patterns(&self) -> Vec<String> {
self.into_iter().map(|v| v.as_ref().to_string()).collect() self.iter().map(|v| v.as_ref().to_string()).collect()
} }
} }
@ -128,7 +128,7 @@ mod http_support {
self.path() self.path()
} }
fn unquote<'a>(s: &'a str) -> std::borrow::Cow<'a, str> { fn unquote(s: &str) -> std::borrow::Cow<'_, str> {
if let Some(q) = super::quoter::requote(s.as_bytes()) { if let Some(q) = super::quoter::requote(s.as_bytes()) {
std::borrow::Cow::Owned(q) std::borrow::Cow::Owned(q)
} else { } else {

View file

@ -243,7 +243,7 @@ impl Tree {
return if let Some((val, skip)) = res { return if let Some((val, skip)) = res {
let path = resource.resource_path(); let path = resource.resource_path();
path.segments = segments; path.segments = segments;
path.skip = path.skip + skip as u16; path.skip += skip as u16;
Some(val) Some(val)
} else { } else {
None None
@ -265,7 +265,7 @@ impl Tree {
{ {
let path = resource.resource_path(); let path = resource.resource_path();
path.segments = segments; path.segments = segments;
path.skip = path.skip + skip as u16; path.skip += skip as u16;
Some(val) Some(val)
} else { } else {
None None