From c0ccf466b6750b282cbed2fd57f5c32d163014b7 Mon Sep 17 00:00:00 2001 From: BlueGlassBlock Date: Thu, 13 Apr 2023 23:06:07 +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 ed6b9e60..75237a64 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)] use std::sync::atomic::{AtomicI32, AtomicI64, AtomicU16, Ordering};