# 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 = "mini-io-queue" version = "0.2.0" description = "Fixed-length, allocation and lock-free, async I/O oriented single-producer single-consumer queues." homepage = "https://github.com/cpdt/mini-io-queue" readme = "README.md" keywords = [ "queue", "io", "async", "lockfree", "no_std", ] license = "MIT" repository = "https://github.com/cpdt/mini-io-queue" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.array-init] version = "2.0" optional = true [dependencies.futures] version = "0.3" optional = true default-features = false [dev-dependencies.futures] version = "0.3" features = ["executor"] [features] alloc = [] asyncio = [ "futures", "alloc", ] blocking = ["std"] default = [ "blocking", "nonblocking", "heap-buffer", "std-io", ] heap-buffer = ["alloc"] nonblocking = ["alloc"] stack-buffer = ["array-init"] std = [] std-io = [ "std", "futures/std", ]