66fc046091
* Remove out of place wait_online test param * Cfgsync crate for testnet startup * Config dispersal to node hosts * Remove etcd dep and obsolete bash scripts * Kzgrs test params in testnet * Nodes listen on all interfaces
17 lines
494 B
TOML
17 lines
494 B
TOML
[package]
|
|
name = "cfgsync"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.6" }
|
|
clap = { version = "4", features = ["derive"] }
|
|
nomos-libp2p = { path = "../../nomos-libp2p" }
|
|
nomos-node = { path = "../../nodes/nomos-node" }
|
|
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
|
|
tests = { path = "../../tests" }
|
|
tokio = { version = "1.24", features = ["rt-multi-thread"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.9"
|