chore: bump dependencies

This commit is contained in:
Timo Kösters 2022-11-09 18:46:10 +01:00
parent ccdaaceb33
commit 7540227388
No known key found for this signature in database
GPG key ID: 24DA7517711A2BA4
8 changed files with 333 additions and 250 deletions

View file

@ -473,7 +473,7 @@ macro_rules! impl_ruma_handler {
let meta = Req::METADATA;
let method_filter = method_to_filter(meta.method);
for path in IntoIterator::into_iter([meta.unstable_path, meta.r0_path, meta.stable_path]).flatten() {
for path in meta.history.all_paths() {
let handler = self.clone();
router = router.route(path, on(method_filter, |$( $ty: $ty, )* req| async move {