mempool/Cargo.toml (23 lines of code) (raw):
[package]
name = "mempool"
version = "0.1.0"
authors = ["Alberto Sonnino <alberto@sonnino.com>"]
edition = "2018"
publish = false
[dependencies]
tokio = { version = "1.5.0", features = ["sync", "rt", "macros"] }
tokio-util = { version = "0.6.2", features= ["codec"] }
ed25519-dalek = "1.0.1"
serde = { version = "1.0", features = ["derive"] }
bytes = "1.0.1"
log = "0.4.14"
bincode = "1.3.3"
futures = "0.3.14"
async-trait = "0.1.50"
crypto = { path = "../crypto" }
store = { path = "../store" }
network = { path = "../network" }
[dev-dependencies]
rand = "0.7.3"
[features]
benchmark = []