-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (28 loc) · 1.01 KB
/
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
34
[package]
name = "netbeam"
version = "0.1.0"
description = "a pure-rust asynchronous network synchronization crate (using tokio) that recreates familiar asynchronous paradigms but in a network context"
license = "MIT"
repository = "https://github.com/tbraun96/netbeam"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
[dependencies]
tokio = { version = "1.10.1", features = ["net", "macros", "rt", "time", "io-util", "parking_lot"] }
futures = "0.3.16"
bytes = "1.0.1"
async-trait = "0.1.51"
parking_lot = "0.11.1"
bincode2 = "2.0.1"
serde = { version = "1.0.127", features = ["derive"] }
anyhow = "1.0.42"
tokio-util = { version = "0.6.7", features = ["codec"] }
rand = "0.8.4"
async-stream = "0.3.2"
log = { version = "0.4.8", features = ["std", "max_level_info", "release_max_level_info"] }
[dev-dependencies]
parking_lot = { version = "0.11.1", features = ["deadlock_detection"] }
async-recursion = "0.3.2"
env_logger = "0.7.1"
[lib]
doctest = false