Skip to content

Commit 22f9836

Browse files
committed
bump msrv to 1.68
Signed-off-by: tison <[email protected]>
1 parent b6a2a53 commit 22f9836

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
rust:
103103
# This is the minimum Rust version supported by futures, futures-util, futures-task, futures-macro, futures-executor, futures-channel, futures-test.
104104
# When updating this, the reminder to update the minimum required version in README.md and Cargo.toml.
105-
- '1.63'
105+
- '1.68'
106106
runs-on: ubuntu-latest
107107
timeout-minutes: 60
108108
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Add this to your `Cargo.toml`:
3838
futures = "0.3"
3939
```
4040

41-
The current `futures` requires Rust 1.63 or later.
41+
The current `futures` requires Rust 1.68 or later.
4242

4343
### Feature `std`
4444

futures-channel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "futures-channel"
33
version = "0.4.0-alpha.0"
44
edition = "2018"
5-
rust-version = "1.63"
5+
rust-version = "1.68"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"

futures-channel/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add this to your `Cargo.toml`:
1111
futures-channel = "0.3"
1212
```
1313

14-
The current `futures-channel` requires Rust 1.63 or later.
14+
The current `futures-channel` requires Rust 1.68 or later.
1515

1616
## License
1717

futures-executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "futures-executor"
33
version = "0.4.0-alpha.0"
44
edition = "2018"
5-
rust-version = "1.63"
5+
rust-version = "1.68"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"

futures-executor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add this to your `Cargo.toml`:
1111
futures-executor = "0.3"
1212
```
1313

14-
The current `futures-executor` requires Rust 1.63 or later.
14+
The current `futures-executor` requires Rust 1.68 or later.
1515

1616
## License
1717

futures-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "futures-macro"
33
version = "0.4.0-alpha.0"
44
edition = "2018"
5-
rust-version = "1.63"
5+
rust-version = "1.68"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"

futures-task/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "futures-task"
33
version = "0.4.0-alpha.0"
44
edition = "2018"
5-
rust-version = "1.63"
5+
rust-version = "1.68"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"

futures-task/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add this to your `Cargo.toml`:
1111
futures-task = "0.3"
1212
```
1313

14-
The current `futures-task` requires Rust 1.63 or later.
14+
The current `futures-task` requires Rust 1.68 or later.
1515

1616
## License
1717

futures-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "futures-test"
33
version = "0.4.0-alpha.0"
44
edition = "2018"
5-
rust-version = "1.63"
5+
rust-version = "1.68"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"

futures-test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add this to your `Cargo.toml`:
1111
futures-test = "0.3"
1212
```
1313

14-
The current `futures-test` requires Rust 1.63 or later.
14+
The current `futures-test` requires Rust 1.68 or later.
1515

1616
## License
1717

futures-util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "futures-util"
33
version = "0.4.0-alpha.0"
44
edition = "2018"
5-
rust-version = "1.63"
5+
rust-version = "1.68"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang/futures-rs"
88
homepage = "https://rust-lang.github.io/futures-rs"

futures-util/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add this to your `Cargo.toml`:
1111
futures-util = "0.3"
1212
```
1313

14-
The current `futures-util` requires Rust 1.63 or later.
14+
The current `futures-util` requires Rust 1.68 or later.
1515

1616
## License
1717

futures-util/src/future/future/catch_unwind.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use core::any::Any;
22
use core::pin::Pin;
3-
use std::boxed::Box;
3+
use alloc::boxed::Box;
44
use std::panic::{catch_unwind, AssertUnwindSafe, UnwindSafe};
55

66
use futures_core::future::Future;

futures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "futures"
33
version = "0.4.0-alpha.0"
44
edition = "2018"
5-
rust-version = "1.63"
5+
rust-version = "1.68"
66
license = "MIT OR Apache-2.0"
77
readme = "../README.md"
88
keywords = ["futures", "async", "future"]

0 commit comments

Comments
 (0)