-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 865 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 865 Bytes
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
cargo-features = ["resolver"]
[workspace]
resolver = "2"
members = [
"bin/node/cli",
"bin/node/runtime",
"primitives/realis",
"frame/nft",
"frame/nft-delegate",
"frame/realis-game-api",
"frame/staking-pool",
"frame/realis-bridge",
"frame/marketplace"
]
# Override `node-runtime` dependency in `node-executor` dependencies with our local forked version.
# `node-executor` is a dependecy of a `node-cli` at `bin/node/cli`.
#[patch.'https://github.com/RealisNetwork/substrate']
#node-cli = { path = "bin/node/cli" }
#node-runtime = { path = "bin/node/runtime" }
#pallet-staking = { path = "frame/staking-pool" }
#pallet-nft = { path = "frame/nft" }
#pallet-nft-delegate = { path = "frame/nft-delegate" }
#realis-bridge = {path = "frame/realis-bridge"}
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
panic = "unwind"