mirror of
https://github.com/ETHorHIL/semaphore_r0.git
synced 2026-01-10 12:07:57 -05:00
18 lines
586 B
TOML
18 lines
586 B
TOML
[package]
|
|
name = "semaphore_guest"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
|
|
[dependencies]
|
|
# If you want to try (experimental) std support, add `features = [ "std" ]` to risc0-zkvm
|
|
risc0-zkvm = { version = "0.19.1", default-features = false, features = [ "std" ] }
|
|
merkletree = {path = "../../merkletree"}
|
|
sha2 = "0.10.6"
|
|
|
|
[patch.crates-io.sha2]
|
|
# Placing this patch statement in the workspace Cargo.toml will add RISC Zero SHA-256 accelerator
|
|
# support for all downstream usages of the `sha2` crate.
|
|
git = "https://github.com/risc0/RustCrypto-hashes"
|
|
tag = "sha2-v0.10.6-risc0" |