forked from Cardinal-Cryptography/AlephBFT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 1.38 KB
/
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 = "aleph-bft"
version = "0.5.4"
edition = "2018"
authors = ["Cardinal Cryptography"]
categories = ["algorithms", "data-structures", "cryptography", "database"]
documentation = "https://docs.rs/?"
homepage = "https://alephzero.org"
repository = "https://github.com/cardinal-cryptography/?"
keywords = ["asynchronous", "consensus", "bft", "blockchain", "distributed-systems"]
license = "Apache-2.0"
readme = "README.md"
description = """AlephBFT is an asynchronous and Byzantine fault tolerant consensus protocol aimed at ordering arbitrary messages (transactions). It has been designed to continuously operate even in the harshest conditions: with no bounds on message-delivery delays and in the presence of malicious actors. This makes it an excellent fit for blockchain-related applications."""
[dependencies]
bit-vec = "0.6"
futures = "0.3"
futures-timer = "3.0"
derive_more = "0.99"
derivative = "2.2.0"
log = "0.4"
rand = "0.8"
async-trait = "0.1"
codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive"] }
parking_lot = "0.11"
[dev-dependencies]
sha3 = "0.9.1"
unsigned-varint = { version = "0.7.0", features = ["futures", "asynchronous_codec"] }
tokio = { version = "1.6.1", features = ["macros", "rt", "rt-multi-thread"] }
libp2p = { version ="0.39", features = ["mdns", "tcp-tokio"]}
parking_lot = "0.11"
env_logger = "0.9"
chrono = "0.4"