forked from Phala-Network/phala-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (58 loc) · 1.22 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
[profile.release]
panic = "unwind"
opt-level = 3
# make sure dev builds with backtrace do
# not slow us down
[profile.dev.package.backtrace]
inherits = "release"
[profile.production]
inherits = "release"
lto = true
codegen-units = 1
[profile.testnet]
inherits = "release"
debug = 1 # debug symbols are useful for profilers
debug-assertions = true
overflow-checks = true
[workspace]
resolver = "2"
exclude = [
"substrate",
"subxt",
"webpki",
"ring",
"native-nostd-hasher",
"standalone/pruntime",
"crates/pink/examples/",
]
members = [
"standalone/executor",
"standalone/rpc",
"standalone/node",
"standalone/runtime",
"standalone/pherry",
"standalone/replay",
"crates/phala-trie-storage",
"crates/phala-mq",
"crates/phala-crypto",
"crates/phala-node-rpc-ext",
"crates/phala-types",
"crates/prpc",
"crates/prpc-build",
"crates/phactory",
"crates/phactory/api",
"crates/phactory/pal",
"crates/phala-types",
"crates/phala-async-executor",
"crates/phala-allocator",
"crates/pink",
"crates/pink/pink-extension",
"crates/phaxt",
"crates/pink/pink-extension/macro",
"crates/phala-serde-more",
"pallets/phala",
"pallets/phala/mq-runtime-api",
"pallets/utility",
"scripts/toml-upgrade-version",
"scripts/debug-cli"
]