-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathCargo.toml
56 lines (47 loc) · 1.83 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
[workspace.package]
authors = ["Movement Labs"]
edition = "2021"
repository = "https://github.com/movemntdev/sdk"
license = "Apache-2.0"
[workspace]
resolver = "2"
members = [
"protocol-units/data-availability",
"protocol-units/zkfp/eth-zk/host",
"protocol-units/zkfp/eth-zk/methods",
"protocol-units/zkfp/eth-zk/methods/guest",
]
exclude = [
"protocol-units/zkfp/move-zk/host",
"protocol-units/zkfp/move-zk/methods",
"protocol-units/zkfp/move-zk/methods/guest",
"shared-sequencer/movement-sequencer",
]
[workspace.dependencies]
anyhow = "1.0"
# To try (experimental) std support, add `features = [ "std" ]` to risc0-zkvm
risc0-zkvm = { version = "0.20.1", features = ["std"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = "1.0"
tempfile = "3.2.0"
# Move dependencies
move-vm-runtime = { path = "protocol-units/zkfp/move-zk/vendors/move/language/move-vm/runtime" }
move-vm-test-utils = { path = "protocol-units/zkfp/move-zk/vendors/move/language/move-vm/test-utils" }
move-binary-format = { path = "protocol-units/zkfp/move-zk/vendors/move/language/move-binary-format" }
move-vm-types = { path = "protocol-units/zkfp/move-zk/vendors/move/language/move-vm/types"}
move-core-types = { path = "protocol-units/zkfp/move-zk/vendors/move/language/move-core/types" }
move-compiler = { path = "protocol-units/zkfp/move-zk/vendors/move/language/move-compiler" }
move-stdlib = { path = "protocol-units/zkfp/move-zk/vendors/move/language/move-stdlib" }
#Eth dependencies
ethers = "2.0.13"
foundry-compilers = { git = "https://github.com/foundry-rs/compilers" }
# Always optimize; building and running the guest takes much longer without optimization.
[profile.dev]
opt-level = 3
[profile.dev.build-override]
opt-level = 3
[profile.release]
debug = 1
lto = true
[profile.release.build-override]
opt-level = 3