Files
tfhe-rs/tests/Cargo.toml
Nicolas Sarlin 57cbab9fe1 chore(backward): integrate backward compat data
Code is taken from
59a6179831

Adapted to make ci work
2025-07-07 13:10:55 +02:00

24 lines
527 B
TOML

[package]
name = "tests"
version = "0.1.0"
edition = "2021"
publish = false
[dev-dependencies]
tfhe = { path = "../tfhe" }
tfhe-versionable = { path = "../utils/tfhe-versionable" }
tfhe-backward-compat-data = { path = "../utils/tfhe-backward-compat-data", default-features = false, features = [
"load",
] }
cargo_toml = "0.22"
[[test]]
name = "backward_compatibility_tests"
path = "backward_compatibility_tests.rs"
[features]
shortint = ["tfhe/shortint"]
integer = ["shortint", "tfhe/integer"]
zk-pok = ["tfhe/zk-pok"]