-
Notifications
You must be signed in to change notification settings - Fork 60
/
Cargo.toml
30 lines (27 loc) · 1014 Bytes
/
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
[workspace]
resolver = "2"
members = ["apps", "methods"]
exclude = ["lib"]
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
alloy = { version = "0.4", features = ["full"] }
alloy-primitives = { version = "=0.8.5", default-features = false, features = ["rlp", "serde", "std"] }
alloy-sol-types = { version = "=0.8.5" }
anyhow = { version = "1.0.75" }
bincode = { version = "1.3" }
bytemuck = { version = "1.14" }
hex = { version = "0.4" }
log = { version = "0.4" }
methods = { path = "./methods" }
risc0-build = { version = "1.1", features = ["docker"] }
risc0-build-ethereum = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.1.4" }
risc0-ethereum-contracts = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.1.4" }
risc0-zkvm = { version = "1.1", default-features = false }
risc0-zkp = { version = "1.1", default-features = false }
serde = { version = "1.0", features = ["derive", "std"] }
url = { version = "2.5" }
[profile.release]
debug = 1
lto = true