ghost-echo/Cargo.toml
Uncle Stretch ef69d13a44
network configuration is exposed by cli flags
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
2025-12-28 15:04:38 +03:00

31 lines
966 B
TOML

[package]
name = "ghost-echo"
version = "0.0.3"
edition = "2021"
[[bin]]
name = "ghost-echo"
path = "src/bin/main.rs"
[dependencies]
anyhow = "1.0.97"
async-trait = "0.1.88"
chrono = "0.4.42"
clap = { version = "4.5.32", features = ["derive", "env"] }
crossterm = "0.28.1"
futures = "0.3.31"
futures-timer = "3.0.3"
hex = "0.4.3"
libp2p = { version = "0.56", features = ["identify", "ping", "tokio", "gossipsub", "macros", "relay", "kad", "rsa", "ed25519", "quic", "request-response", "dns", "memory-connection-limits", "tcp", "noise", "yamux", "autonat", "tls", "dcutr"] }
quick-protobuf = "0.8.1"
rand = "0.9.0"
rand_core = { version = "0.6.4", features = ["getrandom"] }
ratatui = "0.29.0"
serde_json = "1.0.140"
signal-hook = "0.3.17"
tokio = { version = "1.47.1", features = ["full"] }
tokio-util = { version = "0.7.14", features = ["full"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
unsigned-varint = "0.8.0"