Skip to content

Commit 4bda77c

Browse files
committed
feat: add shields and make version fixes
1 parent b9f6e2d commit 4bda77c

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# FastQueue (fq)
2+
[![Build Status](https://github.com/QEDK/fq/actions/workflows/ci.yml/badge.svg)](https://github.com/QEDK/fq/actions/workflows/ci.yml) [![Crates.io](https://img.shields.io/crates/l/fq?color=black)](LICENSE-MIT) [![Crates.io](https://img.shields.io/crates/v/fq?color=black)](https://crates.io/crates/fq) [![Released API docs](https://docs.rs/fq/badge.svg)](https://docs.rs/fq) [![Maintenance](https://img.shields.io/maintenance/yes/2025)](https://github.com/QEDK/fq)
23
A fast and simple ring-buffer-based single-producer, single-consumer queue with no dependencies. You can use
34
this to write Rust programs with low-latency message passing.
45

5-
> [!IMPORTANT]
6-
> This crate is highly experimental.
6+
> [!NOTE]
7+
> This crate is experimental.
78
89
## Installation
910
Add this to your `Cargo.toml`:
@@ -64,7 +65,7 @@ On `x86` and `x86_64` targets, prefetch instructions are available on the `stabl
6465
toolchain.
6566
```TOML
6667
[dependencies]
67-
fq = { version = "0.0.4", features = ["unstable"] }
68+
fq = { version = "0.0.5", features = ["unstable"] }
6869
```
6970

7071
## Benchmarks

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A fast and simple ring-buffer-based single-producer, single-consumer queue with
55
Add this to your `Cargo.toml`:
66
```TOML
77
[dependencies]
8-
fq = "0.0.4"
8+
fq = "0.0.5"
99
```
1010
1111
## Quickstart
@@ -57,7 +57,7 @@ On `x86` and `x86_64` targets, prefetch instructions are available on the `stabl
5757
toolchain.
5858
```TOML
5959
[dependencies]
60-
fq = { version = "0.0.4", features = ["unstable"] }
60+
fq = { version = "0.0.5", features = ["unstable"] }
6161
```
6262
6363
## Benchmarks

0 commit comments

Comments
 (0)