chore: update tfhe-fft and tfhe-ntt minor version

This is done to get the current version of dependencies defined in workspace, especially pulp.
This commit is contained in:
David Testé
2025-03-27 10:56:53 +01:00
committed by David Testé
parent 9eb6d5afd1
commit 91dc4f44da
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "tfhe-fft"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
description = "tfhe-fft is a pure Rust high performance fast Fourier transform library."
readme = "README.md"

View File

@@ -1,6 +1,6 @@
[package]
name = "tfhe-ntt"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
description = "tfhe-ntt is a pure Rust high performance number theoretic transform library."
readme = "README.md"

View File

@@ -54,11 +54,11 @@ tfhe-csprng = { version = "0.5.0", path = "../tfhe-csprng", features = [
serde = { workspace = true, features = ["default", "derive"] }
rayon = { workspace = true }
bincode = "1.3.3"
tfhe-fft = { version = "0.8.0", path = "../tfhe-fft", features = [
tfhe-fft = { version = "0.9.0", path = "../tfhe-fft", features = [
"serde",
"fft128",
] }
tfhe-ntt = { version = "0.5.0", path = "../tfhe-ntt" }
tfhe-ntt = { version = "0.6.0", path = "../tfhe-ntt" }
pulp = { workspace = true, features = ["default"] }
tfhe-cuda-backend = { version = "0.9.0-alpha.0", path = "../backends/tfhe-cuda-backend", optional = true }
aligned-vec = { workspace = true, features = ["default", "serde"] }