diff --git a/tfhe-fft/Cargo.toml b/tfhe-fft/Cargo.toml index bd2908322..0a1baac39 100644 --- a/tfhe-fft/Cargo.toml +++ b/tfhe-fft/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tfhe-fft" -version = "0.9.0" +version = "0.10.0" edition = "2021" description = "tfhe-fft is a pure Rust high performance fast Fourier transform library." readme = "README.md" diff --git a/tfhe-ntt/Cargo.toml b/tfhe-ntt/Cargo.toml index 1d3ee39fd..ab7a0f77b 100644 --- a/tfhe-ntt/Cargo.toml +++ b/tfhe-ntt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tfhe-ntt" -version = "0.6.2" +version = "0.7.0" edition = "2021" description = "tfhe-ntt is a pure Rust high performance number theoretic transform library." readme = "README.md" diff --git a/tfhe/Cargo.toml b/tfhe/Cargo.toml index c72c2f940..6646b692c 100644 --- a/tfhe/Cargo.toml +++ b/tfhe/Cargo.toml @@ -59,11 +59,11 @@ tfhe-csprng = { version = "0.7.0", path = "../tfhe-csprng", features = [ serde = { workspace = true, features = ["default", "derive"] } rayon = { workspace = true } 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", "fft128", ] } -tfhe-ntt = { version = "0.6.1", path = "../tfhe-ntt" } +tfhe-ntt = { version = "0.7.0", path = "../tfhe-ntt" } pulp = { workspace = true, features = ["default"] } tfhe-cuda-backend = { version = "0.12.0", path = "../backends/tfhe-cuda-backend", optional = true } aligned-vec = { workspace = true, features = ["default", "serde"] }