forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (42 loc) · 1.39 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 = "sui-node"
version.workspace = true
authors = ["Mysten Labs <build@mystenlabs.com>"]
license = "Apache-2.0"
publish = false
edition = "2021"
[dependencies]
anemo.workspace = true
anemo-tower.workspace = true
arc-swap = "1.5.1"
axum = "0.5.16"
anyhow = { version = "1.0.64", features = ["backtrace"] }
clap = { version = "3.2.17", features = ["derive"] }
multiaddr = "0.17.0"
prometheus = "0.13.3"
tokio = { workspace = true, features = ["full"] }
tracing = "0.1.36"
parking_lot = "0.12.1"
futures = "0.3.23"
chrono = "0.4.23"
tower = "0.4.13"
sui-config = { path = "../sui-config" }
sui-core = { path = "../sui-core" }
sui-storage = { path = "../sui-storage" }
sui-network = { path = "../sui-network" }
sui-json-rpc = { path = "../sui-json-rpc" }
sui-telemetry = { path = "../sui-telemetry" }
sui-types = { path = "../sui-types" }
mysten-metrics = { path = "../mysten-metrics" }
narwhal-network = { path = "../../narwhal/network" }
narwhal-types = { path = "../../narwhal/types" }
narwhal-config = { path = "../../narwhal/config" }
prometheus-closure-metric = { path = "../prometheus-closure-metric" }
typed-store.workspace = true
mysten-network.workspace = true
telemetry-subscribers.workspace = true
workspace-hack.workspace = true
[dev-dependencies]
reqwest = { version = "0.11.13", features = ["blocking", "json"] }
[target.'cfg(msim)'.dependencies]
sui-simulator = { path = "../sui-simulator" }