-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 1023 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
[package]
name = "bpcon"
version = "0.1.0"
edition = "2021"
description = "BPCon: A Byzantine Fault-Tolerant Consensus Protocol Implementation in Rust."
license = "MIT"
repository = "https://github.com/distributed-lab/bpcon"
homepage = "https://github.com/distributed-lab/bpcon#readme"
documentation = "https://distributed-lab.github.io/bpcon/"
keywords = ["consensus", "byzantine", "protocol", "distributed-systems", "blockchain"]
categories = ["algorithms"]
authors = ["Distributed Lab"]
readme = "README.md"
[dependencies]
log = "^0.4.22"
serde = { version = "^1.0.207", features = ["derive"] }
bincode = "^1.3.3"
rkyv = { version = "^0.7.44", features = ["validation"] }
tokio = { version = "^1.39.2", features = ["full"] }
rand = "^0.9.0-alpha.2"
thiserror = "^1.0.63"
rand_chacha = "0.3.1"
[features]
default = ["tokio/full", "rkyv/validation"]
test-mocks = []
[dev-dependencies]
tokio = { version = "^1.39.2", features = ["test-util"] }
futures = "0.3.30"
[[test]]
name = "mod"
required-features = ["test-mocks"]