aboutsummaryrefslogtreecommitdiff
path: root/cache
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2026-01-06 02:53:56 +0100
committermetamuffin <metamuffin@disroot.org>2026-01-06 02:53:56 +0100
commit1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0 (patch)
treed17dc16bb14772c184c1b539f51e548bc8e452d0 /cache
parentbb7aa0604d1928ec435e97f6e58521597bc61c3b (diff)
downloadjellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar
jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar.bz2
jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar.zst
Update copyright year
Diffstat (limited to 'cache')
-rw-r--r--cache/src/backends/dummy.rs2
-rw-r--r--cache/src/backends/filesystem.rs2
-rw-r--r--cache/src/backends/mod.rs2
-rw-r--r--cache/src/backends/rocksdb.rs2
-rw-r--r--cache/src/bin/cache_fs_to_rocksdb.rs2
-rw-r--r--cache/src/bin/cache_rocksdb_delete_prefix.rs2
-rw-r--r--cache/src/helper.rs2
-rw-r--r--cache/src/lib.rs2
8 files changed, 8 insertions, 8 deletions
diff --git a/cache/src/backends/dummy.rs b/cache/src/backends/dummy.rs
index 5ebc2e3..7b0efa5 100644
--- a/cache/src/backends/dummy.rs
+++ b/cache/src/backends/dummy.rs
@@ -1,7 +1,7 @@
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use crate::backends::CacheStorage;
diff --git a/cache/src/backends/filesystem.rs b/cache/src/backends/filesystem.rs
index ec242d2..f1bbdf9 100644
--- a/cache/src/backends/filesystem.rs
+++ b/cache/src/backends/filesystem.rs
@@ -1,7 +1,7 @@
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use crate::{Config, backends::CacheStorage};
diff --git a/cache/src/backends/mod.rs b/cache/src/backends/mod.rs
index 506eace..52a954b 100644
--- a/cache/src/backends/mod.rs
+++ b/cache/src/backends/mod.rs
@@ -1,7 +1,7 @@
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
pub mod dummy;
pub mod filesystem;
diff --git a/cache/src/backends/rocksdb.rs b/cache/src/backends/rocksdb.rs
index 183664f..9db86dd 100644
--- a/cache/src/backends/rocksdb.rs
+++ b/cache/src/backends/rocksdb.rs
@@ -1,7 +1,7 @@
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use crate::{Config, backends::CacheStorage};
diff --git a/cache/src/bin/cache_fs_to_rocksdb.rs b/cache/src/bin/cache_fs_to_rocksdb.rs
index 0c9900c..d283dcb 100644
--- a/cache/src/bin/cache_fs_to_rocksdb.rs
+++ b/cache/src/bin/cache_fs_to_rocksdb.rs
@@ -1,7 +1,7 @@
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use anyhow::{Result, bail};
diff --git a/cache/src/bin/cache_rocksdb_delete_prefix.rs b/cache/src/bin/cache_rocksdb_delete_prefix.rs
index 1245f74..e09ce61 100644
--- a/cache/src/bin/cache_rocksdb_delete_prefix.rs
+++ b/cache/src/bin/cache_rocksdb_delete_prefix.rs
@@ -1,7 +1,7 @@
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use anyhow::Result;
diff --git a/cache/src/helper.rs b/cache/src/helper.rs
index 46ef661..ebd20a3 100644
--- a/cache/src/helper.rs
+++ b/cache/src/helper.rs
@@ -1,7 +1,7 @@
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
use base64::{Engine, prelude::BASE64_URL_SAFE};
diff --git a/cache/src/lib.rs b/cache/src/lib.rs
index c939a9c..9559fbc 100644
--- a/cache/src/lib.rs
+++ b/cache/src/lib.rs
@@ -1,7 +1,7 @@
/*
This file is part of jellything (https://codeberg.org/metamuffin/jellything)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
- Copyright (C) 2025 metamuffin <metamuffin.org>
+ Copyright (C) 2026 metamuffin <metamuffin.org>
*/
mod backends;
mod helper;