26 lines
940 B
TOML
Raw Permalink Normal View History

2024-06-27 16:00:42 +00:00
2024-06-19 20:15:59 +02:00
[package]
name = "method"
version = "0.1.0"
edition = "2021"
[workspace]
[dependencies]
risc0-zkvm = { version = "1.0.1", default-features = false, features = ['std'] }
2024-06-20 19:04:31 +02:00
blake2 = "0.10"
serde = { version = "1.0", features = ["derive"] }
2024-06-26 11:33:52 +02:00
bincode = "1"
common = { path = "../../common" }
2024-07-03 02:15:11 +00:00
cl = { path = "../../../cl" }
[patch.crates-io]
# Placing these patch statement in the workspace Cargo.toml will add RISC Zero SHA-256 and bigint
# multiplication accelerator support for all downstream usages of the following crates.
sha2 = { git = "https://github.com/risc0/RustCrypto-hashes", tag = "sha2-v0.10.8-risczero.0" }
k256 = { git = "https://github.com/risc0/RustCrypto-elliptic-curves", tag = "k256/v0.13.3-risczero.0" }
2024-07-03 11:44:48 +02:00
crypto-bigint = { git = "https://github.com/risc0/RustCrypto-crypto-bigint", tag = "v0.5.5-risczero.0" }
curve25519-dalek = { git = "https://github.com/risc0/curve25519-dalek", tag = "curve25519-4.1.2-risczero.0" }