[package]
edition = "2021"
name = "si-commitment-scheme"
version = "0.1.0"
authors = ["SuperInstance"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pedersen commitments, Blake3-based polynomial commitments, batch opening/verification with binding and hiding properties"
readme = "README.md"
keywords = [
"commitment",
"pedersen",
"polynomial",
"cryptography",
"zero-knowledge",
]
categories = [
"cryptography",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/SuperInstance/commitment-scheme"
[lib]
name = "si_commitment_scheme"
path = "src/lib.rs"
[dependencies.blake3]
version = "1.5"
[dependencies.curve25519-dalek]
version = "4"
features = ["rand_core"]
[dependencies.rand]
version = "0.8"
[dependencies.sha2]
version = "0.10"
[dev-dependencies]