2022-12-14 15:30:45 +01:00
|
|
|
[package]
|
2023-01-10 11:33:08 +01:00
|
|
|
name = "nomos-mempool"
|
2022-12-14 15:30:45 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
async-trait = "0.1"
|
2023-01-09 17:22:46 +01:00
|
|
|
bincode = { version = "2.0.0-rc.2", features = ["serde"] }
|
|
|
|
futures = "0.3"
|
2023-01-18 03:11:03 -08:00
|
|
|
linked-hash-map = { verison = "0.5.6", optional = true }
|
2022-12-14 15:30:45 +01:00
|
|
|
nomos-network = { path = "../network", features = ["waku"] }
|
|
|
|
nomos-core = { path = "../../nomos-core" }
|
2023-01-09 17:22:46 +01:00
|
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", branch = "main" }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-12-14 15:30:45 +01:00
|
|
|
tracing = "0.1"
|
|
|
|
tokio = { version = "1", features = ["sync"] }
|
2023-01-09 17:22:46 +01:00
|
|
|
tokio-stream = "0.1"
|
2023-01-18 03:11:03 -08:00
|
|
|
waku-bindings = { version = "0.1.0-beta2", optional = true}
|
2023-01-09 17:22:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2023-01-18 03:11:03 -08:00
|
|
|
waku = ["nomos-network/waku", "waku-bindings"]
|
|
|
|
mock = ["linked-hash-map"]
|