forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
77 lines (69 loc) · 2.16 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "narwhal-primary"
version = "0.1.0"
license = "Apache-2.0"
authors = ["Mysten Labs <build@mystenlabs.com>"]
publish = false
edition = "2021"
[dependencies]
anyhow.workspace = true
async-trait.workspace = true
backoff.workspace = true
bcs.workspace = true
bytes.workspace = true
config = { path = "../config", package = "narwhal-config" }
cfg-if.workspace = true
futures.workspace = true
governor.workspace = true
itertools.workspace = true
once_cell.workspace = true
parking_lot.workspace = true
prometheus.workspace = true
rand = { workspace = true, features = ["small_rng"] }
thiserror.workspace = true
tokio = { workspace = true, features = ["sync", "rt", "macros", "time", "test-util"] }
tokio-stream.workspace = true
tower.workspace = true
tracing.workspace = true
tap.workspace = true
fastcrypto.workspace = true
crypto = { path = "../crypto", package = "narwhal-crypto" }
network = { path = "../network", package = "narwhal-network" }
types = { path = "../types", package = "narwhal-types" }
storage = { path = "../storage", package = "narwhal-storage" }
store = { path = "../../crates/typed-store", package = "typed-store" }
sui-macros.workspace = true
mysten-network.workspace = true
sui-protocol-config.workspace = true
mysten-common.workspace = true
mysten-metrics.workspace = true
anemo.workspace = true
anemo-tower.workspace = true
[dev-dependencies]
dashmap.workspace = true
arc-swap.workspace = true
async-trait.workspace = true
bincode.workspace = true
criterion.workspace = true
futures.workspace = true
executor = { path = "../executor", package = "narwhal-executor" }
indexmap.workspace = true
itertools.workspace = true
mockall.workspace = true
node = { path = "../node", package = "narwhal-node" }
proptest.workspace = true
tempfile.workspace = true
test-utils = { path = "../test-utils", package = "narwhal-test-utils" }
tracing.workspace = true
worker = { path = "../worker", package = "narwhal-worker" }
storage = { path = "../storage", package = "narwhal-storage" }
reqwest.workspace = true
telemetry-subscribers.workspace = true
[features]
benchmark = []
[lib]
bench = false
[[bench]]
name = "process_certificates"
harness = false
required-features = ["benchmark"]