Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Commit

Permalink
i forgor to un-nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
katsumi143 committed Mar 28, 2024
1 parent 1545cc0 commit 4ae433e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions mellow/src/cache/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ use crate::{

pub static CACHES: Lazy<Caches> = Lazy::new(|| Caches {
discord_guilds: CacheBuilder::new(32)
.time_to_live(Duration::from_hours(1))
.time_to_live(Duration::from_secs(3600))
.build(),
event_responses: CacheBuilder::new(32)
.time_to_live(Duration::from_hours(1))
.time_to_live(Duration::from_secs(3600))
.build(),
patreon_user_identities: CacheBuilder::new(64)
.time_to_live(Duration::from_mins(5))
.time_to_live(Duration::from_secs(300))
.build()
});

Expand Down
1 change: 0 additions & 1 deletion mellow/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![feature(duration_constructors)]
use simple_logger::SimpleLogger;

use interaction::InteractionPayload;
Expand Down
2 changes: 0 additions & 2 deletions rust-toolchain.toml

This file was deleted.

0 comments on commit 4ae433e

Please sign in to comment.