-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 2.08 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
[package]
name = "consensus_testbed"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1"
bincode = "1"
bytes = "1"
pea2pea = "0.45"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
tracing = "0.1.36"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# below are the dependencies for BFT
consensus = { git = "https://github.com/eqlabs/bullshark-bft/", package = "narwhal-consensus", features = ["benchmark"] }
config = { git = "https://github.com/eqlabs/bullshark-bft/", package = "narwhal-config" }
crypto = { git = "https://github.com/eqlabs/bullshark-bft/", package = "narwhal-crypto" }
executor = { git = "https://github.com/eqlabs/bullshark-bft/", package = "narwhal-executor" }
node = { git = "https://github.com/eqlabs/bullshark-bft/", package = "narwhal-node", features = ["benchmark"] }
worker = { git = "https://github.com/eqlabs/bullshark-bft/", package = "narwhal-worker", features = ["benchmark"] }
types = { git = "https://github.com/eqlabs/bullshark-bft/", package = "narwhal-types" }
storage = { git = "https://github.com/eqlabs/bullshark-bft/", package = "narwhal-storage" }
store = { git = "https://github.com/eqlabs/bullshark-bft/", package = "typed-store" }
mysten-metrics = { git = "https://github.com/eqlabs/bullshark-bft/" }
sui-types = { git = "https://github.com/eqlabs/bullshark-bft/" }
sui-keys = { git = "https://github.com/eqlabs/bullshark-bft/" }
fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "235211dc8195590f5353d38135f5ee51a267521e" }
# fastcrypto-zkp = { git = "https://github.com/MystenLabs/fastcrypto", rev = "f451422b7f15e75e055a1830cbe5d1547fa87b74", package = "fastcrypto-zkp" }
# fastcrypto-tbls = { git = "https://github.com/MystenLabs/fastcrypto", rev = "f451422b7f15e75e055a1830cbe5d1547fa87b74", package = "fastcrypto-tbls" }
rand = { version = "0.8.5", features = ["small_rng"] }
multiaddr = "0.17"
prometheus = "0.13"
arc-swap = "1.5.1"
eyre = "0.6.8"