Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update data for the 0.9 breaking change #26

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cargo_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:

- name: Run clippy
run: |
cargo clippy --all-features
cargo clippy --all-features -- --no-deps -D warnings
166 changes: 56 additions & 110 deletions Cargo.lock

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

29 changes: 10 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tfhe-backward-compat-data"
version = "0.2.0"
version = "0.3.0"
license = "BSD-3-Clause-Clear"
edition = "2021"

Expand All @@ -9,32 +9,25 @@ edition = "2021"
[dependencies]
# This is a list of tfhe-rs versions we will generate data for. This list will grow over time.
# They are only activated when generating data, with the binary target and the "generate" feature.
tfhe_0_6 = { version = "0.6", features = [
"boolean",
"integer",
"shortint",
"x86_64-unix",
"experimental-force_fft_algo_dif4",
], package = "tfhe", optional = true }
tfhe_0_7 = { version = "0.7", features = [
tfhe_0_8 = { version = "0.8", features = [
"boolean",
"integer",
"shortint",
"x86_64-unix",
"zk-pok",
"experimental-force_fft_algo_dif4",
], package = "tfhe", optional = true }
tfhe_0_8 = { version = "0.8", features = [
tfhe_0_9 = { version = "0.9", features = [
"boolean",
"integer",
"shortint",
"x86_64-unix",
"zk-pok",
"experimental-force_fft_algo_dif4",
], package = "tfhe", optional = true }
], package = "tfhe", optional = true, git = "https://github.com/zama-ai/tfhe-rs/", branch = "am/chore/make-ks-level-order-consistent" }

tfhe-versionable_0_1 = { version = "0.1", optional = true, package = "tfhe-versionable" }
tfhe-versionable_0_2 = { version = "0.2", optional = true, package = "tfhe-versionable" }
tfhe-versionable_0_3 = { version = "0.3", optional = true, package = "tfhe-versionable" }
tfhe_0_8-versionable = { version = "0.3", optional = true, package = "tfhe-versionable" }
tfhe_0_9-versionable = { version = "0.3", optional = true, package = "tfhe-versionable", git = "https://github.com/zama-ai/tfhe-rs/", branch = "am/chore/make-ks-level-order-consistent" }

# other deps
serde = { version = "1.0", features = ["derive"] }
Expand All @@ -52,11 +45,9 @@ required-features = ["generate"]
default = ["generate"]

generate = [
"dep:tfhe_0_6",
"dep:tfhe_0_7",
"dep:tfhe_0_8",
"dep:tfhe-versionable_0_1",
"dep:tfhe-versionable_0_2",
"dep:tfhe-versionable_0_3",
"dep:tfhe_0_9",
"dep:tfhe_0_8-versionable",
"dep:tfhe_0_9-versionable",
]
load = ["dep:semver"]
3 changes: 0 additions & 3 deletions data/0_6/high_level_api/bool1.bcode

This file was deleted.

3 changes: 0 additions & 3 deletions data/0_6/high_level_api/bool1.cbor

This file was deleted.

3 changes: 0 additions & 3 deletions data/0_6/high_level_api/bool2.bcode

This file was deleted.

3 changes: 0 additions & 3 deletions data/0_6/high_level_api/bool2.cbor

This file was deleted.

3 changes: 0 additions & 3 deletions data/0_6/high_level_api/bool_list.bcode

This file was deleted.

Loading