20 lines
719 B
TOML
20 lines
719 B
TOML
[package]
|
|
name = "output"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
|
|
[dependencies]
|
|
risc0-zkvm = { version = "1.0", default-features = false, features = ['std'] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
cl = { path = "../../cl" }
|
|
proof_statements = { path = "../../proof_statements" }
|
|
|
|
|
|
[patch.crates-io]
|
|
# add RISC Zero 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" }
|
|
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" }
|