Skip to content

Commit fa91a89

Browse files
committed
Auto merge of #1897 - camelid:rustup, r=RalfJung
rustup cc rust-lang/rust#89612 r? `@RalfJung`
2 parents f3af240 + e751c7b commit fa91a89

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

rust-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
25ec8273855fde2d72ae877b397e054de5300e10
1+
0157cc977fd71297ce73e2f249321f5ba2555d42
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#![feature(available_concurrency)]
1+
#![feature(available_parallelism)]
22

33
fn main() {
4-
assert_eq!(std::thread::available_concurrency().unwrap().get(), 1);
4+
assert_eq!(std::thread::available_parallelism().unwrap().get(), 1);
55
}

0 commit comments

Comments
 (0)