Files
tfhe-rs/tests/Cargo.toml
2025-09-22 14:02:41 +02:00

25 lines
555 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",
] }
rand = { workspace = true }
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"]