mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-20 11:21:14 +00:00
Add explicit static bound required by 1.74
This commit is contained in:
parent
30e99f3090
commit
ea1cd5b0f2
1 changed files with 5 additions and 2 deletions
|
@ -1269,7 +1269,10 @@ where
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn launch_file_store<R: FullRepo + 'static, F: Fn(&mut web::ServiceConfig) + Send + Clone>(
|
async fn launch_file_store<
|
||||||
|
R: FullRepo + 'static,
|
||||||
|
F: Fn(&mut web::ServiceConfig) + Send + Clone + 'static,
|
||||||
|
>(
|
||||||
repo: R,
|
repo: R,
|
||||||
store: FileStore,
|
store: FileStore,
|
||||||
client: ClientWithMiddleware,
|
client: ClientWithMiddleware,
|
||||||
|
@ -1296,7 +1299,7 @@ async fn launch_file_store<R: FullRepo + 'static, F: Fn(&mut web::ServiceConfig)
|
||||||
|
|
||||||
async fn launch_object_store<
|
async fn launch_object_store<
|
||||||
R: FullRepo + 'static,
|
R: FullRepo + 'static,
|
||||||
F: Fn(&mut web::ServiceConfig) + Send + Clone,
|
F: Fn(&mut web::ServiceConfig) + Send + Clone + 'static,
|
||||||
>(
|
>(
|
||||||
repo: R,
|
repo: R,
|
||||||
store_config: ObjectStoreConfig,
|
store_config: ObjectStoreConfig,
|
||||||
|
|
Loading…
Reference in a new issue