mirror of
https://github.com/saymrwulf/zk-perp.git
synced 2026-05-14 20:58:10 +00:00
27 lines
578 B
TOML
27 lines
578 B
TOML
|
|
[package]
|
||
|
|
name = "zk-perp-host"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
zk-perp-core = { workspace = true }
|
||
|
|
zk-perp-methods = { path = "../methods" }
|
||
|
|
serde = { workspace = true }
|
||
|
|
bincode = { workspace = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
|
||
|
|
# RISC Zero
|
||
|
|
risc0-zkvm = "3.0"
|
||
|
|
|
||
|
|
[features]
|
||
|
|
default = ["risc0"]
|
||
|
|
# Use mock prover for faster development (no actual ZK proofs)
|
||
|
|
mock = []
|
||
|
|
# Enable real RISC Zero proving
|
||
|
|
risc0 = []
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
zk-perp-state = { path = "../crates/state" }
|
||
|
|
zk-perp-da = { path = "../crates/da" }
|