forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (27 loc) · 891 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
[package]
name = "sui-cost"
version = "0.1.0"
authors = ["Mysten Labs <[email protected]>"]
license = "Apache-2.0"
publish = false
edition = "2021"
[dependencies]
workspace-hack.workspace = true
sui-types = {path = "../sui-types"}
anyhow = { version = "1.0.64", features = ["backtrace"] }
tokio = { version = "1.20.1", features = ["full"] }
serde = { version = "1.0.144", features = ["derive"] }
strum = { version = "0.24", features = ["derive"] }
strum_macros = "0.24"
bcs = "0.1.4"
serde_json = "1.0.83"
sui-cost-tables = { path = "../sui-cost-tables"}
sui-adapter = { path = "../sui-adapter"}
sui-core = { path = "../sui-core" }
[dev-dependencies]
insta = { version = "1.19.1", features = ["redactions", "json"] }
test-utils = { path = "../test-utils" }
sui-config = {path = "../sui-config"}
move-cli.workspace = true
move-disassembler.workspace = true
move-package.workspace = true