mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-07 22:04:10 -05:00
- integration of work done by Sarah in the repo Co-authored-by: sarah el kazdadi <sarah.elkazdadi@zama.ai>
28 lines
447 B
TOML
28 lines
447 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"tfhe",
|
|
"tfhe-zk-pok",
|
|
"tasks",
|
|
"apps/trivium",
|
|
"concrete-csprng",
|
|
"backends/tfhe-cuda-backend",
|
|
]
|
|
|
|
[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
|