forked from aptos-labs/aptos-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (33 loc) · 1015 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
38
39
[package]
name = "transaction-builder-generator"
version = "0.1.0"
authors = ["Aptos Labs <[email protected]>"]
description = "Aptos transaction-builder"
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"
bcs = "0.1.3"
heck = "0.3.2"
regex = "1.5.5"
serde-generate = { git = "https://github.com/aptos-labs/serde-reflection" }
serde-reflection = { git = "https://github.com/aptos-labs/serde-reflection" }
serde_yaml = "0.8.24"
structopt = "0.3.21"
textwrap = "0.15.0"
aptos-types = { path = "../../types" }
aptos-workspace-hack = { path = "../../crates/aptos-workspace-hack" }
move-deps = { path = "../move-deps", features = ["address32"] }
[dev-dependencies]
tempfile = "3.3.0"
which = "4.2.5"
cached-framework-packages = { path = "../framework/cached-packages" }
[features]
default = []
[[bin]]
name = "generate-transaction-builders"
path = "src/generate.rs"
test = false