-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 912 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
[package]
name = "async-io-typed"
version = "3.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Adapts any AsyncRead or AsyncWrite type to send serde compatible types"
readme = "README.md"
repository = "https://github.com/Xaeroxe/async-io-typed"
documentation = "https://docs.rs/async-io-typed/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bincode = "1.3.3"
futures-core = "0.3"
futures-io = "0.3"
futures-executor = "0.3"
futures-util = { version = "0.3", features = ["sink"] }
serde = "1.0.148"
siphasher = "0.3"
thiserror = "1.0.37"
[dev-dependencies]
rand = "0.8"
tokio = { version = "1.22.0", features = ["rt-multi-thread", "sync", "macros", "time", "net"]}
tokio-util = { version = "0.7", features = ["compat"] }
futures-util = { version = "0.3", features = ["io"] }
serde = { version = "1.0", features = ["derive"] }