forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (44 loc) · 1.53 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
[package]
name = "sui-swarm-config"
version = "0.0.0"
authors = ["Mysten Labs <build@mystenlabs.com>"]
license = "Apache-2.0"
publish = false
edition = "2021"
[dependencies]
anemo.workspace = true
anyhow = { version = "1.0.64", features = ["backtrace"] }
bcs = "0.1.4"
camino = "1.1.1"
csv = "1.2.1"
dirs = "4.0.0"
fastcrypto.workspace = true
move-binary-format.workspace = true
move-core-types.workspace = true
move-vm-runtime.workspace = true
once_cell = "1.16"
rand = "0.8.5"
serde = { version = "1.0.144", features = ["derive", "rc"] }
serde_with = "2.1.0"
serde_yaml = "0.8.26"
tempfile = "3.3.0"
tracing = "0.1.36"
prometheus = "0.13.3"
narwhal-config = { path = "../../narwhal/config" }
shared-crypto = { path = "../shared-crypto" }
sui-config = { path = "../sui-config" }
sui-framework = { path = "../sui-framework" }
sui-keys = { path = "../sui-keys" }
sui-protocol-config = { path = "../sui-protocol-config" }
sui-storage = { path = "../sui-storage" }
sui-types = { path = "../sui-types" }
sui-genesis-builder = { path = "../sui-genesis-builder" }
workspace-hack = { version = "0.1", path = "../workspace-hack" }
[target.'cfg(msim)'.dependencies]
sui-simulator = { path = "../sui-simulator" }
[dev-dependencies]
insta = { version = "1.21.1", features = ["redactions", "yaml"] }
tempfile = "3.3.0"
# TODO use sui-execution versioned crate
sui-adapter = { path = "../../sui-execution/latest/sui-adapter", package = "sui-adapter-latest" }
sui-move-natives = { path = "../../sui-execution/latest/sui-move-natives", package = "sui-move-natives-latest" }