mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 13:16:44 +01:00
* Added compressed serialization for GLWECiphertext + Ciphertext decompression * Added compressed serialization for GGLWECiphertext & GLWESwitchingkey * generalized automorphism test * Removed ops on scalar_znx, replaced by as_vec_znx/as_vec_znx_mut and then call op on vec_znx * Added tests for automorphism key encryption * Added tensorkey compressed * added ggsw compressed
25 lines
562 B
TOML
25 lines
562 B
TOML
[package]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
rug = {workspace = true}
|
|
criterion = {workspace = true}
|
|
itertools = {workspace = true}
|
|
rand = {workspace = true}
|
|
rand_distr = {workspace = true}
|
|
rand_core = {workspace = true}
|
|
sampling = { path = "../sampling" }
|
|
utils = { path = "../utils" }
|
|
paste = "1.0.15"
|
|
byteorder = {workspace = true}
|
|
zstd = {workspace = true}
|
|
|
|
[build-dependencies]
|
|
cmake = "0.1.54"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"] |