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
29 lines (25 loc) · 805 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 805 Bytes
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
[package]
name = "informalsystems-malachitebft-peer"
description = "Peer definition 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"]
rand = ["dep:rand"]
serde = ["dep:serde"]
[dependencies]
multihash = { workspace = true, default-features = false, features = ["alloc"] }
borsh = { workspace = true, optional = true }
bs58 = { workspace = true, default-features = false, features = ["alloc"] }
thiserror = { workspace = true }
rand = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
[lints]
workspace = true