-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (29 loc) · 903 Bytes
/
Cargo.toml
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
31
32
33
[package]
name = "buf-list"
version = "1.0.3"
edition = "2018"
description = "A list of buffers that implements the bytes::Buf trait"
categories = ["network-programming", "data-structures"]
keywords = ["buffers", "zero-copy", "io"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/sunshowers-code/buf-list"
rust-version = "1.39"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg=doc_cfg"]
[dependencies]
bytes = "1.3.0"
futures-io-03 = { package = "futures-io", version = "0.3.25", optional = true }
once_cell = "1.4.0"
tokio = { version = "1.0.0", features = ["io-std"], optional = true }
[dev-dependencies]
anyhow = "1.0.70"
dummy-waker = "1.1.0"
futures = "0.3.25"
proptest = "1.1.0"
test-strategy = "0.3.0"
tokio = { version = "1.0.0", features = ["io-std", "io-util", "macros", "rt"] }
[features]
futures03 = ["futures-io-03"]
tokio1 = ["tokio"]