Skip to content

Commit

Permalink
Add rust-version field to Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Nov 23, 2021
1 parent ad8af5d commit 9f73b8d
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion futures-channel/Cargo.toml
@@ -1,7 +1,8 @@
[package]
name = "futures-channel"
edition = "2018"
version = "0.4.0-alpha.0"
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"
Expand Down
3 changes: 2 additions & 1 deletion futures-core/Cargo.toml
@@ -1,7 +1,8 @@
[package]
name = "futures-core"
edition = "2018"
version = "1.0.0-alpha.0"
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"
Expand Down
3 changes: 2 additions & 1 deletion futures-executor/Cargo.toml
@@ -1,7 +1,8 @@
[package]
name = "futures-executor"
edition = "2018"
version = "0.4.0-alpha.0"
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"
Expand Down
3 changes: 2 additions & 1 deletion futures-io/Cargo.toml
@@ -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"
Expand Down
3 changes: 2 additions & 1 deletion futures-macro/Cargo.toml
@@ -1,7 +1,8 @@
[package]
name = "futures-macro"
edition = "2018"
version = "0.4.0-alpha.0"
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"
Expand Down
3 changes: 2 additions & 1 deletion futures-sink/Cargo.toml
@@ -1,7 +1,8 @@
[package]
name = "futures-sink"
edition = "2018"
version = "0.4.0-alpha.0"
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"
Expand Down
3 changes: 2 additions & 1 deletion futures-task/Cargo.toml
@@ -1,7 +1,8 @@
[package]
name = "futures-task"
edition = "2018"
version = "0.4.0-alpha.0"
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"
Expand Down
3 changes: 2 additions & 1 deletion futures-test/Cargo.toml
@@ -1,7 +1,8 @@
[package]
name = "futures-test"
edition = "2018"
version = "0.4.0-alpha.0"
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"
Expand Down
3 changes: 2 additions & 1 deletion futures-util/Cargo.toml
@@ -1,7 +1,8 @@
[package]
name = "futures-util"
edition = "2018"
version = "0.4.0-alpha.0"
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"
Expand Down
3 changes: 2 additions & 1 deletion futures/Cargo.toml
@@ -1,7 +1,8 @@
[package]
name = "futures"
edition = "2018"
version = "0.4.0-alpha.0"
edition = "2018"
rust-version = "1.45"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
Expand Down

0 comments on commit 9f73b8d

Please sign in to comment.