-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
38 lines (32 loc) · 1014 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "informalsystems-malachitebft-core-consensus"
description = "Core consensus algorithm for the Malachite BFT consensus engine"
version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
publish.workspace = true
rust-version.workspace = true
readme = "../../../README.md"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["std", "metrics"]
std = []
metrics = ["std", "dep:malachitebft-metrics"]
debug = ["std", "malachitebft-core-driver/debug"]
[dependencies]
malachitebft-core-types.workspace = true
malachitebft-core-driver.workspace = true
malachitebft-metrics = { workspace = true, optional = true }
malachitebft-peer.workspace = true
async-recursion = { workspace = true }
genawaiter = { workspace = true }
derive-where = { workspace = true }
multiaddr = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
[lints]
workspace = true
[dev-dependencies]
malachitebft-test = { workspace = true }