We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 812c3bd + 83f704c commit 3ee5760Copy full SHA for 3ee5760
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "async-pipe"
3
-version = "0.1.1"
+version = "0.1.2"
4
description = "Creates an asynchronous piped reader and writer pair using tokio.rs"
5
homepage = "https://github.com/rousan/async-pipe-rs"
6
repository = "https://github.com/rousan/async-pipe-rs"
README.md
@@ -8,8 +8,16 @@ Creates an asynchronous piped reader and writer pair using `tokio.rs`.
8
9
[Docs](https://docs.rs/async-pipe)
10
11
-## Example
+## Usage
12
13
+First add this to your Cargo.toml:
14
+
15
+```toml
16
+[dependencies]
17
+async-pipe = "0.1"
18
+```
19
20
+An example:
21
```rust
22
use async_pipe;
23
use tokio::prelude::*;
0 commit comments