forked from ABMatrix/bool-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (45 loc) · 1.8 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
[package]
name = "bool-node"
version = "2.0.0"
authors = ["Anonymous"]
build = "build.rs"
edition = "2018"
[[bin]]
name = "bool-node"
path = "src/main.rs"
[dependencies]
error-chain = "0.12"
futures = "0.1"
ctrlc = { version = "3.0", features = ["termination"] }
log = "0.4"
tokio = "0.1"
exit-future = "0.1"
parking_lot = "0.7.1"
parity-codec = "3.3"
trie-root = "0.12.2"
sr-io = { git = "https://github.com/laddernetwork/substrate", branch = "ladder" }
substrate-cli = { git = "https://github.com/laddernetwork/substrate", branch = "ladder" }
primitives = { package = "substrate-primitives", git = "https://github.com/laddernetwork/substrate", branch = "ladder" }
substrate-executor = { git = "https://github.com/laddernetwork/substrate", branch = "ladder" }
substrate-service = { git = "https://github.com/laddernetwork/substrate", branch = "ladder" }
inherents = { package = "substrate-inherents", git = "https://github.com/laddernetwork/substrate", branch = "ladder" }
transaction-pool = { package = "substrate-transaction-pool", git = "https://github.com/laddernetwork/substrate", branch = "ladder" }
network = { package = "substrate-network", git = "https://github.com/laddernetwork/substrate", branch = "ladder" }
consensus = { package = "substrate-consensus-aura", git = "https://github.com/laddernetwork/substrate", branch = "ladder" }
substrate-client = { git = "https://github.com/laddernetwork/substrate", branch = "ladder" }
basic-authorship = { package = "substrate-basic-authorship", git = "https://github.com/laddernetwork/substrate", branch = "ladder" }
node-template-runtime = { path = "runtime" }
[build-dependencies]
vergen = "3"
[workspace]
members = [
"caster",
"rml-move",
"vm",
"mock",
"vm/crypto",
"vm/nextgen_crypto",
"compiler",
"compiler/ir_to_bytecode",
"compiler/stdlib",
]