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 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-deque" 16version = "0.8.0" 17authors = ["The Crossbeam Project Developers"] 18description = "Concurrent work-stealing deque" 19homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque" 20documentation = "https://docs.rs/crossbeam-deque" 21readme = "README.md" 22keywords = ["chase-lev", "lock-free", "scheduler", "scheduling"] 23categories = ["algorithms", "concurrency", "data-structures"] 24license = "MIT OR Apache-2.0" 25repository = "https://github.com/crossbeam-rs/crossbeam" 26[dependencies.cfg-if] 27version = "1" 28 29[dependencies.crossbeam-epoch] 30version = "0.9" 31optional = true 32default-features = false 33 34[dependencies.crossbeam-utils] 35version = "0.8" 36optional = true 37default-features = false 38[dev-dependencies.rand] 39version = "0.7.3" 40 41[features] 42default = ["std"] 43std = ["crossbeam-epoch/std", "crossbeam-utils/std"] 44