* Create nodes folder Kickstart mockpool node * Create nodes folder Added bridges file * Added metrics to mempool * Remove metrics from node * Added mempool metrics bridge * Pipe in mempool_metric bridge * Add wakuinfo to waku network service * Add waku network info bridge * Added waku info bridge to node * Use mock Tx wrapper over a string * Create add tx http bridge * Add tx bridge to http config * Use hash for Tx * Remove tracing subscriber from binary * Fix bridges routes * Added mimimal configuration example * Remove subscribing to default waku pubsub topic * Use addtx payload for tx * Remove pub serde mod from core transaction * Clippy happy * Id from &Tx instead of owned value * Removed mempool metrics feature
25 lines
931 B
TOML
25 lines
931 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"] }
|
|
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"
|
|
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" |