-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (38 loc) · 1.39 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
[workspace]
resolver = "2"
members = ["apps", "methods", "server", "strategies"]
exclude = ["lib"]
[workspace.package]
version = "0.1.0"
edition = "2021"
[workspace.dependencies]
# Intra-workspace dependencies
risc0-build-ethereum = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.0.0" }
#risc0-build-ethereum = { path = "../../build" }
risc0-ethereum-contracts = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.0.0" }
#risc0-ethereum-contracts = { path = "../../contracts" }
risc0-steel = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.0.0" }
#risc0-steel = { version = "0.11.1" }
# risc0-steel = { path = "../../steel" }
# risc0 monorepo dependencies.
risc0-build = { version = "1.0", features = ["docker"] }
risc0-zkvm = { version = "1.0", default-features = false }
risc0-zkp = { version = "1.0", default-features = false }
alloy-primitives = { version = "0.7", default-features = false, features = [
"rlp",
"serde",
"std",
] }
alloy-sol-types = { version = "0.7" }
anyhow = { version = "1.0.75" }
bincode = { version = "1.3" }
bytemuck = { version = "1.14" }
ethers = { version = "2.0" }
hex = { version = "0.4" }
log = { version = "0.4" }
aragon-zk-voting-protocol-methods = { path = "./methods" }
serde = { version = "1.0", features = ["derive", "std"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[profile.release]
debug = 1
lto = true