Skip to content

Commit c2f4aea

Browse files
committed
1 parent cc19f6c commit c2f4aea

File tree

11 files changed

+22
-12
lines changed

11 files changed

+22
-12
lines changed

Diff for: .github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
matrix:
6262
rust:
6363
# This is the minimum Rust version supported by futures-core, futures-io, futures-sink, futures-task.
64-
# When updating this, the reminder to update the minimum required version in README.md and .clippy.toml.
64+
# When updating this, the reminder to update the minimum required version in README.md, Cargo.toml, and .clippy.toml.
6565
- 1.36
6666
runs-on: ubuntu-latest
6767
steps:
@@ -92,7 +92,7 @@ jobs:
9292
matrix:
9393
rust:
9494
# This is the minimum Rust version supported by futures, futures-util, futures-macro, futures-executor, futures-channel, futures-test.
95-
# When updating this, the reminder to update the minimum required version in README.md.
95+
# When updating this, the reminder to update the minimum required version in README.md and Cargo.toml.
9696
- 1.45
9797
runs-on: ubuntu-latest
9898
steps:

Diff for: futures-channel/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "futures-channel"
3-
edition = "2018"
43
version = "0.3.17"
4+
edition = "2018"
5+
rust-version = "1.45"
56
authors = ["Alex Crichton <[email protected]>"]
67
license = "MIT OR Apache-2.0"
78
repository = "https://github.com/rust-lang/futures-rs"

Diff for: futures-core/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "futures-core"
3-
edition = "2018"
43
version = "0.3.17"
4+
edition = "2018"
5+
rust-version = "1.36"
56
authors = ["Alex Crichton <[email protected]>"]
67
license = "MIT OR Apache-2.0"
78
repository = "https://github.com/rust-lang/futures-rs"

Diff for: futures-executor/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "futures-executor"
3-
edition = "2018"
43
version = "0.3.17"
4+
edition = "2018"
5+
rust-version = "1.45"
56
authors = ["Alex Crichton <[email protected]>"]
67
license = "MIT OR Apache-2.0"
78
repository = "https://github.com/rust-lang/futures-rs"

Diff for: futures-io/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "futures-io"
3-
edition = "2018"
43
version = "0.3.17"
4+
edition = "2018"
5+
rust-version = "1.36"
56
authors = ["Alex Crichton <[email protected]>"]
67
license = "MIT OR Apache-2.0"
78
repository = "https://github.com/rust-lang/futures-rs"

Diff for: futures-macro/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "futures-macro"
3-
edition = "2018"
43
version = "0.3.17"
4+
edition = "2018"
5+
rust-version = "1.45"
56
authors = ["Taylor Cramer <[email protected]>", "Taiki Endo <[email protected]>"]
67
license = "MIT OR Apache-2.0"
78
repository = "https://github.com/rust-lang/futures-rs"

Diff for: futures-sink/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "futures-sink"
3-
edition = "2018"
43
version = "0.3.17"
4+
edition = "2018"
5+
rust-version = "1.36"
56
authors = ["Alex Crichton <[email protected]>"]
67
license = "MIT OR Apache-2.0"
78
repository = "https://github.com/rust-lang/futures-rs"

Diff for: futures-task/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "futures-task"
3-
edition = "2018"
43
version = "0.3.17"
4+
edition = "2018"
5+
rust-version = "1.36"
56
authors = ["Alex Crichton <[email protected]>"]
67
license = "MIT OR Apache-2.0"
78
repository = "https://github.com/rust-lang/futures-rs"

Diff for: futures-test/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "futures-test"
3-
edition = "2018"
43
version = "0.3.17"
4+
edition = "2018"
5+
rust-version = "1.45"
56
authors = ["Wim Looman <[email protected]>"]
67
license = "MIT OR Apache-2.0"
78
repository = "https://github.com/rust-lang/futures-rs"

Diff for: futures-util/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "futures-util"
3-
edition = "2018"
43
version = "0.3.17"
4+
edition = "2018"
5+
rust-version = "1.45"
56
authors = ["Alex Crichton <[email protected]>"]
67
license = "MIT OR Apache-2.0"
78
repository = "https://github.com/rust-lang/futures-rs"

Diff for: futures/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[package]
22
name = "futures"
3-
edition = "2018"
43
version = "0.3.17"
4+
edition = "2018"
5+
rust-version = "1.45"
56
authors = ["Alex Crichton <[email protected]>"]
67
license = "MIT OR Apache-2.0"
78
readme = "../README.md"

0 commit comments

Comments
 (0)