mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-09 22:57:59 -05:00
28 lines
770 B
TOML
28 lines
770 B
TOML
[package]
|
|
name = "tfhe-zk-pok"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
keywords = ["zero", "knowledge", "proof", "vector-commitments"]
|
|
homepage = "https://zama.ai/"
|
|
documentation = "https://docs.zama.ai/tfhe-rs"
|
|
repository = "https://github.com/zama-ai/tfhe-rs"
|
|
license = "BSD-3-Clause-Clear"
|
|
description = "tfhe-zk-pok: An implementation of zero-knowledge proofs of encryption for TFHE."
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ark-bls12-381 = "0.4.0"
|
|
ark-ec = "0.4.2"
|
|
ark-ff = "0.4.2"
|
|
ark-poly = "0.4.2"
|
|
rand = "0.8.5"
|
|
rayon = "1.8.0"
|
|
sha3 = "0.10.8"
|
|
serde = { version = "~1.0", features = ["derive"] }
|
|
ark-serialize = { version = "0.4.2" }
|
|
zeroize = "1.7.0"
|
|
|
|
[dev-dependencies]
|
|
serde_json = "~1.0"
|