From d90a338930aeabfea3dd2bddfb0449f1ca82ddad Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Fri, 17 Apr 2020 13:39:07 +0600 Subject: [PATCH] Add ResourcePath impl for &T where T: ResourcePath --- ntex-router/CHANGES.txt | 4 ++++ ntex-router/Cargo.toml | 2 +- ntex-router/src/lib.rs | 6 ++++++ ntex/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ntex-router/CHANGES.txt b/ntex-router/CHANGES.txt index b6eacc3b..3751b34c 100644 --- a/ntex-router/CHANGES.txt +++ b/ntex-router/CHANGES.txt @@ -1,5 +1,9 @@ # Changes +## [0.3.4] - 2020-04-17 + +* Add ResourcePath impl for &T where T: ResourcePath + ## [0.3.3] - 2020-04-11 * Fix `/` prefix match diff --git a/ntex-router/Cargo.toml b/ntex-router/Cargo.toml index 33f81b8c..a4f9553f 100644 --- a/ntex-router/Cargo.toml +++ b/ntex-router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-router" -version = "0.3.3" +version = "0.3.4" authors = ["Nikolay Kim "] description = "Path router" keywords = ["ntex"] diff --git a/ntex-router/src/lib.rs b/ntex-router/src/lib.rs index e4bb8c9f..f788437c 100644 --- a/ntex-router/src/lib.rs +++ b/ntex-router/src/lib.rs @@ -45,6 +45,12 @@ impl ResourcePath for bytestring::ByteString { } } +impl<'a, T: ResourcePath> ResourcePath for &'a T { + fn path(&self) -> &str { + (*self).path() + } +} + /// Helper trait for type that could be converted to path pattern pub trait IntoPattern { fn patterns(&self) -> Vec; diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 60d9d4da..de177b6a 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -36,7 +36,7 @@ compress = ["flate2", "brotli2"] cookie = ["coo-kie", "coo-kie/percent-encode"] [dependencies] -ntex-codec = "0.1.1" +ntex-codec = "0.1.2" ntex-rt = "0.1.1" ntex-rt-macros = "0.1" ntex-router = "0.3.3"