forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 869 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
[package]
name = "aptos-sdk"
version = "0.0.3"
authors = ["Aptos Labs <[email protected]>"]
description = "The Official Aptos SDK"
repository = "https://github.com/aptos-labs/aptos-core"
homepage = "https://aptoslabs.com"
license = "Apache-2.0"
publish = false
edition = "2018"
[dependencies]
anyhow = "1.0.57"
aptos-crypto = { path = "../crates/aptos-crypto" }
aptos-rest-client = { path = "../crates/aptos-rest-client" }
aptos-types = { path = "../types" }
bcs = "0.1.3"
cached-packages = { path = "../aptos-move/framework/cached-packages" }
move-deps = { path = "../aptos-move/move-deps", features = ["address32"] }
rand_core = "0.5.1"
serde = { version = "1.0.137", features = ["derive"] }
# Used by the examples.
[dev-dependencies]
once_cell = "1.13.0"
rand = "0.7.3"
tokio = { version = "1.21.0", features = ["macros", "rt-multi-thread"] }
url = "2.2.2"