mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-06 21:34:05 -05:00
24 lines
527 B
TOML
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"]
|