-
Notifications
You must be signed in to change notification settings - Fork 633
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
10 changed files
with
193 additions
and
27 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# futures-channel | ||
|
||
Channels for asynchronous communication using futures-rs. | ||
|
||
## Usage | ||
|
||
Add this to your `Cargo.toml`: | ||
|
||
```toml | ||
[dependencies] | ||
futures-channel = "0.3" | ||
``` | ||
|
||
The current `futures-channel` requires Rust 1.45 or later. | ||
|
||
## License | ||
|
||
Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or | ||
[MIT license](LICENSE-MIT) at your option. | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall | ||
be dual licensed as above, without any additional terms or conditions. |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# futures-core | ||
|
||
The core traits and types in for the `futures` library. | ||
|
||
## Usage | ||
|
||
Add this to your `Cargo.toml`: | ||
|
||
```toml | ||
[dependencies] | ||
futures-core = "0.3" | ||
``` | ||
|
||
The current `futures-core` requires Rust 1.36 or later. | ||
|
||
## License | ||
|
||
Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or | ||
[MIT license](LICENSE-MIT) at your option. | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall | ||
be dual licensed as above, without any additional terms or conditions. |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# futures-executor | ||
|
||
Executors for asynchronous tasks based on the futures-rs library. | ||
|
||
## Usage | ||
|
||
Add this to your `Cargo.toml`: | ||
|
||
```toml | ||
[dependencies] | ||
futures-executor = "0.3" | ||
``` | ||
|
||
The current `futures-executor` requires Rust 1.45 or later. | ||
|
||
## License | ||
|
||
Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or | ||
[MIT license](LICENSE-MIT) at your option. | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall | ||
be dual licensed as above, without any additional terms or conditions. |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# futures-io | ||
|
||
The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. | ||
|
||
## Usage | ||
|
||
Add this to your `Cargo.toml`: | ||
|
||
```toml | ||
[dependencies] | ||
futures-io = "0.3" | ||
``` | ||
|
||
The current `futures-io` requires Rust 1.36 or later. | ||
|
||
## License | ||
|
||
Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or | ||
[MIT license](LICENSE-MIT) at your option. | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall | ||
be dual licensed as above, without any additional terms or conditions. |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# futures-sink | ||
|
||
The asynchronous `Sink` trait for the futures-rs library. | ||
|
||
## Usage | ||
|
||
Add this to your `Cargo.toml`: | ||
|
||
```toml | ||
[dependencies] | ||
futures-sink = "0.3" | ||
``` | ||
|
||
The current `futures-sink` requires Rust 1.36 or later. | ||
|
||
## License | ||
|
||
Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or | ||
[MIT license](LICENSE-MIT) at your option. | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall | ||
be dual licensed as above, without any additional terms or conditions. |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# futures-task | ||
|
||
Tools for working with tasks. | ||
|
||
## Usage | ||
|
||
Add this to your `Cargo.toml`: | ||
|
||
```toml | ||
[dependencies] | ||
futures-task = "0.3" | ||
``` | ||
|
||
The current `futures-task` requires Rust 1.36 or later. | ||
|
||
## License | ||
|
||
Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or | ||
[MIT license](LICENSE-MIT) at your option. | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall | ||
be dual licensed as above, without any additional terms or conditions. |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# futures-test | ||
|
||
Common utilities for testing components built off futures-rs. | ||
|
||
## Usage | ||
|
||
Add this to your `Cargo.toml`: | ||
|
||
```toml | ||
[dependencies] | ||
futures-test = "0.3" | ||
``` | ||
|
||
The current `futures-test` requires Rust 1.45 or later. | ||
|
||
## License | ||
|
||
Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or | ||
[MIT license](LICENSE-MIT) at your option. | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall | ||
be dual licensed as above, without any additional terms or conditions. |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# futures-util | ||
|
||
Common utilities and extension traits for the futures-rs library. | ||
|
||
## Usage | ||
|
||
Add this to your `Cargo.toml`: | ||
|
||
```toml | ||
[dependencies] | ||
futures-util = "0.3" | ||
``` | ||
|
||
The current `futures-util` requires Rust 1.45 or later. | ||
|
||
## License | ||
|
||
Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or | ||
[MIT license](LICENSE-MIT) at your option. | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall | ||
be dual licensed as above, without any additional terms or conditions. |