diff options
author | metamuffin <metamuffin@disroot.org> | 2025-05-03 11:53:50 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-05-03 11:53:50 +0200 |
commit | 0a5c23757c2a0fc8784ea1b5a3ad5b0cba0709e0 (patch) | |
tree | fb26033fb934cfe87d36679d7fdeb9b71a1e114a /cache | |
parent | f413b4087f214a9cb5d014fec59ae07468155bdd (diff) | |
download | jellything-0a5c23757c2a0fc8784ea1b5a3ad5b0cba0709e0.tar jellything-0a5c23757c2a0fc8784ea1b5a3ad5b0cba0709e0.tar.bz2 jellything-0a5c23757c2a0fc8784ea1b5a3ad5b0cba0709e0.tar.zst |
tests in some places
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 { |