# 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 = "ring-channel" version = "0.12.0" authors = ["Bruno Dutra "] description = "Bounded MPMC channel abstraction on top of a ring buffer" readme = "README.md" keywords = [ "channel", "lock-free", "mpmc", "ring-buffer", "fifo", ] categories = [ "concurrency", "asynchronous", "no-std", ] license = "MIT" repository = "https://github.com/brunocodutra/ring-channel.git" resolver = "2" [package.metadata.docs.rs] all-features = true [lib] bench = false [[bench]] name = "throughput" harness = false [dependencies.crossbeam-queue] version = "0.3.4" features = ["alloc"] default-features = false [dependencies.crossbeam-utils] version = "0.8.7" default-features = false [dependencies.derivative] version = "2.2.0" features = ["use_core"] default-features = false [dependencies.futures] version = "0.3.21" features = ["executor"] optional = true default-features = false [dependencies.slotmap] version = "1.0.6" optional = true default-features = false [dependencies.spin] version = "0.9.8" features = ["rwlock"] optional = true default-features = false [dev-dependencies.criterion] version = "0.5.1" features = [ "async_tokio", "rayon", ] default-features = false [dev-dependencies.futures] version = "0.3.21" features = ["alloc"] default-features = false [dev-dependencies.proptest] version = "1.0.0" features = ["std"] default-features = false [dev-dependencies.test-strategy] version = "0.3.0" default-features = false [dev-dependencies.tokio] version = "1.16.1" features = [ "macros", "rt-multi-thread", "time", ] default-features = false [features] default = [ "std", "futures_api", ] futures_api = [ "futures", "slotmap", "spin", ] std = [ "crossbeam-queue/std", "crossbeam-utils/std", "futures/std", "slotmap/std", "spin/std", ] [badges.codecov] repository = "brunocodutra/ring-channel"