smol-potat 0.1.1

Proc macro for smol runtime.
Documentation

smol-potat

Proc macro for smol runtime.

This is the proc macro to help you initializing smol runtime on your binary, test cases and benchmark. Usage is similar to what you do in tokio and async-std:

Example

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