Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/calebzulawski/rivulet
Asynchronous pipelines of contiguous data, for rust.
https://github.com/calebzulawski/rivulet
async async-await rust stream-processing
Last synced: about 9 hours ago
JSON representation
Asynchronous pipelines of contiguous data, for rust.
- Host: GitHub
- URL: https://github.com/calebzulawski/rivulet
- Owner: calebzulawski
- License: apache-2.0
- Created: 2019-11-06T04:31:13.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-09T01:02:15.000Z (about 1 year ago)
- Last Synced: 2024-10-29T05:38:44.155Z (19 days ago)
- Topics: async, async-await, rust, stream-processing
- Language: Rust
- Homepage:
- Size: 3.99 MB
- Stars: 17
- Watchers: 4
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
Rivulet
=======
[![Build Status](https://github.com/calebzulawski/rivulet/workflows/Build/badge.svg?branch=master)](https://github.com/calebzulawski/rivulet/actions)
![Rustc Version 1.63+](https://img.shields.io/badge/rustc-1.63+-lightgray.svg)
[![License](https://img.shields.io/crates/l/rivulet)](https://crates.io/crates/rivulet)
[![Crates.io](https://img.shields.io/crates/v/rivulet)](https://crates.io/crates/rivulet)
[![Rust Documentation](https://img.shields.io/badge/api-rustdoc-blue.svg)](https://docs.rs/rivulet)Rivulet is a library for creating asynchronous pipelines of contiguous data.
Main features, at a glance:
* **Asynchronous**: Pipeline components are `async`-aware, allowing more control over task priority and data backpressure.
* **Contiguous views**: Data is always contiguous, accessible by a single slice.
* **Modular**: Pipelines can be combined and reused using common interfaces.## License
Rivulet is distributed under the terms of both the MIT license and the Apache License (Version 2.0).See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT) for details.