aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig7
1 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 0e048a2..640a808 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -4,13 +4,12 @@ name = "crossbeam-channel"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-channel-X.Y.Z" git tag
-version = "0.5.1"
-authors = ["The Crossbeam Project Developers"]
+version = "0.5.2"
edition = "2018"
+rust-version = "1.36"
license = "MIT OR Apache-2.0"
repository = "https://github.com/crossbeam-rs/crossbeam"
homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel"
-documentation = "https://docs.rs/crossbeam-channel"
description = "Multi-producer multi-consumer channels for message passing"
keywords = ["channel", "mpmc", "select", "golang", "message"]
categories = ["algorithms", "concurrency", "data-structures"]
@@ -20,6 +19,8 @@ default = ["std"]
# Enable to use APIs that require `std`.
# This is enabled by default.
+#
+# NOTE: Disabling `std` feature is not supported yet.
std = ["crossbeam-utils/std"]
[dependencies]