From d1f8ac107b4d2bd8cc891b7307fc855d3445d630 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 28 Oct 2020 17:16:08 +0600 Subject: [PATCH] Router struct implements Clone trait --- ntex-router/CHANGES.txt | 4 ++++ ntex-router/Cargo.toml | 6 +++--- ntex-router/src/router.rs | 1 + ntex-router/src/tree.rs | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ntex-router/CHANGES.txt b/ntex-router/CHANGES.txt index 59703e79..7be9db0d 100644 --- a/ntex-router/CHANGES.txt +++ b/ntex-router/CHANGES.txt @@ -1,5 +1,9 @@ # Changes +## [0.3.8] - 2020-10-28 + +* Router struct implements Clone trait + ## [0.3.7] - 2020-09-21 * Fix hex conversion helper diff --git a/ntex-router/Cargo.toml b/ntex-router/Cargo.toml index 51a6ca7c..3bb539a1 100644 --- a/ntex-router/Cargo.toml +++ b/ntex-router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-router" -version = "0.3.7" +version = "0.3.8" authors = ["ntex contributors "] description = "Path router" keywords = ["ntex"] @@ -17,8 +17,8 @@ path = "src/lib.rs" default = ["http"] [dependencies] -regex = "1.3.5" -serde = "1.0.105" +regex = "1.4.1" +serde = "1.0.116" bytestring = "0.1.5" log = "0.4.8" http = { version = "0.2.1", optional = true } diff --git a/ntex-router/src/router.rs b/ntex-router/src/router.rs index 3221b316..d12cb40b 100644 --- a/ntex-router/src/router.rs +++ b/ntex-router/src/router.rs @@ -11,6 +11,7 @@ pub struct ResourceInfo { } /// Resource router. +#[derive(Clone)] pub struct Router { tree: Tree, resources: Vec<(ResourceDef, T, Option)>, diff --git a/ntex-router/src/tree.rs b/ntex-router/src/tree.rs index 1c54b5d3..5a1098a5 100644 --- a/ntex-router/src/tree.rs +++ b/ntex-router/src/tree.rs @@ -5,7 +5,7 @@ use super::path::PathItem; use super::resource::{ResourceDef, Segment}; use super::{Resource, ResourcePath}; -#[derive(Debug)] +#[derive(Debug, Clone)] pub(super) struct Tree { key: Vec, value: Vec,