-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Extract RingBuffer from PipeRingBuffer for better reusability
- Loading branch information
1 parent
3d8ce37
commit 46ff143
Showing
6 changed files
with
419 additions
and
70 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[package] | ||
name = "ringbuffer" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["RuiWei Cheng <1982833213@qq.com>", "Quan Shi <749990226@qq.com>"] | ||
description = "A data structure that uses a single, fixed-size buffer as if it were connected end-to-end" | ||
license = "GPL-3.0-or-later OR Apache-2.0" | ||
homepage = "https://github.com/syswonder/ruxos" | ||
repository = "https://github.com/syswonder/ruxos/tree/dev/crates/ringbuffer" | ||
|
||
[build-dependencies] |
Oops, something went wrong.