forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 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
36
[package]
name = "narwhal-network"
version = "0.1.0"
license = "Apache-2.0"
authors = ["Mysten Labs <[email protected]>"]
edition = "2021"
publish = false
[dependencies]
dashmap.workspace = true
async-trait.workspace = true
backoff.workspace = true
bytes.workspace = true
futures.workspace = true
parking_lot.workspace = true
quinn-proto.workspace = true
prometheus.workspace = true
rand = { workspace = true, features = ["small_rng"] }
sui-macros.workspace = true
tokio = { workspace = true, features = ["rt", "net", "sync", "macros", "time"] }
tracing.workspace = true
types = { path = "../types", package = "narwhal-types" }
crypto = { path = "../crypto", package = "narwhal-crypto" }
mysten-common.workspace = true
mysten-metrics.workspace = true
anemo.workspace = true
anemo-tower.workspace = true
anyhow.workspace = true
axum.workspace = true
axum-server.workspace = true
tower.workspace = true
[dev-dependencies]
bincode.workspace = true
test-utils = { path = "../test-utils", package = "narwhal-test-utils" }