mirror of
https://github.com/succinctlabs/sp1-project-template.git
synced 2026-01-10 08:07:57 -05:00
20 lines
825 B
TOML
20 lines
825 B
TOML
[workspace]
|
|
[package]
|
|
version = "0.1.0"
|
|
name = "fibonacci-program"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git" }
|
|
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
|
|
serde = { version = "1.0", default-features = false, features = ["derive"] }
|
|
tendermint-light-client-verifier = { version = "0.35.0", default-features = false, features = [
|
|
"rust-crypto",
|
|
] }
|
|
serde_cbor = "0.11.2"
|
|
|
|
[patch.crates-io]
|
|
sha2-v0-9-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-v0.9.8" }
|
|
sha2-v0-10-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", branch = "patch-v0.10.8" }
|
|
ed25519-consensus = { git = "https://github.com/sp1-patches/ed25519-consensus", branch = "patch-v2.1.0" }
|