https://github.com/shekohex/rustystream
a simple demo of how to use Rust streams/channels with Dart
https://github.com/shekohex/rustystream
Last synced: 4 months ago
JSON representation
a simple demo of how to use Rust streams/channels with Dart
- Host: GitHub
- URL: https://github.com/shekohex/rustystream
- Owner: shekohex
- License: apache-2.0
- Created: 2020-07-11T14:15:45.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-20T22:42:43.000Z (over 3 years ago)
- Last Synced: 2025-02-13T08:24:55.346Z (over 1 year ago)
- Language: Dart
- Size: 37.1 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Rusty Stream
A simple demo of how to use Rust streams/channels with Dart
## Try it!
1. Clone
```bash
git clone https://github.com/shekohex/rustystream.git
```
2. Install Cargo Make (skip if you have it already)
```
cargo install --force cargo-make
```
3. Build it
```
cargo make
```
4. Run
```
dart ./bin/rustystream.dart
```
## Safety
This crate uses `#![deny(unsafe_code)]` to ensure everything is implemented in
100% Safe Rust.
## License
Licensed under Apache v2.0 license.
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in this crate by you, as defined in the Apache-2.0 license, shall
be licensed as above, without any additional terms or conditions.