pea2pea 0.29.0

A small library allowing simple and quick creation of custom P2P nodes and networks.
Documentation
[package]
name = "pea2pea"
version = "0.29.0"
authors = ["ljedrz <ljedrz@gmail.com>"]
edition = "2018"
description = "A small library allowing simple and quick creation of custom P2P nodes and networks."
license = "CC0-1.0"
repository = "https://github.com/ljedrz/pea2pea"
documentation = "https://docs.rs/pea2pea"
readme = "README.md"
categories = ["network-programming", "asynchronous"]
keywords = ["p2p", "peer-to-peer", "networking"]

[lib]
crate-type = ["lib"]

[features]
test = []

[dependencies]
async-trait = "0.1"
once_cell = { version = "1", features = ["parking_lot"] }
parking_lot = "0.11"
tokio = { version = "1.14", features = ["io-util", "net", "parking_lot", "rt", "sync", "time"] }
tracing = { version = "0.1", default-features = false }

[dev-dependencies]
bincode = "1"
bytes = "1"
circular-queue = "0.2"
peak_alloc = "0.1"
rand = { version = "0.8", default-features = false, features = ["getrandom", "small_rng"] }
serde = { version = "1", default-features = false, features = ["derive"] }
snow = "0.8"
tokio = { version = "1.14", features = ["macros", "rt-multi-thread"] }
tracing-subscriber = { version = "0.3", default-features = false, features = ["ansi", "env-filter", "fmt", "parking_lot", "smallvec"] }
pea2pea = { path = ".", features = ["test"] } # a workaround to use the `test` feature in tests by default