2022-12-13 10:15:54 +00:00
|
|
|
[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]
|
2023-01-10 11:58:51 +00:00
|
|
|
bytes = "1.3"
|
2022-12-13 10:15:54 +00:00
|
|
|
chrono = "0.4"
|
|
|
|
rand_chacha = "0.3"
|
|
|
|
rand = "0.8"
|
|
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", branch = "main" }
|
|
|
|
async-trait = "0.1"
|
|
|
|
nomos-network = { path = "../network" }
|
2023-01-10 10:33:08 +00:00
|
|
|
nomos-mempool = { path = "../mempool" }
|
2022-12-13 14:35:11 +00:00
|
|
|
nomos-core = { path = "../../nomos-core" }
|
2022-12-13 10:15:54 +00:00
|
|
|
tokio = { version = "1", features = ["sync"] }
|
|
|
|
tokio-stream = "0.1"
|
|
|
|
futures = "0.3"
|
2023-01-09 11:20:14 +00:00
|
|
|
waku-bindings = { version = "0.1.0-beta2", optional = true}
|
2022-12-13 10:15:54 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2023-01-10 10:33:08 +00:00
|
|
|
waku = ["nomos-network/waku", "waku-bindings"]
|