It looks like #axum is finally going to get proper route matching with prefixes and suffixes support (e.g. `/images/{foo}.jpg`, while before only `/images/{foo}` was supported).
https://github.com/tokio-rs/axum/pull/3702
Bump matchit to 0.9.2 by AMDmi3 · Pull Request #3702 · tokio-rs/axum

Motivation Explained in #3140 - primarily to be able to use very desired prefixed or suffixed captures in routes, such as router.route("/{id}.png"). Solution The work had already been don...

GitHub