diff --git a/crossbeam-utils/src/thread.rs b/crossbeam-utils/src/thread.rs index 9e89d2f7f..298579040 100644 --- a/crossbeam-utils/src/thread.rs +++ b/crossbeam-utils/src/thread.rs @@ -133,6 +133,8 @@ type SharedOption = Arc>>; /// returned containing errors from panicked threads. Note that if panics are implemented by /// aborting the process, no error is returned; see the notes of [std::panic::catch_unwind]. /// +/// **Note:** Since Rust 1.63, this function is soft-deprecated in favor of the more efficient [`std::thread::scope`]. +/// /// # Examples /// /// ```