forked from AcalaNetwork/Acala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (57 loc) · 2.45 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
62
63
[package]
name = "acala"
version = "0.0.1"
authors = ["Acala Developers"]
build = "build.rs"
edition = "2018"
[profile.release]
panic = "unwind"
[[bin]]
name = "acala"
path = "src/main.rs"
[dependencies]
hex-literal = "0.2.1"
serde_json = "1.0.41"
futures = "0.3.1"
futures01 = { package = "futures", version = "0.1.29" }
ctrlc = { version = "3.1.3", features = ["termination"] }
log = "0.4.8"
tokio = "0.1.22"
parking_lot = "0.9.0"
codec = { package = "parity-scale-codec", version = "1.0.0" }
trie-root = "0.15.2"
sp-io = { git = "https://github.com/paritytech/substrate.git" }
sc-cli = { git = "https://github.com/paritytech/substrate.git" }
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate.git" }
sc-executor = { git = "https://github.com/paritytech/substrate.git" }
sc-service = { git = "https://github.com/paritytech/substrate.git" }
inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate.git" }
txpool = { package = "sc-transaction-pool", git = "https://github.com/paritytech/substrate.git" }
txpool-api = { package = "sp-transaction-pool", git = "https://github.com/paritytech/substrate.git" }
network = { package = "sc-network", git = "https://github.com/paritytech/substrate.git" }
aura = { package = "sc-consensus-aura", git = "https://github.com/paritytech/substrate.git" }
aura-primitives = { package = "sp-consensus-aura", git = "https://github.com/paritytech/substrate.git" }
consensus-common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate.git" }
grandpa = { package = "sc-finality-grandpa", git = "https://github.com/paritytech/substrate.git" }
grandpa-primitives = { package = "sp-finality-grandpa", git = "https://github.com/paritytech/substrate.git" }
sc-client = { git = "https://github.com/paritytech/substrate.git" }
sp-runtime = { git = "https://github.com/paritytech/substrate.git" }
basic-authorship = { package = "sc-basic-authority", git = "https://github.com/paritytech/substrate.git"}
sc-telemetry = { git = "https://github.com/paritytech/substrate.git" }
runtime = { package = "acala-runtime", path = "runtime" }
[build-dependencies]
vergen = "3.0.4"
build-script-utils = { package = "substrate-build-script-utils", git = "https://github.com/paritytech/substrate.git" }
[workspace]
members = [
"runtime",
"modules/*",
"orml/oracle",
"orml/tokens",
"orml/traits",
"orml/prices",
"orml/utilities",
"orml/currencies",
"orml/auction",
]
exclude = [ "runtime/wasm" ]