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 = "2018" 14name = "crossbeam-deque" 15version = "0.8.1" 16authors = ["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" 20keywords = ["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] 37version = "0.8" 38 39[features] 40default = ["std"] 41std = ["crossbeam-epoch/std", "crossbeam-utils/std"] 42