mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
cleanup clippy warnings
This commit is contained in:
parent
c73e64226d
commit
4d6cdbf405
4 changed files with 10 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
|||
# Changes
|
||||
|
||||
## [0.3.0] - 2020-03-22
|
||||
## [0.3.0] - 2020-03-31
|
||||
|
||||
* Case insensitive routing
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ version = "0.3.0"
|
|||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||
description = "Path router"
|
||||
keywords = ["ntex"]
|
||||
repository = "https://github.com/fafhrd91/ntex.git"
|
||||
repository = "https://github.com/ntex-rs/ntex.git"
|
||||
documentation = "https://docs.rs/ntex-router/"
|
||||
license = "MIT"
|
||||
edition = "2018"
|
||||
|
@ -19,10 +19,10 @@ default = ["http"]
|
|||
[dependencies]
|
||||
regex = "1.3.5"
|
||||
serde = "1.0.105"
|
||||
bytestring = "0.1.2"
|
||||
bytestring = "0.1.5"
|
||||
log = "0.4.8"
|
||||
http = { version = "0.2.0", optional = true }
|
||||
http = { version = "0.2.1", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
http = "0.2.0"
|
||||
http = "0.2.1"
|
||||
serde_derive = "1.0"
|
||||
|
|
|
@ -22,7 +22,7 @@ pub trait Resource<T: ResourcePath> {
|
|||
pub trait ResourcePath {
|
||||
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()
|
||||
}
|
||||
}
|
||||
|
@ -70,7 +70,7 @@ impl<'a> IntoPattern for &'a str {
|
|||
|
||||
impl<T: AsRef<str>> IntoPattern for Vec<T> {
|
||||
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()
|
||||
}
|
||||
|
||||
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()) {
|
||||
std::borrow::Cow::Owned(q)
|
||||
} else {
|
||||
|
|
|
@ -243,7 +243,7 @@ impl Tree {
|
|||
return if let Some((val, skip)) = res {
|
||||
let path = resource.resource_path();
|
||||
path.segments = segments;
|
||||
path.skip = path.skip + skip as u16;
|
||||
path.skip += skip as u16;
|
||||
Some(val)
|
||||
} else {
|
||||
None
|
||||
|
@ -265,7 +265,7 @@ impl Tree {
|
|||
{
|
||||
let path = resource.resource_path();
|
||||
path.segments = segments;
|
||||
path.skip = path.skip + skip as u16;
|
||||
path.skip += skip as u16;
|
||||
Some(val)
|
||||
} else {
|
||||
None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue