smol-attributes 0.1.3

Proc macro for smol runtime.
Documentation
1
2
3
4
5
6
7
8
9
use smol::Task;

#[smol_potat::main]
async fn main() {
    Task::spawn(async {
        println!("Hello, world!");
    })
    .await;
}