forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (48 loc) · 1.59 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
49
50
51
52
53
54
55
[package]
name = "sui-sdk"
version.workspace = true
authors = ["Mysten Labs <[email protected]>"]
license = "Apache-2.0"
publish = false
edition = "2021"
[dependencies]
anyhow = "1.0.64"
async-trait = "0.1.61"
clap = { version = "3.2.17", features = ["derive"] }
colored = "2.0.0"
jsonrpsee = { git="https://github.com/wlmyng/jsonrpsee.git", rev= "b1b300784795f6a64d0fcdf8f03081a9bc38bde8", features = ["http-client"] }
serde = { version = "1.0.144", features = ["derive"] }
serde_with = { version = "2.1.0", features = ["hex"] }
serde_json = "1.0.88"
futures-core = "0.3.21"
futures = "0.3.23"
tokio = { workspace = true }
bcs = "0.1.4"
thiserror = "1.0.37"
sui-swarm-config = { path = "../sui-swarm-config" }
sui-json-rpc = { path = "../sui-json-rpc" }
sui-test-transaction-builder = { path = "../sui-test-transaction-builder" }
sui-transaction-builder = { path = "../sui-transaction-builder" }
sui-json-rpc-types = { path = "../sui-json-rpc-types" }
sui-types = { path = "../sui-types" }
sui-json = { path = "../sui-json" }
sui-keys = { path = "../sui-keys" }
sui-config = { path = "../sui-config" }
shared-crypto = { path = "../shared-crypto" }
tracing = "0.1.36"
move-core-types.workspace = true
fastcrypto.workspace = true
workspace-hack = { version = "0.1", path = "../workspace-hack" }
[dev-dependencies]
clap = { version = "3.2.17", features = ["derive"] }
dirs = "4.0.0"
async-recursion = "1.0.0"
tempfile = "3.3.0"
test-utils = { path = "../test-utils" }
futures-core = "0.3.21"
futures = "0.3.23"
sui = { path = "../sui" }
[[example]]
name = "tic-tac-toe"
path = "examples/tic_tac_toe.rs"
test = false