Library for concurrent Rust.
- Provide a framework to build robust, scalable and efficient applications in concurrent Rust.
- Set coding guidelines to apply along LambdaClass repositories and codebase.
- Starting point to ideate what we want for Concrete.
Two versions exist in their own submodules:
- threads: no use of async/await. Just IO threads code.
- tasks: a runtime is required to run async/await code. The runtime is selected in
spawned_rt::tasks
module that abstracts it.