diff --git a/Cargo.toml b/Cargo.toml index 409d384..f5deb65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,2 +1,3 @@ [workspace] members = ["bbqtest", "core"] +exclude = ["bbq2"] diff --git a/bbq2/Cargo.lock b/bbq2/Cargo.lock index 91a15a3..9e3d1d8 100644 --- a/bbq2/Cargo.lock +++ b/bbq2/Cargo.lock @@ -43,7 +43,7 @@ dependencies = [ [[package]] name = "bbq2" -version = "0.4.2" +version = "0.4.3" dependencies = [ "const-init", "critical-section", diff --git a/bbq2/Cargo.toml b/bbq2/Cargo.toml index 7c94bf5..c7c3b19 100644 --- a/bbq2/Cargo.toml +++ b/bbq2/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "bbq2" -version = "0.4.2" +version = "0.4.3" description = "A SPSC, lockless, no_std, thread safe, queue, based on BipBuffers" -repository = "https://github.com/jamesmunns/bbq2" +repository = "https://github.com/jamesmunns/bbqueue" authors = ["James Munns "] edition = "2024" readme = "README.md" diff --git a/bbq2/README.md b/bbq2/README.md index 4a444ad..c0a04f0 100644 --- a/bbq2/README.md +++ b/bbq2/README.md @@ -2,6 +2,7 @@ Now with sixteen great flavors! -This is an attempt to re-implement [bbqueue](https://github.com/jamesmunns/bbqueue). +This was an attempt to re-implement [bbqueue](https://github.com/jamesmunns/bbqueue). +It will soon be upstreamed to that crate! No docs yet. Check out the unit tests in [`lib.rs`](./src/lib.rs) for usage :) diff --git a/bbq2/src/lib.rs b/bbq2/src/lib.rs index 6537393..2e21af3 100644 --- a/bbq2/src/lib.rs +++ b/bbq2/src/lib.rs @@ -1,6 +1,9 @@ //! bbq2 //! //! A new and improved bipbuffer queue. +//! +//! NOTE: This will soon be moved into the `bbqueue` crate, and `bbq2` will be +//! deprecated! #![cfg_attr(not(any(test, feature = "std")), no_std)]