Skip to content
This repository has been archived by the owner on Jan 23, 2025. It is now read-only.

Commit

Permalink
Merge pull request #18 from zama-ai/bump/tfhe-rs
Browse files Browse the repository at this point in the history
chore(tfhe-rs): update to version tfhe-rs-0.4.1
  • Loading branch information
leventdem authored Jan 17, 2024
2 parents 27b0690 + 6b3e72f commit d37aaf6
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 15 deletions.
32 changes: 20 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "0.3.1", features = ["boolean", "experimental-force_fft_algo_dif4", "shortint", "integer"] }
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"] }
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM rust:1.70 as builder
FROM rust:1.72 as builder

WORKDIR /usr/local/app/fhevm-tfhe-cli
ADD . .
RUN cargo build --release --features tfhe/seeder_unix

FROM debian:bullseye-slim
FROM debian:bookworm-slim
WORKDIR /usr/local/app
RUN apt-get install libc6 -y
COPY --from=builder /usr/local/app/fhevm-tfhe-cli/target/release/fhevm-tfhe-cli /usr/local/bin
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ The TFHE-CLI tool allows developers to use __tfhe-rs__ features through a user-f

This tool can be used locally or through a docker image.


# Docker images versioning

Registry and image name: docker pull ghcr.io/zama-ai/fhevm-tfhe-cli

Tags:

* v0.2.1: based on tfhe-rs 0.3.1
* v0.2.2: based on tfhe-rs 0.4.0

# Build

## Local
Expand Down

0 comments on commit d37aaf6

Please sign in to comment.