-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 1.23 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
[workspace]
resolver = "2"
members = ["apps", "methods", "server", "strategies", "tests"]
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.1.4" }
risc0-ethereum-contracts = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.1.4" }
risc0-steel = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.1.4" }
# risc0 monorepo dependencies.
risc0-build = { version = "1.1.2", features = ["docker"] }
risc0-zkvm = { version = "1.1.2", default-features = false }
risc0-zkp = { version = "1.1.2", default-features = false }
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" }
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