32 lines
627 B
TOML
32 lines
627 B
TOML
[workspace]
|
|
members = [
|
|
"vaultmesh-core",
|
|
"vaultmesh-treasury",
|
|
"vaultmesh-identity",
|
|
"vaultmesh-mesh",
|
|
"vaultmesh-offsec",
|
|
"vaultmesh-observability",
|
|
"vaultmesh-automation",
|
|
"vaultmesh-psi",
|
|
"vaultmesh-guardian",
|
|
]
|
|
resolver = "2"
|
|
|
|
# Release profile optimizations
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|
|
|
|
# Development profile with some optimizations for faster testing
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
# Profile for maximum performance (use with --profile release-max)
|
|
[profile.release-max]
|
|
inherits = "release"
|
|
lto = "fat"
|
|
codegen-units = 1
|