mirror of
https://github.com/openharmony/third_party_rust_futures-rs.git
synced 2026-07-01 21:44:52 -04:00
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:
@@ -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:
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user