2022-12-13 11:15:54 +01: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-03-14 03:32:36 -07:00
|
|
|
async-trait = "0.1"
|
2023-01-10 12:58:51 +01:00
|
|
|
bytes = "1.3"
|
2022-12-13 11:15:54 +01:00
|
|
|
chrono = "0.4"
|
2023-03-14 03:32:36 -07:00
|
|
|
futures = "0.3"
|
2022-12-13 11:15:54 +01:00
|
|
|
nomos-network = { path = "../network" }
|
2023-01-10 11:33:08 +01:00
|
|
|
nomos-mempool = { path = "../mempool" }
|
2022-12-13 15:35:11 +01:00
|
|
|
nomos-core = { path = "../../nomos-core" }
|
2023-03-14 03:32:36 -07:00
|
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", branch = "main" }
|
|
|
|
rand_chacha = "0.3"
|
|
|
|
rand = "0.8"
|
2023-03-15 00:55:08 +08:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2022-12-13 11:15:54 +01:00
|
|
|
tokio = { version = "1", features = ["sync"] }
|
|
|
|
tokio-stream = "0.1"
|
2023-03-06 15:18:27 +02:00
|
|
|
waku-bindings = { version = "0.1.0-rc.2", optional = true}
|
2023-01-27 10:37:04 +01:00
|
|
|
tracing = "0.1"
|
2022-12-13 11:15:54 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2023-01-10 11:33:08 +01:00
|
|
|
waku = ["nomos-network/waku", "waku-bindings"]
|
2023-02-01 21:58:23 +08:00
|
|
|
mock = ["nomos-network/mock"]
|