# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "nsrb" version = "1.0.0" authors = ["NickelAnge.Studio "] exclude = [ "target/*", "diag/*", "img/*", "tests/*", ".git/*", ".vscode/*", ".cargo/*", ".github/*", ".gitignore", ] 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." readme = "README.md" keywords = [ "buffer", "circular", "ring", "no_std", "manx", ] categories = [ "data-structures", "no-std", ] license = "MIT" repository = "https://github.com/NickelAngeStudio/nsrb" [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 [dependencies] [features] no_limit = []