@@ -24,18 +24,21 @@ std = ["alloc", "crossbeam-utils/std", "lazy_static"]
2424
2525# Enable to use APIs that require `alloc`.
2626# This is enabled by default and also enabled if the `std` feature is enabled.
27+ #
28+ # NOTE: Disabling both `std` *and* `alloc` features is not supported yet.
2729alloc = []
2830
2931# Enable to use of unstable functionality.
3032# This is disabled by default and requires recent nightly compiler.
31- # Note that this is outside of the normal semver guarantees and minor versions
32- # of crossbeam may make breaking changes to them at any time.
33+ #
34+ # NOTE: This feature is outside of the normal semver guarantees and minor or
35+ # patch versions of crossbeam may make breaking changes to them at any time.
3336nightly = [" crossbeam-utils/nightly" , " const_fn" ]
3437
3538# Enable the use of loom for concurrency testing.
3639#
37- # This configuration option is outside of the normal semver guarantees: minor
38- # versions of crossbeam may make breaking changes to it at any time.
40+ # NOTE: This feature is outside of the normal semver guarantees and minor or
41+ # patch versions of crossbeam may make breaking changes to them at any time.
3942loom = [" loom-crate" , " crossbeam-utils/loom" ]
4043
4144[dependencies ]
@@ -45,8 +48,8 @@ memoffset = "0.6"
4548
4649# Enable the use of loom for concurrency testing.
4750#
48- # This configuration option is outside of the normal semver guarantees: minor
49- # versions of crossbeam may make breaking changes to it at any time.
51+ # NOTE: This feature is outside of the normal semver guarantees and minor or
52+ # patch versions of crossbeam may make breaking changes to them at any time.
5053[target .'cfg(crossbeam_loom)' .dependencies ]
5154loom-crate = { package = " loom" , version = " 0.5" , optional = true }
5255
0 commit comments