* forward msgs immediately without any processing * Mix: Offload transmission rate and message processing from libp2p behaviour/handler * Mix: Core skeleton used in `MixService` * rename Processor to MessageBlend * Mix: Implement Persistent Transmission (Tier 1) (#845) * Mix: Add Persistent Transmission (Tier 1) * add test * define Coin struct with Uniform distribution for fast repeated sampling * use ChaCha12Rng for Coin * improve comment * Mix: Implement Temporal Processor (Tier 2) (#846) * Mix: Add Persistent Transmission (Tier 1) * Mix: Implement TemporalProcessor * use pub(crate) * Mix: Use TemporalProcessor in MessageBlend (#847) * Mix: Add Persistent Transmission (Tier 1) * Mix: Implement TemporalProcessor * Mix: Use TemporalProcessor in MessageBlend * remove duplicate members in Cargo.toml
26 lines
813 B
TOML
26 lines
813 B
TOML
[package]
|
|
name = "nomos-mix-service"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
futures = "0.3"
|
|
libp2p = { version = "0.53", features = ["ed25519"] }
|
|
nomos-libp2p = { path = "../../nomos-libp2p", optional = true }
|
|
nomos-mix = { path = "../../nomos-mix/core" }
|
|
nomos-core = { path = "../../nomos-core/chain-defs" }
|
|
nomos-mix-network = { path = "../../nomos-mix/network" }
|
|
nomos-mix-message = { path = "../../nomos-mix/message" }
|
|
nomos-network = { path = "../network" }
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
|
|
rand = "0.8.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1", features = ["macros", "sync"] }
|
|
tokio-stream = "0.1"
|
|
tracing = "0.1"
|
|
|
|
[features]
|
|
default = []
|
|
libp2p = ["nomos-libp2p", "nomos-network/libp2p"]
|