blob: 5c1e3b336fdd88549bf5aaa4f207d5a97b0f1972 [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
David LeGaree2987ca2022-03-01 19:03:55 +00006# to registry (e.g., crates.io) dependencies.
Jason Macnak9228f812021-08-30 14:34:17 -07007#
David LeGaree2987ca2022-03-01 19:03:55 +00008# 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.
Jason Macnak9228f812021-08-30 14:34:17 -070011
12[package]
13edition = "2018"
David LeGaree2987ca2022-03-01 19:03:55 +000014rust-version = "1.36"
Jason Macnak9228f812021-08-30 14:34:17 -070015name = "crossbeam-queue"
David LeGaree2987ca2022-03-01 19:03:55 +000016version = "0.3.4"
Jason Macnak9228f812021-08-30 14:34:17 -070017description = "Concurrent queues"
18homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue"
David LeGaree2987ca2022-03-01 19:03:55 +000019keywords = [
20 "queue",
21 "mpmc",
22 "lock-free",
23 "producer",
24 "consumer",
25]
26categories = [
27 "concurrency",
28 "data-structures",
29 "no-std",
30]
Jason Macnak9228f812021-08-30 14:34:17 -070031license = "MIT OR Apache-2.0"
32repository = "https://github.com/crossbeam-rs/crossbeam"
David LeGaree2987ca2022-03-01 19:03:55 +000033
Jason Macnak9228f812021-08-30 14:34:17 -070034[dependencies.cfg-if]
35version = "1"
36
37[dependencies.crossbeam-utils]
38version = "0.8.5"
39default-features = false
David LeGaree2987ca2022-03-01 19:03:55 +000040
Jason Macnak9228f812021-08-30 14:34:17 -070041[dev-dependencies.rand]
42version = "0.8"
43
44[features]
45alloc = []
46default = ["std"]
47nightly = ["crossbeam-utils/nightly"]
David LeGaree2987ca2022-03-01 19:03:55 +000048std = [
49 "alloc",
50 "crossbeam-utils/std",
51]