Skip to content

Commit e81835c

Browse files
committed
Update crossbeam dependencies (requires Rust 1.36)
1 parent 5b3d917 commit e81835c

File tree

7 files changed

+120
-108
lines changed

7 files changed

+120
-108
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ on:
88
jobs:
99

1010
check:
11-
name: Check (1.31.0)
11+
name: Check (1.36.0)
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v2
1616
- name: Install
1717
uses: actions-rs/toolchain@v1
1818
with:
19-
toolchain: 1.31.0
19+
toolchain: 1.36.0
2020
profile: minimal
2121
override: true
2222
- name: Prepare Cargo.lock

.github/workflows/pr.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ env:
88
jobs:
99

1010
check:
11-
name: Check (1.31.0)
11+
name: Check (1.36.0)
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v2
1616
- name: Install
1717
uses: actions-rs/toolchain@v1
1818
with:
19-
toolchain: 1.31.0
19+
toolchain: 1.36.0
2020
profile: minimal
2121
override: true
2222
- name: Prepare Cargo.lock

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ exclude = ["ci"]
2020

2121
[dependencies]
2222
rayon-core = { version = "1.8.1", path = "rayon-core" }
23-
crossbeam-deque = "0.7.2"
23+
crossbeam-deque = "0.8.0"
2424

2525
# This is a public dependency!
2626
[dependencies.either]

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Rayon crate](https://img.shields.io/crates/v/rayon.svg)](https://crates.io/crates/rayon)
44
[![Rayon documentation](https://docs.rs/rayon/badge.svg)](https://docs.rs/rayon)
5-
![minimum rustc 1.31](https://img.shields.io/badge/rustc-1.31+-red.svg)
5+
![minimum rustc 1.36](https://img.shields.io/badge/rustc-1.36+-red.svg)
66
![build status](https://github.com/rayon-rs/rayon/workflows/master/badge.svg)
77
[![Join the chat at https://gitter.im/rayon-rs/Lobby](https://badges.gitter.im/rayon-rs/Lobby.svg)](https://gitter.im/rayon-rs/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
88

@@ -84,7 +84,7 @@ just add:
8484
use rayon::prelude::*;
8585
```
8686

87-
Rayon currently requires `rustc 1.31.0` or greater.
87+
Rayon currently requires `rustc 1.36.0` or greater.
8888

8989
## Contribution
9090

bors.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
status = [
2-
"Check (1.31.0)",
2+
"Check (1.36.0)",
33
"Test (ubuntu-latest, stable)",
44
"Test (ubuntu-latest, stable-i686)",
55
"Test (ubuntu-latest, beta)",

0 commit comments

Comments
 (0)