* Remove send tx method from mempool network adapter * Add error reporting to add_tx operation in mempool Delegate broadcasting to external caller
30 lines
1012 B
TOML
30 lines
1012 B
TOML
[package]
|
|
name = "mockpool-node"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
blake2 = "0.10"
|
|
bincode = "2.0.0-rc.2"
|
|
clap = { version = "4", features = ["derive"] }
|
|
chrono = "0.4"
|
|
futures = "0.3"
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", branch = "main" }
|
|
overwatch-derive = { git = "https://github.com/logos-co/Overwatch", branch = "main" }
|
|
tracing = "0.1"
|
|
multiaddr = "0.16"
|
|
nomos-core = { path = "../../nomos-core" }
|
|
nomos-network = { path = "../../nomos-services/network", features = ["waku"] }
|
|
nomos-log = { path = "../../nomos-services/log" }
|
|
nomos-mempool = { path = "../../nomos-services/mempool", features = ["waku", "mock"] }
|
|
nomos-http = { path = "../../nomos-services/http", features = ["http"] }
|
|
tracing-subscriber = "0.3"
|
|
tokio = {version = "1.24", features = ["sync"] }
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.9"
|
|
color-eyre = "0.6.0"
|
|
serde = "1"
|
|
waku-bindings = "0.1.0-beta3"
|