forked from zed-industries/async-pipe-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 790 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "async-pipe"
version = "0.1.3"
description = "Creates an asynchronous piped reader and writer pair using tokio.rs"
homepage = "https://github.com/routerify/async-pipe-rs"
repository = "https://github.com/routerify/async-pipe-rs"
keywords = ["pipe", "future", "async", "reader", "writer"]
categories = ["asynchronous"]
authors = ["Rousan Ali <rousanali786@gmail.com>"]
readme = "README.md"
license = "MIT"
edition = "2018"
[features]
default = ["futures"]
[dependencies]
tokio = { version = "1", features= [], optional = true }
log = "0.4"
futures = { version = "0.3", optional = true }
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
[package.metadata.docs.rs]
features = ["futures", "tokio"]
[[example]]
name = "tokio"
required-features = ["tokio"]