This repository was archived by the owner on Nov 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change 1
1
[workspace ]
2
- members = [" bin/alphanet/" , " crates/node" , " crates/precompile" , " crates/testing" ]
2
+ members = [
3
+ " bin/alphanet/" ,
4
+ " crates/node" ,
5
+ " crates/precompile" ,
6
+ " crates/testing" ,
7
+ ]
3
8
default-members = [" bin/alphanet/" ]
4
9
resolver = " 2"
5
10
@@ -33,11 +38,19 @@ missing_docs = "warn"
33
38
all = " warn"
34
39
35
40
[profile .release ]
36
- strip = " debuginfo "
41
+ opt-level = 3
37
42
lto = " thin"
43
+ debug = " line-tables-only"
44
+ strip = true
38
45
panic = " unwind"
39
- codegen-units = 1
40
- incremental = false
46
+ codegen-units = 16
47
+
48
+ # Use the `--profile profiling` flag to show symbols in release mode.
49
+ # e.g. `cargo build --profile profiling`
50
+ [profile .profiling ]
51
+ inherits = " release"
52
+ debug = 2
53
+ strip = false
41
54
42
55
[workspace .dependencies ]
43
56
# alphanet
@@ -57,7 +70,9 @@ alloy-signer-local = { version = "0.2", features = ["mnemonic"] }
57
70
tokio = { version = " 1.21" , default-features = false }
58
71
59
72
# reth
60
- reth = { git = " https://github.com/paradigmxyz/reth.git" , rev = " v1.0.5" , features = [" optimism" ] }
73
+ reth = { git = " https://github.com/paradigmxyz/reth.git" , rev = " v1.0.5" , features = [
74
+ " optimism" ,
75
+ ] }
61
76
reth-chainspec = { git = " https://github.com/paradigmxyz/reth.git" , rev = " v1.0.5" }
62
77
reth-cli-util = { git = " https://github.com/paradigmxyz/reth.git" , rev = " v1.0.5" }
63
78
reth-node-api = { git = " https://github.com/paradigmxyz/reth.git" , rev = " v1.0.5" }
You can’t perform that action at this time.
0 commit comments