Add rust-version field to Cargo.toml

https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
This commit is contained in:
Taiki Endo
2021-11-23 09:42:09 +09:00
parent 9d1ef44d01
commit b4e550c6d0
11 changed files with 22 additions and 12 deletions
+2 -2
View File
@@ -61,7 +61,7 @@ jobs:
matrix:
rust:
# This is the minimum Rust version supported by futures-core, futures-io, futures-sink, futures-task.
# When updating this, the reminder to update the minimum required version in README.md and .clippy.toml.
# When updating this, the reminder to update the minimum required version in README.md, Cargo.toml, and .clippy.toml.
- 1.36
runs-on: ubuntu-latest
steps:
@@ -92,7 +92,7 @@ jobs:
matrix:
rust:
# This is the minimum Rust version supported by futures, futures-util, futures-macro, futures-executor, futures-channel, futures-test.
# When updating this, the reminder to update the minimum required version in README.md.
# When updating this, the reminder to update the minimum required version in README.md and Cargo.toml.
- 1.45
runs-on: ubuntu-latest
steps:
+2 -1
View File
@@ -1,7 +1,8 @@
[package]
name = "futures-channel"
edition = "2018"
version = "0.3.17"
edition = "2018"
rust-version = "1.45"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
+2 -1
View File
@@ -1,7 +1,8 @@
[package]
name = "futures-core"
edition = "2018"
version = "0.3.17"
edition = "2018"
rust-version = "1.36"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
+2 -1
View File
@@ -1,7 +1,8 @@
[package]
name = "futures-executor"
edition = "2018"
version = "0.3.17"
edition = "2018"
rust-version = "1.45"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
+2 -1
View File
@@ -1,7 +1,8 @@
[package]
name = "futures-io"
edition = "2018"
version = "0.3.17"
edition = "2018"
rust-version = "1.36"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
+2 -1
View File
@@ -1,7 +1,8 @@
[package]
name = "futures-macro"
edition = "2018"
version = "0.3.17"
edition = "2018"
rust-version = "1.45"
authors = ["Taylor Cramer <cramertj@google.com>", "Taiki Endo <te316e89@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
+2 -1
View File
@@ -1,7 +1,8 @@
[package]
name = "futures-sink"
edition = "2018"
version = "0.3.17"
edition = "2018"
rust-version = "1.36"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
+2 -1
View File
@@ -1,7 +1,8 @@
[package]
name = "futures-task"
edition = "2018"
version = "0.3.17"
edition = "2018"
rust-version = "1.36"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
+2 -1
View File
@@ -1,7 +1,8 @@
[package]
name = "futures-test"
edition = "2018"
version = "0.3.17"
edition = "2018"
rust-version = "1.45"
authors = ["Wim Looman <wim@nemo157.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
+2 -1
View File
@@ -1,7 +1,8 @@
[package]
name = "futures-util"
edition = "2018"
version = "0.3.17"
edition = "2018"
rust-version = "1.45"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/futures-rs"
+2 -1
View File
@@ -1,7 +1,8 @@
[package]
name = "futures"
edition = "2018"
version = "0.3.17"
edition = "2018"
rust-version = "1.45"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"