mirror of
https://github.com/logos-blockchain/lssa-zkvm-testing.git
synced 2026-01-05 23:03:09 +00:00
27 lines
657 B
TOML
27 lines
657 B
TOML
[package]
|
|
name = "shake256-33bytes-demo"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "shake256-33bytes-demo"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
risc0-zkvm = { version = "2.3.1", features = ["std", "prove"] }
|
|
anyhow = "1.0"
|
|
hex = "0.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
sha2 = "0.10"
|
|
hkdf = "0.12"
|
|
sha3 = "0.10"
|
|
serde-big-array = "0.5"
|
|
tiny-keccak = { version = "2", default-features = false, features = ["shake"] } # ADD
|
|
methods = {path = "methods"}
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8"
|
|
cipher = { version = "0.4", features = ["std"] }
|
|
serde = { version = "1", default-features = false, features = ["derive", "alloc"] }
|
|
|