[dependencies]
[features]
no_limit = []
[package]
authors = ["NickelAnge.Studio <rust@nickelange.studio>"]
categories = ["data-structures", "no-std"]
description = "Nifty Simple Ring Buffer (aka circular buffer) is a no_std library that provides 2 macros to easily create fixed circular buffer on the stack."
edition = "2021"
exclude = ["target/*", "diag/*", "img/*", "tests/*", ".git/*", ".vscode/*", ".cargo/*", ".github/*", ".gitignore"]
keywords = ["buffer", "circular", "ring", "no_std", "manx"]
license = "MIT"
name = "nsrb"
readme = "README.md"
repository = "https://github.com/NickelAngeStudio/nsrb"
version = "1.0.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[profile.bench]
opt-level = 3
overflow-checks = false
[profile.dev]
overflow-checks = false
[profile.release]
opt-level = 3
overflow-checks = false
[profile.test]
opt-level = 3
overflow-checks = false