-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
61 lines (59 loc) · 1.49 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "dove"
version = "1.0.0"
authors = [
"Alex Koz. <[email protected]>",
"Dm. Yakushev <[email protected]>",
"Maxim Kurnikov <[email protected]>"
]
edition = "2018"
[dependencies]
libra = { package = "dfibra", git = "https://github.com/dfinance/libra.git", branch = "release-1.0" }
structopt = "0.3"
http = "0.2"
serde = "=1.0.118"
serde_derive = "=1.0.118"
toml = "0.5"
anyhow = "1.0"
lazy_static = "1.4.0"
bech32 = "0.7.2"
regex = "1.3.7"
twox-hash = "1.5.0"
once_cell = "1.4.0"
hex = "0.4.2"
walkdir = "2.3.1"
tiny-keccak = { version = "2.0.2", default-features = false, features = ["sha3"] }
rand = "0.7.3"
log = "0.4.8"
termcolor = "1.1.0"
reqwest = { version = "0.10.4", features = ["blocking", "json"] }
itertools = "0.9.0"
lang = { path = "../lang" }
move-executor = { path = "../executor" }
move-resource-viewer = { path = "../resource-viewer", default-features = false }
git-hash = { path = "../common/git-hash" }
maplit = "1.0.2"
serde_json = "1.0.52"
git2 = "0.13"
[features]
default = [
"dfinance_address"
]
libra_address = [
"libra/libra_address",
"lang/libra_address",
"move-executor/libra_address",
"move-resource-viewer/libra_address",
]
dfinance_address = [
"libra/dfinance_address",
"lang/dfinance_address",
"move-executor/dfinance_address",
"move-resource-viewer/dfinance_address",
]
ps_address = [
"libra/ps_address",
"lang/ps_address",
"move-executor/ps_address",
"move-resource-viewer/ps_address"
]