2 releases

0.1.1 Feb 18, 2024
0.1.0 Dec 17, 2023

#1828 in Asynchronous

Download history 17/week @ 2024-01-01 55/week @ 2024-01-08 21/week @ 2024-01-15 22/week @ 2024-01-22 24/week @ 2024-01-29 211/week @ 2024-02-05 158/week @ 2024-02-12 96/week @ 2024-02-19 70/week @ 2024-02-26 231/week @ 2024-03-04 130/week @ 2024-03-11 123/week @ 2024-03-18 111/week @ 2024-03-25 177/week @ 2024-04-01 71/week @ 2024-04-08 332/week @ 2024-04-15

706 downloads per month
Used in 3 crates

Apache-2.0 OR MIT

16KB
163 lines

smol-macros

Build License Cargo Documentation

Macros for using smol-rs.

One of the advantages of smol is that it lets you set up your own executor, optimized for your own use cases. However, quick scaffolding is important for many organizational use cases. Especially when sane defaults are appreciated, setting up your own executor is a waste of time.

This crate provides macros for setting up an efficient smol runtime quickly and effectively. It provides sane defaults that are useful for most applications.

Simple Executor

Just have an async main function, using the main macro.

use smol_macros::main;

main! {
    async fn main() {
        println!("Hello, world!");
    }
}

This crate uses declarative macros rather than procedural macros, in order to avoid needing to use heavy macro dependencies. If you want to use the proc macro syntax, you can use the macro_rules_attribute::apply function to emulate it.

The following is equivalent to the previous example.

use macro_rules_attribute::apply;
use smol_macros::main;

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

Task-Based Executor

This crate re-exports smol::Executor. If that is used as the first parameter in a function in main, it will automatically create the executor.

use macro_rules_attribute::apply;
use smol_macros::{main, Executor};

#[apply(main!)]
async fn main(ex: &Executor<'_>) {
    ex.spawn(async { println!("Hello world!"); }).await;
}

If the thread-safe smol::Executor is used here, a thread pool will be spawned to run the executor on multiple threads. For the thread-unsafe smol::LocalExecutor, no threads will be spawned.

See documentation for the main function for more details.

Tests

Use the test macro to set up test cases that run self-contained executors.

use macro_rules_attribute::apply;
use smol_macros::{test, Executor};

#[apply(test!)]
async fn do_test(ex: &Executor<'_>) {
    ex.spawn(async {
        assert_eq!(1 + 1, 2);
    }).await;
}

MSRV Policy

The Minimum Supported Rust Version (MSRV) of this crate is 1.63. As a tentative policy, the MSRV will not advance past the current Rust version provided by Debian Stable. At the time of writing, this version of Rust is 1.63. However, the MSRV may be advanced further in the event of a major ecosystem shift or a security vulnerability.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~3–13MB
~134K SLoC