chore(fft-ntt): bump to 0.10.0 and 0.7.0

This commit is contained in:
Nicolas Sarlin
2025-11-25 17:10:26 +01:00
committed by Nicolas Sarlin
parent ef30be5086
commit 79a89c157a
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

@@ -59,11 +59,11 @@ tfhe-csprng = { version = "0.7.0", path = "../tfhe-csprng", features = [
serde = { workspace = true, features = ["default", "derive"] } serde = { workspace = true, features = ["default", "derive"] }
rayon = { workspace = true } rayon = { workspace = true }
bincode = "1.3.3" bincode = "1.3.3"
tfhe-fft = { version = "0.9.0", path = "../tfhe-fft", features = [ tfhe-fft = { version = "0.10.0", path = "../tfhe-fft", features = [
"serde", "serde",
"fft128", "fft128",
] } ] }
tfhe-ntt = { version = "0.6.1", path = "../tfhe-ntt" } tfhe-ntt = { version = "0.7.0", path = "../tfhe-ntt" }
pulp = { workspace = true, features = ["default"] } pulp = { workspace = true, features = ["default"] }
tfhe-cuda-backend = { version = "0.12.0", path = "../backends/tfhe-cuda-backend", optional = true } tfhe-cuda-backend = { version = "0.12.0", path = "../backends/tfhe-cuda-backend", optional = true }
aligned-vec = { workspace = true, features = ["default", "serde"] } aligned-vec = { workspace = true, features = ["default", "serde"] }