From 418e8aec2d919bc1ca99fd4d46c71be7aadd20ba Mon Sep 17 00:00:00 2001 From: Petar Ivanov <29689712+dartdart26@users.noreply.github.com> Date: Wed, 17 Jan 2024 15:40:23 +0200 Subject: [PATCH] chore(tfhe-rs): update to tfhe-rs 0.4.1 --- Cargo.lock | 8 ++++---- Cargo.toml | 6 +++--- README.md | 3 ++- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 121555c..13b78be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -118,7 +118,7 @@ dependencies = [ [[package]] name = "concrete-csprng" version = "0.4.0" -source = "git+https://github.com/zama-ai/tfhe-rs.git?rev=tfhe-rs-0.4.0#4a00d25cb18c6580a0998f9d409f7c24cd7c06f2" +source = "git+https://github.com/zama-ai/tfhe-rs.git?rev=tfhe-rs-0.4.1#2f4d00b13a4bce89ca4990365effc5ea6e66bb2d" dependencies = [ "aes", "libc", @@ -219,7 +219,7 @@ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" [[package]] name = "fhevm-tfhe-cli" -version = "0.1.1" +version = "0.2.3" dependencies = [ "bincode", "clap", @@ -515,8 +515,8 @@ checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" [[package]] name = "tfhe" -version = "0.4.0" -source = "git+https://github.com/zama-ai/tfhe-rs.git?rev=tfhe-rs-0.4.0#4a00d25cb18c6580a0998f9d409f7c24cd7c06f2" +version = "0.4.1" +source = "git+https://github.com/zama-ai/tfhe-rs.git?rev=tfhe-rs-0.4.1#2f4d00b13a4bce89ca4990365effc5ea6e66bb2d" dependencies = [ "aligned-vec", "bytemuck", diff --git a/Cargo.toml b/Cargo.toml index 23a8834..5b3725e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "fhevm-tfhe-cli" -version = "0.1.1" +version = "0.2.3" authors = ["Zama "] edition = "2021" -license = "Unlicense" +license = "BSD-3-Clause-Clear" homepage = "https://github.com/zama-ai/fhevm-tfhe-cli" repository = "https://github.com/zama-ai/fhevm-tfhe-cli" publish = false @@ -12,4 +12,4 @@ publish = false bincode = "1.3.3" clap = { version = "3.1.18", features = ["derive"] } serde = "1.0" -tfhe = { git = "https://github.com/zama-ai/tfhe-rs.git", rev = "tfhe-rs-0.4.0", features = ["boolean", "experimental-force_fft_algo_dif4", "shortint", "integer"] } +tfhe = { git = "https://github.com/zama-ai/tfhe-rs.git", rev = "tfhe-rs-0.4.1", features = ["boolean", "experimental-force_fft_algo_dif4", "shortint", "integer"] } diff --git a/README.md b/README.md index 4e72549..c980d4b 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Tags: * v0.2.1: based on tfhe-rs 0.3.1 * v0.2.2: based on tfhe-rs 0.4.0 +* v0.2.3: based on tfhe-rs 0.4.1 # Build @@ -25,7 +26,7 @@ cargo build --features tfhe/x86_64-unix --release cargo build --features tfhe/aarch64-unix --release ``` -# Docker +## Docker ``` docker build -t fhevm-tfhe-cli:latest . ```