rwf2/Rocket

Phase out async_trait macro

Open

#2,684 opened on Dec 30, 2023

View on GitHub
 (5 comments) (6 reactions) (0 assignees)Rust (25,738 stars) (1,645 forks)batch import
acceptedhelp wantedrequest

Description

What's missing?

Rocket currently re-exports the async_trait crate for use with its Fairing (and possibly others). As of rust 1.75.0 this is no longer needed, therefore it would be nice to get rid of this dependency and use actual async functions for these traits.

This generally improves compile times, dependency count and IDE responsiveness.

Ideal Solution

For v0.6, remove async_trait (or put its usage behind a feature) and use async functions directly. This would raise the MSRV to 1.75.0.

Why can't this be implemented outside of Rocket?

This is an integral part of Rocket.

Are there workarounds usable today?

No. You bypass the need for the macro attribute by returning a Box<dyn Future<Output = T> + Send + 'a>, but this is unwieldy.

Alternative Solutions

No response

Additional Context

No response

System Checks

  • I do not believe that this feature can or should be implemented outside of Rocket.
  • I was unable to find a previous request for this feature.

Contributor guide

Phase out async_trait macro · rwf2/Rocket#2684 | Good First Issue