Skip to content
This repository was archived by the owner on May 20, 2024. It is now read-only.

Commit a0250e5

Browse files
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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
rust: [nightly, beta, stable, 1.61.0]
22+
rust: [nightly, beta, stable, 1.70.0]
2323
timeout-minutes: 45
2424
steps:
2525
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)