forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 810 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
30
31
32
[package]
name = "sui-package-resolver"
version = "0.1.0"
edition = "2021"
authors = ["Mysten Labs <[email protected]>"]
license = "Apache-2.0"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait.workspace = true
bcs.workspace = true
move-binary-format.workspace = true
move-core-types.workspace = true
sui-types.workspace = true
thiserror.workspace = true
sui-rest-api.workspace = true
tokio.workspace = true
eyre.workspace = true
serde.workspace = true
lru.workspace = true
workspace-hack.workspace = true
[dev-dependencies]
expect-test.workspace = true
hyper.workspace = true
insta.workspace = true
move-compiler.workspace = true
serde_json.workspace = true
sui-move-build.workspace = true
tower.workspace = true