[package] name = "nomos-consensus" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = "0.1" async-stream = "0.3" bytes = "1.3" chrono = "0.4" consensus-engine = { path = "../../consensus-engine", features = ["serde"] } futures = "0.3" nomos-network = { path = "../network" } nomos-mempool = { path = "../mempool" } nomos-core = { path = "../../nomos-core" } overwatch-rs = { git = "https://github.com/logos-co/Overwatch", branch = "main" } rand_chacha = "0.3" rand = "0.8" serde = { version = "1", features = ["derive"] } thiserror = "1.0" tokio = { version = "1", features = ["sync"] } tokio-stream = "0.1" tokio-util = "0.7" tracing = "0.1" waku-bindings = { version = "0.1.1", optional = true } bls-signatures = "0.14" serde_with = "3.0.0" blake2 = "0.10" [features] default = [] waku = ["nomos-network/waku", "waku-bindings"] mock = ["nomos-network/mock"] libp2p = ["nomos-network/libp2p"] [dev-dependencies] serde_json = "1.0.96"