An open API service indexing awesome lists of open source software.

https://github.com/rawnly/queue-rs


https://github.com/rawnly/queue-rs

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

# Thread safe Queue in Rust
This repo contains some reference code for the article posted [here](https://blog.fedevitale.dev/thread-safe-queue-in-rust/).

## Build & Test
To build run
```
cargo build
```

To run tests
```
cargo test
```

## Run Example
Inside the `examples` folder you can find a runnable example.
Try running it as described below:
```
cargo run --example queue
```