mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-13 14:39:25 +00:00
Not quite done yet. It needs to communicate the resulting points and proofs to extract them from the Pedersen Commitments in order to return those, and then be tested.
21 lines
776 B
TOML
21 lines
776 B
TOML
[package]
|
|
name = "generalized-bulletproofs-ec-gadgets"
|
|
version = "0.1.0"
|
|
description = "Gadgets for working with an embedded Elliptic Curve in a Generalized Bulletproofs circuit"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/evrf/ec-gadgets"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = ["bulletproofs", "circuit", "divisors"]
|
|
edition = "2021"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
generic-array = { version = "1", default-features = false, features = ["alloc"] }
|
|
|
|
ciphersuite = { path = "../../ciphersuite", version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
generalized-bulletproofs-circuit-abstraction = { path = "../circuit-abstraction" }
|