[package]
edition = "2024"
name = "simple-bfv"
version = "0.1.0"
authors = ["Olruix (VRAM-RAM)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Educational implementation of BFV FHE scheme"
documentation = "https://docs.rs/simple-bfv"
readme = "README.md"
keywords = [
"fhe",
"bfv",
"homomorphic",
"cryptography",
"educational",
]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/VRAM-RAM/simple-crypto-lab"
resolver = "2"
[features]
parallel = ["dep:rayon"]
[lib]
name = "simple_bfv"
path = "src/lib.rs"
[dependencies.rand]
version = "0.8.0"
[dependencies.rayon]
version = "1.11.0"
optional = true
[dependencies.simple-ring]
version = "0.1.0"