diff --git a/tfhe-fft/Cargo.toml b/tfhe-fft/Cargo.toml index a94331d3f1..5c65e1fb7f 100644 --- a/tfhe-fft/Cargo.toml +++ b/tfhe-fft/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tfhe-fft" -version = "0.6.0" +version = "0.7.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 ba30f562e9..83da92aa0b 100644 --- a/tfhe-ntt/Cargo.toml +++ b/tfhe-ntt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tfhe-ntt" -version = "0.3.0" +version = "0.4.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 1066514d63..b5b23876c7 100644 --- a/tfhe/Cargo.toml +++ b/tfhe/Cargo.toml @@ -57,11 +57,11 @@ tfhe-csprng = { version = "0.5.0", path = "../tfhe-csprng", features = ["paralle serde = { workspace = true, features = ["default", "derive"] } rayon = { workspace = true } bincode = "1.3.3" -tfhe-fft = { version = "0.6.0", path = "../tfhe-fft", features = [ +tfhe-fft = { version = "0.7.0", path = "../tfhe-fft", features = [ "serde", "fft128", ] } -tfhe-ntt = { version = "0.3.0", path = "../tfhe-ntt" } +tfhe-ntt = { version = "0.4.0", path = "../tfhe-ntt" } pulp = { workspace = true, features = ["default"] } tfhe-cuda-backend = { version = "0.7.0", path = "../backends/tfhe-cuda-backend", optional = true } aligned-vec = { workspace = true, features = ["default", "serde"] }