-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
37 lines (33 loc) · 968 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
33
34
35
36
37
[workspace]
resolver = "2"
members = [
"common",
"crates/aptos",
"examples/aptos"
]
default-members = [
"crates/aptos",
]
# All workspace members should inherit these keys
# for package declarations.
[workspace.package]
authors = ["Move Funs <[email protected]>"]
edition = "2021"
homepage = "https://github.com/movefuns"
license = "Apache-2.0"
publish = true
repository = "https://github.com/movefuns/move-wasm"
rust-version = "1.64"
[workspace.dependencies]
# Internal crate dependencies.
# Please do not add any test features here: they should be declared by the individual crate.
aptos-wasm = { path = "crates/aptos" }
anyhow = "1.0.62"
base64 = "0.13.0"
clap = { version = "3.2.22", features = ["derive", "env", "suggestions"] }
serde = { version = "1.0.137", features = ["derive", "rc"] }
serde_bytes = "0.11.6"
serde_json = { version = "1.0.81", features = ["preserve_order"] }
serde_yaml = "0.8.24"
hex = "0.4.3"
once_cell = "1.10.0"