-
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.
Merge pull request #1248 from MajorBreakfast/alpha-5
Revert usage of crate renaming features, alpha.5
- Loading branch information
Showing
26 changed files
with
83 additions
and
80 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
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.4" | ||
version = "0.3.0-alpha.5" | ||
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.4/futures_channel" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.5/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.4", default-features = false } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.5", default-features = false } | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.4", default-features = true } | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.5", default-features = true } | ||
pin-utils = "0.1.0-alpha.2" |
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.4" | ||
version = "0.3.0-alpha.5" | ||
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.4/futures_core" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.5/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.4" | ||
version = "0.3.0-alpha.5" | ||
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.4/futures_executor" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.5/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.4", default-features = false} | ||
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.4", default-features = false} | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.4", default-features = false} | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.5", default-features = false} | ||
futures-util-preview = { path = "../futures-util", version = "0.3.0-alpha.5", default-features = false} | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5", 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.2" | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.4" } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.4" } | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.5" } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5" } |
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.4" | ||
version = "0.3.0-alpha.5" | ||
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.4/futures_io" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.5/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.4", default-features = false } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.5", default-features = false } | ||
iovec = { version = "0.1", optional = true } | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.4" } | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.5" } | ||
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.4" | ||
version = "0.3.0-alpha.5" | ||
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.4/futures_sink" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.5/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.4", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.4", default-features = false } | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.5", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5", 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-test-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.4" | ||
version = "0.3.0-alpha.5" | ||
authors = ["Wim Looman <[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-doc/0.3.0-alpha.4/futures_test" | ||
documentation = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.5/futures_test" | ||
description = """ | ||
Common utilities for testing components built off 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
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 @@ | ||
cargo-features = ["edition", "rename-dependency"] | ||
cargo-features = ["edition"] | ||
|
||
[package] | ||
name = "futures-util-preview" | ||
edition = "2018" | ||
version = "0.3.0-alpha.4" | ||
version = "0.3.0-alpha.5" | ||
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.4/futures_util" | ||
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.5/futures_util" | ||
description = """ | ||
Common utilities and extension traits for the futures-rs library. | ||
""" | ||
|
@@ -19,24 +19,22 @@ name = "futures_util" | |
[features] | ||
std = ["futures-core-preview/std", "futures-io-preview/std", "futures-sink-preview/std", "either/use_std", "slab"] | ||
default = ["std", "futures-core-preview/either", "futures-sink-preview/either"] | ||
compat = ["std", "futures01"] | ||
compat = ["std", "futures"] | ||
tokio-compat = ["compat", "tokio-executor"] | ||
bench = [] | ||
nightly = [] | ||
|
||
[dependencies] | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.4", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.4", default-features = false } | ||
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.4", default-features = false } | ||
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.4", default-features = false} | ||
futures-core-preview = { path = "../futures-core", version = "0.3.0-alpha.5", default-features = false } | ||
futures-channel-preview = { path = "../futures-channel", version = "0.3.0-alpha.5", default-features = false } | ||
futures-io-preview = { path = "../futures-io", version = "0.3.0-alpha.5", default-features = false } | ||
futures-sink-preview = { path = "../futures-sink", version = "0.3.0-alpha.5", default-features = false} | ||
either = { version = "1.4", default-features = false } | ||
slab = { version = "0.4", optional = true } | ||
futures01 = { package = "futures", version = "0.1", optional = true } | ||
futures = { version = "0.1", optional = true } | ||
tokio-executor = { version = "0.1.2", optional = true } | ||
pin-utils = "0.1.0-alpha.2" | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.4", features = ["tokio-compat"] } | ||
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.4" } | ||
tokio = "0.1.8" | ||
tokio-threadpool = "0.1.6" | ||
futures-preview = { path = "../futures", version = "0.3.0-alpha.5" } | ||
futures-executor-preview = { path = "../futures-executor", version = "0.3.0-alpha.5" } |
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
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
Oops, something went wrong.