nu-p2p/Cargo.toml
Mukan Erkin ba51b72ed2 feat(p2p): add HTTP publish API for nu-node integration
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-24 16:49:26 +03:00

31 lines
662 B
TOML

[package]
name = "nu-p2p"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "nu-p2p"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
libp2p = { version = "0.54", features = [
"tokio",
"tcp",
"noise",
"yamux",
"gossipsub",
"kad",
"identify",
"ping",
"macros",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
thiserror = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
futures = "0.3"
clap = { version = "4", features = ["derive"] }
axum = "0.7"