e7d591b7bc
* base * Remove mixnet client from libp2p network backend (#572) * Mixnet v1: Remove all mixnet legacies: mixnet crate, mixnode binary, tests, and docker (#573) * Mixnet v1: Skeleton (#570) * Use QUIC for libp2p (#580) * Add Poisson interval function for Mixnet (#575) * Mixnet network backend skeleton (#586) * Libp2p stream read/write (#587) * Emitting packets from mixclient using libp2p stream (#588) * Handle outputs from mixnode using libp2p stream/gossipsub (#589) * Refactor poisson (#590) * Mix client Poisson emission (#591) * Mix node packet handling (#592) * Mix Packet / Fragment logic (#593) * Move FisherYates to `nomos-utils` (#594) * Mixnet topology (#595) * Mix client/node unit tests (#596) * change multiaddr from tcp to udp with quic-v1 (#607) --------- Co-authored-by: Al Liu <scygliu1@gmail.com>
30 lines
580 B
TOML
30 lines
580 B
TOML
[package]
|
|
name = "nomos-libp2p"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
multiaddr = "0.18"
|
|
tokio = { version = "1", features = ["sync", "macros"] }
|
|
futures = "0.3"
|
|
libp2p = { version = "0.53.2", features = [
|
|
"dns",
|
|
"macros",
|
|
"gossipsub",
|
|
"tokio",
|
|
"quic",
|
|
"secp256k1",
|
|
] }
|
|
libp2p-stream = "0.1.0-alpha"
|
|
blake2 = { version = "0.10" }
|
|
serde = { version = "1.0.166", features = ["derive"] }
|
|
hex = "0.4.3"
|
|
log = "0.4.19"
|
|
thiserror = "1.0.40"
|
|
tracing = "0.1"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8.5"
|
|
serde_json = "1.0.99"
|
|
tokio = { version = "1", features = ["time"] }
|