mirror of
https://github.com/openharmony/third_party_rust_futures-rs.git
synced 2026-06-30 21:47:57 -04:00
Release 0.3.24
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
# 0.3.24 - 2022-08-29
|
||||
|
||||
* Fix incorrect termination of `select_with_strategy` streams (#2635)
|
||||
|
||||
# 0.3.23 - 2022-08-14
|
||||
|
||||
* Work around MSRV increase due to a cargo bug.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "futures-channel"
|
||||
version = "0.3.23"
|
||||
version = "0.3.24"
|
||||
edition = "2018"
|
||||
rust-version = "1.45"
|
||||
license = "MIT OR Apache-2.0"
|
||||
@@ -22,8 +22,8 @@ unstable = []
|
||||
cfg-target-has-atomic = []
|
||||
|
||||
[dependencies]
|
||||
futures-core = { path = "../futures-core", version = "0.3.23", default-features = false }
|
||||
futures-sink = { path = "../futures-sink", version = "0.3.23", default-features = false, optional = true }
|
||||
futures-core = { path = "../futures-core", version = "0.3.24", default-features = false }
|
||||
futures-sink = { path = "../futures-sink", version = "0.3.24", default-features = false, optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
futures = { path = "../futures", default-features = true }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "futures-core"
|
||||
version = "0.3.23"
|
||||
version = "0.3.24"
|
||||
edition = "2018"
|
||||
rust-version = "1.36"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "futures-executor"
|
||||
version = "0.3.23"
|
||||
version = "0.3.24"
|
||||
edition = "2018"
|
||||
rust-version = "1.45"
|
||||
license = "MIT OR Apache-2.0"
|
||||
@@ -16,9 +16,9 @@ std = ["futures-core/std", "futures-task/std", "futures-util/std"]
|
||||
thread-pool = ["std", "num_cpus"]
|
||||
|
||||
[dependencies]
|
||||
futures-core = { path = "../futures-core", version = "0.3.23", default-features = false }
|
||||
futures-task = { path = "../futures-task", version = "0.3.23", default-features = false }
|
||||
futures-util = { path = "../futures-util", version = "0.3.23", default-features = false }
|
||||
futures-core = { path = "../futures-core", version = "0.3.24", default-features = false }
|
||||
futures-task = { path = "../futures-task", version = "0.3.24", default-features = false }
|
||||
futures-util = { path = "../futures-util", version = "0.3.24", default-features = false }
|
||||
num_cpus = { version = "1.8.0", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "futures-io"
|
||||
version = "0.3.23"
|
||||
version = "0.3.24"
|
||||
edition = "2018"
|
||||
rust-version = "1.36"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "futures-macro"
|
||||
version = "0.3.23"
|
||||
version = "0.3.24"
|
||||
edition = "2018"
|
||||
rust-version = "1.45"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "futures-sink"
|
||||
version = "0.3.23"
|
||||
version = "0.3.24"
|
||||
edition = "2018"
|
||||
rust-version = "1.36"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "futures-task"
|
||||
version = "0.3.23"
|
||||
version = "0.3.24"
|
||||
edition = "2018"
|
||||
rust-version = "1.45"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "futures-test"
|
||||
version = "0.3.23"
|
||||
version = "0.3.24"
|
||||
edition = "2018"
|
||||
rust-version = "1.45"
|
||||
license = "MIT OR Apache-2.0"
|
||||
@@ -11,13 +11,13 @@ Common utilities for testing components built off futures-rs.
|
||||
"""
|
||||
|
||||
[dependencies]
|
||||
futures-core = { version = "0.3.23", path = "../futures-core", default-features = false }
|
||||
futures-task = { version = "0.3.23", path = "../futures-task", default-features = false }
|
||||
futures-io = { version = "0.3.23", path = "../futures-io", default-features = false }
|
||||
futures-util = { version = "0.3.23", path = "../futures-util", default-features = false }
|
||||
futures-executor = { version = "0.3.23", path = "../futures-executor", default-features = false }
|
||||
futures-sink = { version = "0.3.23", path = "../futures-sink", default-features = false }
|
||||
futures-macro = { version = "=0.3.23", path = "../futures-macro", default-features = false }
|
||||
futures-core = { version = "0.3.24", path = "../futures-core", default-features = false }
|
||||
futures-task = { version = "0.3.24", path = "../futures-task", default-features = false }
|
||||
futures-io = { version = "0.3.24", path = "../futures-io", default-features = false }
|
||||
futures-util = { version = "0.3.24", path = "../futures-util", default-features = false }
|
||||
futures-executor = { version = "0.3.24", path = "../futures-executor", default-features = false }
|
||||
futures-sink = { version = "0.3.24", path = "../futures-sink", default-features = false }
|
||||
futures-macro = { version = "=0.3.24", path = "../futures-macro", default-features = false }
|
||||
pin-utils = { version = "0.1.0", default-features = false }
|
||||
pin-project = "1.0.11"
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "futures-util"
|
||||
version = "0.3.23"
|
||||
version = "0.3.24"
|
||||
edition = "2018"
|
||||
rust-version = "1.45"
|
||||
license = "MIT OR Apache-2.0"
|
||||
@@ -34,12 +34,12 @@ write-all-vectored = ["io"]
|
||||
cfg-target-has-atomic = []
|
||||
|
||||
[dependencies]
|
||||
futures-core = { path = "../futures-core", version = "0.3.23", default-features = false }
|
||||
futures-task = { path = "../futures-task", version = "0.3.23", default-features = false }
|
||||
futures-channel = { path = "../futures-channel", version = "0.3.23", default-features = false, features = ["std"], optional = true }
|
||||
futures-io = { path = "../futures-io", version = "0.3.23", default-features = false, features = ["std"], optional = true }
|
||||
futures-sink = { path = "../futures-sink", version = "0.3.23", default-features = false, optional = true }
|
||||
futures-macro = { path = "../futures-macro", version = "=0.3.23", default-features = false, optional = true }
|
||||
futures-core = { path = "../futures-core", version = "0.3.24", default-features = false }
|
||||
futures-task = { path = "../futures-task", version = "0.3.24", default-features = false }
|
||||
futures-channel = { path = "../futures-channel", version = "0.3.24", default-features = false, features = ["std"], optional = true }
|
||||
futures-io = { path = "../futures-io", version = "0.3.24", default-features = false, features = ["std"], optional = true }
|
||||
futures-sink = { path = "../futures-sink", version = "0.3.24", default-features = false, optional = true }
|
||||
futures-macro = { path = "../futures-macro", version = "=0.3.24", default-features = false, optional = true }
|
||||
slab = { version = "0.4.2", optional = true }
|
||||
memchr = { version = "2.2", optional = true }
|
||||
futures_01 = { version = "0.1.25", optional = true, package = "futures" }
|
||||
|
||||
+8
-8
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "futures"
|
||||
version = "0.3.23"
|
||||
version = "0.3.24"
|
||||
edition = "2018"
|
||||
rust-version = "1.45"
|
||||
license = "MIT OR Apache-2.0"
|
||||
@@ -15,13 +15,13 @@ composability, and iterator-like interfaces.
|
||||
categories = ["asynchronous"]
|
||||
|
||||
[dependencies]
|
||||
futures-core = { path = "../futures-core", version = "0.3.23", default-features = false }
|
||||
futures-task = { path = "../futures-task", version = "0.3.23", default-features = false }
|
||||
futures-channel = { path = "../futures-channel", version = "0.3.23", default-features = false, features = ["sink"] }
|
||||
futures-executor = { path = "../futures-executor", version = "0.3.23", default-features = false, optional = true }
|
||||
futures-io = { path = "../futures-io", version = "0.3.23", default-features = false }
|
||||
futures-sink = { path = "../futures-sink", version = "0.3.23", default-features = false }
|
||||
futures-util = { path = "../futures-util", version = "0.3.23", default-features = false, features = ["sink"] }
|
||||
futures-core = { path = "../futures-core", version = "0.3.24", default-features = false }
|
||||
futures-task = { path = "../futures-task", version = "0.3.24", default-features = false }
|
||||
futures-channel = { path = "../futures-channel", version = "0.3.24", default-features = false, features = ["sink"] }
|
||||
futures-executor = { path = "../futures-executor", version = "0.3.24", default-features = false, optional = true }
|
||||
futures-io = { path = "../futures-io", version = "0.3.24", default-features = false }
|
||||
futures-sink = { path = "../futures-sink", version = "0.3.24", default-features = false }
|
||||
futures-util = { path = "../futures-util", version = "0.3.24", default-features = false, features = ["sink"] }
|
||||
|
||||
[dev-dependencies]
|
||||
futures-executor = { path = "../futures-executor", features = ["thread-pool"] }
|
||||
|
||||
Reference in New Issue
Block a user