20 lines
474 B
TOML
Raw Permalink Normal View History

2024-06-19 20:15:59 +02:00
[package]
name = "host"
version = "0.1.0"
edition = "2021"
2024-06-26 16:53:21 +02:00
default-run = "host"
2024-06-19 20:15:59 +02:00
[dependencies]
methods = { path = "../methods" }
2024-06-26 16:53:21 +02:00
risc0-zkvm = { version = "1.0.1", features = ["prove"] }
risc0-groth16 = { version = "1.0.1" }
2024-06-19 20:15:59 +02:00
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = "1.0"
2024-06-20 19:04:31 +02:00
blake2 = "0.10"
2024-06-26 11:33:52 +02:00
bincode = "1"
2024-06-26 16:53:21 +02:00
common = { path = "../common" }
tempfile = "3"
clap = { version = "4", features = ["derive"] }
rand = "0.8.5"
cl = { path = "../../cl" }