diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-01-06 02:53:56 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-01-06 02:53:56 +0100 |
| commit | 1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0 (patch) | |
| tree | d17dc16bb14772c184c1b539f51e548bc8e452d0 /database/src | |
| parent | bb7aa0604d1928ec435e97f6e58521597bc61c3b (diff) | |
| download | jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar.bz2 jellything-1d3fe7b02b2d2ec7cad5c8e3e0fd4eafb60bf0e0.tar.zst | |
Update copyright year
Diffstat (limited to 'database/src')
| -rw-r--r-- | database/src/backends/memory.rs | 2 | ||||
| -rw-r--r-- | database/src/backends/mod.rs | 2 | ||||
| -rw-r--r-- | database/src/backends/redb.rs | 2 | ||||
| -rw-r--r-- | database/src/backends/rocksdb.rs | 2 | ||||
| -rw-r--r-- | database/src/indices/key.rs | 2 | ||||
| -rw-r--r-- | database/src/indices/mod.rs | 2 | ||||
| -rw-r--r-- | database/src/indices/order.rs | 2 | ||||
| -rw-r--r-- | database/src/lib.rs | 2 | ||||
| -rw-r--r-- | database/src/prefix_iterator.rs | 2 | ||||
| -rw-r--r-- | database/src/table.rs | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/database/src/backends/memory.rs b/database/src/backends/memory.rs index 302b232..d7d0e2c 100644 --- a/database/src/backends/memory.rs +++ b/database/src/backends/memory.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::{Db, ReadTransaction, ReadTxnFunction, WriteTransaction, WriteTxnFunction}; diff --git a/database/src/backends/mod.rs b/database/src/backends/mod.rs index dd028f4..580548e 100644 --- a/database/src/backends/mod.rs +++ b/database/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 memory; diff --git a/database/src/backends/redb.rs b/database/src/backends/redb.rs index 409a551..d1a0f8c 100644 --- a/database/src/backends/redb.rs +++ b/database/src/backends/redb.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::{Db, ReadTransaction, ReadTxnFunction, WriteTransaction, WriteTxnFunction}; diff --git a/database/src/backends/rocksdb.rs b/database/src/backends/rocksdb.rs index 92c6a6d..b62a482 100644 --- a/database/src/backends/rocksdb.rs +++ b/database/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::backends::{Db, ReadTransaction, WriteTransaction, WriteTxnFunction}; diff --git a/database/src/indices/key.rs b/database/src/indices/key.rs index 9f9511b..ab38d71 100644 --- a/database/src/indices/key.rs +++ b/database/src/indices/key.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::{ diff --git a/database/src/indices/mod.rs b/database/src/indices/mod.rs index e291c91..ab37589 100644 --- a/database/src/indices/mod.rs +++ b/database/src/indices/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> */ use crate::{backends::WriteTransaction, table::RowNum}; diff --git a/database/src/indices/order.rs b/database/src/indices/order.rs index 25ab01b..9163681 100644 --- a/database/src/indices/order.rs +++ b/database/src/indices/order.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::{ diff --git a/database/src/lib.rs b/database/src/lib.rs index e9e69bb..40bda72 100644 --- a/database/src/lib.rs +++ b/database/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> */ pub mod backends; pub mod indices; diff --git a/database/src/prefix_iterator.rs b/database/src/prefix_iterator.rs index 3586ae2..9a73558 100644 --- a/database/src/prefix_iterator.rs +++ b/database/src/prefix_iterator.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/database/src/table.rs b/database/src/table.rs index 1f44571..ba95f8e 100644 --- a/database/src/table.rs +++ b/database/src/table.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::{ |