forked from chainx-org/ChainX
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Cargo.toml
79 lines (72 loc) · 2.02 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "chainx"
version = "5.1.1"
authors = ["The ChainX Authors"]
edition = "2021"
description = "Fully Decentralized Interchain Crypto Asset Management on Polkadot"
[dependencies]
cli = { package = "chainx-cli", path = "cli" }
[target.'cfg(target_arch="x86_64")'.dependencies]
cli = { package = "chainx-cli", path = "cli", features = ["wasmtime"] }
[workspace]
members = [
"cli",
"executor",
"primitives",
"primitives/assets-registrar",
"primitives/gateway/bitcoin",
"primitives/gateway/common",
"primitives/genesis-builder",
"primitives/io",
"primitives/mining/common",
"primitives/mining/staking",
"primitives/protocol",
"primitives/rpc",
"primitives/runtime",
"rpc",
"runtime/chainx",
"runtime/dev",
"runtime/malan",
"service",
"xpallets/assets",
"xpallets/assets/rpc",
"xpallets/assets/rpc/runtime-api",
"xpallets/assets-bridge",
"xpallets/assets-registrar",
"xpallets/btc-ledger",
"xpallets/btc-ledger/rpc",
"xpallets/btc-ledger/rpc/runtime-api",
"xpallets/dex/spot",
"xpallets/dex/spot/rpc",
"xpallets/dex/spot/rpc/runtime-api",
"xpallets/gateway/bitcoin",
"xpallets/gateway/bitcoin/rpc",
"xpallets/gateway/bitcoin/rpc/runtime-api",
"xpallets/gateway/common",
"xpallets/gateway/common/rpc",
"xpallets/gateway/common/rpc/runtime-api",
"xpallets/gateway/records",
"xpallets/gateway/records/rpc",
"xpallets/gateway/records/rpc/runtime-api",
"xpallets/genesis-builder",
"xpallets/mining/asset",
"xpallets/mining/asset/rpc",
"xpallets/mining/asset/rpc/runtime-api",
"xpallets/mining/staking",
"xpallets/mining/staking/rpc",
"xpallets/mining/staking/rpc/runtime-api",
"xpallets/support",
"xpallets/system",
"xpallets/transaction-fee",
"xpallets/transaction-fee/rpc",
"xpallets/transaction-fee/rpc/runtime-api",
]
# make sure dev builds with backtrace do
# not slow us down
[profile.dev.package.backtrace]
opt-level = 3
[profile.release]
panic = "unwind"
[features]
runtime-benchmarks = ["cli/runtime-benchmarks"]
try-runtime = ["cli/try-runtime"]