xref: /xiu/library/bytesio/Cargo.toml (revision f97afa13)
1[package]
2name = "bytesio"
3version = "0.3.0"
4authors = ["HarlanC <[email protected]>"]
5edition = "2018"
6description = "a network io library using tokio."
7license = "MIT"
8repository = "https://github.com/harlanc/xiu"
9
10# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
11
12[dependencies]
13byteorder = "1.4.2"
14bytes = "1.0.0"
15rand = "0.3"
16failure = "0.1.1"
17tokio-util = { version = "0.6.5", features = ["codec"] }
18futures = "0.3.5"
19tokio-stream = { version = "0.1" }
20log = "0.4"
21async-trait = "0.1.70"
22
23[dependencies.tokio]
24version = "1.4.0"
25default-features = false
26#features = ["rt-core", "rt-threaded", "macros", "time","sync"]
27features = ["full"]
28