https://github.com/rawnly/queue-rs
https://github.com/rawnly/queue-rs
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rawnly/queue-rs
- Owner: rawnly
- Created: 2022-12-21T00:52:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-21T12:46:17.000Z (over 3 years ago)
- Last Synced: 2025-05-19T11:45:58.872Z (about 1 year ago)
- Language: Rust
- Homepage: https://blog.fedevitale.dev/thread-safe-queue-in-rust/
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```