# 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 = "async-ringbuf" version = "0.3.1" authors = ["Alexey Gerasev "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Async SPSC FIFO ring buffer" documentation = "https://docs.rs/async-ringbuf" readme = false keywords = [ "async", "spsc", "ring-buffer", "rb", "fifo", ] categories = [ "asynchronous", "concurrency", "data-structures", "no-std", ] license = "MIT/Apache-2.0" repository = "https://github.com/agerasev/ringbuf.git" resolver = "2" [lib] name = "async_ringbuf" path = "src/lib.rs" [[example]] name = "simple" path = "examples/simple.rs" required-features = ["alloc"] [[example]] name = "static" path = "examples/static.rs" [dependencies.futures] version = "0.3.30" default-features = false [dependencies.ringbuf] version = "0.4.4" [dev-dependencies.futures] version = "0.3.30" features = [ "executor", "thread-pool", ] [dev-dependencies.tokio] version = "1.37.0" features = ["full"] [features] alloc = ["ringbuf/alloc"] bench = ["std"] default = [ "alloc", "std", ] std = [ "alloc", "ringbuf/std", "futures/std", ]