-
Notifications
You must be signed in to change notification settings - Fork 634
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1200 from MajorBreakfast/alpha-3
Alpha 3
- Loading branch information
Showing
16 changed files
with
65 additions
and
47 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 |
---|---|---|
|
@@ -3,12 +3,12 @@ cargo-features = ["edition"] | |
[package] | ||
name = "futures-channel-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.2" | ||
version = "0.3.0-alpha.3" | ||
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.2/futures_channel" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.3/futures_channel" | ||
description = """ | ||
Channels for asynchronous communication using futures-rs. | ||
""" | ||
|
@@ -21,8 +21,8 @@ std = ["futures-core-preview/std"] | |
default = ["std"] | ||
|
||
[dependencies] | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.2", default-features = false } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.3", default-features = false } | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.2", default-features = true } | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.3", default-features = true } | ||
pin-utils = "0.1.0-alpha.1" |
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 |
---|---|---|
|
@@ -3,12 +3,12 @@ cargo-features = ["edition"] | |
[package] | ||
name = "futures-core-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.2" | ||
version = "0.3.0-alpha.3" | ||
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.2/futures_core" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.3/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 |
---|---|---|
|
@@ -3,12 +3,12 @@ cargo-features = ["edition"] | |
[package] | ||
name = "futures-executor-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.2" | ||
version = "0.3.0-alpha.3" | ||
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.2/futures_executor" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.3/futures_executor" | ||
description = """ | ||
Executors for asynchronous tasks based on the futures-rs library. | ||
""" | ||
|
@@ -21,13 +21,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.2", default-features = false} | ||
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.2", default-features = false} | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.2", default-features = false} | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.3", default-features = false} | ||
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.3", default-features = false} | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.3", 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.1" | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.2" } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.2" } | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.3" } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.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 |
---|---|---|
|
@@ -3,12 +3,12 @@ cargo-features = ["edition"] | |
[package] | ||
name = "futures-io-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.2" | ||
version = "0.3.0-alpha.3" | ||
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.2/futures_io" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.3/futures_io" | ||
description = """ | ||
The `AsyncRead` and `AsyncWrite` traits for the futures-rs library. | ||
""" | ||
|
@@ -21,9 +21,9 @@ std = ["futures-core-preview/std", "iovec"] | |
default = ["std"] | ||
|
||
[dependencies] | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.2", default-features = false } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.3", default-features = false } | ||
iovec = { version = "0.1", optional = true } | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.2" } | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.3" } | ||
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 |
---|---|---|
|
@@ -3,12 +3,12 @@ cargo-features = ["edition"] | |
[package] | ||
name = "futures-sink-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.2" | ||
version = "0.3.0-alpha.3" | ||
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.2/futures_sink" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.3/futures_sink" | ||
description = """ | ||
The asynchronous `Sink` trait for the futures-rs library. | ||
""" | ||
|
@@ -22,5 +22,5 @@ default = ["std"] | |
|
||
[dependencies] | ||
either = { version = "1.4", default-features = false, optional = true } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.2", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.2", default-features = false } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.3", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.3", 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 |
---|---|---|
|
@@ -3,12 +3,12 @@ cargo-features = ["edition"] | |
[package] | ||
name = "futures-util-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.2" | ||
version = "0.3.0-alpha.3" | ||
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.2/futures_util" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.3/futures_util" | ||
description = """ | ||
Common utilities and extension traits for the futures-rs library. | ||
""" | ||
|
@@ -25,17 +25,17 @@ bench = [] | |
nightly = [] | ||
|
||
[dependencies] | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.2", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.2", default-features = false } | ||
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.2", default-features = false } | ||
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.2", default-features = false} | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.3", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.3", default-features = false } | ||
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.3", default-features = false } | ||
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.3", default-features = false} | ||
either = { version = "1.4", default-features = false } | ||
slab = { version = "0.4", optional = true } | ||
futures = { version = "0.1", optional = true } | ||
tokio-executor = { version = "0.1.2", optional = true } | ||
pin-utils = "0.1.0-alpha.1" | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.2" } | ||
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.2" } | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.3" } | ||
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.3" } | ||
# futures-channel = { path = "../futures-channel", version = "0.2.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 |
---|---|---|
|
@@ -3,14 +3,14 @@ cargo-features = ["edition"] | |
[package] | ||
name = "futures-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.2" | ||
version = "0.3.0-alpha.3" | ||
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.2/futures" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.3/futures" | ||
description = """ | ||
An implementation of futures and streams featuring zero allocations, | ||
composability, and iterator-like interfaces. | ||
|
@@ -25,12 +25,12 @@ 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.2", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.2", default-features = false } | ||
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.2", default-features = false } | ||
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.2", default-features = false } | ||
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.2", default-features = false } | ||
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.2", default-features = false } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.3", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.3", default-features = false } | ||
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.3", default-features = false } | ||
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.3", default-features = false } | ||
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.3", default-features = false } | ||
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.3", default-features = false } | ||
|
||
[dev-dependencies] | ||
pin-utils = "0.1.0-alpha.1" | ||
|
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