diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-06 23:50:51 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-06 23:50:51 +0200 |
commit | 356b3b8eebf22083c7d9655bb43e141dd0df732c (patch) | |
tree | 5573ff4290a8d36bb1606562615c3438e3449915 /logic/src | |
parent | d205173acdd721d581a88fe4788d1ec64b9c2055 (diff) | |
download | jellything-356b3b8eebf22083c7d9655bb43e141dd0df732c.tar jellything-356b3b8eebf22083c7d9655bb43e141dd0df732c.tar.bz2 jellything-356b3b8eebf22083c7d9655bb43e141dd0df732c.tar.zst |
misc changes for current rust nightly
Diffstat (limited to 'logic/src')
-rw-r--r-- | logic/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/logic/src/lib.rs b/logic/src/lib.rs index 0bd44d7..444293a 100644 --- a/logic/src/lib.rs +++ b/logic/src/lib.rs @@ -3,8 +3,9 @@ which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2025 metamuffin <metamuffin.org> */ -#![feature(duration_constructors, let_chains)] +#![feature(duration_constructors)] +pub mod account; pub mod admin; pub mod assets; pub mod filter_sort; @@ -12,11 +13,10 @@ pub mod home; pub mod items; pub mod login; pub mod node; +pub mod permission; pub mod search; pub mod session; pub mod stats; -pub mod account; -pub mod permission; use anyhow::Context; use anyhow::Result; |