-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (23 loc) · 847 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
[package]
name = "async-io-converse"
version = "3.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Can conduct a conversation over any AsyncRead or AsyncWrite type with serde compatible types"
readme = "README.md"
repository = "https://github.com/Xaeroxe/async-io-converse"
documentation = "https://docs.rs/async-io-converse/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures-core = "0.3"
futures-io = "0.3"
futures-util = "0.3"
async-io-typed = "3.0"
bincode = "1.3"
tokio = { version = "1.0", features = ["time", "sync", "rt"] }
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"]}
rand = "0.8"
futures-util = { version = "0.3", features = ["io"] }
tokio-util = "0.7"