From 934aca7bf60d5a20e9fbd7b4a2ba1a9ce43fab04 Mon Sep 17 00:00:00 2001 From: A Farzat Date: Fri, 19 Jun 2026 20:17:37 +0300 Subject: Make remove_paths normalize paths for comparison --- src/normalizer.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/normalizer.rs') diff --git a/src/normalizer.rs b/src/normalizer.rs index a9714b3..116cca1 100644 --- a/src/normalizer.rs +++ b/src/normalizer.rs @@ -4,6 +4,7 @@ use std::{ path::{Component, Path, PathBuf}, }; +#[derive(PartialEq, Eq, Hash)] pub struct NormalizedPath { /// Path normalized and made absolute, suitable for filesystem access pub absolute: PathBuf, -- cgit v1.3.1