forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (24 loc) · 823 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 = "diem-sdk"
version = "0.0.1"
authors = ["Diem Association <[email protected]>"]
description = "Diem types"
repository = "https://github.com/diem/diem"
homepage = "https://diem.com"
license = "Apache-2.0"
publish = ["crates-io"]
edition = "2018"
[features]
default = ["client"]
client = ["diem-client"]
[dependencies]
bcs = "0.1"
rand_core = "0.6.2"
diem-crypto = { path = "../crypto/crypto", version = "0.0.1" }
diem-types = { path = "../types", version = "0.0.1"}
move-core-types = { path = "../language/move-core/types", version = "0.0.1" }
diem-transaction-builder = { path = "./transaction-builder", version = "0.0.1" }
# Optional Dependencies
diem-client = { path = "./client", version = "0.0.1", optional = true }
[dev-dependencies]
diem-workspace-hack = { path = "../common/workspace-hack" }