Closed
Description
For applications it's generally useful to have access to the attributes as defined in async-attributes
. Being able to install a single dependency seems quite desirable.
Implementation
I propose we expose these attributes from the root of the crate, relying on a feature flag. As for the flag name, there's a few options. But the one I think I prefer is "bin"
to indicate this should be used for binaries only.
#[cfg(feature = "bin")]
pub use async_attributes::*;