-
Notifications
You must be signed in to change notification settings - Fork 636
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
23 changed files
with
133 additions
and
118 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" | ||
name = "futures-channel" | ||
edition = "2018" | ||
version = "0.3.0-alpha.19" | ||
version = "0.3.0" | ||
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://docs.rs/futures-channel-preview/0.3.0-alpha.19" | ||
documentation = "https://docs.rs/futures-channel/0.3.0" | ||
description = """ | ||
Channels for asynchronous communication using futures-rs. | ||
""" | ||
|
@@ -16,20 +16,20 @@ name = "futures_channel" | |
|
||
[features] | ||
default = ["std"] | ||
std = ["alloc", "futures-core-preview/std"] | ||
alloc = ["futures-core-preview/alloc"] | ||
sink = ["futures-sink-preview"] | ||
std = ["alloc", "futures-core/std"] | ||
alloc = ["futures-core/alloc"] | ||
sink = ["futures-sink"] | ||
|
||
# Unstable features | ||
# These features are outside of the normal semver guarantees and require the | ||
# `unstable` feature as an explicit opt-in to unstable API. | ||
unstable = ["futures-core-preview/unstable"] | ||
cfg-target-has-atomic = ["futures-core-preview/cfg-target-has-atomic"] | ||
unstable = ["futures-core/unstable"] | ||
cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic"] | ||
|
||
[dependencies] | ||
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.19", default-features = false } | ||
futures-sink-preview = { path = "../futures-sink", version = "=0.3.0-alpha.19", default-features = false, optional = true } | ||
futures-core = { path = "../futures-core", version = "0.3.0", default-features = false } | ||
futures-sink = { path = "../futures-sink", version = "0.3.0", default-features = false, optional = true } | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "=0.3.0-alpha.19", default-features = true } | ||
futures-test-preview = { path = "../futures-test", version = "=0.3.0-alpha.19", default-features = true } | ||
futures = { path = "../futures", version = "0.3.0", default-features = true } | ||
futures-test = { path = "../futures-test", version = "0.3.0", default-features = true } |
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" | ||
name = "futures-core" | ||
edition = "2018" | ||
version = "0.3.0-alpha.19" | ||
version = "0.3.0" | ||
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://docs.rs/futures-core-preview/0.3.0-alpha.19" | ||
documentation = "https://docs.rs/futures-core/0.3.0" | ||
description = """ | ||
The core traits and types in for the `futures` library. | ||
""" | ||
|
@@ -28,4 +28,4 @@ cfg-target-has-atomic = [] | |
[dependencies] | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "=0.3.0-alpha.19" } | ||
futures = { path = "../futures", version = "0.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-executor-preview" | ||
name = "futures-executor" | ||
edition = "2018" | ||
version = "0.3.0-alpha.19" | ||
version = "0.3.0" | ||
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://docs.rs/futures-executor-preview/0.3.0-alpha.19" | ||
documentation = "https://docs.rs/futures-executor/0.3.0" | ||
description = """ | ||
Executors for asynchronous tasks based on the futures-rs library. | ||
""" | ||
|
@@ -16,14 +16,14 @@ name = "futures_executor" | |
|
||
[features] | ||
default = ["std"] | ||
std = ["futures-core-preview/std", "futures-task-preview/std", "futures-util-preview/std"] | ||
std = ["futures-core/std", "futures-task/std", "futures-util/std"] | ||
thread-pool = ["std", "num_cpus"] | ||
|
||
[dependencies] | ||
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.19", default-features = false } | ||
futures-task-preview = { path = "../futures-task", version = "=0.3.0-alpha.19", default-features = false } | ||
futures-util-preview = { path = "../futures-util", version = "=0.3.0-alpha.19", default-features = false } | ||
futures-core = { path = "../futures-core", version = "0.3.0", default-features = false } | ||
futures-task = { path = "../futures-task", version = "0.3.0", default-features = false } | ||
futures-util = { path = "../futures-util", version = "0.3.0", default-features = false } | ||
num_cpus = { version = "1.8.0", optional = true } | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "=0.3.0-alpha.19" } | ||
futures = { path = "../futures", version = "0.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-io-preview" | ||
name = "futures-io" | ||
edition = "2018" | ||
version = "0.3.0-alpha.19" | ||
version = "0.3.0" | ||
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://docs.rs/futures-io-preview/0.3.0-alpha.19" | ||
documentation = "https://docs.rs/futures-io/0.3.0" | ||
description = """ | ||
The `AsyncRead` and `AsyncWrite` traits for the futures-rs 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-macro-preview" | ||
name = "futures-macro" | ||
edition = "2018" | ||
version = "0.3.0-alpha.19" | ||
version = "0.3.0" | ||
authors = ["Taylor Cramer <[email protected]>", "Taiki Endo <[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://docs.rs/futures-macro-preview/0.3.0-alpha.19" | ||
documentation = "https://docs.rs/futures-macro/0.3.0" | ||
description = """ | ||
The futures-rs procedural macro implementations. | ||
""" | ||
|
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" | ||
name = "futures-sink" | ||
edition = "2018" | ||
version = "0.3.0-alpha.19" | ||
version = "0.3.0" | ||
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://docs.rs/futures-sink-preview/0.3.0-alpha.19" | ||
documentation = "https://docs.rs/futures-sink/0.3.0" | ||
description = """ | ||
The asynchronous `Sink` trait for the futures-rs 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,7 +1,7 @@ | ||
[package] | ||
name = "futures-task-preview" | ||
name = "futures-task" | ||
edition = "2018" | ||
version = "0.3.0-alpha.19" | ||
version = "0.3.0" | ||
authors = ["Alex Crichton <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/rust-lang-nursery/futures-rs" | ||
|
@@ -28,4 +28,4 @@ cfg-target-has-atomic = [] | |
[dependencies] | ||
|
||
[dev-dependencies] | ||
futures-preview = { path = "../futures", version = "=0.3.0-alpha.19" } | ||
futures = { path = "../futures", version = "0.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-test-preview" | ||
name = "futures-test" | ||
edition = "2018" | ||
version = "0.3.0-alpha.19" | ||
version = "0.3.0" | ||
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://docs.rs/futures-test-preview/0.3.0-alpha.19" | ||
documentation = "https://docs.rs/futures-test/0.3.0" | ||
description = """ | ||
Common utilities for testing components built off futures-rs. | ||
""" | ||
|
@@ -15,16 +15,16 @@ Common utilities for testing components built off futures-rs. | |
name = "futures_test" | ||
|
||
[dependencies] | ||
futures-core-preview = { version = "=0.3.0-alpha.19", path = "../futures-core", default-features = false } | ||
futures-task-preview = { version = "=0.3.0-alpha.19", path = "../futures-task", default-features = false } | ||
futures-io-preview = { version = "=0.3.0-alpha.19", path = "../futures-io", default-features = false } | ||
futures-util-preview = { version = "=0.3.0-alpha.19", path = "../futures-util", default-features = false } | ||
futures-executor-preview = { version = "=0.3.0-alpha.19", path = "../futures-executor", default-features = false } | ||
futures-core = { version = "0.3.0", path = "../futures-core", default-features = false } | ||
futures-task = { version = "0.3.0", path = "../futures-task", default-features = false } | ||
futures-io = { version = "0.3.0", path = "../futures-io", default-features = false } | ||
futures-util = { version = "0.3.0", path = "../futures-util", default-features = false } | ||
futures-executor = { version = "0.3.0", path = "../futures-executor", default-features = false } | ||
pin-utils = { version = "0.1.0-alpha.4", default-features = false } | ||
|
||
[dev-dependencies] | ||
futures-preview = { version = "=0.3.0-alpha.19", path = "../futures", default-features = false, features = ["std"] } | ||
futures = { version = "0.3.0", path = "../futures", default-features = false, features = ["std"] } | ||
|
||
[features] | ||
default = ["std"] | ||
std = ["futures-core-preview/std", "futures-task-preview/std", "futures-io-preview/std", "futures-util-preview/std", "futures-util-preview/io", "futures-executor-preview/std"] | ||
std = ["futures-core/std", "futures-task/std", "futures-io/std", "futures-util/std", "futures-util/io", "futures-executor/std"] |
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.