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.61"
15name = "crossbeam-deque"
16version = "0.8.5"
17description = "Concurrent work-stealing deque"
18homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque"
19readme = "README.md"
20keywords = [
21    "chase-lev",
22    "lock-free",
23    "scheduler",
24    "scheduling",
25]
26categories = [
27    "algorithms",
28    "concurrency",
29    "data-structures",
30]
31license = "MIT OR Apache-2.0"
32repository = "https://github.com/crossbeam-rs/crossbeam"
33
34[dependencies.crossbeam-epoch]
35version = "0.9.17"
36default-features = false
37
38[dependencies.crossbeam-utils]
39version = "0.8.18"
40default-features = false
41
42[dev-dependencies.rand]
43version = "0.8"
44
45[features]
46default = ["std"]
47std = [
48    "crossbeam-epoch/std",
49    "crossbeam-utils/std",
50]
51