This repository was archived by the owner on May 20, 2024. It is now read-only.
Commit a0250e5
committed
Raise minimum tested compiler to 1.70
Required by simd-json's use of standard library OnceCell.
error[E0658]: use of unstable library feature 'once_cell'
--> github.com-1ecc6299db9ec823/simd-json-0.11.0/src/lib.rs:380:24
|
380 | let cell = std::cell::OnceCell::new();
| ^^^^^^^^^^^^^^^^^^^
error[E0658]: use of unstable library feature 'once_cell'
--> github.com-1ecc6299db9ec823/simd-json-0.11.0/src/lib.rs:385:24
|
385 | let cell = std::cell::OnceCell::new();
| ^^^^^^^^^^^^^^^^^^^
error[E0658]: use of unstable library feature 'once_cell'
--> github.com-1ecc6299db9ec823/simd-json-0.11.0/src/lib.rs:555:24
|
555 | let cell = std::cell::OnceCell::new();
| ^^^^^^^^^^^^^^^^^^^
error[E0658]: use of unstable library feature 'once_cell'
--> github.com-1ecc6299db9ec823/simd-json-0.11.0/src/lib.rs:560:24
|
560 | let cell = std::cell::OnceCell::new();
| ^^^^^^^^^^^^^^^^^^^
error[E0658]: use of unstable library feature 'once_cell'
--> github.com-1ecc6299db9ec823/simd-json-0.11.0/src/lib.rs:380:24
|
380 | let cell = std::cell::OnceCell::new();
| ^^^^^^^^^^^^^^^^^^^^^^^^
error[E0658]: use of unstable library feature 'once_cell'
--> github.com-1ecc6299db9ec823/simd-json-0.11.0/src/lib.rs:381:43
|
381 | let avx_support: &bool = cell.get_or_init(|| std::is_x86_feature_detected!("avx2"));
| ^^^^^^^^^^^
error[E0658]: use of unstable library feature 'once_cell'
--> github.com-1ecc6299db9ec823/simd-json-0.11.0/src/lib.rs:385:24
|
385 | let cell = std::cell::OnceCell::new();
| ^^^^^^^^^^^^^^^^^^^^^^^^
error[E0658]: use of unstable library feature 'once_cell'
--> github.com-1ecc6299db9ec823/simd-json-0.11.0/src/lib.rs:386:43
|
386 | let sse_support: &bool = cell.get_or_init(|| std::is_x86_feature_detected!("sse4.2"));
| ^^^^^^^^^^^
error[E0658]: use of unstable library feature 'once_cell'
--> github.com-1ecc6299db9ec823/simd-json-0.11.0/src/lib.rs:555:24
|
555 | let cell = std::cell::OnceCell::new();
| ^^^^^^^^^^^^^^^^^^^^^^^^
error[E0658]: use of unstable library feature 'once_cell'
--> github.com-1ecc6299db9ec823/simd-json-0.11.0/src/lib.rs:556:43
|
556 | let avx_support: &bool = cell.get_or_init(|| std::is_x86_feature_detected!("avx2"));
| ^^^^^^^^^^^
error[E0658]: use of unstable library feature 'once_cell'
--> github.com-1ecc6299db9ec823/simd-json-0.11.0/src/lib.rs:560:24
|
560 | let cell = std::cell::OnceCell::new();
| ^^^^^^^^^^^^^^^^^^^^^^^^
error[E0658]: use of unstable library feature 'once_cell'
--> github.com-1ecc6299db9ec823/simd-json-0.11.0/src/lib.rs:561:43
|
561 | let sse_support: &bool = cell.get_or_init(|| std::is_x86_feature_detected!("sse4.2"));
| ^^^^^^^^^^^1 parent e865184 commit a0250e5
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| |||
0 commit comments