forked from jingzhongxu/ladder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (39 loc) · 846 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
40
41
42
43
44
[[bin]]
name = "ladder"
path = "./src/main.rs"
[package]
name = "ladder"
version = "0.6.0"
authors = ["Ladder Network <[email protected]>"]
build = "build.rs"
edition = "2018"
[dependencies]
error-chain = "0.12"
cli = { package = "node-cli", path = "./cli" }
futures = "0.1"
ctrlc = { version = "3.0", features = ["termination"] }
vendor = { path = "./vendor" }
node-runtime = { path = "./runtime" }
signer = { git = "https://github.com/laddernetwork/signer" }
[build-dependencies]
vergen = "3"
[workspace]
members = [
"cli",
"vendor",
"executor",
"runtime",
"ladderml/bank",
"ladderml/brand",
"ladderml/erc",
"ladderml/exchange",
"ladderml/order",
"ladderml/otc",
"ladderml/signcheck",
"ladderml/staking",
"ladderml/aura",
"ladderml/gateway"
]
exclude = [
"runtime/wasm",
]