aboutsummaryrefslogtreecommitdiff
path: root/server/src/lib.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-09-18 16:16:58 +0200
committermetamuffin <metamuffin@disroot.org>2024-09-18 16:16:58 +0200
commit9d1c30cf9ef5a057c760da49b52312de4a5afc6a (patch)
treef6532fd40259f7e54d068a656f3aaecf98c22682 /server/src/lib.rs
parentfb6ca2a4b9d78dd80dbdf37b2926d9ede4108e8b (diff)
downloadhurrycurry-9d1c30cf9ef5a057c760da49b52312de4a5afc6a.tar
hurrycurry-9d1c30cf9ef5a057c760da49b52312de4a5afc6a.tar.bz2
hurrycurry-9d1c30cf9ef5a057c760da49b52312de4a5afc6a.tar.zst
prevent multiple tutorials at once
Diffstat (limited to 'server/src/lib.rs')
-rw-r--r--server/src/lib.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/server/src/lib.rs b/server/src/lib.rs
index 306ebd40..112f28ea 100644
--- a/server/src/lib.rs
+++ b/server/src/lib.rs
@@ -15,7 +15,14 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
-#![feature(if_let_guard, map_many_mut, let_chains, iterator_try_collect, isqrt)]
+#![feature(
+ if_let_guard,
+ map_many_mut,
+ let_chains,
+ iterator_try_collect,
+ isqrt,
+ trait_upcasting
+)]
pub mod commands;
pub mod data;
pub mod entity;