aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-06-21 12:24:00 -0700
committerJoel Galenson <jgalenson@google.com>2021-06-21 12:24:00 -0700
commit2ce91674eba239b60b91d77c02fe074e40ed8eda (patch)
treec662582a391e8ddc05a36058307c9d9351ae136a /Cargo.toml.orig
parent0a9d0cd11bb8f8dd61c4a5ec589da5ab9e2a875f (diff)
downloadcrossbeam-utils-2ce91674eba239b60b91d77c02fe074e40ed8eda.tar.gz
Upgrade rust/crates/crossbeam-utils to 0.8.5android-s-beta-4android-s-beta-3android-s-beta-4
Test: make Change-Id: I91b96d177f85c2c962370e14a6cd3a989b447e66
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig16
1 files changed, 8 insertions, 8 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 4962b71..16488cb 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -4,7 +4,7 @@ name = "crossbeam-utils"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-utils-X.Y.Z" git tag
-version = "0.8.4"
+version = "0.8.5"
authors = ["The Crossbeam Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
@@ -22,10 +22,13 @@ default = ["std"]
# This is enabled by default.
std = ["lazy_static"]
+# These features are no longer used.
+# TODO: remove in the next major version.
# Enable to use of unstable functionality.
# This is disabled by default and requires recent nightly compiler.
-# Note that this is outside of the normal semver guarantees and minor versions
-# of crossbeam may make breaking changes to them at any time.
+#
+# NOTE: This feature is outside of the normal semver guarantees and minor or
+# patch versions of crossbeam may make breaking changes to them at any time.
nightly = []
[dependencies]
@@ -34,13 +37,10 @@ lazy_static = { version = "1.4.0", optional = true }
# Enable the use of loom for concurrency testing.
#
-# This configuration option is outside of the normal semver guarantees: minor
-# versions of crossbeam may make breaking changes to it at any time.
+# NOTE: This feature is outside of the normal semver guarantees and minor or
+# patch versions of crossbeam may make breaking changes to them at any time.
[target.'cfg(crossbeam_loom)'.dependencies]
loom = { version = "0.5", optional = true }
-[build-dependencies]
-autocfg = "1.0.0"
-
[dev-dependencies]
rand = "0.8"