# 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 = "2018" name = "rc_event_queue" version = "0.4.3" authors = ["Andrey Diduh "] build = false exclude = ["doc"] autobins = false autoexamples = false autotests = false autobenches = false description = "VecDeque-like fast, unbounded, FIFO, concurent read-lock-free message queue." readme = "README.md" keywords = [ "lock-free", "queue", "mpmc", "concurent", "message-queue", ] categories = [ "data-structures", "concurrency", ] license = "MIT OR Apache-2.0" repository = "https://github.com/tower120/rc_event_queue" [lib] name = "rc_event_queue" path = "src/lib.rs" [[test]] name = "compile-tests" path = "tests/compile-tests.rs" [[bench]] name = "mpmc_mt_read_write_bench" path = "benches/mpmc_mt_read_write_bench.rs" harness = false [[bench]] name = "mt_read_bench" path = "benches/mt_read_bench.rs" harness = false [[bench]] name = "read_bench" path = "benches/read_bench.rs" harness = false [[bench]] name = "read_empty_bench" path = "benches/read_empty_bench.rs" harness = false [[bench]] name = "spmc_mt_read_write_bench" path = "benches/spmc_mt_read_write_bench.rs" harness = false [[bench]] name = "write_bench" path = "benches/write_bench.rs" harness = false [dependencies.lock_api] version = "0.4.5" [dependencies.spin] version = "0.9.2" features = ["std"] [dev-dependencies.compiletest_rs] version = "0.7" [dev-dependencies.criterion] version = "0.3.3" [dev-dependencies.itertools] version = "0.10.1" [dev-dependencies.rand] version = "0.8.4" [features] double_buffering = [] [target."cfg(loom)".dev-dependencies.loom] version = "0.5.2"