forked from BHONetwork/bholdus-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (31 loc) · 788 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
[workspace]
members = [
"node",
"node/cli",
"node/service",
"primitives/common",
"runtime/chain-extension",
"runtime/ulas",
"runtime/phoenix",
"pallets/currencies",
"pallets/support",
"pallets/support/nft",
"pallets/support/nft-marketplace",
"pallets/tokens",
"pallets/non-fungible-token",
"pallets/bridge/native-transfer",
"pallets/template",
"precompiles/template",
"precompiles/utils",
]
exclude = [
"smart-contracts/tokens",
"smart-contracts/lixi",
# Temporarily ignore EVM Debug and Tracing feature and wait for Moonbeam to update substrate to polkadot-v0.9.22
"client/evm/**/*",
"primitives/evm/**/*",
"runtime/evm-tracer",
"precompiles/**/*",
]
[profile.release]
panic = "unwind"