kzg 0.1.2

a simple implementation of the KZG polynomial commitment scheme
Documentation
[package]
name = "kzg"
version = "0.1.2"
edition = "2018"
license = "MIT"
description = "a simple implementation of the KZG polynomial commitment scheme"
authors = [ "sladuca777@gmail.com" ]
repository = "https://github.com/Sladuca/kzg"
readme = "README.md"


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
csprng_setup = ["rand", "std"]
std = []

[dependencies]
pairing = "0.20.0"
thiserror = "1.0.26"
rand = { version = "0.8.4", optional = true }

[dev-dependencies]
rand = { version = "0.8.4", features = ["small_rng"] }
bls12_381 = "0.5.0"
lazy_static = "1.4.0"
criterion = "0.3"

[[bench]]
name = "commit"
harness = false

[[bench]]
name = "poly_verify"
harness = false

[[bench]]
name = "create_witness"
harness = false

[[bench]]
name = "verify_eval"
harness = false