Compare commits

...

2 Commits

Author SHA1 Message Date
Elfein Landers cc877f049b cmon clippy, it's not worth making a new type 2022-01-30 04:01:25 -08:00
Elfein Landers 0ce099b8d9 remove unused feature macros 2022-01-30 04:01:01 -08:00
2 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,3 @@
#![feature(in_band_lifetimes)]
#![feature(async_closure)]
use serenity::client::Client;
use serenity::framework::standard::StandardFramework;
use serenity::futures::lock::Mutex;

View File

@ -29,6 +29,7 @@ impl TypeMapKey for InfoSent {
pub struct Sent;
#[allow(clippy::type_complexity)]
impl TypeMapKey for Sent {
type Value = Arc<Mutex<HashMap<(ChannelId, MessageId), (ChannelId, MessageId)>>>;
}