-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
47 lines (44 loc) · 1.1 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
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "overlord"
version = "0.4.2"
authors = ["Eason Gao <[email protected]>"]
edition = "2021"
license = "MIT"
include = ["src/*", "README.md", "LICENSE", "rust-toolchain"]
readme = "README.md"
keywords = ["consensus", "bft", "distributed-systems"]
categories = ["algorithms"]
repository = "https://github.com/cryptape/overlord"
description = """
Overlord consensus procotol.
"""
[dependencies]
async-trait = "0.1"
bit-vec = "0.6"
bytes = { version = "1.1", features = ["serde"] }
creep = "0.2"
derive_more = "0.99"
futures = { version = "0.3", features = [ "async-await" ] }
hummer = "0.2"
log = "0.4"
muta-apm = "0.1"
parking_lot = "0.12"
prime_tools = "0.3"
rand_core = "0.6"
rand_pcg = "0.3"
rlp = "0.5"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.19", features = ["macros", "rt-multi-thread", "time"] }
[dev-dependencies]
bincode = "1.3"
blake2b_simd = "1.0"
crossbeam-channel = "0.5"
env_logger = "0.10"
hasher = { version = "0.1", features = ['hash-keccak'] }
lazy_static = "1.4"
lru-cache = "0.1"
rand = "0.7"
serde_json = "1.0"
[features]
default = []
random_leader = []