#windows

macro rt-local-macros

Thread local asynchronous runtime working with platform-specific event loops

3 releases

0.1.4 Aug 20, 2023
0.1.3 Aug 19, 2023
0.1.0 May 31, 2022

#691 in #windows

Download history 12/week @ 2024-06-22 10/week @ 2024-06-29 3/week @ 2024-07-06 15/week @ 2024-07-13 22/week @ 2024-07-20 24/week @ 2024-07-27 12/week @ 2024-08-03 9/week @ 2024-08-10 9/week @ 2024-08-17 16/week @ 2024-08-24 21/week @ 2024-08-31 10/week @ 2024-09-07 9/week @ 2024-09-14 36/week @ 2024-09-21 64/week @ 2024-09-28 14/week @ 2024-10-05

125 downloads per month
Used in 4 crates (via rt-local)

MIT/Apache

7KB
105 lines

rt-local

Crates.io Docs.rs Actions Status

Thread local asynchronous runtime working with platform-specific event loops.

Example

use rt_local::spawn_local;
use rt_local::runtime::core::main;

#[main]
async fn main() {
  let task_a = spawn_local(async {
    // ...
  });
  let task_b = spawn_local(async {
    // ...
  });
  task_a.await;
  task_b.await;
}

Features

crate feature module backend
core platform independent
windows windows windows message loop

License

This project is dual licensed under Apache-2.0/MIT. See the two LICENSE-* files for details.

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

~250–700KB
~17K SLoC