mirror of
https://github.com/logos-storage/zk-benchmarks.git
synced 2026-01-04 23:03:12 +00:00
18 lines
464 B
TOML
18 lines
464 B
TOML
[package]
|
|
name = "composition"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
composition-methods = { path = "methods" }
|
|
inner_proof = { path = "../inner_proof" }
|
|
risc0-zkvm = { path = "../external/risc0/risc0/zkvm" , default-features = false, features = ["prove",] }
|
|
serde = "1.0"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[features]
|
|
cuda = ["risc0-zkvm/cuda"]
|
|
default = []
|
|
metal = ["risc0-zkvm/metal"]
|
|
prove = ["risc0-zkvm/prove"]
|