2
0
Fork 0
mirror of https://git.asonix.dog/asonix/pict-rs synced 2025-01-12 04:25:49 +00:00

Add static bound to appease 1.74.1

This commit is contained in:
asonix 2023-12-12 17:13:54 -06:00
parent 6d2ac0d7b5
commit 7b2bb1582f

View file

@ -172,7 +172,7 @@ pub(crate) async fn queue_generate<R: QueueRepo>(
Ok(()) Ok(())
} }
pub(crate) async fn process_cleanup<R: FullRepo, S: Store>( pub(crate) async fn process_cleanup<R: FullRepo + 'static, S: Store + 'static>(
repo: R, repo: R,
store: S, store: S,
client: ClientWithMiddleware, client: ClientWithMiddleware,