From fd283d51336047e49d35a7d8a2905f24a13fc4bc Mon Sep 17 00:00:00 2001 From: BlueGlassBlock Date: Thu, 13 Apr 2023 23:09:35 +0800 Subject: [PATCH] chore: Add `type_alias_impl_trait` to features This change was introduced by rust-lang/rust#110237 in the latest nightly. --- ricq-core/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ricq-core/src/lib.rs b/ricq-core/src/lib.rs index 100b71b..8a4544a 100644 --- a/ricq-core/src/lib.rs +++ b/ricq-core/src/lib.rs @@ -1,3 +1,4 @@ +#![feature(impl_trait_in_assoc_type)] #![feature(type_alias_impl_trait)] #![feature(let_chains)]