1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14rust-version = "1.36" 15name = "crossbeam-queue" 16version = "0.3.4" 17description = "Concurrent queues" 18homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue" 19keywords = [ 20 "queue", 21 "mpmc", 22 "lock-free", 23 "producer", 24 "consumer", 25] 26categories = [ 27 "concurrency", 28 "data-structures", 29 "no-std", 30] 31license = "MIT OR Apache-2.0" 32repository = "https://github.com/crossbeam-rs/crossbeam" 33 34[dependencies.cfg-if] 35version = "1" 36 37[dependencies.crossbeam-utils] 38version = "0.8.5" 39default-features = false 40 41[dev-dependencies.rand] 42version = "0.8" 43 44[features] 45alloc = [] 46default = ["std"] 47nightly = ["crossbeam-utils/nightly"] 48std = [ 49 "alloc", 50 "crossbeam-utils/std", 51] 52