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 = "2021" 14rust-version = "1.60" 15name = "crossbeam-queue" 16version = "0.3.11" 17description = "Concurrent queues" 18homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue" 19readme = "README.md" 20keywords = [ 21 "queue", 22 "mpmc", 23 "lock-free", 24 "producer", 25 "consumer", 26] 27categories = [ 28 "concurrency", 29 "data-structures", 30 "no-std", 31] 32license = "MIT OR Apache-2.0" 33repository = "https://github.com/crossbeam-rs/crossbeam" 34 35[dependencies.crossbeam-utils] 36version = "0.8.18" 37default-features = false 38 39[dev-dependencies.rand] 40version = "0.8" 41 42[features] 43alloc = [] 44default = ["std"] 45nightly = ["crossbeam-utils/nightly"] 46std = [ 47 "alloc", 48 "crossbeam-utils/std", 49] 50