forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.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
42
[package]
name = "sui-config"
version = "0.0.0"
authors = ["Mysten Labs <[email protected]>"]
license = "Apache-2.0"
publish = false
edition = "2021"
[dependencies]
anemo.workspace = true
bcs = "0.1.4"
arc-swap = "1.5.1"
camino = "1.1.1"
anyhow = { version = "1.0.64", features = ["backtrace"] }
serde = { version = "1.0.144", features = ["derive", "rc"] }
serde_with = "2.0.1"
serde_yaml = "0.8.26"
rand = "0.8.5"
dirs = "4.0.0"
multiaddr = "0.16.0"
once_cell = "1.16"
tracing = "0.1.36"
fastcrypto.workspace = true
move-binary-format.workspace = true
move-package.workspace = true
move-core-types.workspace = true
move-vm-runtime.workspace = true
narwhal-config = { path = "../../narwhal/config" }
narwhal-crypto = { path = "../../narwhal/crypto" }
sui-framework = { path = "../sui-framework" }
sui-adapter = { path = "../sui-adapter" }
sui-types = { path = "../sui-types" }
workspace-hack.workspace = true
[target.'cfg(msim)'.dependencies]
sui-simulator = { path = "../sui-simulator" }
[dev-dependencies]
insta = { version = "1.19.1", features = ["redactions", "yaml"] }
tempfile = "3.3.0"