* Add PoL crate * promote cl crate to nomos-node repo * add github action for risc0 proof * fix actions scrupt * add metal feature * fix risc0 install * remove check test
19 lines
452 B
TOML
19 lines
452 B
TOML
[package]
|
|
name = "nomos_pol_prover"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cl = { path = "../../../cl/cl" }
|
|
leader_proof_statements = { path = "../../proof_statements" }
|
|
nomos_pol_risc0_proofs = { path = "../risc0_proofs" }
|
|
risc0-zkvm = { version = "1.0", features = ["prove"] }
|
|
risc0-groth16 = { version = "1.0" }
|
|
tracing = "0.1"
|
|
rand = "0.8.5"
|
|
rand_core = "0.6.0"
|
|
thiserror = "1.0.62"
|
|
anyhow = "1"
|
|
|
|
[features]
|
|
metal = ["risc0-zkvm/metal"] |