forked from Phala-Network/phala-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
86 lines (78 loc) · 2.06 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
80
81
82
83
84
85
86
[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 = [
"subxt",
"vendor/webpki",
"vendor/ring",
"standalone/pruntime",
"standalone/prouter",
"crates/pink-libs/system",
"crates/pink-libs/sidevmop",
"e2e/res/check_system",
]
members = [
"standalone/executor",
"standalone/rpc",
"standalone/node",
"standalone/runtime",
"standalone/pherry",
"standalone/replay",
"standalone/headers-cache",
"standalone/sfq-test",
"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/wasmer-tunables",
"crates/phala-rocket-middleware",
"crates/pink",
"crates/pink/pink-extension",
"crates/pink/pink-extension-runtime",
"crates/pink/unittests",
"crates/pink-libs/s3",
"crates/pink-libs/utils",
"crates/phaxt",
"crates/pink/pink-extension/macro",
"crates/sidevm/host-runtime",
"crates/sidevm/env",
"crates/sidevm/macro",
"crates/sidevm/logger",
"crates/sidevm/sidevm",
"crates/phala-serde-more",
"crates/rustfmt-snippet",
"crates/reqwest-env-proxy",
"crates/phala-scheduler",
"pallets/phala",
"pallets/phala/mq-runtime-api",
"scripts/debug-cli"
]
[patch.crates-io]
rocket = { version = "0.5.0-rc.2", git = "https://github.com/SergioBenitez/Rocket" }
# For pink-extension-runtime, it will introduce Substrate from crates-io which usually different with polkadot-branch
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }