# 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 = "mutringbuf" version = "0.4.0" authors = ["Skilfingr "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A simple lock-free SPSC ring buffer, with in-place mutability." documentation = "https://docs.rs/mutringbuf" readme = "README.md" keywords = [ "lock-free", "async", "ring", "circular", "buffer", ] categories = [ "asynchronous", "concurrency", "data-structures", "no-std", "no-std::no-alloc", ] license = "MIT OR Apache-2.0" repository = "https://github.com/Skilvingr/rust-mutringbuf" [lib] name = "mutringbuf" path = "src/lib.rs" [[example]] name = "cpal" path = "examples/cpal.rs" [[example]] name = "simple" path = "examples/simple.rs" [[example]] name = "simple_async" path = "examples/simple_async.rs" [[example]] name = "uninit_items" path = "examples/uninit_items.rs" [[test]] name = "stack" path = "tests/stack.rs" [[test]] name = "tests" path = "tests/tests.rs" [[test]] name = "uninit_buf" path = "tests/uninit_buf.rs" [[bench]] name = "bench_main" path = "benches/criterion/bench_main.rs" harness = false [[bench]] name = "bench_slices" path = "benches/criterion/bench_slices.rs" harness = false [[bench]] name = "iai_bench_base" path = "benches/iai_benches/iai_base.rs" harness = false [dependencies.crossbeam-utils] version = "0.8.20" default-features = false [dev-dependencies.iai-callgrind] version = "0.11.1" [dev-dependencies.tokio-test] version = "0.4.4" [features] alloc = [] async = [] default = ["alloc"] [target."cfg(bench)".dev-dependencies.criterion] version = "0.5.1" features = ["real_blackbox"] [target."cfg(cpal)".dev-dependencies.cpal] version = "0.15.3" [lints.rust.unexpected_cfgs] level = "warn" priority = 0 check-cfg = [ "cfg(bench)", "cfg(cpal)", ]