mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-07 22:04:10 -05:00
36 lines
635 B
TOML
36 lines
635 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"tfhe",
|
|
"tfhe-zk-pok",
|
|
"tasks",
|
|
"apps/trivium",
|
|
"concrete-csprng",
|
|
"backends/tfhe-cuda-backend",
|
|
"utils/tfhe-versionable",
|
|
"utils/tfhe-versionable-derive",
|
|
]
|
|
|
|
exclude = [
|
|
"tfhe/backward_compatibility_tests",
|
|
"utils/cargo-tfhe-lints-inner",
|
|
"utils/cargo-tfhe-lints"
|
|
]
|
|
|
|
[profile.bench]
|
|
lto = "fat"
|
|
|
|
[profile.release]
|
|
lto = "fat"
|
|
|
|
[profile.release_lto_off]
|
|
inherits = "release"
|
|
lto = "off"
|
|
|
|
# Compiles much faster for tests and allows reasonable performance for iterating
|
|
[profile.devo]
|
|
inherits = "dev"
|
|
opt-level = 3
|
|
lto = "off"
|
|
debug-assertions = false
|