-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
48 lines (41 loc) · 960 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
39
40
41
42
43
44
45
46
47
48
[profile.release]
panic = "unwind"
[profile.production]
inherits = "release"
lto = true
[profile.testnet]
inherits = "release"
debug = 1 # debug symbols are useful for profilers
debug-assertions = true
overflow-checks = true
[workspace]
resolver = "2"
exclude = [
"vendor/webpki",
"vendor/ring",
"cumulus/client/cli",
"polkadot/node/service",
]
members = [
"node",
"parachains-common",
"crates/phala-types",
"crates/phala-mq",
"crates/phala-node-rpc-ext",
"crates/phala-node-rpc-ext/types",
"crates/prpc",
"crates/phala-trie-storage",
"substrate/frame/utility",
"pallets/phala",
"pallets/phala/mq-runtime-api",
"pallets/xtransfer",
"pallets/parachain-info",
"runtime/phala",
"runtime/khala",
"runtime/rhala",
"runtime/thala",
]
[patch."https://github.com/paritytech/polkadot"]
polkadot-service = { path = "polkadot/node/service" }
[patch."https://github.com/paritytech/cumulus"]
cumulus-client-cli = { path = "cumulus/client/cli" }