forked from godwokenrises/godwoken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (44 loc) · 1.02 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
[workspace]
members = [
"gwos/crates/types",
"gwos/crates/common",
"gwos/crates/c-uint256-tests",
"crates/challenge",
"crates/chain",
"crates/config",
"crates/mem-pool",
"crates/generator",
"crates/traits",
"crates/store",
"crates/block-producer",
"crates/jsonrpc-types",
"crates/rpc-server",
"crates/rpc-client",
"crates/tools",
"crates/tests",
"crates/benches",
"crates/version",
"crates/utils",
"crates/tx-filter",
"crates/replay-chain",
"crates/p2p-network",
"crates/polyjuice-sender-recover",
"crates/godwoken-bin",
"crates/telemetry",
"crates/metrics",
"crates/builtin-binaries"
]
exclude = [
# Autorocks is in its own workspace because it's relatively independent of
# other godwoken crates. This also makes rust-analyzer and cargo faster when
# working on godwoken.
"crates/autorocks",
"gwos-evm/polyjuice-tests",
"gwos/contracts",
]
[profile.release]
overflow-checks = true
[profile.release.build-override]
opt-level = 3
[profile.bench.build-override]
opt-level = 3