Skip to content

Commit

Permalink
chore(backend/frontend): update TFHE-rs to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
youben11 committed Nov 19, 2024
1 parent bb423df commit f00eb11
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions backends/concrete-cpu/implementation/Cargo.lock

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

8 changes: 4 additions & 4 deletions backends/concrete-cpu/implementation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ serde = "~1"
rayon = { version = "1.6", optional = true }
once_cell = { version = "1.16", optional = true }

tfhe = { version = "0.8.6", features = ["integer"] }
tfhe = { version = "0.10.0", features = ["integer"] }

[target.x86_64-unknown-unix-gnu.dependencies]
tfhe = { version = "0.8.6", features = ["integer", "x86_64-unix"] }
tfhe = { version = "0.10.0", features = ["integer", "x86_64-unix"] }

[target.aarch64-unknown-unix-gnu.dependencies]
tfhe = { version = "0.8.6", features = ["integer", "aarch64-unix"] }
tfhe = { version = "0.10.0", features = ["integer", "aarch64-unix"] }

[target.x86_64-pc-windows-gnu.dependencies]
tfhe = { version = "0.8.6", features = ["integer", "x86_64"] }
tfhe = { version = "0.10.0", features = ["integer", "x86_64"] }

[features]
default = ["parallel", "std", "csprng"]
Expand Down
12 changes: 6 additions & 6 deletions frontends/concrete-python/tests/tfhers-utils/Cargo.lock

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

8 changes: 4 additions & 4 deletions frontends/concrete-python/tests/tfhers-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ serde_json = "1.0.128"

clap = { version = "4.5.16", features = ["derive"] }

tfhe = { version = "0.8.6", features = ["integer"] }
tfhe = { version = "0.10.0", features = ["integer"] }

[target.x86_64-unknown-linux-gnu.dependencies]
tfhe = { version = "0.8.6", features = ["integer", "x86_64-unix"] }
tfhe = { version = "0.10.0", features = ["integer", "x86_64-unix"] }

[target.aarch64-unknown-linux-gnu.dependencies]
tfhe = { version = "0.8.6", features = ["integer", "aarch64-unix"] }
tfhe = { version = "0.10.0", features = ["integer", "aarch64-unix"] }

[target.x86_64-pc-windows-gnu.dependencies]
tfhe = { version = "0.8.6", features = ["integer", "x86_64"] }
tfhe = { version = "0.10.0", features = ["integer", "x86_64"] }

0 comments on commit f00eb11

Please sign in to comment.