mirror of
https://github.com/vacp2p/zk-explorations.git
synced 2026-01-09 20:17:59 -05:00
30 lines
810 B
TOML
30 lines
810 B
TOML
[package]
|
|
name = "poseidon-starky"
|
|
version = "0.1.0"
|
|
|
|
categories = ["cryptography"]
|
|
description = "Implementation of the Poseidon hash function"
|
|
edition = "2021"
|
|
keywords = ["crypto", "zero-knowledge"]
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/vacp2p/zk-explorations"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.71"
|
|
ark-ff = { version = "^0.4.2", default-features = false }
|
|
lazy_static = "1.4"
|
|
num = { version = "0.4", default-features = false, features = ["rand"] }
|
|
plonky2 = "0.1.3"
|
|
proptest = "1.2.0"
|
|
starky = "0.1.1"
|
|
zkhash_poseidon = { git = "https://github.com/tyshko-rostyslav/poseidon2", package = "zkhash", branch = "make-public"}
|
|
env_logger = "*"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.4.0", default-features = false }
|
|
|
|
[[bench]]
|
|
name = "poseidon_starky"
|
|
harness = false
|