#thread-local #async #run-time #events #gui #platform-specific #rt-local

rt-local-core

Thread local asynchronous runtime working with platform-specific event loops

2 releases

0.1.3 Aug 19, 2023
0.1.0 May 31, 2022

#1467 in Asynchronous

Download history 21/week @ 2024-03-11 14/week @ 2024-03-18 11/week @ 2024-03-25 36/week @ 2024-04-01 9/week @ 2024-04-08 10/week @ 2024-04-15 11/week @ 2024-04-22 4/week @ 2024-04-29 7/week @ 2024-05-06 8/week @ 2024-05-13 9/week @ 2024-05-20 36/week @ 2024-05-27 14/week @ 2024-06-03 16/week @ 2024-06-10 6/week @ 2024-06-17 10/week @ 2024-06-24

51 downloads per month
Used in 3 crates (via rt-local)

MIT/Apache

18KB
484 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

~0.4–1MB
~20K SLoC