-
Notifications
You must be signed in to change notification settings - Fork 61
/
Cargo.toml
31 lines (28 loc) · 1.06 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
[workspace]
resolver = "2"
members = ["apps", "methods"]
exclude = ["lib"]
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
alloy = { version = "0.6", features = ["full"] }
alloy-primitives = { version = "0.8", default-features = false, features = ["rlp", "serde", "std"] }
alloy-sol-types = { version = "0.8" }
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.2", features = ["docker"] }
# using git references here to ensure this matches the submodules in ./lib
risc0-build-ethereum = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.2.0" }
risc0-ethereum-contracts = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.2.0" }
risc0-zkvm = { version = "1.2", default-features = false }
risc0-zkp = { version = "1.2", default-features = false }
serde = { version = "1.0", features = ["derive", "std"] }
url = { version = "2.5" }
[profile.release]
debug = 1
lto = true