Skip to content

Commit bdcf935

Browse files
committed
clean up
1 parent 9ecc1c2 commit bdcf935

File tree

2 files changed

+5
-29
lines changed

2 files changed

+5
-29
lines changed

.cargo/config.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
[build]
22
# https://github.com/rust-lang/rust/pull/124129
33
# https://github.com/dtolnay/linkme/pull/88
4-
rustflags = ["-C", "target-cpu=native", "-Z", "linker-features=-lld"]
5-
6-
# https://docs.rs/embuild/latest/embuild/cargo/fn.workspace_dir.html
7-
[env]
8-
CARGO_WORKSPACE_DIR = { value = "", relative = true }
4+
rustflags = ["-Z", "linker-features=-lld"]

Cargo.toml

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[workspace]
22
members = [
3+
"common",
34
"compat",
45
"evm_arithmetization",
56
"mpt_trie",
@@ -56,6 +57,7 @@ criterion = "0.5.1"
5657
dotenvy = "0.15.7"
5758
either = "1.12.0"
5859
enum-as-inner = "0.6.0"
60+
enumn = "0.1.13"
5961
env_logger = "0.11.3"
6062
eth_trie = "0.4.0"
6163
ethereum-types = "0.14.1"
@@ -91,6 +93,7 @@ ruint = "1.12.3"
9193
serde = "1.0.203"
9294
serde_json = "1.0.118"
9395
serde_path_to_error = "0.1.16"
96+
serde_with = "3.8.1"
9497
sha2 = "0.10.8"
9598
static_assertions = "1.1.0"
9699
thiserror = "1.0.61"
@@ -112,6 +115,7 @@ mpt_trie = { path = "mpt_trie", version = "0.4.1" }
112115
proof_gen = { path = "proof_gen", version = "0.4.0" }
113116
smt_trie = { path = "smt_trie", version = "0.1.1" }
114117
trace_decoder = { path = "trace_decoder", version = "0.6.0" }
118+
zk_evm_common = { path = "common", version = "0.1.0" }
115119
zk_evm_proc_macro = { path = "proc_macro", version = "0.1.0" }
116120

117121
# zero-bin related dependencies
@@ -131,27 +135,3 @@ proc-macro2 = "1.0"
131135
quote = "1.0"
132136
syn = "2.0"
133137
trybuild = "1.0"
134-
135-
[profile.release]
136-
opt-level=3
137-
debug=true
138-
incremental=true
139-
debug-assertions=true
140-
lto=false
141-
overflow-checks=false
142-
143-
[profile.test]
144-
opt-level=3
145-
debug=true
146-
incremental=true
147-
debug-assertions=true
148-
lto=false
149-
overflow-checks=false
150-
151-
[profile.dev]
152-
opt-level=3
153-
debug=true
154-
incremental=true
155-
debug-assertions=true
156-
lto=false
157-
overflow-checks=false

0 commit comments

Comments
 (0)