mirror of
https://github.com/Sunscreen-tech/Sunscreen.git
synced 2026-01-15 00:28:21 -05:00
39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
[package]
|
|
name = "seal_fhe"
|
|
version = "0.7.0"
|
|
edition = "2021"
|
|
|
|
authors = ["Sunscreen LLC"]
|
|
rust-version = "1.56.0"
|
|
license = "AGPL-3.0-only"
|
|
description = "This crate contains Rust bindings for Microsoft's SEAL Fully Homomorphic Encryption (FHE) library."
|
|
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"
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
static_assertions = { workspace = true }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
link-cplusplus= { workspace = true }
|
|
|
|
[build-dependencies]
|
|
cmake = { workspace = true }
|
|
bindgen = { workspace = true }
|
|
emsdk = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = { workspace = true }
|
|
|
|
[features]
|
|
hexl = []
|
|
transparent-ciphertexts = []
|