forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 812 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-json-rpc-types"
version = "0.0.0"
authors = ["Mysten Labs <build@mystenlabs.com>"]
license = "Apache-2.0"
publish = false
edition = "2021"
[dependencies]
anyhow = "1.0.64"
fastcrypto.workspace = true
schemars = { version = "0.8.10", features = ["either"] }
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.88"
serde_with = { version = "2.1.0", features = ["hex"] }
colored = "2.0.0"
itertools = "0.10.5"
tracing = "0.1.36"
bcs = "0.1.4"
sui-protocol-config = { path = "../sui-protocol-config" }
enum_dispatch = "^0.3"
move-binary-format.workspace = true
move-core-types.workspace = true
move-bytecode-utils.workspace = true
sui-types = { path = "../sui-types" }
sui-json = { path = "../sui-json" }
workspace-hack = { version = "0.1", path = "../workspace-hack" }