specific commit added for sp1 crate to avoid future compilation error due to change in sp1_zkvm codebase

This commit is contained in:
Manish Kumar 2024-05-24 12:57:22 +05:30
parent 604f29b8fc
commit ccb9568e7e
11 changed files with 6 additions and 6 deletions

View File

@ -5,6 +5,6 @@ name = "blake2-program"
edition = "2021"
[dependencies]
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git" }
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git", rev = "4528b7861c60ef5e25c2d0b328fc6d244e2ac98e"}
blake2 = "0.10.6"

View File

@ -5,5 +5,5 @@ name = "blake3-program"
edition = "2021"
[dependencies]
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git" }
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git", rev = "4528b7861c60ef5e25c2d0b328fc6d244e2ac98e" }
blake3 = "1.5.0"

View File

@ -5,5 +5,5 @@ name = "keccak-program"
edition = "2021"
[dependencies]
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git" }
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git", rev = "4528b7861c60ef5e25c2d0b328fc6d244e2ac98e" }
tiny-keccak = { git = "https://github.com/succinctlabs/tiny-keccak-private", branch = "patch-v2.0.2", features = ["keccak"] }

View File

@ -5,7 +5,7 @@ name = "poseidon2-program"
edition = "2021"
[dependencies]
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git" }
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git" , rev = "4528b7861c60ef5e25c2d0b328fc6d244e2ac98e"}
zkhash = {git = "https://github.com/HorizenLabs/poseidon2"}
ark-serialize = "0.4"

View File

@ -5,7 +5,7 @@ name = "bench-script"
edition = "2021"
[dependencies]
sp1-core = { git = "https://github.com/succinctlabs/sp1.git" }
sp1-core = { git = "https://github.com/succinctlabs/sp1.git", rev = "4528b7861c60ef5e25c2d0b328fc6d244e2ac98e" }
rand = "0.8"
hex = "0.4"
zkhash = {git = "https://github.com/HorizenLabs/poseidon2"}

View File

@ -5,6 +5,6 @@ name = "sha256-program"
edition = "2021"
[dependencies]
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git" }
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git" , rev = "4528b7861c60ef5e25c2d0b328fc6d244e2ac98e"}
sha2-v0-10-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-v0.10.8" }