Add missing fmt::Debug impls

This commit is contained in:
Nikolay Kim 2023-09-12 17:38:37 +06:00
parent 02e111d373
commit 27f07b6fc4
9 changed files with 94 additions and 10 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.5.2] - 2023-09-12
* Add missing fmt::Debug impls
## [0.5.1] - 2021-08-23
* Fix: segments could be lost in case of immediate match

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-router"
version = "0.5.1"
version = "0.5.2"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Path router"
keywords = ["ntex"]
@ -18,10 +18,10 @@ default = ["http"]
[dependencies]
serde = "1.0"
ntex-bytes = "0.1.9"
ntex-bytes = "0.1.19"
log = "0.4"
http = { version = "0.2", optional = true }
regex = { version = "1.7.0", default-features = false, features = ["std"] }
regex = { version = "1.9.5", default-features = false, features = ["std"] }
[dev-dependencies]
http = "0.2"

View file

@ -1,8 +1,7 @@
use serde::de::{self, Deserializer, Error as DeError, Visitor};
use serde::forward_to_deserialize_any;
use crate::path::{Path, PathIter};
use crate::ResourcePath;
use crate::{path::Path, path::PathIter, ResourcePath};
macro_rules! unsupported_type {
($trait_fn:ident, $name:expr) => {
@ -42,6 +41,7 @@ macro_rules! parse_single_value {
};
}
#[derive(Debug)]
pub struct PathDeserializer<'de, T: ResourcePath> {
path: &'de Path<T>,
}

View file

@ -1,4 +1,9 @@
#![deny(rust_2018_idioms, unreachable_pub)]
#![deny(
rust_2018_idioms,
warnings,
unreachable_pub,
missing_debug_implementations
)]
#![warn(nonstandard_style, future_incompatible)]
//! Resource path matching library.
@ -14,6 +19,7 @@ pub use self::resource::ResourceDef;
pub use self::router::{ResourceId, Router, RouterBuilder};
#[doc(hidden)]
#[derive(Debug)]
pub struct ResourceInfo;
pub trait Resource<T: ResourcePath> {

View file

@ -5,7 +5,7 @@ use super::{IntoPattern, Resource, ResourceDef, ResourcePath};
pub struct ResourceId(u16);
/// Resource router.
#[derive(Clone)]
#[derive(Debug, Clone)]
pub struct Router<T, U = ()> {
tree: Tree,
resources: Vec<(ResourceDef, T, Option<U>)>,
@ -111,6 +111,7 @@ impl<T, U> Router<T, U> {
}
}
#[derive(Debug)]
pub struct RouterBuilder<T, U = ()> {
insensitive: bool,
resources: Vec<(ResourceDef, T, Option<U>)>,