diff options
Diffstat (limited to 'cache')
-rw-r--r-- | cache/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cache/src/lib.rs b/cache/src/lib.rs index 2d31d6c..1154ddf 100644 --- a/cache/src/lib.rs +++ b/cache/src/lib.rs @@ -44,7 +44,7 @@ static CONF: LazyLock<Config> = LazyLock::new(|| { .expect("cache config not preloaded. logic error") }); -#[derive(Debug, Encode, Decode, Serialize, Clone)] +#[derive(Debug, Encode, Decode, Serialize, Clone, PartialEq, Eq)] pub struct CachePath(pub PathBuf); impl CachePath { pub fn abs(&self) -> PathBuf { |