mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-08 22:28:01 -05:00
27 lines
428 B
TOML
27 lines
428 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"tfhe",
|
|
"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
|