1 unstable release
0.1.0 | Jan 25, 2024 |
---|
#5 in #iouring
235 downloads per month
Used in nuclei
8KB
91 lines
nuclei-attributes
Attributes crate for Nuclei.
lib.rs
:
Experimental language-level polyfills for Async Rust.
Examples
#[nuclei_attributes::main]
async fn main() {
println!("Hello, world!");
}
About
Async Rust is a work in progress. The language has enabled us to do some fantastic things, but not everything is figured out yet. This crate exists to polyfill language-level support for async idioms before they can be part of the language.
A great example of this is async fn main
, which we first introduced as
part of the runtime
crate.
Its premise is that if async fn
is required for every await
call, it
makes sense to apply that even to fn main
. Unfortunately this would
require compiler support to enable, so we've provided an experimental
polyfill for it in the mean time.
Dependencies
~1.5MB
~35K SLoC