forked from circlefin/malachite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 1.19 KB
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
39
40
41
42
[package]
name = "informalsystems-malachitebft-sync"
description = "Synchronization protocol 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]
borsh = ["dep:borsh", "malachitebft-peer/borsh"]
[dependencies]
malachitebft-core-types = { workspace = true }
malachitebft-metrics = { workspace = true }
malachitebft-peer = { workspace = true }
async-trait = { workspace = true }
borsh = { workspace = true, optional = true }
bytes = { workspace = true, features = ["serde"] }
dashmap = { workspace = true }
derive-where = { workspace = true }
displaydoc = { workspace = true }
genawaiter = { workspace = true }
libp2p = { workspace = true, features = ["request-response", "cbor"] }
rand = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
[dev-dependencies]
malachitebft-peer = { workspace = true, features = ["rand"] }
arbtest = { workspace = true }
tracing-subscriber = { workspace = true }
[lints]
workspace = true