blob: dc16305548539fdb0f5f862e8db16e4f526759e0 [file] [log] [blame]
Jason Macnak9228f812021-08-30 14:34:17 -07001# 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 believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "crossbeam-queue"
16version = "0.3.2"
17authors = ["The Crossbeam Project Developers"]
18description = "Concurrent queues"
19homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue"
20documentation = "https://docs.rs/crossbeam-queue"
21keywords = ["queue", "mpmc", "lock-free", "producer", "consumer"]
22categories = ["concurrency", "data-structures", "no-std"]
23license = "MIT OR Apache-2.0"
24repository = "https://github.com/crossbeam-rs/crossbeam"
25[dependencies.cfg-if]
26version = "1"
27
28[dependencies.crossbeam-utils]
29version = "0.8.5"
30default-features = false
31[dev-dependencies.rand]
32version = "0.8"
33
34[features]
35alloc = []
36default = ["std"]
37nightly = ["crossbeam-utils/nightly"]
38std = ["alloc", "crossbeam-utils/std"]