diff --git a/Cargo.lock b/Cargo.lock index 763535d..a5bbd45 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -869,9 +869,9 @@ dependencies = [ [[package]] name = "tfhe" -version = "0.8.4" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4504375366bae25ff025c6bc19ee6272347121147581aa0fd36c7fc20ab6600" +checksum = "5f65cf3af9571d41b9bc7fbe99a353fae1fc47f0bac4cff225b494ae53acb9b0" dependencies = [ "aligned-vec", "bincode", diff --git a/benchmark/Cargo.toml b/benchmark/Cargo.toml index 48c68c2..4df1161 100644 --- a/benchmark/Cargo.toml +++ b/benchmark/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" compute = { path = "../compute" } [target.'cfg(target_arch = "x86_64")'.dependencies] -tfhe = { version = "0.8.4", features = [ "boolean", "shortint", "integer", "x86_64-unix" ] } +tfhe = { version = "0.9.0", features = [ "boolean", "shortint", "integer", "x86_64-unix" ] } [target.'cfg(target_arch = "aarch64")'.dependencies] -tfhe = { version = "0.8.0", features = [ "boolean", "shortint", "integer", "aarch64-unix" ] } +tfhe = { version = "0.9.0", features = [ "boolean", "shortint", "integer", "aarch64-unix" ] } [dev-dependencies] criterion = "0.5" # Use Criterion for stable benchmarking