Files
semaphore_r0/methods/guest/Cargo.toml
2024-01-03 13:16:33 +01:00

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"