mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-04-23 03:00:50 -04:00
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[package]
|
|
name = "zkp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[patch.crates-io]
|
|
# patched add rkyv support & MSRV 1.77
|
|
alloy-primitives = { git = "https://github.com/scroll-tech/alloy-core", branch = "v0.8.21" }
|
|
ruint = { git = "https://github.com/scroll-tech/uint.git", branch = "v1.12.3" }
|
|
tiny-keccak = { git = "https://github.com/scroll-tech/tiny-keccak", branch = "scroll-patch-v2.0.2-openvm-v1.0.0-rc.1" }
|
|
|
|
[dependencies]
|
|
euclid_prover = { git = "https://github.com/scroll-tech/zkvm-prover.git", tag = "v0.2.0", package = "scroll-zkvm-prover" }
|
|
euclid_verifier = { git = "https://github.com/scroll-tech/zkvm-prover.git", tag = "v0.2.0", package = "scroll-zkvm-verifier" }
|
|
|
|
base64 = "0.13.0"
|
|
env_logger = "0.9.0"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
once_cell = "1.19"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0.66"
|
|
anyhow = "1.0.86"
|
|
|
|
[profile.test]
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
opt-level = 3
|