# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] name = "lock-free-multi-producer-single-consumer-ring-buffer" version = "0.4.0" authors = ["Raphael Cohn "] exclude = ["*"] include = ["README.md", "LICENSE", "COPYRIGHT", "src/**/*.rs", "Cargo.toml", "rustfmt.toml", "clippy.toml"] publish = true description = "A lock-free, multi-producer, single-consumer (MPSC) ring buffer. Optimized for sending and receiving 'bursts' of messages. Can also be used as a ring queue. It is a Rust port of Mindaugas Rasiukevicius's ringbuf." homepage = "https://github.com/lemonrock/lock-free-multi-producer-single-consumer-ring-buffer" readme = "README.md" keywords = ["lock-free", "mpsc", "queue", "ring", "buffer"] categories = ["concurrency", "data-structures", "network-programming"] license = "BSD-2-Clause" repository = "https://github.com/lemonrock/lock-free-multi-producer-single-consumer-ring-buffer.git" [profile.release] opt-level = 3 lto = true codegen-units = 1 debug = false debug-assertions = false rpath = false [dependencies.likely] version = "^0.1.0"