6 releases

0.3.1 Jul 25, 2023
0.2.3 Jul 19, 2023
0.1.1 Jul 18, 2023

#353 in Concurrency

MIT license

8KB
122 lines

aramid ๐Ÿงต

Test Docs

Synthetic fibers and Rust.

  • very much WIP ๐Ÿšง
  • Fibers are little state machines that behave like stackful coroutines: when spun, they yield and yield, and then they return. In the meantime, they carry their stack around with them.
  • Fibers are a model of concurrent computation. They are simple, lightweight and well-suited for cooperative multitasking.

Getting started

  • To try the library out, simply add it to your project's dependencies, by running the following Cargo command in your project directory:

    cargo add aramid
    

    Or add the following line to your Cargo.toml:

    aramid = "0.3.1"
    
  • The documentation is available online at docs.rs.

No runtime deps