1[package] 2name = "crossbeam-queue" 3# When publishing a new version: 4# - Update CHANGELOG.md 5# - Update README.md 6# - Create "crossbeam-queue-X.Y.Z" git tag 7version = "0.1.2" 8authors = ["The Crossbeam Project Developers"] 9license = "MIT/Apache-2.0" 10readme = "README.md" 11repository = "https://github.com/crossbeam-rs/crossbeam" 12homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils" 13documentation = "https://docs.rs/crossbeam-queue" 14description = "Concurrent queues" 15keywords = ["queue", "mpmc", "lock-free", "producer", "consumer"] 16categories = ["concurrency", "data-structures"] 17 18[dependencies.crossbeam-utils] 19version = "0.6.5" 20path = "../crossbeam-utils" 21 22[dev-dependencies] 23rand = "0.6" 24