-
Notifications
You must be signed in to change notification settings - Fork 626
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
55 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "futures-channel-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.7" | ||
version = "0.3.0-alpha.8" | ||
authors = ["Alex Crichton <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/rust-lang-nursery/futures-rs" | ||
homepage = "https://rust-lang-nursery.github.io/futures-rs" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_channel" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.8/futures_channel" | ||
description = """ | ||
Channels for asynchronous communication using futures-rs. | ||
""" | ||
|
@@ -19,9 +19,9 @@ std = ["futures-core-preview/std"] | |
default = ["std"] | ||
|
||
[dependencies] | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.7", default-features = false } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.8", default-features = false } | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.7", default-features = true } | ||
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.7", default-features = true } | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.8", default-features = true } | ||
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.8", default-features = true } | ||
pin-utils = "0.1.0-alpha.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "futures-core-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.7" | ||
version = "0.3.0-alpha.8" | ||
authors = ["Alex Crichton <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/rust-lang-nursery/futures-rs" | ||
homepage = "https://rust-lang-nursery.github.io/futures-rs" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_core" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.8/futures_core" | ||
description = """ | ||
The core traits and types in for the `futures` library. | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "futures-executor-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.7" | ||
version = "0.3.0-alpha.8" | ||
authors = ["Alex Crichton <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/rust-lang-nursery/futures-rs" | ||
homepage = "https://rust-lang-nursery.github.io/futures-rs" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_executor" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.8/futures_executor" | ||
description = """ | ||
Executors for asynchronous tasks based on the futures-rs library. | ||
""" | ||
|
@@ -19,13 +19,13 @@ std = ["num_cpus", "futures-core-preview/std", "futures-util-preview/std", "futu | |
default = ["std"] | ||
|
||
[dependencies] | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.7", default-features = false} | ||
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.7", default-features = false} | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.7", default-features = false} | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.8", default-features = false} | ||
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.8", default-features = false} | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.8", default-features = false} | ||
num_cpus = { version = "1.8.0", optional = true } | ||
lazy_static = { version = "1.1.0", optional = true } | ||
pin-utils = "0.1.0-alpha.3" | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.7" } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.7" } | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.8" } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.8" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "futures-io-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.7" | ||
version = "0.3.0-alpha.8" | ||
authors = ["Alex Crichton <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/rust-lang-nursery/futures-rs" | ||
homepage = "https://rust-lang-nursery.github.io/futures-rs" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_io" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.8/futures_io" | ||
description = """ | ||
The `AsyncRead` and `AsyncWrite` traits for the futures-rs library. | ||
""" | ||
|
@@ -19,9 +19,9 @@ std = ["futures-core-preview/std", "iovec"] | |
default = ["std"] | ||
|
||
[dependencies] | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.7", default-features = false } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.8", default-features = false } | ||
iovec = { version = "0.1", optional = true } | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.7" } | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.8" } | ||
assert_matches = "1.3.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "futures-sink-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.7" | ||
version = "0.3.0-alpha.8" | ||
authors = ["Alex Crichton <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/rust-lang-nursery/futures-rs" | ||
homepage = "https://rust-lang-nursery.github.io/futures-rs" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_sink" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.8/futures_sink" | ||
description = """ | ||
The asynchronous `Sink` trait for the futures-rs library. | ||
""" | ||
|
@@ -20,5 +20,5 @@ default = ["std"] | |
|
||
[dependencies] | ||
either = { version = "1.4", default-features = false, optional = true } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.7", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.7", default-features = false } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.8", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.8", default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "futures-test-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.7" | ||
version = "0.3.0-alpha.8" | ||
authors = ["Wim Looman <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/rust-lang-nursery/futures-rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,12 @@ cargo-features = ["rename-dependency"] | |
[package] | ||
name = "futures-util-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.7" | ||
version = "0.3.0-alpha.8" | ||
authors = ["Alex Crichton <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/rust-lang-nursery/futures-rs" | ||
homepage = "https://rust-lang-nursery.github.io/futures-rs" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures_util" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.8/futures_util" | ||
description = """ | ||
Common utilities and extension traits for the futures-rs library. | ||
""" | ||
|
@@ -26,10 +26,10 @@ bench = [] | |
nightly = [] | ||
|
||
[dependencies] | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.7", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.7", default-features = false } | ||
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.7", default-features = false } | ||
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.7", default-features = false} | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.8", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.8", default-features = false } | ||
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.8", default-features = false } | ||
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.8", default-features = false} | ||
either = { version = "1.4", default-features = false } | ||
slab = { version = "0.4", optional = true } | ||
futures_01 = { version = "0.1.25", optional = true, package = "futures" } | ||
|
@@ -38,6 +38,6 @@ tokio-io = { version = "0.1.9", optional = true } | |
pin-utils = "0.1.0-alpha.3" | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.7" } | ||
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.7" } | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.8" } | ||
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.8" } | ||
tokio = "0.1.11" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "futures-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.7" | ||
version = "0.3.0-alpha.8" | ||
authors = ["Alex Crichton <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
readme = "../README.md" | ||
keywords = ["futures", "async", "future"] | ||
repository = "https://github.com/rust-lang-nursery/futures-rs" | ||
homepage = "https://rust-lang-nursery.github.io/futures-rs" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.7/futures" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.8/futures" | ||
description = """ | ||
An implementation of futures and streams featuring zero allocations, | ||
composability, and iterator-like interfaces. | ||
|
@@ -23,16 +23,16 @@ travis-ci = { repository = "rust-lang-nursery/futures-rs" } | |
appveyor = { repository = "rust-lang-nursery/futures-rs" } | ||
|
||
[dependencies] | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.7", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.7", default-features = false } | ||
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.7", default-features = false } | ||
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.7", default-features = false } | ||
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.7", default-features = false } | ||
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.7", default-features = false } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.8", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.8", default-features = false } | ||
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.8", default-features = false } | ||
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.8", default-features = false } | ||
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.8", default-features = false } | ||
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.8", default-features = false } | ||
|
||
[dev-dependencies] | ||
pin-utils = "0.1.0-alpha.3" | ||
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.7", default-features = false } | ||
futures-test-preview = { path = "../futures-test", version = "0.3.0-alpha.8", default-features = false } | ||
tokio = "0.1.11" | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters