mirror of
https://github.com/Sunscreen-tech/Sunscreen.git
synced 2026-01-11 06:38:15 -05:00
28 lines
855 B
TOML
28 lines
855 B
TOML
[package]
|
|
name = "sunscreen_backend"
|
|
version = "0.8.1"
|
|
edition = "2021"
|
|
|
|
authors = ["Sunscreen"]
|
|
rust-version = "1.56.0"
|
|
license = "AGPL-3.0-only"
|
|
description = "The backend for the Sunscreen compiler."
|
|
homepage = "https://sunscreen.tech"
|
|
repository = "https://github.com/Sunscreen-tech/Sunscreen"
|
|
documentation = "https://bfv-docs.sunscreen.tech"
|
|
keywords = ["FHE", "BFV", "lattice", "cryptography"]
|
|
categories = ["cryptography"]
|
|
readme = "crates-io.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
crossbeam = { workspace = true }
|
|
seal_fhe = { workspace = true }
|
|
sunscreen_compiler_common = { workspace = true }
|
|
sunscreen_fhe_program = { workspace = true }
|
|
sunscreen_runtime = { workspace = true }
|
|
petgraph = { workspace = true }
|
|
log = { workspace = true }
|
|
num = { workspace = true }
|