mirror of
https://github.com/Sunscreen-tech/Sunscreen.git
synced 2026-04-19 03:00:06 -04:00
33 lines
1002 B
TOML
33 lines
1002 B
TOML
[package]
|
|
name = "sunscreen_zkp_backend"
|
|
version = "0.8.0"
|
|
edition = "2021"
|
|
|
|
authors = ["Sunscreen"]
|
|
rust-version = "1.56.0"
|
|
license = "AGPL-3.0-only"
|
|
description = "This crate contains the ZKP backend of the Sunscreen compiler."
|
|
homepage = "https://sunscreen.tech"
|
|
repository = "https://github.com/Sunscreen-tech/Sunscreen"
|
|
documentation = "https://docs.sunscreen.tech"
|
|
keywords = ["FHE", "BFV", "lattice", "cryptography"]
|
|
categories = ["cryptography"]
|
|
readme = "crates-io.md"
|
|
|
|
[dependencies]
|
|
curve25519-dalek = { workspace = true }
|
|
bulletproofs = { workspace = true, optional = true }
|
|
crypto-bigint = { workspace = true }
|
|
merlin = { workspace = true, optional = true }
|
|
bumpalo = { workspace = true }
|
|
petgraph = { workspace = true }
|
|
sunscreen_compiler_common = { workspace = true }
|
|
serde = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
static_assertions = { workspace = true }
|
|
log = { workspace = true }
|
|
|
|
[features]
|
|
default = ["bulletproofs"]
|
|
bulletproofs = ["dep:bulletproofs", "dep:merlin"]
|