blob: 3ea5a59f6ba21b42333259d6c6a7e8833a184542 [file] [log] [blame]
Jakub Kotur5dd645c2020-12-21 17:28:14 +01001# 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
Joel Galensonf0b17732021-08-09 10:27:52 -07006# to registry (e.g., crates.io) dependencies.
Jakub Kotur5dd645c2020-12-21 17:28:14 +01007#
Joel Galensonf0b17732021-08-09 10:27:52 -07008# 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.
Jakub Kotur5dd645c2020-12-21 17:28:14 +010011
12[package]
13edition = "2018"
14name = "crossbeam-deque"
Joel Galensonf0b17732021-08-09 10:27:52 -070015version = "0.8.1"
Jakub Kotur5dd645c2020-12-21 17:28:14 +010016authors = ["The Crossbeam Project Developers"]
17description = "Concurrent work-stealing deque"
18homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque"
19documentation = "https://docs.rs/crossbeam-deque"
Jakub Kotur5dd645c2020-12-21 17:28:14 +010020keywords = ["chase-lev", "lock-free", "scheduler", "scheduling"]
21categories = ["algorithms", "concurrency", "data-structures"]
22license = "MIT OR Apache-2.0"
23repository = "https://github.com/crossbeam-rs/crossbeam"
24[dependencies.cfg-if]
25version = "1"
26
27[dependencies.crossbeam-epoch]
28version = "0.9"
29optional = true
30default-features = false
31
32[dependencies.crossbeam-utils]
33version = "0.8"
34optional = true
35default-features = false
36[dev-dependencies.rand]
Joel Galensonf0b17732021-08-09 10:27:52 -070037version = "0.8"
Jakub Kotur5dd645c2020-12-21 17:28:14 +010038
39[features]
40default = ["std"]
41std = ["crossbeam-epoch/std", "crossbeam-utils/std"]