aboutsummaryrefslogtreecommitdiff
path: root/database/src
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-09-06 23:50:51 +0200
committermetamuffin <metamuffin@disroot.org>2025-09-06 23:50:51 +0200
commit356b3b8eebf22083c7d9655bb43e141dd0df732c (patch)
tree5573ff4290a8d36bb1606562615c3438e3449915 /database/src
parentd205173acdd721d581a88fe4788d1ec64b9c2055 (diff)
downloadjellything-356b3b8eebf22083c7d9655bb43e141dd0df732c.tar
jellything-356b3b8eebf22083c7d9655bb43e141dd0df732c.tar.bz2
jellything-356b3b8eebf22083c7d9655bb43e141dd0df732c.tar.zst
misc changes for current rust nightly
Diffstat (limited to 'database/src')
-rw-r--r--database/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/src/lib.rs b/database/src/lib.rs
index b84ddc9..32df667 100644
--- a/database/src/lib.rs
+++ b/database/src/lib.rs
@@ -480,7 +480,7 @@ impl bincode::enc::write::Writer for HashWriter {
#[cfg(not(feature = "db_json"))]
pub struct Ser<T>(pub T);
#[cfg(not(feature = "db_json"))]
-impl<T: Encode + Decode + std::fmt::Debug> redb::Value for Ser<T> {
+impl<T: Encode + Decode<()> + std::fmt::Debug> redb::Value for Ser<T> {
type SelfType<'a>
= Ser<T>
where